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 == 'TextArea') {
389             form[row.name].height = 100;
390         }
391         if (xtype == 'Hidden') {
392             delete form[row.name].fieldLabel;
393             delete form[row.name].width;
394         }
395         
396     });
397     
398     var combo = {
399         '|xns' : 'Roo.form',
400         xtype: 'ComboBox',
401         allowBlank : 'false',
402         editable : 'false',
403         emptyText : 'Select ' + table,
404         forceSelection : true,
405         listWidth : 400,
406         loadingText: 'Searching...',
407         minChars : 2,
408         pageSize : 20,
409         qtip: 'Select ' + table,
410         selectOnFocus: true,
411         triggerAction : 'all',
412         typeAhead: true,
413         
414         width: 300,
415         
416         
417         
418         tpl : '<div class="x-grid-cell-text x-btn button"><b>{name}</b> </div>', // SET WHEN USED
419         queryParam : '',// SET WHEN USED
420         fieldLabel : table,  // SET WHEN USED
421         valueField : 'id',
422         displayField : '', // SET WHEN USED eg. project_id_name
423         hiddenName : '', // SET WHEN USED eg. project_id
424         name : '', // SET WHEN USED eg. project_id_name
425         items : [
426             {
427                     
428                 '*prop' : 'store',
429                 'xtype' : 'Store',
430                 '|xns' : 'Roo.data',
431                 'remoteSort' : true,
432                 '|sortInfo' : '{ direction : \'ASC\', field: \'id\' }',
433                 listeners : {
434                     '|beforeload' : 'function (_self, o)' +
435                     "{\n" +
436                     "    o.params = o.params || {};\n" +
437                     "    // set more here\n" +
438                     "}\n"
439                 },
440                 items : [
441                     {
442                         '*prop' : 'proxy',
443                         'xtype' : 'HttpProxy',
444                         'method' : 'GET',
445                         '|xns' : 'Roo.data',
446                         '|url' : "baseURL + '/Roo/" + table + ".php'",
447                     },
448                     
449                     {
450                         '*prop' : 'reader',
451                         'xtype' : 'JsonReader',
452                         '|xns' : 'Roo.data',
453                         'id' : 'id',
454                         'root' : 'data',
455                         'totalProperty' : 'total',
456                         '|fields' : JSON.stringify(combofields)
457                         
458                     }
459                 ]
460             }
461         ]
462     }
463     
464     
465     
466     
467     //print(JSON.stringify(reader,null,4));
468     readers.push({
469         table : table ,
470         combo : combo,
471         combofields : combofields,
472         reader :  reader,
473         oreader : JSON.parse(JSON.stringify(reader)), // dupe it..
474         colmodel : colmodel,
475         firstTxtCol : firstTxtCol,
476         form : form
477     });
478     
479     //console.dump(schema );
480     
481      
482 });
483
484
485
486 // merge in the linked tables..
487 readers.forEach(function(reader) {
488     if (typeof(ini[reader.table]) == 'undefined') {
489      
490         return;
491     }
492     print("OVERLAY - " + reader.table);
493     // we have a map..
494     for (var col in ini[reader.table]) {
495         var kv = ini[reader.table][col].split(':');
496         
497         
498         var add = readers.filter(function(r) { return r.table == kv[0] })[0];
499         if (!add) {
500             continue;
501         }
502         // merge in data (eg. project_id => project_id_*****
503      
504         add.oreader.forEach(function(or) {
505             reader.reader.push({
506                 name : col + '_' + or.name,
507                 type : or.type
508             });
509         });
510         
511         // col is mapped to something..
512         var combofields = add.combofields;
513         if (add.combofields.length < 2) {
514             continue;
515         }
516         if (typeof(reader.form[col]) == 'undefined') {
517             print (JSON.stringify(reader.form, null,4));
518             print("missing linked column " + col);
519             continue;
520         }
521         
522         var combofields_name = add.combofields[1].name;
523         var old =   reader.form[col];
524         reader.form[col] = JSON.parse(JSON.stringify(add.combo)); // clone
525         reader.form[col].queryParam  = 'query[' + combofields_name + ']';// SET WHEN USED
526         reader.form[col].fieldLabel = old.fieldLabel;  // SET WHEN USED
527         reader.form[col].hiddenName = old.name; // SET WHEN USED eg. project_id
528         reader.form[col].displayField = combofields_name; // SET WHEN USED eg. project_id
529         reader.form[col].name  = old.name + '_' + combofields_name; // SET WHEN USED eg. project_id_name
530         reader.form[col].tpl = '<div class="x-grid-cell-text x-btn button"><b>{' + combofields_name +'}</b> </div>'; // SET WHEN USED
531         
532              
533     };
534     
535     
536 });
537
538 //readers.forEach(function(reader) {
539 //    delete reader.oreader;
540 //});
541
542  
543
544
545
546 //print(JSON.stringify(readers, null, 4));
547
548 readers.forEach(function(reader) {
549     
550
551     var dir = GLib.get_home_dir() + '/.Builder/Roo.data.JsonReader'; 
552     if (!File.isDirectory(dir)) {
553         print("mkdir " + dir);
554         File.mkdir(dir);
555     }
556     
557     // READERS
558     print("WRITE: " +  dir + '/' + cfg.DBNAME + '_' + reader.table + '.json');
559     
560                 
561     var jreader = {
562         '|xns' : 'Roo.data',
563         xtype : "JsonReader",
564         totalProperty : "total",
565         root : "data",
566         '*prop' : "reader",
567         id : 'id', // maybe no..
568        
569         '|fields' :  JSON.stringify(reader.reader, null,4).replace(/"/g,"'")
570     };
571     
572     File.write(
573         dir + '/' + cfg.DBNAME + '_' + reader.table + '.json',
574         JSON.stringify(jreader, null, 4)
575     )
576     
577     
578     // GRIDS
579     dir = GLib.get_home_dir() + '/.Builder/Roo.GridPanel'; 
580     if (!File.isDirectory(dir)) {
581         print("mkdir " + dir);
582         File.mkdir(dir);
583     }
584     
585
586     print("WRITE: " +  dir + '/' + cfg.DBNAME + '_' + reader.table + '.json');
587     
588     File.write(
589         dir + '/' + cfg.DBNAME + '_' + reader.table + '.json',
590             
591        
592         JSON.stringify({
593             '|xns' : 'Roo',
594             xtype : "GridPanel",
595             "title": reader.table,
596             "fitToframe": true,
597             "fitContainer": true,
598             "tableName": reader.table,
599             "background": true,
600             "region" : 'center',
601             "listeners": {
602                 "|activate": "function() {\n    _this.panel = this;\n    if (_this.grid) {\n        _this.grid.footer.onClick('first');\n    }\n}"
603             },
604             "items": [
605                 {
606                     "*prop": "grid",
607                     "xtype": "Grid",
608                     "autoExpandColumn": reader.firstTxtCol,
609                     "loadMask": true,
610                     "listeners": {
611                         "|render": "function() \n" +
612                             "{\n" +
613                             "    _this.grid = this; \n" +
614                             "    //_this.dialog = Pman.Dialog.FILL_IN\n" +
615                             "    if (_this.panel.active) {\n" +
616                             "       this.footer.onClick('first');\n" +
617                             "    }\n" +
618                             "}",
619                         "|rowdblclick": "function (_self, rowIndex, e)\n" + 
620                             "{\n" + 
621                             "    if (!_this.dialog) return;\n" + 
622                             "    _this.dialog.show( this.getDataSource().getAt(rowIndex), function() {\n" + 
623                             "        _this.grid.footer.onClick('first');\n" + 
624                             "    }); \n" + 
625                             "}\n"
626                     },
627                     "|xns": "Roo.grid",
628
629                     "items": [
630                         {
631                             "*prop": "dataSource",
632                             "xtype": "Store",
633                              remoteSort : true,
634                             '|sortInfo' : "{ field : '" + reader.firstTxtCol  +  "', direction: 'ASC' }", 
635                             "|xns": "Roo.data",
636                             "items": [
637                                 
638                                 {
639                                     "*prop": "proxy",
640                                     "xtype": "HttpProxy",
641                                     "method": "GET",
642                                     "|url": "baseURL + '/Roo/" + reader.table + ".php'",
643                                     "|xns": "Roo.data"
644                                 },
645                                 jreader
646                             ]
647                         },
648                         {
649                             "*prop": "footer",
650                             "xtype": "PagingToolbar",
651                             "pageSize": 25,
652                             "displayInfo": true,
653                             "displayMsg": "Displaying " + reader.table + "{0} - {1} of {2}",
654                             "emptyMsg": "No " + reader.table + " found",
655                             "|xns": "Roo"
656                         },
657                         {
658                             "*prop": "toolbar",
659                             "xtype": "Toolbar",
660                             "|xns": "Roo",
661                             "items": [
662                                 {
663                                     "text": "Add",
664                                     "xtype": "Button",
665                                     "cls": "x-btn-text-icon",
666                                     "|icon": "Roo.rootURL + 'images/default/dd/drop-add.gif'",
667                                     "listeners": {
668                                         "|click": "function()\n"+
669                                             "{\n"+
670                                             "    if (!_this.dialog) return;\n" +
671                                             "    _this.dialog.show( { id : 0 } , function() {\n"+
672                                             "        _this.grid.footer.onClick('first');\n"+
673                                             "   }); \n"+
674                                             "}\n"
675                                     },
676                                     "|xns": "Roo.Toolbar"
677                                 },
678                                 {
679                                     "text": "Edit",
680                                     "xtype": "Button",
681                                     "cls": "x-btn-text-icon",
682                                     "|icon": "Roo.rootURL + 'images/default/tree/leaf.gif'",
683                                     "listeners": {
684                                         "|click": "function()\n"+
685                                             "{\n"+
686                                             "    var s = _this.grid.getSelectionModel().getSelections();\n"+
687                                             "    if (!s.length || (s.length > 1))  {\n"+
688                                             "        Roo.MessageBox.alert(\"Error\", s.length ? \"Select only one Row\" : \"Select a Row\");\n"+
689                                             "        return;\n"+
690                                             "    }\n"+
691                                             "    if (!_this.dialog) return;\n" +
692                                             "    _this.dialog.show(s[0].data, function() {\n"+
693                                             "        _this.grid.footer.onClick('first');\n"+
694                                             "    }); \n"+
695                                             "    \n"+
696                                             "}\n" 
697                                         
698                                     },
699                                     "|xns": "Roo.Toolbar"
700                                 },
701                                 {
702                                     "text": "Delete",
703                                     "cls": "x-btn-text-icon",
704                                     "|icon": "rootURL + '/Pman/templates/images/trash.gif'",
705                                     "xtype": "Button",
706                                     "listeners": {
707                                         "|click": "function()\n"+
708                                             "{\n"+
709                                             "     Pman.genericDelete(_this, '" + reader.table + "'); \n"+
710                                             "}\n"+
711                                             "        "
712                                     },
713                                     "|xns": "Roo.Toolbar"
714                                 }
715                             ]
716                         }, // end toolbar
717                     ].concat( reader.colmodel)
718                 }
719             ]
720             
721             
722         }, null, 4)
723     )
724     
725     /// FORMS..
726     
727     dir = GLib.get_home_dir() + '/.Builder/Roo.form.Form'; 
728     if (!File.isDirectory(dir)) {
729         print("mkdir " + dir);
730         File.mkdir(dir);
731     }
732     var formElements = [];
733     var formHeight = 50;
734     for (var k in reader.form) {
735         if (k == 'id') { // should really do primary key testing..
736             continue;
737         }
738         formHeight += reader.form[k].xtype == 'TextArea' ? 100 : 30;
739         
740         formElements.push(reader.form[k]);
741     }
742     if (reader.form['id']) {
743         formElements.push(reader.form['id']);
744     }
745     
746
747     print("WRITE: " +  dir + '/' + cfg.DBNAME + '_' + reader.table + '.json');
748     var frmCfg = 
749     {
750         '|xns' : 'Roo.form',
751         xtype : "Form",
752         listeners : {
753             "|actioncomplete" : "function(_self,action)\n"+
754                 "{\n"+
755                 "    if (action.type == 'setdata') {\n"+
756                 "       //_this.dialog.el.mask(\"Loading\");\n"+
757                 "       //this.load({ method: 'GET', params: { '_id' : _this.data.id }});\n"+
758                 "       return;\n"+
759                 "    }\n"+
760                 "    if (action.type == 'load') {\n"+
761                 "        _this.dialog.el.unmask();\n"+
762                 "        return;\n"+
763                 "    }\n"+
764                 "    if (action.type =='submit') {\n"+
765                 "    \n"+
766                 "        _this.dialog.el.unmask();\n"+
767                 "        _this.dialog.hide();\n"+
768                 "    \n"+
769                 "         if (_this.callback) {\n"+
770                 "            _this.callback.call(_this, _this.form.getValues());\n"+
771                 "         }\n"+
772                 "         _this.form.reset();\n"+
773                 "         return;\n"+
774                 "    }\n"+
775                 "}\n",
776             
777             "|rendered" : "function (form)\n"+
778                 "{\n"+
779                 "    _this.form= form;\n"+
780                 "}\n"
781         },
782         method : "POST",
783         style : "margin:10px;",
784         "|url" : "baseURL + '/Roo/" + reader.table + ".php'",
785         items : formElements
786     };
787     
788     
789     File.write(
790         dir + '/' + cfg.DBNAME + '_' + reader.table + '.json',
791             
792        
793         JSON.stringify( frmCfg, null, 4)
794     );
795             
796             
797    
798    
799    
800      /// COMBO..
801     
802     dir = GLib.get_home_dir() + '/.Builder/Roo.form.ComboBox'; 
803     if (!File.isDirectory(dir)) {
804         print("mkdir " + dir);
805         File.mkdir(dir);
806     }
807    
808     print("WRITE: " +  dir + '/' + cfg.DBNAME + '_' + reader.table + '.json');
809     
810     File.write(
811         dir + '/' + cfg.DBNAME + '_' + reader.table + '.json',
812             
813        
814         JSON.stringify(reader.combo, null, 4)
815     );
816             
817    
818    
819    
820    
821    
822     // DIALOG.
823    
824    
825     dir = GLib.get_home_dir() + '/.Builder/Roo.LayoutDialog'; 
826     if (!File.isDirectory(dir)) {
827         print("mkdir " + dir);
828         File.mkdir(dir);
829     }
830     var formElements = [];
831     for (var k in reader.form) {
832         if (k == 'id') { // should really do primary key testing..
833             continue;
834         }
835         formElements.push(reader.form[k]);
836     }
837     formElements.push(reader.form['id']);
838
839     print("WRITE: " +  dir + '/' + cfg.DBNAME + '_' + reader.table + '.json');
840     
841     File.write(
842         dir + '/' + cfg.DBNAME + '_' + reader.table + '.json',
843             
844        
845         JSON.stringify({
846        
847             "closable": false,
848             "collapsible": false,
849             "height": formHeight,
850             "resizable": false,
851             "title": "Edit / Create " + reader.table,
852             "width": 400,
853             "xtype": "LayoutDialog",
854             "|xns": "Roo",
855             "items": [
856                 {
857                     "|xns": "Roo",
858                     "xtype": "LayoutRegion",
859                     "*prop": "center"
860                 },
861                 {
862                     "region": "center",
863                     "xtype": "ContentPanel",
864                     "|xns": "Roo",
865                     "items": [
866                         frmCfg
867                     ]
868                 },
869                 
870                 {
871                     "listeners": {
872                         "click": "function (_self, e)\n{\n    _this.dialog.hide();\n}"
873                     },
874                     "*prop": "buttons[]",
875                     "text": "Cancel",
876                     "xtype": "Button",
877                     "|xns": "Roo"
878                 },
879                 {
880                     "listeners": {
881                         "click": "function (_self, e)\n{\n    // do some checks?\n     \n    \n    _this.dialog.el.mask(\"Saving\");\n    _this.form.doAction(\"submit\");\n\n}"
882                     },
883                     "*prop": "buttons[]",
884                     "text": "Save",
885                     "xtype": "Button",
886                     "|xns": "Roo"
887                 }
888             ]
889         }, null,4)
890     );
891    
892    
893    
894 });
895
896