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