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