Roo/form/ComboBoxArray.js
[roojs1] / Roo / JsonView.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.JsonView
14  * @extends Roo.View
15  * Shortcut class to create a JSON + {@link Roo.UpdateManager} template view. Usage:
16 <pre><code>
17 var view = new Roo.JsonView({
18     container: "my-element",
19     tpl: '&lt;div id="{id}"&gt;{foo} - {bar}&lt;/div&gt;', // auto create template
20     multiSelect: true, 
21     jsonRoot: "data" 
22 });
23
24 // listen for node click?
25 view.on("click", function(vw, index, node, e){
26     alert('Node "' + node.id + '" at index: ' + index + " was clicked.");
27 });
28
29 // direct load of JSON data
30 view.load("foobar.php");
31
32 // Example from my blog list
33 var tpl = new Roo.Template(
34     '&lt;div class="entry"&gt;' +
35     '&lt;a class="entry-title" href="{link}"&gt;{title}&lt;/a&gt;' +
36     "&lt;h4&gt;{date} by {author} | {comments} Comments&lt;/h4&gt;{description}" +
37     "&lt;/div&gt;&lt;hr /&gt;"
38 );
39
40 var moreView = new Roo.JsonView({
41     container :  "entry-list", 
42     template : tpl,
43     jsonRoot: "posts"
44 });
45 moreView.on("beforerender", this.sortEntries, this);
46 moreView.load({
47     url: "/blog/get-posts.php",
48     params: "allposts=true",
49     text: "Loading Blog Entries..."
50 });
51 </code></pre>
52
53 * Note: old code is supported with arguments : (container, template, config)
54
55
56  * @constructor
57  * Create a new JsonView
58  * 
59  * @param {Object} config The config object
60  * 
61  */
62 Roo.JsonView = function(config, depreciated_tpl, depreciated_config){
63     
64     
65     Roo.JsonView.superclass.constructor.call(this, config, depreciated_tpl, depreciated_config);
66
67     var um = this.el.getUpdateManager();
68     um.setRenderer(this);
69     um.on("update", this.onLoad, this);
70     um.on("failure", this.onLoadException, this);
71
72     /**
73      * @event beforerender
74      * Fires before rendering of the downloaded JSON data.
75      * @param {Roo.JsonView} this
76      * @param {Object} data The JSON data loaded
77      */
78     /**
79      * @event load
80      * Fires when data is loaded.
81      * @param {Roo.JsonView} this
82      * @param {Object} data The JSON data loaded
83      * @param {Object} response The raw Connect response object
84      */
85     /**
86      * @event loadexception
87      * Fires when loading fails.
88      * @param {Roo.JsonView} this
89      * @param {Object} response The raw Connect response object
90      */
91     this.addEvents({
92         'beforerender' : true,
93         'load' : true,
94         'loadexception' : true
95     });
96 };
97 Roo.extend(Roo.JsonView, Roo.View, {
98     /**
99      * @type {String} The root property in the loaded JSON object that contains the data
100      */
101     jsonRoot : "",
102
103     /**
104      * Refreshes the view.
105      */
106     refresh : function(){
107         this.clearSelections();
108         this.el.update("");
109         var html = [];
110         var o = this.jsonData;
111         if(o && o.length > 0){
112             for(var i = 0, len = o.length; i < len; i++){
113                 var data = this.prepareData(o[i], i, o);
114                 html[html.length] = this.tpl.apply(data);
115             }
116         }else{
117             html.push(this.emptyText);
118         }
119         this.el.update(html.join(""));
120         this.nodes = this.el.dom.childNodes;
121         this.updateIndexes(0);
122     },
123
124     /**
125      * Performs an async HTTP request, and loads the JSON from the response. If <i>params</i> are specified it uses POST, otherwise it uses GET.
126      * @param {Object/String/Function} url The URL for this request, or a function to call to get the URL, or a config object containing any of the following options:
127      <pre><code>
128      view.load({
129          url: "your-url.php",
130          params: {param1: "foo", param2: "bar"}, // or a URL encoded string
131          callback: yourFunction,
132          scope: yourObject, //(optional scope)
133          discardUrl: false,
134          nocache: false,
135          text: "Loading...",
136          timeout: 30,
137          scripts: false
138      });
139      </code></pre>
140      * The only required property is <i>url</i>. The optional properties <i>nocache</i>, <i>text</i> and <i>scripts</i>
141      * are respectively shorthand for <i>disableCaching</i>, <i>indicatorText</i>, and <i>loadScripts</i> and are used to set their associated property on this UpdateManager instance.
142      * @param {String/Object} params (optional) The parameters to pass, as either a URL encoded string "param1=1&amp;param2=2" or an object {param1: 1, param2: 2}
143      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
144      * @param {Boolean} discardUrl (optional) By default when you execute an update the defaultUrl is changed to the last used URL. If true, it will not store the URL.
145      */
146     load : function(){
147         var um = this.el.getUpdateManager();
148         um.update.apply(um, arguments);
149     },
150
151     render : function(el, response){
152         this.clearSelections();
153         this.el.update("");
154         var o;
155         try{
156             o = Roo.util.JSON.decode(response.responseText);
157             if(this.jsonRoot){
158                 
159                 o = o[this.jsonRoot];
160             }
161         } catch(e){
162         }
163         /**
164          * The current JSON data or null
165          */
166         this.jsonData = o;
167         this.beforeRender();
168         this.refresh();
169     },
170
171 /**
172  * Get the number of records in the current JSON dataset
173  * @return {Number}
174  */
175     getCount : function(){
176         return this.jsonData ? this.jsonData.length : 0;
177     },
178
179 /**
180  * Returns the JSON object for the specified node(s)
181  * @param {HTMLElement/Array} node The node or an array of nodes
182  * @return {Object/Array} If you pass in an array, you get an array back, otherwise
183  * you get the JSON object for the node
184  */
185     getNodeData : function(node){
186         if(node instanceof Array){
187             var data = [];
188             for(var i = 0, len = node.length; i < len; i++){
189                 data.push(this.getNodeData(node[i]));
190             }
191             return data;
192         }
193         return this.jsonData[this.indexOf(node)] || null;
194     },
195
196     beforeRender : function(){
197         this.snapshot = this.jsonData;
198         if(this.sortInfo){
199             this.sort.apply(this, this.sortInfo);
200         }
201         this.fireEvent("beforerender", this, this.jsonData);
202     },
203
204     onLoad : function(el, o){
205         this.fireEvent("load", this, this.jsonData, o);
206     },
207
208     onLoadException : function(el, o){
209         this.fireEvent("loadexception", this, o);
210     },
211
212 /**
213  * Filter the data by a specific property.
214  * @param {String} property A property on your JSON objects
215  * @param {String/RegExp} value Either string that the property values
216  * should start with, or a RegExp to test against the property
217  */
218     filter : function(property, value){
219         if(this.jsonData){
220             var data = [];
221             var ss = this.snapshot;
222             if(typeof value == "string"){
223                 var vlen = value.length;
224                 if(vlen == 0){
225                     this.clearFilter();
226                     return;
227                 }
228                 value = value.toLowerCase();
229                 for(var i = 0, len = ss.length; i < len; i++){
230                     var o = ss[i];
231                     if(o[property].substr(0, vlen).toLowerCase() == value){
232                         data.push(o);
233                     }
234                 }
235             } else if(value.exec){ // regex?
236                 for(var i = 0, len = ss.length; i < len; i++){
237                     var o = ss[i];
238                     if(value.test(o[property])){
239                         data.push(o);
240                     }
241                 }
242             } else{
243                 return;
244             }
245             this.jsonData = data;
246             this.refresh();
247         }
248     },
249
250 /**
251  * Filter by a function. The passed function will be called with each
252  * object in the current dataset. If the function returns true the value is kept,
253  * otherwise it is filtered.
254  * @param {Function} fn
255  * @param {Object} scope (optional) The scope of the function (defaults to this JsonView)
256  */
257     filterBy : function(fn, scope){
258         if(this.jsonData){
259             var data = [];
260             var ss = this.snapshot;
261             for(var i = 0, len = ss.length; i < len; i++){
262                 var o = ss[i];
263                 if(fn.call(scope || this, o)){
264                     data.push(o);
265                 }
266             }
267             this.jsonData = data;
268             this.refresh();
269         }
270     },
271
272 /**
273  * Clears the current filter.
274  */
275     clearFilter : function(){
276         if(this.snapshot && this.jsonData != this.snapshot){
277             this.jsonData = this.snapshot;
278             this.refresh();
279         }
280     },
281
282
283 /**
284  * Sorts the data for this view and refreshes it.
285  * @param {String} property A property on your JSON objects to sort on
286  * @param {String} direction (optional) "desc" or "asc" (defaults to "asc")
287  * @param {Function} sortType (optional) A function to call to convert the data to a sortable value.
288  */
289     sort : function(property, dir, sortType){
290         this.sortInfo = Array.prototype.slice.call(arguments, 0);
291         if(this.jsonData){
292             var p = property;
293             var dsc = dir && dir.toLowerCase() == "desc";
294             var f = function(o1, o2){
295                 var v1 = sortType ? sortType(o1[p]) : o1[p];
296                 var v2 = sortType ? sortType(o2[p]) : o2[p];
297                 ;
298                 if(v1 < v2){
299                     return dsc ? +1 : -1;
300                 } else if(v1 > v2){
301                     return dsc ? -1 : +1;
302                 } else{
303                     return 0;
304                 }
305             };
306             this.jsonData.sort(f);
307             this.refresh();
308             if(this.jsonData != this.snapshot){
309                 this.snapshot.sort(f);
310             }
311         }
312     }
313 });