]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - include/javascript/yui3/build/datatable/datatable-base.js
Release 6.5.0
[Github/sugarcrm.git] / include / javascript / yui3 / build / datatable / datatable-base.js
1 /*
2  Copyright (c) 2010, Yahoo! Inc. All rights reserved.
3  Code licensed under the BSD License:
4  http://developer.yahoo.com/yui/license.html
5  version: 3.3.0
6  build: 3167
7  */
8 YUI.add('datatable-base',function(Y){var YLang=Y.Lang,YisValue=YLang.isValue,Ysubstitute=Y.Lang.substitute,YNode=Y.Node,Ycreate=YNode.create,YgetClassName=Y.ClassNameManager.getClassName,DATATABLE="datatable",COLUMN="column",FOCUS="focus",KEYDOWN="keydown",MOUSEENTER="mouseenter",MOUSELEAVE="mouseleave",MOUSEUP="mouseup",MOUSEDOWN="mousedown",CLICK="click",DBLCLICK="dblclick",CLASS_COLUMNS=YgetClassName(DATATABLE,"columns"),CLASS_DATA=YgetClassName(DATATABLE,"data"),CLASS_MSG=YgetClassName(DATATABLE,"msg"),CLASS_LINER=YgetClassName(DATATABLE,"liner"),CLASS_FIRST=YgetClassName(DATATABLE,"first"),CLASS_LAST=YgetClassName(DATATABLE,"last"),CLASS_EVEN=YgetClassName(DATATABLE,"even"),CLASS_ODD=YgetClassName(DATATABLE,"odd"),TEMPLATE_TABLE='<table></table>',TEMPLATE_COL='<col></col>',TEMPLATE_THEAD='<thead class="'+CLASS_COLUMNS+'"></thead>',TEMPLATE_TBODY='<tbody class="'+CLASS_DATA+'"></tbody>',TEMPLATE_TH='<th id="{id}" rowspan="{rowspan}" colspan="{colspan}" class="{classnames}" abbr="{abbr}"><div class="'+CLASS_LINER+'">{value}</div></th>',TEMPLATE_TR='<tr id="{id}"></tr>',TEMPLATE_TD='<td headers="{headers}" class="{classnames}"><div class="'+CLASS_LINER+'">{value}</div></td>',TEMPLATE_VALUE='{value}',TEMPLATE_MSG='<tbody class="'+CLASS_MSG+'"></tbody>';function Column(config){Column.superclass.constructor.apply(this,arguments);}
9 Y.mix(Column,{NAME:"column",ATTRS:{id:{valueFn:"_defaultId",readOnly:true},key:{valueFn:"_defaultKey"},field:{valueFn:"_defaultField"},label:{valueFn:"_defaultLabel"},children:{value:null},abbr:{value:""},classnames:{readOnly:true,getter:"_getClassnames"},formatter:{},sortable:{value:false},editor:{},width:{},resizeable:{},minimized:{},minWidth:{},maxAutoWidth:{}}});Y.extend(Column,Y.Widget,{_defaultId:function(){return Y.guid();},_defaultKey:function(key){return key||Y.guid();},_defaultField:function(field){return field||this.get("key");},_defaultLabel:function(label){return label||this.get("key");},_afterAbbrChange:function(e){this._uiSetAbbr(e.newVal);},keyIndex:null,headers:null,colSpan:1,rowSpan:1,parent:null,thNode:null,initializer:function(config){},destructor:function(){},_getClassnames:function(){return Y.ClassNameManager.getClassName(COLUMN,this.get("id"));},syncUI:function(){this._uiSetAbbr(this.get("abbr"));},_uiSetAbbr:function(val){this.thNode.set("abbr",val);}});Y.Column=Column;function Columnset(config){Columnset.superclass.constructor.apply(this,arguments);}
10 Y.mix(Columnset,{NAME:"columnset",ATTRS:{definitions:{setter:"_setDefinitions"}}});Y.extend(Columnset,Y.Base,{_setDefinitions:function(definitions){return Y.clone(definitions);},tree:null,idHash:null,keyHash:null,keys:null,initializer:function(){var tree=[],idHash={},keyHash={},keys=[],definitions=this.get("definitions"),self=this;function parseColumns(depth,currentDefinitions,parent){var i=0,len=currentDefinitions.length,currentDefinition,column,currentChildren;depth++;if(!tree[depth]){tree[depth]=[];}
11 for(;i<len;++i){currentDefinition=currentDefinitions[i];currentDefinition=YLang.isString(currentDefinition)?{key:currentDefinition}:currentDefinition;column=new Y.Column(currentDefinition);currentDefinition.yuiColumnId=column.get("id");idHash[column.get("id")]=column;keyHash[column.get("key")]=column;if(parent){column.parent=parent;}
12 if(YLang.isArray(currentDefinition.children)){currentChildren=currentDefinition.children;column._set("children",currentChildren);self._setColSpans(column,currentDefinition);self._cascadePropertiesToChildren(column,currentChildren);if(!tree[depth+1]){tree[depth+1]=[];}
13 parseColumns(depth,currentChildren,column);}
14 else{column.keyIndex=keys.length;keys.push(column);}
15 tree[depth].push(column);}
16 depth--;}
17 parseColumns(-1,definitions);this.tree=tree;this.idHash=idHash;this.keyHash=keyHash;this.keys=keys;this._setRowSpans();this._setHeaders();},destructor:function(){},_cascadePropertiesToChildren:function(column,currentChildren){var i=0,len=currentChildren.length,child;for(;i<len;++i){child=currentChildren[i];if(column.get("className")&&(child.className===undefined)){child.className=column.get("className");}
18 if(column.get("editor")&&(child.editor===undefined)){child.editor=column.get("editor");}
19 if(column.get("formatter")&&(child.formatter===undefined)){child.formatter=column.get("formatter");}
20 if(column.get("resizeable")&&(child.resizeable===undefined)){child.resizeable=column.get("resizeable");}
21 if(column.get("sortable")&&(child.sortable===undefined)){child.sortable=column.get("sortable");}
22 if(column.get("hidden")){child.hidden=true;}
23 if(column.get("width")&&(child.width===undefined)){child.width=column.get("width");}
24 if(column.get("minWidth")&&(child.minWidth===undefined)){child.minWidth=column.get("minWidth");}
25 if(column.get("maxAutoWidth")&&(child.maxAutoWidth===undefined)){child.maxAutoWidth=column.get("maxAutoWidth");}}},_setColSpans:function(column,definition){var terminalChildNodes=0;function countTerminalChildNodes(ancestor){var descendants=ancestor.children,i=0,len=descendants.length;for(;i<len;++i){if(YLang.isArray(descendants[i].children)){countTerminalChildNodes(descendants[i]);}
26 else{terminalChildNodes++;}}}
27 countTerminalChildNodes(definition);column.colSpan=terminalChildNodes;},_setRowSpans:function(){function parseDomTreeForRowSpan(tree){var maxRowDepth=1,currentRow,currentColumn,m,p;function countMaxRowDepth(row,tmpRowDepth){tmpRowDepth=tmpRowDepth||1;var i=0,len=row.length,col;for(;i<len;++i){col=row[i];if(YLang.isArray(col.children)){tmpRowDepth++;countMaxRowDepth(col.children,tmpRowDepth);tmpRowDepth--;}
28 else if(col.get&&YLang.isArray(col.get("children"))){tmpRowDepth++;countMaxRowDepth(col.get("children"),tmpRowDepth);tmpRowDepth--;}
29 else{if(tmpRowDepth>maxRowDepth){maxRowDepth=tmpRowDepth;}}}}
30 for(m=0;m<tree.length;m++){currentRow=tree[m];countMaxRowDepth(currentRow);for(p=0;p<currentRow.length;p++){currentColumn=currentRow[p];if(!YLang.isArray(currentColumn.get("children"))){currentColumn.rowSpan=maxRowDepth;}}
31 maxRowDepth=1;}}
32 parseDomTreeForRowSpan(this.tree);},_setHeaders:function(){var headers,column,allKeys=this.keys,i=0,len=allKeys.length;function recurseAncestorsForHeaders(headers,column){headers.push(column.get("id"));if(column.parent){recurseAncestorsForHeaders(headers,column.parent);}}
33 for(;i<len;++i){headers=[];column=allKeys[i];recurseAncestorsForHeaders(headers,column);column.headers=headers.reverse().join(" ");}},getColumn:function(){}});Y.Columnset=Columnset;function DTBase(config){DTBase.superclass.constructor.apply(this,arguments);}
34 Y.mix(DTBase,{NAME:"dataTable",ATTRS:{columnset:{setter:"_setColumnset"},recordset:{value:new Y.Recordset({records:[]}),setter:"_setRecordset"},summary:{},caption:{},thValueTemplate:{value:TEMPLATE_VALUE},tdValueTemplate:{value:TEMPLATE_VALUE},trTemplate:{value:TEMPLATE_TR}},HTML_PARSER:{}});Y.extend(DTBase,Y.Widget,{thTemplate:TEMPLATE_TH,tdTemplate:TEMPLATE_TD,_theadNode:null,_tbodyNode:null,_msgNode:null,_setColumnset:function(columns){return YLang.isArray(columns)?new Y.Columnset({definitions:columns}):columns;},_afterColumnsetChange:function(e){if(this.get("rendered")){this._uiSetColumnset(e.newVal);}},_setRecordset:function(rs){if(YLang.isArray(rs)){rs=new Y.Recordset({records:rs});}
35 rs.addTarget(this);return rs;},_afterRecordsetChange:function(e){if(this.get("rendered")){this._uiSetRecordset(e.newVal);}},_afterSummaryChange:function(e){if(this.get("rendered")){this._uiSetSummary(e.newVal);}},_afterCaptionChange:function(e){if(this.get("rendered")){this._uiSetCaption(e.newVal);}},initializer:function(config){this.after("columnsetChange",this._afterColumnsetChange);this.after("recordsetChange",this._afterRecordsetChange);this.after("summaryChange",this._afterSummaryChange);this.after("captionChange",this._afterCaptionChange);},destructor:function(){this.get("recordset").removeTarget(this);},renderUI:function(){return(this._addTableNode(this.get("contentBox"))&&this._addColgroupNode(this._tableNode)&&this._addTheadNode(this._tableNode)&&this._addTbodyNode(this._tableNode)&&this._addMessageNode(this._tableNode)&&this._addCaptionNode(this._tableNode));},_addTableNode:function(containerNode){if(!this._tableNode){this._tableNode=containerNode.appendChild(Ycreate(TEMPLATE_TABLE));}
36 return this._tableNode;},_addColgroupNode:function(tableNode){var len=this.get("columnset").keys.length,i=0,allCols=["<colgroup>"];for(;i<len;++i){allCols.push(TEMPLATE_COL);}
37 allCols.push("</colgroup>");this._colgroupNode=tableNode.insertBefore(Ycreate(allCols.join("")),tableNode.get("firstChild"));return this._colgroupNode;},_addTheadNode:function(tableNode){if(tableNode){this._theadNode=tableNode.insertBefore(Ycreate(TEMPLATE_THEAD),this._colgroupNode.next());return this._theadNode;}},_addTbodyNode:function(tableNode){this._tbodyNode=tableNode.appendChild(Ycreate(TEMPLATE_TBODY));return this._tbodyNode;},_addMessageNode:function(tableNode){this._msgNode=tableNode.insertBefore(Ycreate(TEMPLATE_MSG),this._tbodyNode);return this._msgNode;},_addCaptionNode:function(tableNode){this._captionNode=tableNode.createCaption();return this._captionNode;},bindUI:function(){var theadFilter="thead."+CLASS_COLUMNS+">tr>th",tbodyFilter="tbody."+CLASS_DATA+">tr>td",msgFilter="tbody."+CLASS_MSG+">tr>td";},delegate:function(type){if(type==="dblclick"){this.get("boundingBox").delegate.apply(this.get("boundingBox"),arguments);}
38 else{this.get("contentBox").delegate.apply(this.get("contentBox"),arguments);}},syncUI:function(){this._uiSetColumnset(this.get("columnset"));this._uiSetRecordset(this.get("recordset"));this._uiSetSummary(this.get("summary"));this._uiSetCaption(this.get("caption"));},_uiSetSummary:function(val){val=YisValue(val)?val:"";this._tableNode.set("summary",val);},_uiSetCaption:function(val){val=YisValue(val)?val:"";this._captionNode.setContent(val);},_uiSetColumnset:function(cs){var tree=cs.tree,thead=this._theadNode,i=0,len=tree.length,parent=thead.get("parentNode"),nextSibling=thead.next();thead.remove();thead.get("children").remove(true);for(;i<len;++i){this._addTheadTrNode({thead:thead,columns:tree[i]},(i===0),(i===len-1));}
39 parent.insert(thead,nextSibling);},_addTheadTrNode:function(o,isFirst,isLast){o.tr=this._createTheadTrNode(o,isFirst,isLast);this._attachTheadTrNode(o);},_createTheadTrNode:function(o,isFirst,isLast){var tr=Ycreate(Ysubstitute(this.get("trTemplate"),o)),i=0,columns=o.columns,len=columns.length,column;if(isFirst){tr.addClass(CLASS_FIRST);}
40 if(isLast){tr.addClass(CLASS_LAST);}
41 for(;i<len;++i){column=columns[i];this._addTheadThNode({value:column.get("label"),column:column,tr:tr});}
42 return tr;},_attachTheadTrNode:function(o){o.thead.appendChild(o.tr);},_addTheadThNode:function(o){o.th=this._createTheadThNode(o);this._attachTheadThNode(o);o.column.thNode=o.th;},_createTheadThNode:function(o){var column=o.column;o.id=column.get("id");o.colspan=column.colSpan;o.rowspan=column.rowSpan;o.abbr=column.get("abbr");o.classnames=column.get("classnames");o.value=Ysubstitute(this.get("thValueTemplate"),o);return Ycreate(Ysubstitute(this.thTemplate,o));},_attachTheadThNode:function(o){o.tr.appendChild(o.th);},_uiSetRecordset:function(rs){var i=0,len=rs.getLength(),oldTbody=this._tbodyNode,parent=oldTbody.get("parentNode"),nextSibling=oldTbody.next(),o={},newTbody;oldTbody.remove();oldTbody=null;newTbody=this._addTbodyNode(this._tableNode);newTbody.remove();this._tbodyNode=newTbody;o.tbody=newTbody;for(;i<len;++i){o.record=rs.getRecord(i);o.rowindex=i;this._addTbodyTrNode(o);}
43 parent.insert(this._tbodyNode,nextSibling);},_addTbodyTrNode:function(o){var tbody=o.tbody,record=o.record;o.tr=tbody.one("#"+record.get("id"))||this._createTbodyTrNode(o);this._attachTbodyTrNode(o);},_createTbodyTrNode:function(o){var tr=Ycreate(Ysubstitute(this.get("trTemplate"),{id:o.record.get("id")})),i=0,allKeys=this.get("columnset").keys,len=allKeys.length;o.tr=tr;for(;i<len;++i){o.column=allKeys[i];this._addTbodyTdNode(o);}
44 return tr;},_attachTbodyTrNode:function(o){var tbody=o.tbody,tr=o.tr,index=o.rowindex,nextSibling=tbody.get("children").item(index)||null,isEven=(index%2===0);if(isEven){tr.replaceClass(CLASS_ODD,CLASS_EVEN);}
45 else{tr.replaceClass(CLASS_EVEN,CLASS_ODD);}
46 tbody.insertBefore(tr,nextSibling);},_addTbodyTdNode:function(o){o.td=this._createTbodyTdNode(o);this._attachTbodyTdNode(o);},_createTbodyTdNode:function(o){var column=o.column;o.headers=column.headers;o.classnames=column.get("classnames");o.value=this.formatDataCell(o);return Ycreate(Ysubstitute(this.tdTemplate,o));},_attachTbodyTdNode:function(o){o.tr.appendChild(o.td);},formatDataCell:function(o){var record=o.record,column=o.column,formatter=column.get("formatter");o.data=record.get("data");o.value=record.getValue(column.get("field"));return YLang.isString(formatter)?Ysubstitute(formatter,o):YLang.isFunction(formatter)?formatter.call(this,o):Ysubstitute(this.get("tdValueTemplate"),o);}});Y.namespace("DataTable").Base=DTBase;},'3.3.0',{requires:['recordset-base','widget','substitute','event-mouseenter']});