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     this.tickItems = [];
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      * @cfg {Boolean} tickable - selecting 
231      */
232     tickable : false,
233     
234     /**
235      * Returns the element this view is bound to.
236      * @return {Roo.Element}
237      */
238     getEl : function(){
239         return this.wrapEl;
240     },
241     
242     
243
244     /**
245      * Refreshes the view. - called by datachanged on the store. - do not call directly.
246      */
247     refresh : function(){
248         Roo.log('refresh');
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             
283             var d = Roo.apply({}, data);
284             
285             if(this.tickable){
286                 Roo.apply(d, {'roo-id' : Roo.id()});
287             }
288             Roo.log(this.tickItems);
289             Roo.log(this.store.getAt(i).data);
290             Roo.log(data);
291             Roo.log(this.tickItems.indexOf(data) * 1);
292             
293             
294             html[html.length] = Roo.util.Format.trim(
295                 this.dataName ?
296                     t.applySubtemplate(this.dataName, d, this.store.meta) :
297                     t.apply(d)
298             );
299         }
300         
301         
302         
303         el.update(html.join(""));
304         this.nodes = el.dom.childNodes;
305         this.updateIndexes(0);
306     },
307     
308
309     /**
310      * Function to override to reformat the data that is sent to
311      * the template for each node.
312      * DEPRICATED - use the preparedata event handler.
313      * @param {Array/Object} data The raw data (array of colData for a data model bound view or
314      * a JSON object for an UpdateManager bound view).
315      */
316     prepareData : function(data, index, record)
317     {
318         this.fireEvent("preparedata", this, data, index, record);
319         return data;
320     },
321
322     onUpdate : function(ds, record){
323          Roo.log('on update');   
324         this.clearSelections();
325         var index = this.store.indexOf(record);
326         var n = this.nodes[index];
327         this.tpl.insertBefore(n, this.prepareData(record.data, index, record));
328         n.parentNode.removeChild(n);
329         this.updateIndexes(index, index);
330     },
331
332     
333     
334 // --------- FIXME     
335     onAdd : function(ds, records, index)
336     {
337         Roo.log(['on Add', ds, records, index] );        
338         this.clearSelections();
339         if(this.nodes.length == 0){
340             this.refresh();
341             return;
342         }
343         var n = this.nodes[index];
344         for(var i = 0, len = records.length; i < len; i++){
345             var d = this.prepareData(records[i].data, i, records[i]);
346             if(n){
347                 this.tpl.insertBefore(n, d);
348             }else{
349                 
350                 this.tpl.append(this.el, d);
351             }
352         }
353         this.updateIndexes(index);
354     },
355
356     onRemove : function(ds, record, index){
357         Roo.log('onRemove');
358         this.clearSelections();
359         var el = this.dataName  ?
360             this.el.child('.roo-tpl-' + this.dataName) :
361             this.el; 
362         
363         el.dom.removeChild(this.nodes[index]);
364         this.updateIndexes(index);
365     },
366
367     /**
368      * Refresh an individual node.
369      * @param {Number} index
370      */
371     refreshNode : function(index){
372         this.onUpdate(this.store, this.store.getAt(index));
373     },
374
375     updateIndexes : function(startIndex, endIndex){
376         var ns = this.nodes;
377         startIndex = startIndex || 0;
378         endIndex = endIndex || ns.length - 1;
379         for(var i = startIndex; i <= endIndex; i++){
380             ns[i].nodeIndex = i;
381         }
382     },
383
384     /**
385      * Changes the data store this view uses and refresh the view.
386      * @param {Store} store
387      */
388     setStore : function(store, initial){
389         if(!initial && this.store){
390             this.store.un("datachanged", this.refresh);
391             this.store.un("add", this.onAdd);
392             this.store.un("remove", this.onRemove);
393             this.store.un("update", this.onUpdate);
394             this.store.un("clear", this.refresh);
395             this.store.un("beforeload", this.onBeforeLoad);
396             this.store.un("load", this.onLoad);
397             this.store.un("loadexception", this.onLoad);
398         }
399         if(store){
400           
401             store.on("datachanged", this.refresh, this);
402             store.on("add", this.onAdd, this);
403             store.on("remove", this.onRemove, this);
404             store.on("update", this.onUpdate, this);
405             store.on("clear", this.refresh, this);
406             store.on("beforeload", this.onBeforeLoad, this);
407             store.on("load", this.onLoad, this);
408             store.on("loadexception", this.onLoad, this);
409         }
410         
411         if(store){
412             this.refresh();
413         }
414     },
415     /**
416      * onbeforeLoad - masks the loading area.
417      *
418      */
419     onBeforeLoad : function(store,opts)
420     {
421          Roo.log('onBeforeLoad');   
422         if (!opts.add) {
423             this.el.update("");
424         }
425         this.el.mask(this.mask ? this.mask : "Loading" ); 
426     },
427     onLoad : function ()
428     {
429         this.el.unmask();
430     },
431     
432
433     /**
434      * Returns the template node the passed child belongs to or null if it doesn't belong to one.
435      * @param {HTMLElement} node
436      * @return {HTMLElement} The template node
437      */
438     findItemFromChild : function(node){
439         var el = this.dataName  ?
440             this.el.child('.roo-tpl-' + this.dataName,true) :
441             this.el.dom; 
442         
443         if(!node || node.parentNode == el){
444                     return node;
445             }
446             var p = node.parentNode;
447             while(p && p != el){
448             if(p.parentNode == el){
449                 return p;
450             }
451             p = p.parentNode;
452         }
453             return null;
454     },
455
456     /** @ignore */
457     onClick : function(e){
458         var item = this.findItemFromChild(e.getTarget());
459         if(item){
460             var index = this.indexOf(item);
461             if(this.onItemClick(item, index, e) !== false){
462                 this.fireEvent("click", this, index, item, e);
463             }
464         }else{
465             this.clearSelections();
466         }
467     },
468
469     /** @ignore */
470     onContextMenu : function(e){
471         var item = this.findItemFromChild(e.getTarget());
472         if(item){
473             this.fireEvent("contextmenu", this, this.indexOf(item), item, e);
474         }
475     },
476
477     /** @ignore */
478     onDblClick : function(e){
479         var item = this.findItemFromChild(e.getTarget());
480         if(item){
481             this.fireEvent("dblclick", this, this.indexOf(item), item, e);
482         }
483     },
484
485     onItemClick : function(item, index, e)
486     {
487         if(this.fireEvent("beforeclick", this, index, item, e) === false){
488             return false;
489         }
490         if (this.toggleSelect) {
491             var m = this.isSelected(item) ? 'unselect' : 'select';
492             Roo.log(m);
493             var _t = this;
494             _t[m](item, true, false);
495             return true;
496         }
497         if(this.multiSelect || this.singleSelect){
498             if(this.multiSelect && e.shiftKey && this.lastSelection){
499                 this.select(this.getNodes(this.indexOf(this.lastSelection), index), false);
500             }else{
501                 this.select(item, this.multiSelect && e.ctrlKey);
502                 this.lastSelection = item;
503             }
504             
505             if(!this.tickable){
506                 e.preventDefault();
507             }
508             
509         }
510         return true;
511     },
512
513     /**
514      * Get the number of selected nodes.
515      * @return {Number}
516      */
517     getSelectionCount : function(){
518         return this.selections.length;
519     },
520
521     /**
522      * Get the currently selected nodes.
523      * @return {Array} An array of HTMLElements
524      */
525     getSelectedNodes : function(){
526         return this.selections;
527     },
528
529     /**
530      * Get the indexes of the selected nodes.
531      * @return {Array}
532      */
533     getSelectedIndexes : function(){
534         var indexes = [], s = this.selections;
535         for(var i = 0, len = s.length; i < len; i++){
536             indexes.push(s[i].nodeIndex);
537         }
538         return indexes;
539     },
540
541     /**
542      * Clear all selections
543      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange event
544      */
545     clearSelections : function(suppressEvent){
546         if(this.nodes && (this.multiSelect || this.singleSelect) && this.selections.length > 0){
547             this.cmp.elements = this.selections;
548             this.cmp.removeClass(this.selectedClass);
549             this.selections = [];
550             if(!suppressEvent){
551                 this.fireEvent("selectionchange", this, this.selections);
552             }
553         }
554     },
555
556     /**
557      * Returns true if the passed node is selected
558      * @param {HTMLElement/Number} node The node or node index
559      * @return {Boolean}
560      */
561     isSelected : function(node){
562         var s = this.selections;
563         if(s.length < 1){
564             return false;
565         }
566         node = this.getNode(node);
567         return s.indexOf(node) !== -1;
568     },
569
570     /**
571      * Selects nodes.
572      * @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
573      * @param {Boolean} keepExisting (optional) true to keep existing selections
574      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange vent
575      */
576     select : function(nodeInfo, keepExisting, suppressEvent){
577         if(nodeInfo instanceof Array){
578             if(!keepExisting){
579                 this.clearSelections(true);
580             }
581             for(var i = 0, len = nodeInfo.length; i < len; i++){
582                 this.select(nodeInfo[i], true, true);
583             }
584             return;
585         } 
586         var node = this.getNode(nodeInfo);
587         if(!node || this.isSelected(node)){
588             return; // already selected.
589         }
590         if(!keepExisting){
591             this.clearSelections(true);
592         }
593         if(this.fireEvent("beforeselect", this, node, this.selections) !== false){
594             Roo.fly(node).addClass(this.selectedClass);
595             this.selections.push(node);
596             if(!suppressEvent){
597                 this.fireEvent("selectionchange", this, this.selections);
598             }
599         }
600         
601         
602     },
603       /**
604      * Unselects nodes.
605      * @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
606      * @param {Boolean} keepExisting (optional) true IGNORED (for campatibility with select)
607      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange vent
608      */
609     unselect : function(nodeInfo, keepExisting, suppressEvent)
610     {
611         if(nodeInfo instanceof Array){
612             Roo.each(this.selections, function(s) {
613                 this.unselect(s, nodeInfo);
614             }, this);
615             return;
616         }
617         var node = this.getNode(nodeInfo);
618         if(!node || !this.isSelected(node)){
619             Roo.log("not selected");
620             return; // not selected.
621         }
622         // fireevent???
623         var ns = [];
624         Roo.each(this.selections, function(s) {
625             if (s == node ) {
626                 Roo.fly(node).removeClass(this.selectedClass);
627
628                 return;
629             }
630             ns.push(s);
631         },this);
632         
633         this.selections= ns;
634         this.fireEvent("selectionchange", this, this.selections);
635     },
636
637     /**
638      * Gets a template node.
639      * @param {HTMLElement/String/Number} nodeInfo An HTMLElement template node, index of a template node or the id of a template node
640      * @return {HTMLElement} The node or null if it wasn't found
641      */
642     getNode : function(nodeInfo){
643         if(typeof nodeInfo == "string"){
644             return document.getElementById(nodeInfo);
645         }else if(typeof nodeInfo == "number"){
646             return this.nodes[nodeInfo];
647         }
648         return nodeInfo;
649     },
650
651     /**
652      * Gets a range template nodes.
653      * @param {Number} startIndex
654      * @param {Number} endIndex
655      * @return {Array} An array of nodes
656      */
657     getNodes : function(start, end){
658         var ns = this.nodes;
659         start = start || 0;
660         end = typeof end == "undefined" ? ns.length - 1 : end;
661         var nodes = [];
662         if(start <= end){
663             for(var i = start; i <= end; i++){
664                 nodes.push(ns[i]);
665             }
666         } else{
667             for(var i = start; i >= end; i--){
668                 nodes.push(ns[i]);
669             }
670         }
671         return nodes;
672     },
673
674     /**
675      * Finds the index of the passed node
676      * @param {HTMLElement/String/Number} nodeInfo An HTMLElement template node, index of a template node or the id of a template node
677      * @return {Number} The index of the node or -1
678      */
679     indexOf : function(node){
680         node = this.getNode(node);
681         if(typeof node.nodeIndex == "number"){
682             return node.nodeIndex;
683         }
684         var ns = this.nodes;
685         for(var i = 0, len = ns.length; i < len; i++){
686             if(ns[i] == node){
687                 return i;
688             }
689         }
690         return -1;
691     }
692 });