roojs-ui.js
[roojs1] / Roo / data / ArrayReader.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.data.ArrayReader
14  * @extends Roo.data.DataReader
15  * Data reader class to create an Array of Roo.data.Record objects from an Array.
16  * Each element of that Array represents a row of data fields. The
17  * fields are pulled into a Record object using as a subscript, the <em>mapping</em> property
18  * of the field definition if it exists, or the field's ordinal position in the definition.<br>
19  * <p>
20  * Example code:.
21  * <pre><code>
22 var RecordDef = Roo.data.Record.create([
23     {name: 'name', mapping: 1},         // "mapping" only needed if an "id" field is present which
24     {name: 'occupation', mapping: 2}    // precludes using the ordinal position as the index.
25 ]);
26 var myReader = new Roo.data.ArrayReader({
27     id: 0                     // The subscript within row Array that provides an ID for the Record (optional)
28 }, RecordDef);
29 </code></pre>
30  * <p>
31  * This would consume an Array like this:
32  * <pre><code>
33 [ [1, 'Bill', 'Gardener'], [2, 'Ben', 'Horticulturalist'] ]
34   </code></pre>
35  
36  * @constructor
37  * Create a new JsonReader
38  * @param {Object} meta Metadata configuration options.
39  * @param {Object|Array} recordType Either an Array of field definition objects
40  * 
41  * @cfg {Array} fields Array of field definition objects
42  * @cfg {String} id Name of the property within a row object that contains a record identifier value.
43  * as specified to {@link Roo.data.Record#create},
44  * or an {@link Roo.data.Record} object
45  *
46  * 
47  * created using {@link Roo.data.Record#create}.
48  */
49 Roo.data.ArrayReader = function(meta, recordType)
50 {    
51     Roo.data.ArrayReader.superclass.constructor.call(this, meta, recordType||meta.fields);
52 };
53
54 Roo.extend(Roo.data.ArrayReader, Roo.data.JsonReader, {
55     
56     readerType : 'Array',
57     /**
58      * Create a data block containing Roo.data.Records from an XML document.
59      * @param {Object} o An Array of row objects which represents the dataset.
60      * @return {Object} A data block which is used by an {@link Roo.data.Store} object as
61      * a cache of Roo.data.Records.
62      */
63     readRecords : function(o)
64     {
65         var sid = this.meta ? this.meta.id : null;
66         var recordType = this.recordType, fields = recordType.prototype.fields;
67         var records = [];
68         var root = o;
69         for(var i = 0; i < root.length; i++){
70                 var n = root[i];
71             var values = {};
72             var id = ((sid || sid === 0) && n[sid] !== undefined && n[sid] !== "" ? n[sid] : null);
73             for(var j = 0, jlen = fields.length; j < jlen; j++){
74                 var f = fields.items[j];
75                 var k = f.mapping !== undefined && f.mapping !== null ? f.mapping : j;
76                 var v = n[k] !== undefined ? n[k] : f.defaultValue;
77                 v = f.convert(v);
78                 values[f.name] = v;
79             }
80             var record = new recordType(values, id);
81             record.json = n;
82             records[records.length] = record;
83         }
84         return {
85             records : records,
86             totalRecords : records.length
87         };
88     }
89 });