Roo/View.js
[roojs1] / Roo / View.js
1 /*
2  * Based on:
3  * Ext JS Library 1.1.1
4  * Copyright(c) 2006-2007, Ext JS, LLC.
5  *
6  * Originally Released Under LGPL - original licence link has changed is not relivant.
7  *
8  * Fork - LGPL
9  * <script type="text/javascript">
10  */
11
12 /**
13  * @class Roo.View
14  * @extends Roo.util.Observable
15  * Create a "View" for an element based on a data model or UpdateManager and the supplied DomHelper template. 
16  * This class also supports single and multi selection modes. <br>
17  * Create a data model bound view:
18  <pre><code>
19  var store = new Roo.data.Store(...);
20
21  var view = new Roo.View({
22     el : "my-element",
23     tpl : '&lt;div id="{0}"&gt;{2} - {1}&lt;/div&gt;', // auto create template
24  
25     singleSelect: true,
26     selectedClass: "ydataview-selected",
27     store: store
28  });
29
30  // listen for node click?
31  view.on("click", function(vw, index, node, e){
32  alert('Node "' + node.id + '" at index: ' + index + " was clicked.");
33  });
34
35  // load XML data
36  dataModel.load("foobar.xml");
37  </code></pre>
38  For an example of creating a JSON/UpdateManager view, see {@link Roo.JsonView}.
39  * <br><br>
40  * <b>Note: The root of your template must be a single node. Table/row implementations may work but are not supported due to
41  * IE"s limited insertion support with tables and Opera"s faulty event bubbling.</b>
42  * 
43  * Note: old style constructor is still suported (container, template, config)
44  * 
45  * @constructor
46  * Create a new View
47  * @param {Object} config The config object
48  * 
49  */
50 Roo.View = function(config, depreciated_tpl, depreciated_config){
51     
52     if (typeof(depreciated_tpl) == 'undefined') {
53         // new way.. - universal constructor.
54         Roo.apply(this, config);
55         this.el  = Roo.get(this.el);
56     } else {
57         // old format..
58         this.el  = Roo.get(config);
59         this.tpl = depreciated_tpl;
60         Roo.apply(this, depreciated_config);
61     }
62     this.wrapEl  = this.el.wrap().wrap();
63     ///this.el = this.wrapEla.appendChild(document.createElement("div"));
64     
65     
66     if(typeof(this.tpl) == "string"){
67         this.tpl = new Roo.Template(this.tpl);
68     } else {
69         // support xtype ctors..
70         this.tpl = new Roo.factory(this.tpl, Roo);
71     }
72     
73     
74     this.tpl.compile();
75     
76     /** @private */
77     this.addEvents({
78         /**
79          * @event beforeclick
80          * Fires before a click is processed. Returns false to cancel the default action.
81          * @param {Roo.View} this
82          * @param {Number} index The index of the target node
83          * @param {HTMLElement} node The target node
84          * @param {Roo.EventObject} e The raw event object
85          */
86             "beforeclick" : true,
87         /**
88          * @event click
89          * Fires when a template node is clicked.
90          * @param {Roo.View} this
91          * @param {Number} index The index of the target node
92          * @param {HTMLElement} node The target node
93          * @param {Roo.EventObject} e The raw event object
94          */
95             "click" : true,
96         /**
97          * @event dblclick
98          * Fires when a template node is double clicked.
99          * @param {Roo.View} this
100          * @param {Number} index The index of the target node
101          * @param {HTMLElement} node The target node
102          * @param {Roo.EventObject} e The raw event object
103          */
104             "dblclick" : true,
105         /**
106          * @event contextmenu
107          * Fires when a template node is right clicked.
108          * @param {Roo.View} this
109          * @param {Number} index The index of the target node
110          * @param {HTMLElement} node The target node
111          * @param {Roo.EventObject} e The raw event object
112          */
113             "contextmenu" : true,
114         /**
115          * @event selectionchange
116          * Fires when the selected nodes change.
117          * @param {Roo.View} this
118          * @param {Array} selections Array of the selected nodes
119          */
120             "selectionchange" : true,
121     
122         /**
123          * @event beforeselect
124          * Fires before a selection is made. If any handlers return false, the selection is cancelled.
125          * @param {Roo.View} this
126          * @param {HTMLElement} node The node to be selected
127          * @param {Array} selections Array of currently selected nodes
128          */
129             "beforeselect" : true,
130         /**
131          * @event preparedata
132          * Fires on every row to render, to allow you to change the data.
133          * @param {Roo.View} this
134          * @param {Object} data to be rendered (change this)
135          */
136           "preparedata" : true
137           
138           
139         });
140
141
142
143     this.el.on({
144         "click": this.onClick,
145         "dblclick": this.onDblClick,
146         "contextmenu": this.onContextMenu,
147         scope:this
148     });
149
150     this.selections = [];
151     this.nodes = [];
152     this.cmp = new Roo.CompositeElementLite([]);
153     if(this.store){
154         this.store = Roo.factory(this.store, Roo.data);
155         this.setStore(this.store, true);
156     }
157     
158     if ( this.footer && this.footer.xtype) {
159            
160          var fctr = this.wrapEl.appendChild(document.createElement("div"));
161         
162         this.footer.dataSource = this.store
163         this.footer.container = fctr;
164         this.footer = Roo.factory(this.footer, Roo);
165         fctr.insertFirst(this.el);
166         
167         // this is a bit insane - as the paging toolbar seems to detach the el..
168 //        dom.parentNode.parentNode.parentNode
169          // they get detached?
170     }
171     
172     
173     Roo.View.superclass.constructor.call(this);
174     
175     
176 };
177
178 Roo.extend(Roo.View, Roo.util.Observable, {
179     
180      /**
181      * @cfg {Roo.data.Store} store Data store to load data from.
182      */
183     store : false,
184     
185     /**
186      * @cfg {String|Roo.Element} el The container element.
187      */
188     el : '',
189     
190     /**
191      * @cfg {String|Roo.Template} tpl The template used by this View 
192      */
193     tpl : false,
194     /**
195      * @cfg {String} dataName the named area of the template to use as the data area
196      *                          Works with domtemplates roo-name="name"
197      */
198     dataName: false,
199     /**
200      * @cfg {String} selectedClass The css class to add to selected nodes
201      */
202     selectedClass : "x-view-selected",
203      /**
204      * @cfg {String} emptyText The empty text to show when nothing is loaded.
205      */
206     emptyText : "",
207     
208     /**
209      * @cfg {String} text to display on mask (default Loading)
210      */
211     mask : false,
212     /**
213      * @cfg {Boolean} multiSelect Allow multiple selection
214      */
215     multiSelect : false,
216     /**
217      * @cfg {Boolean} singleSelect Allow single selection
218      */
219     singleSelect:  false,
220     
221     /**
222      * @cfg {Boolean} toggleSelect - selecting 
223      */
224     toggleSelect : false,
225     
226     /**
227      * @cfg {Boolean} tickable - selecting 
228      */
229     tickable : false,
230     
231     /**
232      * Returns the element this view is bound to.
233      * @return {Roo.Element}
234      */
235     getEl : function(){
236         return this.wrapEl;
237     },
238     
239     
240
241     /**
242      * Refreshes the view. - called by datachanged on the store. - do not call directly.
243      */
244     refresh : function(){
245         Roo.log('refresh');
246         var t = this.tpl;
247         
248         // if we are using something like 'domtemplate', then
249         // the what gets used is:
250         // t.applySubtemplate(NAME, data, wrapping data..)
251         // the outer template then get' applied with
252         //     the store 'extra data'
253         // and the body get's added to the
254         //      roo-name="data" node?
255         //      <span class='roo-tpl-{name}'></span> ?????
256         
257         
258         
259         this.clearSelections();
260         this.el.update("");
261         var html = [];
262         var records = this.store.getRange();
263         if(records.length < 1) {
264             
265             // is this valid??  = should it render a template??
266             
267             this.el.update(this.emptyText);
268             return;
269         }
270         var el = this.el;
271         if (this.dataName) {
272             this.el.update(t.apply(this.store.meta)); //????
273             el = this.el.child('.roo-tpl-' + this.dataName);
274         }
275         
276         for(var i = 0, len = records.length; i < len; i++){
277             var data = this.prepareData(records[i].data, i, records[i]);
278             this.fireEvent("preparedata", this, data, i, records[i]);
279             
280             var d = Roo.apply({}, data);
281             
282             if(this.tickable){
283                 Roo.apply(d, {'roo-id' : Roo.id()});
284             }
285             Roo.log(this.parent);
286 //            Roo.each(this.tickItems, function(item){
287 //                
288 //            });
289             
290             html[html.length] = Roo.util.Format.trim(
291                 this.dataName ?
292                     t.applySubtemplate(this.dataName, d, this.store.meta) :
293                     t.apply(d)
294             );
295         }
296         
297         
298         
299         el.update(html.join(""));
300         this.nodes = el.dom.childNodes;
301         this.updateIndexes(0);
302     },
303     
304
305     /**
306      * Function to override to reformat the data that is sent to
307      * the template for each node.
308      * DEPRICATED - use the preparedata event handler.
309      * @param {Array/Object} data The raw data (array of colData for a data model bound view or
310      * a JSON object for an UpdateManager bound view).
311      */
312     prepareData : function(data, index, record)
313     {
314         this.fireEvent("preparedata", this, data, index, record);
315         return data;
316     },
317
318     onUpdate : function(ds, record){
319          Roo.log('on update');   
320         this.clearSelections();
321         var index = this.store.indexOf(record);
322         var n = this.nodes[index];
323         this.tpl.insertBefore(n, this.prepareData(record.data, index, record));
324         n.parentNode.removeChild(n);
325         this.updateIndexes(index, index);
326     },
327
328     
329     
330 // --------- FIXME     
331     onAdd : function(ds, records, index)
332     {
333         Roo.log(['on Add', ds, records, index] );        
334         this.clearSelections();
335         if(this.nodes.length == 0){
336             this.refresh();
337             return;
338         }
339         var n = this.nodes[index];
340         for(var i = 0, len = records.length; i < len; i++){
341             var d = this.prepareData(records[i].data, i, records[i]);
342             if(n){
343                 this.tpl.insertBefore(n, d);
344             }else{
345                 
346                 this.tpl.append(this.el, d);
347             }
348         }
349         this.updateIndexes(index);
350     },
351
352     onRemove : function(ds, record, index){
353         Roo.log('onRemove');
354         this.clearSelections();
355         var el = this.dataName  ?
356             this.el.child('.roo-tpl-' + this.dataName) :
357             this.el; 
358         
359         el.dom.removeChild(this.nodes[index]);
360         this.updateIndexes(index);
361     },
362
363     /**
364      * Refresh an individual node.
365      * @param {Number} index
366      */
367     refreshNode : function(index){
368         this.onUpdate(this.store, this.store.getAt(index));
369     },
370
371     updateIndexes : function(startIndex, endIndex){
372         var ns = this.nodes;
373         startIndex = startIndex || 0;
374         endIndex = endIndex || ns.length - 1;
375         for(var i = startIndex; i <= endIndex; i++){
376             ns[i].nodeIndex = i;
377         }
378     },
379
380     /**
381      * Changes the data store this view uses and refresh the view.
382      * @param {Store} store
383      */
384     setStore : function(store, initial){
385         if(!initial && this.store){
386             this.store.un("datachanged", this.refresh);
387             this.store.un("add", this.onAdd);
388             this.store.un("remove", this.onRemove);
389             this.store.un("update", this.onUpdate);
390             this.store.un("clear", this.refresh);
391             this.store.un("beforeload", this.onBeforeLoad);
392             this.store.un("load", this.onLoad);
393             this.store.un("loadexception", this.onLoad);
394         }
395         if(store){
396           
397             store.on("datachanged", this.refresh, this);
398             store.on("add", this.onAdd, this);
399             store.on("remove", this.onRemove, this);
400             store.on("update", this.onUpdate, this);
401             store.on("clear", this.refresh, this);
402             store.on("beforeload", this.onBeforeLoad, this);
403             store.on("load", this.onLoad, this);
404             store.on("loadexception", this.onLoad, this);
405         }
406         
407         if(store){
408             this.refresh();
409         }
410     },
411     /**
412      * onbeforeLoad - masks the loading area.
413      *
414      */
415     onBeforeLoad : function(store,opts)
416     {
417          Roo.log('onBeforeLoad');   
418         if (!opts.add) {
419             this.el.update("");
420         }
421         this.el.mask(this.mask ? this.mask : "Loading" ); 
422     },
423     onLoad : function ()
424     {
425         this.el.unmask();
426     },
427     
428
429     /**
430      * Returns the template node the passed child belongs to or null if it doesn't belong to one.
431      * @param {HTMLElement} node
432      * @return {HTMLElement} The template node
433      */
434     findItemFromChild : function(node){
435         var el = this.dataName  ?
436             this.el.child('.roo-tpl-' + this.dataName,true) :
437             this.el.dom; 
438         
439         if(!node || node.parentNode == el){
440                     return node;
441             }
442             var p = node.parentNode;
443             while(p && p != el){
444             if(p.parentNode == el){
445                 return p;
446             }
447             p = p.parentNode;
448         }
449             return null;
450     },
451
452     /** @ignore */
453     onClick : function(e){
454         var item = this.findItemFromChild(e.getTarget());
455         if(item){
456             var index = this.indexOf(item);
457             if(this.onItemClick(item, index, e) !== false){
458                 this.fireEvent("click", this, index, item, e);
459             }
460         }else{
461             this.clearSelections();
462         }
463     },
464
465     /** @ignore */
466     onContextMenu : function(e){
467         var item = this.findItemFromChild(e.getTarget());
468         if(item){
469             this.fireEvent("contextmenu", this, this.indexOf(item), item, e);
470         }
471     },
472
473     /** @ignore */
474     onDblClick : function(e){
475         var item = this.findItemFromChild(e.getTarget());
476         if(item){
477             this.fireEvent("dblclick", this, this.indexOf(item), item, e);
478         }
479     },
480
481     onItemClick : function(item, index, e)
482     {
483         if(this.fireEvent("beforeclick", this, index, item, e) === false){
484             return false;
485         }
486         if (this.toggleSelect) {
487             var m = this.isSelected(item) ? 'unselect' : 'select';
488             Roo.log(m);
489             var _t = this;
490             _t[m](item, true, false);
491             return true;
492         }
493         if(this.multiSelect || this.singleSelect){
494             if(this.multiSelect && e.shiftKey && this.lastSelection){
495                 this.select(this.getNodes(this.indexOf(this.lastSelection), index), false);
496             }else{
497                 this.select(item, this.multiSelect && e.ctrlKey);
498                 this.lastSelection = item;
499             }
500             
501             if(!this.tickable){
502                 e.preventDefault();
503             }
504             
505         }
506         return true;
507     },
508
509     /**
510      * Get the number of selected nodes.
511      * @return {Number}
512      */
513     getSelectionCount : function(){
514         return this.selections.length;
515     },
516
517     /**
518      * Get the currently selected nodes.
519      * @return {Array} An array of HTMLElements
520      */
521     getSelectedNodes : function(){
522         return this.selections;
523     },
524
525     /**
526      * Get the indexes of the selected nodes.
527      * @return {Array}
528      */
529     getSelectedIndexes : function(){
530         var indexes = [], s = this.selections;
531         for(var i = 0, len = s.length; i < len; i++){
532             indexes.push(s[i].nodeIndex);
533         }
534         return indexes;
535     },
536
537     /**
538      * Clear all selections
539      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange event
540      */
541     clearSelections : function(suppressEvent){
542         if(this.nodes && (this.multiSelect || this.singleSelect) && this.selections.length > 0){
543             this.cmp.elements = this.selections;
544             this.cmp.removeClass(this.selectedClass);
545             this.selections = [];
546             if(!suppressEvent){
547                 this.fireEvent("selectionchange", this, this.selections);
548             }
549         }
550     },
551
552     /**
553      * Returns true if the passed node is selected
554      * @param {HTMLElement/Number} node The node or node index
555      * @return {Boolean}
556      */
557     isSelected : function(node){
558         var s = this.selections;
559         if(s.length < 1){
560             return false;
561         }
562         node = this.getNode(node);
563         return s.indexOf(node) !== -1;
564     },
565
566     /**
567      * Selects nodes.
568      * @param {Array/HTMLElement/String/Number} nodeInfo An HTMLElement template node, index of a template node, id of a template node or an array of any of those to select
569      * @param {Boolean} keepExisting (optional) true to keep existing selections
570      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange vent
571      */
572     select : function(nodeInfo, keepExisting, suppressEvent){
573         if(nodeInfo instanceof Array){
574             if(!keepExisting){
575                 this.clearSelections(true);
576             }
577             for(var i = 0, len = nodeInfo.length; i < len; i++){
578                 this.select(nodeInfo[i], true, true);
579             }
580             return;
581         } 
582         var node = this.getNode(nodeInfo);
583         if(!node || this.isSelected(node)){
584             return; // already selected.
585         }
586         if(!keepExisting){
587             this.clearSelections(true);
588         }
589         if(this.fireEvent("beforeselect", this, node, this.selections) !== false){
590             Roo.fly(node).addClass(this.selectedClass);
591             this.selections.push(node);
592             if(!suppressEvent){
593                 this.fireEvent("selectionchange", this, this.selections);
594             }
595         }
596         
597         
598     },
599       /**
600      * Unselects nodes.
601      * @param {Array/HTMLElement/String/Number} nodeInfo An HTMLElement template node, index of a template node, id of a template node or an array of any of those to select
602      * @param {Boolean} keepExisting (optional) true IGNORED (for campatibility with select)
603      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange vent
604      */
605     unselect : function(nodeInfo, keepExisting, suppressEvent)
606     {
607         if(nodeInfo instanceof Array){
608             Roo.each(this.selections, function(s) {
609                 this.unselect(s, nodeInfo);
610             }, this);
611             return;
612         }
613         var node = this.getNode(nodeInfo);
614         if(!node || !this.isSelected(node)){
615             Roo.log("not selected");
616             return; // not selected.
617         }
618         // fireevent???
619         var ns = [];
620         Roo.each(this.selections, function(s) {
621             if (s == node ) {
622                 Roo.fly(node).removeClass(this.selectedClass);
623
624                 return;
625             }
626             ns.push(s);
627         },this);
628         
629         this.selections= ns;
630         this.fireEvent("selectionchange", this, this.selections);
631     },
632
633     /**
634      * Gets a template node.
635      * @param {HTMLElement/String/Number} nodeInfo An HTMLElement template node, index of a template node or the id of a template node
636      * @return {HTMLElement} The node or null if it wasn't found
637      */
638     getNode : function(nodeInfo){
639         if(typeof nodeInfo == "string"){
640             return document.getElementById(nodeInfo);
641         }else if(typeof nodeInfo == "number"){
642             return this.nodes[nodeInfo];
643         }
644         return nodeInfo;
645     },
646
647     /**
648      * Gets a range template nodes.
649      * @param {Number} startIndex
650      * @param {Number} endIndex
651      * @return {Array} An array of nodes
652      */
653     getNodes : function(start, end){
654         var ns = this.nodes;
655         start = start || 0;
656         end = typeof end == "undefined" ? ns.length - 1 : end;
657         var nodes = [];
658         if(start <= end){
659             for(var i = start; i <= end; i++){
660                 nodes.push(ns[i]);
661             }
662         } else{
663             for(var i = start; i >= end; i--){
664                 nodes.push(ns[i]);
665             }
666         }
667         return nodes;
668     },
669
670     /**
671      * Finds the index of the passed node
672      * @param {HTMLElement/String/Number} nodeInfo An HTMLElement template node, index of a template node or the id of a template node
673      * @return {Number} The index of the node or -1
674      */
675     indexOf : function(node){
676         node = this.getNode(node);
677         if(typeof node.nodeIndex == "number"){
678             return node.nodeIndex;
679         }
680         var ns = this.nodes;
681         for(var i = 0, len = ns.length; i < len; i++){
682             if(ns[i] == node){
683                 return i;
684             }
685         }
686         return -1;
687     }
688 });