dbgenerate.js
[app.Builder.js] / dbgenerate.js
1 //<script type="text/javascript">
2
3 /**
4  * This is a hacky generator to generate element definitions for the Roo version from the database
5  * 
6  * Let's see if libgda can be used to generate our Readers for roo...
7  * 
8  * Concept - conect to database..
9  * 
10  * list tables
11  * 
12  * extra schemas..
13  * 
14  * write readers..
15  * 
16  * usage: seed generate.js
17  *
18  *
19  *
20  *
21  *Hack needed to latest GLib-2.0.gir 
22  *
23  * <record name="KeyFile" c:type="GKeyFile" disguised="1">
24         <constructor name="new" c:identifier="g_key_file_new">
25         <return-value transfer-ownership="full">
26           <type name="KeyFile" c:type="GKeyFile*"/>
27         </return-value>
28       </constructor>
29  *
30  *
31  * remove introspectable =0 from g_key_file_get_groups
32  *   and add transfer-owneership = none to return value
33  * remove introspectable =0 from g_key_file_get_keys
34  *   and add transfer-owneership = none to return value* 
35  * 
36  */
37 Gda  = imports.gi.Gda;
38 GObject = imports.gi.GObject;
39
40 GLib = imports.gi.GLib;
41
42 console = imports.console;
43 File = imports.File.File;
44 Options = imports.Options.Options;
45
46 //Gda.init();
47
48 var prov = Gda.Config.list_providers ();
49 //print(prov.dump_as_string());
50
51 var o = new Options({
52     help_description : 'Element builder for App Builder based on database schema',
53     
54     options:  [
55         { arg_long : 'DBTYPE' , arg_short : 't', description : 'Database Type (eg. MySQL or PostgreSQL ' },
56         { arg_long : 'DBNAME' , arg_short : 'd', description : 'Database Name' },
57         { arg_long : 'USERNAME' , arg_short : 'u', description : 'Username'},
58         { arg_long : 'PASSWORD' , arg_short : 'p', description : '' , arg_default :'' },
59         { arg_long : 'INI' , arg_short : 'I', description :
60                     'Either base directory which has Pman/***/DataObjects/***.links.ini or location of ini file.' },
61     ]
62            
63 })
64
65
66
67 var cfg = o.parse(Seed.argv);
68 print(JSON.stringify(cfg, null,4));
69
70 var   cnc = Gda.Connection.open_from_string (cfg.DBTYPE,
71          "DB_NAME=" + cfg.DBNAME, 
72         "USERNAME=" + cfg.USERNAME + ';PASSWORD=' + cfg.PASSWORD,
73         Gda.ConnectionOptions.NONE, null);
74
75
76
77                                               
78
79  
80 Gda.DataSelect.prototype.fetchAll = function()
81 {
82     var cols = [];
83     
84     for (var i =0;i < this.get_n_columns(); i++) {
85         cols.push(this.get_column_name(i));
86     }
87     //print(JSON.stringify(cols, null,4));
88     var iter = this.create_iter();
89     var res = [];
90     //print(this.get_n_rows());
91     var _this = this;
92     for (var r = 0; r < this.get_n_rows(); r++) {
93         
94         // single clo..
95         //print("GOT ROW");
96         if (cols.length == 1) {
97             res.push(this.get_value_at(0,r).get_string());
98             continue;
99         }
100         var add = { };
101         
102         cols.forEach(function(n,i) {
103             var val = _this.get_value_at(i,r);
104             var type = GObject.type_name(val.g_type) ;
105             var vs = ['GdaBinary', 'GdaBlob' ].indexOf(type) > -1 ? val.value.to_string(1024) : val.value;
106             //print(n + " : TYPE: " + GObject.type_name(val.g_type) + " : " + vs);
107             //print (n + '=' + iter.get_value_at(i).value);
108             add[n] = vs;
109         });
110         
111         res.push(add);
112         
113     }
114     return res;
115
116 }
117
118 var map = {
119     'date' : 'date',
120     'datetime' : 'date',
121     'timestamp with time zone' : 'date',
122     'timestamp without time zone' : 'date',
123     'time' : 'string', //bogus
124     'int' : 'int',
125     'integer' : 'int',
126     'bigint' : 'int',
127     'double' : 'float',
128     'tinyint' : 'int',
129     'smallint' : 'int',
130     'decimal' : 'float',
131     'float' : 'float',
132     'numeric' : 'float',
133     'char' : 'string',
134     'character' : 'string',
135     'character varying' : 'string',
136     'varchar' : 'string',
137     'text' : 'string',
138     'longtext' : 'string',
139     'tinytext' : 'string',
140     'mediumtext' : 'string',
141     'enum' : 'string',
142     'timestamp' : 'number',
143     'blob' : 'text',
144     'bytea' : 'text',
145     'boolean' : 'int',
146     'text[]' : 'string',
147     
148 }
149
150 var ini = { }
151
152 function readIni(fn)
153 {
154     print('Read INI : ' + fn);
155     var key_file = new GLib.KeyFile.c_new();
156     if (!key_file.load_from_file (fn , GLib.KeyFileFlags.NONE )) {
157         return;
158     }
159    
160     var groups = key_file.get_groups();
161     groups.forEach(function(g) {
162         ini[g] = {}
163            print("KEY:"+g);
164         var keys = key_file.get_keys(g);
165         if (!keys) { return; }
166          keys.forEach(function(k) {
167             ini[g][k] = key_file.get_value(g,k);
168         })
169     })
170     
171 }
172 if (File.isFile(cfg.INI)) {
173     if (cfg.INI.match(/links\.ini$/)) {
174         readIni(cfg.INI);
175     } else {
176         readIni(cfg.INI.replace(/\.ini$/, ".links.ini"));
177     }
178 }
179
180
181 if (File.isDirectory(cfg.INI)) {
182         
183
184     //--- load ini files..
185     // this is very specific.
186     
187     var dirs = File.list( cfg.INI + '/Pman').filter( 
188         function(e) { 
189             if (!File.isDirectory(cfg.INI + '/Pman/' + e + '/DataObjects')) {
190                 return false;
191             }
192             return true;
193         }
194     );
195     
196      
197     dirs.forEach(function(d) {
198         // this currently misses the web.*/Pman/XXXX/DataObjects..
199         var path = cfg.INI + '/Pman/' + d + '/DataObjects';
200          
201         if (!File.isDirectory(path)) {
202             return; //skip
203         }
204         var inis = File.list(path).filter(
205             function(e) { return e.match(/\.links\.ini$/); }
206         );
207         if (!inis.length) {
208             return;
209         }
210         
211         inis.forEach(function(i) {
212             readIni(path + '/' + i); 
213             
214         })
215  
216     });
217     // look at web.XXXX/Pman/XXX/DataObjects/*.ini
218     var inis = File.list(cfg.INI).filter(
219         function(e) { return e.match(/\.links\.ini$/); }
220     )
221     
222      inis.forEach(function(i) {
223         readIni(path + '/' + i); 
224         
225     })
226     
227     
228 }
229 //print(JSON.stringify(ini, null,4));
230  //console.dump(ini);
231
232
233  //Seed.quit();
234
235 //GLib.key_file_load_from_file (key_file, String file, KeyFileFlags flags) : Boolean
236
237
238 switch(cfg.DBTYPE) {
239     case "MySQL":
240         query_tables = "SHOW TABLES";
241         query_describe_table = "DESCRIBE `%s`";
242         break;
243     
244     case 'PostgreSQL':
245         query_tables = "select c.relname FROM pg_catalog.pg_class c " + 
246             "LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace " + 
247             "WHERE c.relkind IN ('r','') AND n.nspname NOT IN ('pg_catalog', 'pg_toast')" +
248             "AND pg_catalog.pg_table_is_visible(c.oid) ";
249          query_describe_table =  
250                 "SELECT " +
251                 "f.attnum AS number, " +
252                 "f.attname AS Field, " +
253                 "f.attnum, " +
254                 "CASE WHEN f.attnotnull = 't' THEN 'NO' ELSE 'YES' END AS isNull, " + 
255                 "pg_catalog.format_type(f.atttypid,f.atttypmod) AS Type, " +
256                 "CASE WHEN p.contype = 'p' THEN 't' ELSE 'f' END AS primarykey, " +
257                 "CASE WHEN p.contype = 'u' THEN 't' ELSE 'f' END AS uniquekey, " +
258                 "CASE WHEN p.contype = 'f' THEN g.relname END AS foreignkey, " +
259                 "CASE WHEN p.contype = 'f' THEN p.confkey END AS foreignkey_fieldnum, " +
260                 "CASE WHEN p.contype = 'f' THEN g.relname END AS foreignkey, " +
261                 "CASE WHEN p.contype = 'f' THEN p.conkey END AS foreignkey_connnum, " +
262                 "CASE WHEN f.atthasdef = 't' THEN d.adsrc END AS default " +
263                 "FROM pg_attribute f JOIN pg_class c ON c.oid = f.attrelid " +
264                 "        JOIN pg_type t ON t.oid = f.atttypid " +
265                 "        LEFT JOIN pg_attrdef d ON d.adrelid = c.oid AND d.adnum = f.attnum " +
266                 "        LEFT JOIN pg_namespace n ON n.oid = c.relnamespace " +
267                 "        LEFT JOIN pg_constraint p ON p.conrelid = c.oid AND f.attnum = ANY ( p.conkey ) " +
268                 "        LEFT JOIN pg_class AS g ON p.confrelid = g.oid " +
269                 "WHERE c.relkind = 'r'::char AND n.nspname = '%n' " +
270                 "AND c.relname = '%s' AND f.attnum > 0 ORDER BY number";
271                 
272                 
273                 
274         break;
275 /*
276            "Field": "province",
277         "Type": "varchar(255)",
278         "Null": "NO", << or is null
279         "Key": null,
280         "Default": null,
281         "Extra": 
282 */  
283 }
284
285
286  
287
288 var tables = Gda.execute_select_command(cnc, query_tables).fetchAll();
289 print(JSON.stringify(tables));
290
291 var readers = [];
292 tables.forEach(function(table) {
293     //print(table);
294     var schema = Gda.execute_select_command(cnc,
295             query_describe_table.replace(/%s/, table).replace(/%n/,'public')
296             ).fetchAll();
297     
298     
299     var reader = []; 
300     var colmodel = []; 
301     var combofields= [ { name : 'id', type: 'int' } ]; // technically the primary key..
302          
303     var form = {}
304        
305     var firstTxtCol = '';
306     
307     //print(JSON.stringify(schema, null,4));    Seed.quit();
308     
309     schema.forEach(function(e)  {
310         e.Type = e.type;
311         e.Field = e.field;
312          
313         var type = e.Type.match(/([^(]+)\(([^\)]+)\)/);
314         var row  = { }; 
315         if (type) {
316             e.Type = type[1];
317             e.Size = type[2];
318         }
319         
320         
321         
322         row.name = e.Field;
323         
324         
325         if (typeof(map[e.Type]) == 'undefined') {
326            console.dump(e);
327            throw {
328                 name: "ArgumentError", 
329                 message: "Unknown mapping for type : " + e.Type
330             };
331         }
332         row.type = map[e.Type];
333         
334         if (row.type == 'string' && !firstTxtCol.length) {
335             firstTxtCol = row.name;
336         }
337         
338         if (row.type == 'date') {
339             row.dateFormat = 'Y-m-d';
340         }
341         reader.push(row);
342         
343         if (combofields.length == 1 && row.type == 'string') {
344             combofields.push(row);
345         }
346         
347         
348         var title = row.name.replace(/_id/, '').replace(/_/g, ' ');
349         title  = title[0].toUpperCase() + title.substring(1);
350         
351         colmodel.push({
352             "xtype": "ColumnModel",
353             "header": title,
354             "width":  row.type == 'string' ? 200 : 75,
355             "dataIndex": row.name,
356             "|renderer": row.type != 'date' ? 
357                     "function(v) { return String.format('{0}', v); }" :
358                     "function(v) { return String.format('{0}', v ? v.format('d/M/Y') : ''); }" , // special for date
359             "|xns": "Roo.grid",
360             "*prop": "colModel[]"
361         });
362         var xtype = 'TextField';
363         
364         
365         if (row.type == 'number') {
366             xtype = 'NumberField';
367         }
368         if (row.type == 'date') {
369             xtype = 'DateField';
370         }
371         if (e.Type == 'text') {
372             xtype = 'TextArea';
373         }
374         if (row.name == 'id') {
375             xtype = 'Hidden';
376         } 
377         // what about booleans.. -> checkboxes..
378         
379         
380         
381         form[row.name] = {
382             fieldLabel : title,
383             name : row.name,
384             width : row.type == 'string' ? 200 : 75,
385             '|xns' : 'Roo.form',
386             xtype : xtype
387         }
388          if (xtype == 'DateField') {
389             form[row.name].format = 'Y-m-d';
390         }
391         
392         if (xtype == 'TextArea') {
393             form[row.name].height = 100;
394         }
395         if (xtype == 'Hidden') {
396             delete form[row.name].fieldLabel;
397             delete form[row.name].width;
398         }
399         
400     });
401     
402     var combo = {
403         '|xns' : 'Roo.form',
404         xtype: 'ComboBox',
405         allowBlank : false,
406         editable : false,
407         emptyText : 'Select ' + table,
408         forceSelection : true,
409         listWidth : 400,
410         loadingText: 'Searching...',
411         minChars : 2,
412         pageSize : 20,
413         qtip: 'Select ' + table,
414         selectOnFocus: true,
415         triggerAction : 'all',
416         typeAhead: true,
417         
418         width: 300,
419         
420         
421         
422         tpl : '<div class="x-grid-cell-text x-btn button"><b>{name}</b> </div>', // SET WHEN USED
423         queryParam : '',// SET WHEN USED
424         fieldLabel : table,  // SET WHEN USED
425         valueField : 'id',
426         displayField : '', // SET WHEN USED eg. project_id_name
427         hiddenName : '', // SET WHEN USED eg. project_id
428         name : '', // SET WHEN USED eg. project_id_name
429         items : [
430             {
431                     
432                 '*prop' : 'store',
433                 'xtype' : 'Store',
434                 '|xns' : 'Roo.data',
435                 'remoteSort' : true,
436                 '|sortInfo' : '{ direction : \'ASC\', field: \'id\' }',
437                 listeners : {
438                     '|beforeload' : 'function (_self, o)' +
439                     "{\n" +
440                     "    o.params = o.params || {};\n" +
441                     "    // set more here\n" +
442                     "}\n"
443                 },
444                 items : [
445                     {
446                         '*prop' : 'proxy',
447                         'xtype' : 'HttpProxy',
448                         'method' : 'GET',
449                         '|xns' : 'Roo.data',
450                         '|url' : "baseURL + '/Roo/" + table + ".php'",
451                     },
452                     
453                     {
454                         '*prop' : 'reader',
455                         'xtype' : 'JsonReader',
456                         '|xns' : 'Roo.data',
457                         'id' : 'id',
458                         'root' : 'data',
459                         'totalProperty' : 'total',
460                         '|fields' : JSON.stringify(combofields)
461                         
462                     }
463                 ]
464             }
465         ]
466     }
467     
468     
469     
470     
471     //print(JSON.stringify(reader,null,4));
472     readers.push({
473         table : table ,
474         combo : combo,
475         combofields : combofields,
476         reader :  reader,
477         oreader : JSON.parse(JSON.stringify(reader)), // dupe it..
478         colmodel : colmodel,
479         firstTxtCol : firstTxtCol,
480         form : form
481     });
482     
483     //console.dump(schema );
484     
485      
486 });
487
488
489
490 // merge in the linked tables..
491 readers.forEach(function(reader) {
492     if (typeof(ini[reader.table]) == 'undefined') {
493      
494         return;
495     }
496     print("OVERLAY - " + reader.table);
497     // we have a map..
498     for (var col in ini[reader.table]) {
499         var kv = ini[reader.table][col].split(':');
500         
501         
502         var add = readers.filter(function(r) { return r.table == kv[0] })[0];
503         if (!add) {
504             continue;
505         }
506         // merge in data (eg. project_id => project_id_*****
507      
508         add.oreader.forEach(function(or) {
509             reader.reader.push({
510                 name : col + '_' + or.name,
511                 type : or.type
512             });
513         });
514         
515         // col is mapped to something..
516         var combofields = add.combofields;
517         if (add.combofields.length < 2) {
518             continue;
519         }
520         if (typeof(reader.form[col]) == 'undefined') {
521             print (JSON.stringify(reader.form, null,4));
522             print("missing linked column " + col);
523             continue;
524         }
525         
526         var combofields_name = add.combofields[1].name;
527         var old =   reader.form[col];
528         reader.form[col] = JSON.parse(JSON.stringify(add.combo)); // clone
529         reader.form[col].queryParam  = 'query[' + combofields_name + ']';// SET WHEN USED
530         reader.form[col].fieldLabel = old.fieldLabel;  // SET WHEN USED
531         reader.form[col].hiddenName = old.name; // SET WHEN USED eg. project_id
532         reader.form[col].displayField = combofields_name; // SET WHEN USED eg. project_id
533         reader.form[col].name  = old.name + '_' + combofields_name; // SET WHEN USED eg. project_id_name
534         reader.form[col].tpl = '<div class="x-grid-cell-text x-btn button"><b>{' + combofields_name +'}</b> </div>'; // SET WHEN USED
535         
536              
537     };
538     
539     
540 });
541
542 //readers.forEach(function(reader) {
543 //    delete reader.oreader;
544 //});
545
546  
547
548
549
550 //print(JSON.stringify(readers, null, 4));
551
552 readers.forEach(function(reader) {
553     
554
555     var dir = GLib.get_home_dir() + '/.Builder/Roo.data.JsonReader'; 
556     if (!File.isDirectory(dir)) {
557         print("mkdir " + dir);
558         File.mkdir(dir);
559     }
560     
561     // READERS
562     print("WRITE: " +  dir + '/' + cfg.DBNAME + '_' + reader.table + '.json');
563     
564                 
565     var jreader = {
566         '|xns' : 'Roo.data',
567         xtype : "JsonReader",
568         totalProperty : "total",
569         root : "data",
570         '*prop' : "reader",
571         id : 'id', // maybe no..
572        
573         '|fields' :  JSON.stringify(reader.reader, null,4).replace(/"/g,"'")
574     };
575     
576     File.write(
577         dir + '/' + cfg.DBNAME + '_' + reader.table + '.json',
578         JSON.stringify(jreader, null, 4)
579     )
580     
581     
582     // GRIDS
583     dir = GLib.get_home_dir() + '/.Builder/Roo.GridPanel'; 
584     if (!File.isDirectory(dir)) {
585         print("mkdir " + dir);
586         File.mkdir(dir);
587     }
588     
589
590     print("WRITE: " +  dir + '/' + cfg.DBNAME + '_' + reader.table + '.json');
591     
592     File.write(
593         dir + '/' + cfg.DBNAME + '_' + reader.table + '.json',
594             
595        
596         JSON.stringify({
597             '|xns' : 'Roo',
598             xtype : "GridPanel",
599             "title": reader.table,
600             "fitToframe": true,
601             "fitContainer": true,
602             "tableName": reader.table,
603             "background": true,
604             "region" : 'center',
605             "listeners": {
606                 "|activate": "function() {\n    _this.panel = this;\n    if (_this.grid) {\n        _this.grid.footer.onClick('first');\n    }\n}"
607             },
608             "items": [
609                 {
610                     "*prop": "grid",
611                     "xtype": "Grid",
612                     "autoExpandColumn": reader.firstTxtCol,
613                     "loadMask": true,
614                     "listeners": {
615                         "|render": "function() \n" +
616                             "{\n" +
617                             "    _this.grid = this; \n" +
618                             "    //_this.dialog = Pman.Dialog.FILL_IN\n" +
619                             "    if (_this.panel.active) {\n" +
620                             "       this.footer.onClick('first');\n" +
621                             "    }\n" +
622                             "}",
623                         "|rowdblclick": "function (_self, rowIndex, e)\n" + 
624                             "{\n" + 
625                             "    if (!_this.dialog) return;\n" + 
626                             "    _this.dialog.show( this.getDataSource().getAt(rowIndex), function() {\n" + 
627                             "        _this.grid.footer.onClick('first');\n" + 
628                             "    }); \n" + 
629                             "}\n"
630                     },
631                     "|xns": "Roo.grid",
632
633                     "items": [
634                         {
635                             "*prop": "dataSource",
636                             "xtype": "Store",
637                              remoteSort : true,
638                             '|sortInfo' : "{ field : '" + reader.firstTxtCol  +  "', direction: 'ASC' }", 
639                             "|xns": "Roo.data",
640                             "items": [
641                                 
642                                 {
643                                     "*prop": "proxy",
644                                     "xtype": "HttpProxy",
645                                     "method": "GET",
646                                     "|url": "baseURL + '/Roo/" + reader.table + ".php'",
647                                     "|xns": "Roo.data"
648                                 },
649                                 jreader
650                             ]
651                         },
652                         {
653                             "*prop": "footer",
654                             "xtype": "PagingToolbar",
655                             "pageSize": 25,
656                             "displayInfo": true,
657                             "displayMsg": "Displaying " + reader.table + "{0} - {1} of {2}",
658                             "emptyMsg": "No " + reader.table + " found",
659                             "|xns": "Roo"
660                         },
661                         {
662                             "*prop": "toolbar",
663                             "xtype": "Toolbar",
664                             "|xns": "Roo",
665                             "items": [
666                                 {
667                                     "text": "Add",
668                                     "xtype": "Button",
669                                     "cls": "x-btn-text-icon",
670                                     "|icon": "Roo.rootURL + 'images/default/dd/drop-add.gif'",
671                                     "listeners": {
672                                         "|click": "function()\n"+
673                                             "{\n"+
674                                             "    if (!_this.dialog) return;\n" +
675                                             "    _this.dialog.show( { id : 0 } , function() {\n"+
676                                             "        _this.grid.footer.onClick('first');\n"+
677                                             "   }); \n"+
678                                             "}\n"
679                                     },
680                                     "|xns": "Roo.Toolbar"
681                                 },
682                                 {
683                                     "text": "Edit",
684                                     "xtype": "Button",
685                                     "cls": "x-btn-text-icon",
686                                     "|icon": "Roo.rootURL + 'images/default/tree/leaf.gif'",
687                                     "listeners": {
688                                         "|click": "function()\n"+
689                                             "{\n"+
690                                             "    var s = _this.grid.getSelectionModel().getSelections();\n"+
691                                             "    if (!s.length || (s.length > 1))  {\n"+
692                                             "        Roo.MessageBox.alert(\"Error\", s.length ? \"Select only one Row\" : \"Select a Row\");\n"+
693                                             "        return;\n"+
694                                             "    }\n"+
695                                             "    if (!_this.dialog) return;\n" +
696                                             "    _this.dialog.show(s[0].data, function() {\n"+
697                                             "        _this.grid.footer.onClick('first');\n"+
698                                             "    }); \n"+
699                                             "    \n"+
700                                             "}\n" 
701                                         
702                                     },
703                                     "|xns": "Roo.Toolbar"
704                                 },
705                                 {
706                                     "text": "Delete",
707                                     "cls": "x-btn-text-icon",
708                                     "|icon": "rootURL + '/Pman/templates/images/trash.gif'",
709                                     "xtype": "Button",
710                                     "listeners": {
711                                         "|click": "function()\n"+
712                                             "{\n"+
713                                             "     Pman.genericDelete(_this, '" + reader.table + "'); \n"+
714                                             "}\n"+
715                                             "        "
716                                     },
717                                     "|xns": "Roo.Toolbar"
718                                 }
719                             ]
720                         }, // end toolbar
721                     ].concat( reader.colmodel)
722                 }
723             ]
724             
725             
726         }, null, 4)
727     )
728     
729     /// FORMS..
730     
731     dir = GLib.get_home_dir() + '/.Builder/Roo.form.Form'; 
732     if (!File.isDirectory(dir)) {
733         print("mkdir " + dir);
734         File.mkdir(dir);
735     }
736     var formElements = [];
737     var formHeight = 50;
738     for (var k in reader.form) {
739         if (k == 'id') { // should really do primary key testing..
740             continue;
741         }
742         formHeight += reader.form[k].xtype == 'TextArea' ? 100 : 30;
743         
744         formElements.push(reader.form[k]);
745     }
746     if (reader.form['id']) {
747         formElements.push(reader.form['id']);
748     }
749     
750
751     print("WRITE: " +  dir + '/' + cfg.DBNAME + '_' + reader.table + '.json');
752     var frmCfg = 
753     {
754         '|xns' : 'Roo.form',
755         xtype : "Form",
756         listeners : {
757             "|actioncomplete" : "function(_self,action)\n"+
758                 "{\n"+
759                 "    if (action.type == 'setdata') {\n"+
760                 "       //_this.dialog.el.mask(\"Loading\");\n"+
761                 "       //this.load({ method: 'GET', params: { '_id' : _this.data.id }});\n"+
762                 "       return;\n"+
763                 "    }\n"+
764                 "    if (action.type == 'load') {\n"+
765                 "        _this.dialog.el.unmask();\n"+
766                 "        return;\n"+
767                 "    }\n"+
768                 "    if (action.type =='submit') {\n"+
769                 "    \n"+
770                 "        _this.dialog.el.unmask();\n"+
771                 "        _this.dialog.hide();\n"+
772                 "    \n"+
773                 "         if (_this.callback) {\n"+
774                 "            _this.callback.call(_this, _this.form.getValues());\n"+
775                 "         }\n"+
776                 "         _this.form.reset();\n"+
777                 "         return;\n"+
778                 "    }\n"+
779                 "}\n",
780             
781             "|rendered" : "function (form)\n"+
782                 "{\n"+
783                 "    _this.form= form;\n"+
784                 "}\n"
785         },
786         method : "POST",
787         style : "margin:10px;",
788         "|url" : "baseURL + '/Roo/" + reader.table + ".php'",
789         items : formElements
790     };
791     
792     
793     File.write(
794         dir + '/' + cfg.DBNAME + '_' + reader.table + '.json',
795             
796        
797         JSON.stringify( frmCfg, null, 4)
798     );
799             
800             
801    
802    
803    
804      /// COMBO..
805     
806     dir = GLib.get_home_dir() + '/.Builder/Roo.form.ComboBox'; 
807     if (!File.isDirectory(dir)) {
808         print("mkdir " + dir);
809         File.mkdir(dir);
810     }
811    
812     print("WRITE: " +  dir + '/' + cfg.DBNAME + '_' + reader.table + '.json');
813     
814     File.write(
815         dir + '/' + cfg.DBNAME + '_' + reader.table + '.json',
816             
817        
818         JSON.stringify(reader.combo, null, 4)
819     );
820             
821    
822    
823    
824    
825    
826     // DIALOG.
827    
828    
829     dir = GLib.get_home_dir() + '/.Builder/Roo.LayoutDialog'; 
830     if (!File.isDirectory(dir)) {
831         print("mkdir " + dir);
832         File.mkdir(dir);
833     }
834     var formElements = [];
835     for (var k in reader.form) {
836         if (k == 'id') { // should really do primary key testing..
837             continue;
838         }
839         formElements.push(reader.form[k]);
840     }
841     formElements.push(reader.form['id']);
842
843     print("WRITE: " +  dir + '/' + cfg.DBNAME + '_' + reader.table + '.json');
844     
845     File.write(
846         dir + '/' + cfg.DBNAME + '_' + reader.table + '.json',
847             
848        
849         JSON.stringify({
850        
851             "closable": false,
852             "collapsible": false,
853             "height": formHeight,
854             "resizable": false,
855             "title": "Edit / Create " + reader.table,
856             "width": 400,
857             "modal" : true,
858             "xtype": "LayoutDialog",
859             "|xns": "Roo",
860             "items": [
861                 {
862                     "|xns": "Roo",
863                     "xtype": "LayoutRegion",
864                     "*prop": "center"
865                 },
866                 {
867                     "region": "center",
868                     "xtype": "ContentPanel",
869                     "|xns": "Roo",
870                     "items": [
871                         frmCfg
872                     ]
873                 },
874                 
875                 {
876                     "listeners": {
877                         "click": "function (_self, e)\n{\n    _this.dialog.hide();\n}"
878                     },
879                     "*prop": "buttons[]",
880                     "text": "Cancel",
881                     "xtype": "Button",
882                     "|xns": "Roo"
883                 },
884                 {
885                     "listeners": {
886                         "click": "function (_self, e)\n{\n    // do some checks?\n     \n    \n    _this.dialog.el.mask(\"Saving\");\n    _this.form.doAction(\"submit\");\n\n}"
887                     },
888                     "*prop": "buttons[]",
889                     "text": "Save",
890                     "xtype": "Button",
891                     "|xns": "Roo"
892                 }
893             ]
894         }, null,4)
895     );
896    
897    
898    
899 });
900
901