GroupSummary.js
上传用户:dawnssy
上传日期:2022-08-06
资源大小:9345k
文件大小:12k
源码类别:

JavaScript

开发平台:

JavaScript

  1. /*!  * Ext JS Library 3.1.0  * Copyright(c) 2006-2009 Ext JS, LLC  * licensing@extjs.com  * http://www.extjs.com/license  */ Ext.ns('Ext.ux.grid');
  2. /**
  3.  * @class Ext.ux.grid.GroupSummary
  4.  * @extends Ext.util.Observable
  5.  * A GridPanel plugin that enables dynamic column calculations and a dynamically
  6.  * updated grouped summary row.
  7.  */
  8. Ext.ux.grid.GroupSummary = Ext.extend(Ext.util.Observable, {
  9.     /**
  10.      * @cfg {Function} summaryRenderer Renderer example:<pre><code>
  11. summaryRenderer: function(v, params, data){
  12.     return ((v === 0 || v > 1) ? '(' + v +' Tasks)' : '(1 Task)');
  13. },
  14.      * </code></pre>
  15.      */
  16.     /**
  17.      * @cfg {String} summaryType (Optional) The type of
  18.      * calculation to be used for the column.  For options available see
  19.      * {@link #Calculations}.
  20.      */
  21.     constructor : function(config){
  22.         Ext.apply(this, config);
  23.         Ext.ux.grid.GroupSummary.superclass.constructor.call(this);
  24.     },
  25.     init : function(grid){
  26.         this.grid = grid;
  27.         var v = this.view = grid.getView();
  28.         v.doGroupEnd = this.doGroupEnd.createDelegate(this);
  29.         v.afterMethod('onColumnWidthUpdated', this.doWidth, this);
  30.         v.afterMethod('onAllColumnWidthsUpdated', this.doAllWidths, this);
  31.         v.afterMethod('onColumnHiddenUpdated', this.doHidden, this);
  32.         v.afterMethod('onUpdate', this.doUpdate, this);
  33.         v.afterMethod('onRemove', this.doRemove, this);
  34.         if(!this.rowTpl){
  35.             this.rowTpl = new Ext.Template(
  36.                 '<div class="x-grid3-summary-row" style="{tstyle}">',
  37.                 '<table class="x-grid3-summary-table" border="0" cellspacing="0" cellpadding="0" style="{tstyle}">',
  38.                     '<tbody><tr>{cells}</tr></tbody>',
  39.                 '</table></div>'
  40.             );
  41.             this.rowTpl.disableFormats = true;
  42.         }
  43.         this.rowTpl.compile();
  44.         if(!this.cellTpl){
  45.             this.cellTpl = new Ext.Template(
  46.                 '<td class="x-grid3-col x-grid3-cell x-grid3-td-{id} {css}" style="{style}">',
  47.                 '<div class="x-grid3-cell-inner x-grid3-col-{id}" unselectable="on">{value}</div>',
  48.                 "</td>"
  49.             );
  50.             this.cellTpl.disableFormats = true;
  51.         }
  52.         this.cellTpl.compile();
  53.     },
  54.     /**
  55.      * Toggle the display of the summary row on/off
  56.      * @param {Boolean} visible <tt>true</tt> to show the summary, <tt>false</tt> to hide the summary.
  57.      */
  58.     toggleSummaries : function(visible){
  59.         var el = this.grid.getGridEl();
  60.         if(el){
  61.             if(visible === undefined){
  62.                 visible = el.hasClass('x-grid-hide-summary');
  63.             }
  64.             el[visible ? 'removeClass' : 'addClass']('x-grid-hide-summary');
  65.         }
  66.     },
  67.     renderSummary : function(o, cs){
  68.         cs = cs || this.view.getColumnData();
  69.         var cfg = this.grid.getColumnModel().config,
  70.             buf = [], c, p = {}, cf, last = cs.length-1;
  71.         for(var i = 0, len = cs.length; i < len; i++){
  72.             c = cs[i];
  73.             cf = cfg[i];
  74.             p.id = c.id;
  75.             p.style = c.style;
  76.             p.css = i == 0 ? 'x-grid3-cell-first ' : (i == last ? 'x-grid3-cell-last ' : '');
  77.             if(cf.summaryType || cf.summaryRenderer){
  78.                 p.value = (cf.summaryRenderer || c.renderer)(o.data[c.name], p, o);
  79.             }else{
  80.                 p.value = '';
  81.             }
  82.             if(p.value == undefined || p.value === "") p.value = "&#160;";
  83.             buf[buf.length] = this.cellTpl.apply(p);
  84.         }
  85.         return this.rowTpl.apply({
  86.             tstyle: 'width:'+this.view.getTotalWidth()+';',
  87.             cells: buf.join('')
  88.         });
  89.     },
  90.     /**
  91.      * @private
  92.      * @param {Object} rs
  93.      * @param {Object} cs
  94.      */
  95.     calculate : function(rs, cs){
  96.         var data = {}, r, c, cfg = this.grid.getColumnModel().config, cf;
  97.         for(var j = 0, jlen = rs.length; j < jlen; j++){
  98.             r = rs[j];
  99.             for(var i = 0, len = cs.length; i < len; i++){
  100.                 c = cs[i];
  101.                 cf = cfg[i];
  102.                 if(cf.summaryType){
  103.                     data[c.name] = Ext.ux.grid.GroupSummary.Calculations[cf.summaryType](data[c.name] || 0, r, c.name, data);
  104.                 }
  105.             }
  106.         }
  107.         return data;
  108.     },
  109.     doGroupEnd : function(buf, g, cs, ds, colCount){
  110.         var data = this.calculate(g.rs, cs);
  111.         buf.push('</div>', this.renderSummary({data: data}, cs), '</div>');
  112.     },
  113.     doWidth : function(col, w, tw){
  114.         var gs = this.view.getGroups(), s;
  115.         for(var i = 0, len = gs.length; i < len; i++){
  116.             s = gs[i].childNodes[2];
  117.             s.style.width = tw;
  118.             s.firstChild.style.width = tw;
  119.             s.firstChild.rows[0].childNodes[col].style.width = w;
  120.         }
  121.     },
  122.     doAllWidths : function(ws, tw){
  123.         var gs = this.view.getGroups(), s, cells, wlen = ws.length;
  124.         for(var i = 0, len = gs.length; i < len; i++){
  125.             s = gs[i].childNodes[2];
  126.             s.style.width = tw;
  127.             s.firstChild.style.width = tw;
  128.             cells = s.firstChild.rows[0].childNodes;
  129.             for(var j = 0; j < wlen; j++){
  130.                 cells[j].style.width = ws[j];
  131.             }
  132.         }
  133.     },
  134.     doHidden : function(col, hidden, tw){
  135.         var gs = this.view.getGroups(), s, display = hidden ? 'none' : '';
  136.         for(var i = 0, len = gs.length; i < len; i++){
  137.             s = gs[i].childNodes[2];
  138.             s.style.width = tw;
  139.             s.firstChild.style.width = tw;
  140.             s.firstChild.rows[0].childNodes[col].style.display = display;
  141.         }
  142.     },
  143.     // Note: requires that all (or the first) record in the
  144.     // group share the same group value. Returns false if the group
  145.     // could not be found.
  146.     refreshSummary : function(groupValue){
  147.         return this.refreshSummaryById(this.view.getGroupId(groupValue));
  148.     },
  149.     getSummaryNode : function(gid){
  150.         var g = Ext.fly(gid, '_gsummary');
  151.         if(g){
  152.             return g.down('.x-grid3-summary-row', true);
  153.         }
  154.         return null;
  155.     },
  156.     refreshSummaryById : function(gid){
  157.         var g = Ext.getDom(gid);
  158.         if(!g){
  159.             return false;
  160.         }
  161.         var rs = [];
  162.         this.grid.getStore().each(function(r){
  163.             if(r._groupId == gid){
  164.                 rs[rs.length] = r;
  165.             }
  166.         });
  167.         var cs = this.view.getColumnData(),
  168.             data = this.calculate(rs, cs),
  169.             markup = this.renderSummary({data: data}, cs),
  170.             existing = this.getSummaryNode(gid);
  171.             
  172.         if(existing){
  173.             g.removeChild(existing);
  174.         }
  175.         Ext.DomHelper.append(g, markup);
  176.         return true;
  177.     },
  178.     doUpdate : function(ds, record){
  179.         this.refreshSummaryById(record._groupId);
  180.     },
  181.     doRemove : function(ds, record, index, isUpdate){
  182.         if(!isUpdate){
  183.             this.refreshSummaryById(record._groupId);
  184.         }
  185.     },
  186.     /**
  187.      * Show a message in the summary row.
  188.      * <pre><code>
  189. grid.on('afteredit', function(){
  190.     var groupValue = 'Ext Forms: Field Anchoring';
  191.     summary.showSummaryMsg(groupValue, 'Updating Summary...');
  192. });
  193.      * </code></pre>
  194.      * @param {String} groupValue
  195.      * @param {String} msg Text to use as innerHTML for the summary row.
  196.      */
  197.     showSummaryMsg : function(groupValue, msg){
  198.         var gid = this.view.getGroupId(groupValue),
  199.              node = this.getSummaryNode(gid);
  200.         if(node){
  201.             node.innerHTML = '<div class="x-grid3-summary-msg">' + msg + '</div>';
  202.         }
  203.     }
  204. });
  205. //backwards compat
  206. Ext.grid.GroupSummary = Ext.ux.grid.GroupSummary;
  207. /**
  208.  * Calculation types for summary row:</p><div class="mdetail-params"><ul>
  209.  * <li><b><tt>sum</tt></b> : <div class="sub-desc"></div></li>
  210.  * <li><b><tt>count</tt></b> : <div class="sub-desc"></div></li>
  211.  * <li><b><tt>max</tt></b> : <div class="sub-desc"></div></li>
  212.  * <li><b><tt>min</tt></b> : <div class="sub-desc"></div></li>
  213.  * <li><b><tt>average</tt></b> : <div class="sub-desc"></div></li>
  214.  * </ul></div>
  215.  * <p>Custom calculations may be implemented.  An example of
  216.  * custom <code>summaryType=totalCost</code>:</p><pre><code>
  217. // define a custom summary function
  218. Ext.ux.grid.GroupSummary.Calculations['totalCost'] = function(v, record, field){
  219.     return v + (record.data.estimate * record.data.rate);
  220. };
  221.  * </code></pre>
  222.  * @property Calculations
  223.  */
  224. Ext.ux.grid.GroupSummary.Calculations = {
  225.     'sum' : function(v, record, field){
  226.         return v + (record.data[field]||0);
  227.     },
  228.     'count' : function(v, record, field, data){
  229.         return data[field+'count'] ? ++data[field+'count'] : (data[field+'count'] = 1);
  230.     },
  231.     'max' : function(v, record, field, data){
  232.         var v = record.data[field];
  233.         var max = data[field+'max'] === undefined ? (data[field+'max'] = v) : data[field+'max'];
  234.         return v > max ? (data[field+'max'] = v) : max;
  235.     },
  236.     'min' : function(v, record, field, data){
  237.         var v = record.data[field];
  238.         var min = data[field+'min'] === undefined ? (data[field+'min'] = v) : data[field+'min'];
  239.         return v < min ? (data[field+'min'] = v) : min;
  240.     },
  241.     'average' : function(v, record, field, data){
  242.         var c = data[field+'count'] ? ++data[field+'count'] : (data[field+'count'] = 1);
  243.         var t = (data[field+'total'] = ((data[field+'total']||0) + (record.data[field]||0)));
  244.         return t === 0 ? 0 : t / c;
  245.     }
  246. };
  247. Ext.grid.GroupSummary.Calculations = Ext.ux.grid.GroupSummary.Calculations;
  248. /**
  249.  * @class Ext.ux.grid.HybridSummary
  250.  * @extends Ext.ux.grid.GroupSummary
  251.  * Adds capability to specify the summary data for the group via json as illustrated here:
  252.  * <pre><code>
  253. {
  254.     data: [
  255.         {
  256.             projectId: 100,     project: 'House',
  257.             taskId:    112, description: 'Paint',
  258.             estimate:    6,        rate:     150,
  259.             due:'06/24/2007'
  260.         },
  261.         ...
  262.     ],
  263.     summaryData: {
  264.         'House': {
  265.             description: 14, estimate: 9,
  266.                    rate: 99, due: new Date(2009, 6, 29),
  267.                    cost: 999
  268.         }
  269.     }
  270. }
  271.  * </code></pre>
  272.  *
  273.  */
  274. Ext.ux.grid.HybridSummary = Ext.extend(Ext.ux.grid.GroupSummary, {
  275.     /**
  276.      * @private
  277.      * @param {Object} rs
  278.      * @param {Object} cs
  279.      */
  280.     calculate : function(rs, cs){
  281.         var gcol = this.view.getGroupField(),
  282.             gvalue = rs[0].data[gcol],
  283.             gdata = this.getSummaryData(gvalue);
  284.         return gdata || Ext.ux.grid.HybridSummary.superclass.calculate.call(this, rs, cs);
  285.     },
  286.     /**
  287.      * <pre><code>
  288. grid.on('afteredit', function(){
  289.     var groupValue = 'Ext Forms: Field Anchoring';
  290.     summary.showSummaryMsg(groupValue, 'Updating Summary...');
  291.     setTimeout(function(){ // simulate server call
  292.         // HybridSummary class implements updateSummaryData
  293.         summary.updateSummaryData(groupValue,
  294.             // create data object based on configured dataIndex
  295.             {description: 22, estimate: 888, rate: 888, due: new Date(), cost: 8});
  296.     }, 2000);
  297. });
  298.      * </code></pre>
  299.      * @param {String} groupValue
  300.      * @param {Object} data data object
  301.      * @param {Boolean} skipRefresh (Optional) Defaults to false
  302.      */
  303.     updateSummaryData : function(groupValue, data, skipRefresh){
  304.         var json = this.grid.getStore().reader.jsonData;
  305.         if(!json.summaryData){
  306.             json.summaryData = {};
  307.         }
  308.         json.summaryData[groupValue] = data;
  309.         if(!skipRefresh){
  310.             this.refreshSummary(groupValue);
  311.         }
  312.     },
  313.     /**
  314.      * Returns the summaryData for the specified groupValue or null.
  315.      * @param {String} groupValue
  316.      * @return {Object} summaryData
  317.      */
  318.     getSummaryData : function(groupValue){
  319.         var json = this.grid.getStore().reader.jsonData;
  320.         if(json && json.summaryData){
  321.             return json.summaryData[groupValue];
  322.         }
  323.         return null;
  324.     }
  325. });
  326. //backwards compat
  327. Ext.grid.HybridSummary = Ext.ux.grid.HybridSummary;