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