Builder/Provider/File/Base.js
[app.Builder.js] / Builder / Provider / File / Base.js
1 //<Script type="text/javascript">
2
3 console = imports.console;
4 XObject = imports.XObject.XObject;
5
6 Lang = imports.Builder.Provider.File.Lang.Lang;
7
8 File = imports.File.File;
9 // File Provider..
10
11 Base = XObject.define(
12     
13     function(cfg) {
14     
15         XObject.extend(this, cfg);
16     },
17     Object,
18     {
19         
20         id : false,
21         name : false,   // is the JS name of the file.
22         path : '',      // is the full path to the file.
23         parent : false, // JS parent.
24         
25         title : false,  // a title.. ?? nickname.. ??? - 
26         project: false, // name...
27         Project : false, // link to container project!
28         
29         items : false, // the tree of nodes.
30         
31         cn : false, // array used by project tree.
32         
33         
34         save : function()
35         {
36             var write = { }; 
37             var _this = this;
38             var write = this.toJsonArray()
39             print("WRITE: " + this.path);// + "\n" + JSON.stringify(write));
40             File.write(this.path, JSON.stringify(write));
41         },
42         
43         /**
44          * accepts:
45          * { success : , failure : , scope : }
46          * 
47          * 
48          * 
49          */
50          
51         getTree : function( o ) {
52             console.log("File.getTree tree called on base object?!?!");
53         },
54         toJsonArray : function()
55         {
56             var ret = { }; 
57             var _this = this;
58             ['id', 'name', 'parent', 'title', 'path', 'items'].forEach( function(k) {
59                 ret[k] = _this[k];
60             });
61             return ret;
62         },
63         getTitle : function()
64         {
65             if (this.title) {
66                 return this.title;
67             }
68             return this.path.split('/').pop();
69             
70         },
71         getTitleTip: function()
72         {
73             if (this.title) {
74                 return '<b>' + this.title + '</b> ' + this.path;
75             }
76             return this.path;
77         },
78         sortCn: function()
79         {
80             this.cn.sort(function(a,b) {
81                 return a.path > b.path;// ? 1 : -1;
82             });
83         },
84         // should be in palete provider really..
85         
86         guessName : function(ar) // turns the object into full name.
87         {
88              // eg. xns: Roo, xtype: XXX -> Roo.xxx
89             if (typeof( ar['|xns'] ) == 'undefined' || typeof( ar['xtype'] ) == 'undefined') {
90                 return '';
91                }
92              
93             return ar['|xns'] +'.' + ar['xtype'];
94                             
95                                  
96         },
97         
98         /*
99         Roo specific?
100         toSourceStdClass: function()
101         {
102             var cfg = this.items[0]
103             var fcfg = XObject.extend({ },  this.items[0]);
104             delete fcfg['*class'];
105             delete fcfg['*extends'];
106             delete fcfg['*static'];
107             delete fcfg['|constructor'];
108             
109             var hasExtends = (typeof(cfg['*extends']) != 'undefined') && cfg['*extends'].length;
110             var hasConstructor = (typeof(cfg['|constructor']) != 'undefined');
111             var isStatic = (typeof(cfg['*static']) == '*static');
112             
113             var newline = '';
114             var endline = '';
115             if (hasExtends) {
116                 newline =  hasConstructor ? 
117                 
118                  
119                     cfg['//constructor'] + "\n" + 
120                     cfg['*class'] + " = " + cfg['|constructor'] + "\n\n"+ 
121                     "Roo.extend(" + cfg['*class'] + ":, " + cfg['*extends'] + ", " :
122                     
123                     cfg['//*class'] + "\n" + 
124                     cfg['*class'] + " = new " + cfg['*extends'] + "(" ;
125                 
126                 endline = ');';
127             } else {
128                 
129                 
130                 
131                 newline  = hasConstructor ? 
132                 
133                     cfg['//constructor'] + "\n" + 
134                     cfg['*class'] + " = " + cfg['|constructor'] + "\n\n"+ 
135                     'Roo.apply( ' +  cfg['*class'] + ".prototype , " :
136                     
137                     cfg['//*class'] + "\n" + 
138                     cfg['*class'] + " = ";
139                 
140                     
141                 endline = hasConstructor ? ');' : ';';
142             }
143                   
144             return this.outputHeader() + 
145                     newline + 
146                     this.objectToJsString(fcfg,1) +
147                     endline;
148             
149             
150             
151          
152         },
153         */
154         
155         copyTo: function(path, cb)
156         {
157             var _this = this;
158             this.loadItems(function() {
159                 
160                 _this.path = path;
161                 cb();
162             });
163             
164         },
165         
166         /**
167          * 
168          * munge JSON tree into Javascript code.
169          * 
170          * FIXME: + or / prefixes to properties hide it from renderer.
171          * FIXME: '*props' - not supported by this.. ?? - upto rendering code..
172          * FIXME: needs to understand what properties might be translatable (eg. double quotes)
173          * 
174          * @arg {object} obj the object or array to munge..
175          * @arg {boolean} isListener - is the array being sent a listener..
176          * @arg {string} pad - the padding to indent with. 
177          */
178         
179         
180         mungeToString:  function(obj, isListener, pad)
181         {
182             pad = pad || '    ';
183             var keys = [];
184             var isArray = false;
185             isListener = isListener || false;
186              
187             // am I munging a object or array...
188             if (obj.constructor.toString() === Array.toString()) {
189                 for (var i= 0; i < obj.length; i++) {
190                     keys.push(i);
191                 }
192                 isArray = true;
193             } else {
194                 for (var i in obj) {
195                     keys.push(i);
196                 }
197             }
198             
199             
200             var els = []; 
201             var skip = [];
202             if (!isArray && 
203                     typeof(obj['|xns']) != 'undefined' &&
204                     typeof(obj['xtype']) != 'undefined'
205                 ) {
206                     els.push('xtype: '+ obj['|xns'] + '.' + obj['xtype']);
207                     skip.push('|xns','xtype');
208                 }
209             
210             var _this = this;
211             
212             var left =  '';
213             
214             keys.forEach(function(i) {
215                 var el = obj[i];
216                 if (!isArray && skip.indexOf(i) > -1) { // things we do not write..
217                     return;
218                 }
219                 
220                 if (isListener) {
221                     if (!_this.withDebug) {
222                         // do not write listeners unless we are debug mode.
223                         return;
224                     }
225                     //if (obj[i].match(new RegExp("Gtk.main" + "_quit"))) { // we can not handle this very well..
226                     //    return;
227                    // }
228                     var str= ('' + obj[i]).replace(/^\s+|\s+$/g,"");
229                     var lines = str.split("\n");
230                     if (lines.length > 1) {
231                         str = lines.join("\n" + pad);
232                     }
233                     els.push(JSON.stringify(i) + ":" + str);
234                     return;
235                 }
236                 
237                 if (!isArray) {
238                     // set the key to be quoted with singel quotes..
239                     var leftv = i[0] == '|' ? i.substring(1) : i;
240                     if (Lang.isKeyword(leftv) || Lang.isBuiltin(leftv)) {
241                         left = "'" + leftv + "'";
242                     } else if (leftv.match(/[^A-Z_]+/i)) { // not plain a-z... - quoted.
243                         var val = JSON.stringify(leftv);
244                         left = "'" + leftv.substring(1, leftv.length-1).replace(/'/, "\\'") + "'";
245                     } else {
246                         left = '' + leftv;
247                     }
248                     left += ' : ';
249                     
250                 }
251                 
252                 
253                 //var left = isArray ? '' : (JSON.stringify(i) + " : " )
254                 
255                 if (i[0] == '|') {
256                     // does not hapepnd with arrays..
257                     if (typeof(el) == 'string' && !obj[i].length) { //skip empty.
258                         return;
259                     }
260                     // this needs to go...
261                     //if (typeof(el) == 'string'  && obj[i].match(new RegExp("Gtk.main" + "_quit"))) { // we can not handle this very well..
262                     //    return;
263                     //}
264                     
265                     var str= ('' + obj[i]).replace(/^\s+|\s+$/g,"");;
266                     var lines = str.split("\n");
267                     if (lines.length > 1) {
268                         str = lines.join("\n" + pad);
269                     }
270                     
271                     els.push(left + str);
272                     return;
273                 }
274                 
275                 
276                 
277                 
278                 if (typeof(el) == 'object') {
279                     els.push(left + _this.mungeToString(el, i == 'listeners', pad + '    '));
280                     return;
281                 }
282                 // standard. .
283                 
284                 els.push(left + JSON.stringify(obj[i]));
285             });
286             
287             //output the thing.
288             var spad = pad.substring(0, pad.length-4);
289             return (isArray ? '[' : '{') + "\n" +
290                 pad  + els.join(",\n" + pad ) + 
291                 "\n" + spad + (isArray ? ']' : '}');
292                
293             
294             
295         } 
296         
297          
298         
299     }
300 );
301
302
303
304
305
306