src/JsRender/Roo.vala
[app.Builder.js] / src / JsRender / Roo.vala
1 /*
2  * Renderer for Javascript output (roo library based)
3  * 
4  * - translation support
5  * -  doubleStringProps contains elements that are 'translable'
6  *    ** in the old method this our compression tool could extract them
7  *  - the  new idea is to make a list at the top of the javascript file
8  *    and output a map...
9  *    
10  * 
11  * 
12  * 
13  * 
14  */
15 namespace JsRender {
16
17     static int rid = 0; 
18    
19     class Roo : JsRender 
20     {
21         string region;
22         bool disabled;
23
24
25         
26         public Roo(Project.Project project, string path) {
27             base( project, path);
28             this.xtype = "Roo";
29              this.language = "js";
30             
31             
32             //this.items = false;
33             //if (cfg.json) {
34             //    var jstr =  JSON.parse(cfg.json);
35             //    this.items = [ jstr ];
36             //    //console.log(cfg.items.length);
37             //    delete cfg.json; // not needed!
38             // }
39             this.modOrder = "001"; /// sequence id that this uses.
40             this.region = "center";
41             this.disabled = false;
42             
43             // super?!?!
44             this.id = "file-roo-%d".printf(rid++);
45             //console.dump(this);
46             // various loader methods..
47
48             string[]  dsp = { "title",
49                 "legend",
50                 "loadingText",
51                 "emptyText",
52                 "qtip",
53                 "value",
54                 "text",
55                 "emptyMsg",
56                 "displayMsg" };
57             for (var i=0;i<dsp.length;i++) {
58                 this.doubleStringProps.add(dsp[i]);
59             }
60
61             
62         }
63     
64     /*    
65         setNSID : function(id)
66         {
67             
68             this.items[0]['|module'] = id;
69        
70             
71         },
72         
73         
74         getType: function() {
75             return 'Roo';
76         },
77
78     */
79                 
80         public   override void   removeFiles() {
81                 var html = GLib.Path.get_dirname(this.path) +"/templates/" + name + ".html";
82                 if (FileUtils.test(html, FileTest.EXISTS)) {
83                         GLib.FileUtils.remove(html);
84                 }
85                 var js = GLib.Path.get_dirname(this.path) +"/" + name + ".html";
86                 if (FileUtils.test(js, FileTest.EXISTS)) {
87                         GLib.FileUtils.remove(js);
88                 }
89         }
90                 
91         public  override void  loadItems() throws GLib.Error // : function(cb, sync) == original was async.
92         {
93             
94              
95                 print("load Items!");
96                 if (this.tree != null) {
97                         return;
98                 }
99                 print("load " + this.path);
100
101                 var pa = new Json.Parser();
102                 pa.load_from_file(this.path);
103                 var node = pa.get_root();
104
105                 if (node.get_node_type () != Json.NodeType.OBJECT) {
106                         throw new Error.INVALID_FORMAT ("Unexpected element type %s", node.type_name ());
107                 }
108                 var obj = node.get_object ();
109         
110         
111                 this.modOrder = this.jsonHasOrEmpty(obj, "modOrder");
112                 this.name = this.jsonHasOrEmpty(obj, "name");
113                 this.parent = this.jsonHasOrEmpty(obj, "parent");
114                 this.permname = this.jsonHasOrEmpty(obj, "permname");
115                 this.title = this.jsonHasOrEmpty(obj, "title");
116                 this.modOrder = this.jsonHasOrEmpty(obj, "modOrder");
117
118                 var bjs_version_str = this.jsonHasOrEmpty(obj, "bjs-version");
119                 bjs_version_str = bjs_version_str == "" ? "1" : bjs_version_str;
120
121                 
122                 // load items[0] ??? into tree...
123                 if (obj.has_member("items") 
124                         && 
125                         obj.get_member("items").get_node_type() == Json.NodeType.ARRAY
126                         &&
127                         obj.get_array_member("items").get_length() > 0
128                 ) {
129                         this.tree = new Node(); 
130                         var ar = obj.get_array_member("items");
131                         var tree_base = ar.get_object_element(0);
132                         this.tree.loadFromJson(tree_base, int.parse(bjs_version_str));
133                 }
134
135
136             
137         }
138         /**
139          * old code had broken xtypes and used arrays differently,
140          * this code should try and clean it up..
141          * 
142          * 
143          * /
144         fixItems : function(node, fixthis)
145         {
146             if (fixthis) {
147                 // fix xtype.
148                 var fn = this.guessName(node);
149                 //print("guessname got " + fn);
150                 if (fn) {
151                     var bits = fn.split('.');
152                     node.xtype = bits.pop();
153                     node['|xns'] = bits.join('.');
154                     
155                 }
156                 // fix array???
157                  
158                 
159             }
160             if (!node.items || !node.items.length) {
161                 return;
162             }
163             var _this = this;
164             var aitems = [];
165             var nitems = [];
166             node.items.forEach(function(i) {
167                 
168                 
169                 
170                 _this.fixItems(i, true);
171                 if (i.xtype == 'Array') {
172                     aitems.push(i);
173                     return;
174                 }    
175                 nitems.push(i);
176             });
177             node.items = nitems; 
178             
179             if (!aitems.length) {
180                 return;
181             }
182             
183             aitems.forEach(function(i) {
184                 
185                 if (!i.items || !i.items.length) {
186                     return;
187                 }
188                 var prop = i['*prop'] + '[]';
189                 // colModel to cm?
190                 i.items.forEach(function(c) {
191                     c['*prop']  = prop;
192                     node.items.push(c);
193                     
194                 });
195                 
196                 
197             });
198             
199             
200             // array handling.. 
201             
202             
203             
204             
205             
206         },
207     */
208         
209         public  override  void save()
210         {
211             
212                 print("--- JsRender.Roo.save");
213                 this.saveBJS();
214
215                 // no tree..
216                 if (this.tree == null) {
217                         return;
218                 }
219                 // now write the js file..
220                 string js;
221                 try {
222                         Regex regex = new Regex("\\.(bjs|js)$");
223
224                         js = regex.replace(this.path,this.path.length , 0 , ".js");
225                 } catch (RegexError e) {
226                         this.name = "???";
227                         print("count not make filename from path");
228                         return;
229                 }
230
231
232                 //var d = new Date();
233                 var js_src = this.toSource();            
234                 //print("TO SOURCE in " + ((new Date()) - d) + "ms");
235                 try {
236                         this.writeFile(js, js_src);            
237                 } catch (FileError e ) {
238                         print("Save failed\n");
239                 }
240                 // for bootstrap - we can write the HTML to the templates directory..
241                  
242             //var top = this.guessName(this.items[0]);
243             //print ("TOP = " + top)
244              
245             
246             
247             
248         }
249
250          
251
252          
253         public override void saveHTML ( string html )
254         {
255                  
256                 var top = this.tree.fqn();
257                 print ("TOP = " + top + "\n" );
258                 if (top.index_of("Roo.bootstrap.") < 0 &&
259                     top.index_of("Roo.mailer.") < 0
260                         ) {
261                         return;
262                 }
263                 
264                 
265 // now write the js file..
266                 string fn;
267                 try {
268                         Regex regex = new Regex("\\.(bjs|js)$");
269
270                         fn = regex.replace(this.path,this.path.length , 0 , ".html");
271                 } catch (RegexError e) {
272                         this.name = "???";
273                         print("count not make filename from path");
274                         return;
275                 }
276                 var bn = GLib.Path.get_basename(fn);
277                 var dn = GLib.Path.get_dirname(fn);
278
279                 var targetdir = dn + (
280                         top.index_of("Roo.mailer.") < 0 ? "/templates" : "" );
281                               
282                 
283                 if (!FileUtils.test(targetdir, FileTest.IS_DIR)) {
284                         print("Skip save - templates folder does not exist : %s\n", targetdir);
285                         return;
286                 }
287                 print("SAVE HTML -- %s\n%s\n",targetdir + "/" +  bn, html);
288                 try {
289                         this.writeFile(targetdir + "/" +  bn , html);            
290                 } catch (FileError e ) {
291                         print("SaveHtml failed\n");
292                 }
293             
294             
295             
296         }
297
298         public Gee.ArrayList<string> findxincludes(Node node,   Gee.ArrayList<string> ret)
299         {
300                 
301                 if (node.props.has_key("* xinclude")) {
302                         ret.add(node.props.get("* xinclude"));
303                 }
304                 for (var i =0; i < node.items.size; i++) {
305                         this.findxincludes(node.items.get(i), ret);
306                 }
307                 return ret;
308                         
309         }
310         Gee.HashMap<string,string> transStrings; // map of md5 -> string..
311
312          
313         public Gee.ArrayList<string> transStrings(Node node,   Gee.ArrayList<string> ret)
314         {
315                 // iterate properties...
316                    // use doubleStringProps
317                 for (var i =0;i < this.doubleStringProps.size; i++) {
318                         var k = this.doubleStringProps.get(i);
319                         if (if (!node.has(k)) {
320                                 continue;
321                         }
322                         // if the value is raw ... then we can not convert it..
323                         var fk = get_key(k);
324                         if (k[0] == '$') {
325                                 continue;
326                         }
327                         // add it to our list...
328                         this.transStrings.set(str,  
329                                 GLib.Checksum.compute_for_string (ChecksumType.MD5, str)
330                         );
331                 }
332
333                 
334                 // iterate children..
335                 for (var i =0; i < node.items.size; i++) {
336                         this.transStrings(node.items.get(i), ret);
337                 }
338                 return ret;
339                         
340         }    
341         /**
342          * javascript used in Webkit preview 
343          */
344         
345         public override string  toSourcePreview()
346         {
347                 print("to source preview\n");
348                 if (this.tree == null) {
349                         return "";
350                 }
351                 var top = this.tree.fqn();
352                 var xinc = new Gee.ArrayList<string>(); 
353
354                 this.findxincludes(this.tree, xinc);
355                 print("got %d xincludes\n", xinc.size);
356                 var prefix_data = "";
357                 if (xinc.size > 0 ) {
358                         for(var i = 0; i < xinc.size; i++) {
359                                 print("check xinclude:  %s\n", xinc.get(i));
360                                 var sf = this.project.getByName(xinc.get(i));
361                                 if (sf == null) {
362                                         print("Failed to find file by name?\n");
363                                         continue;
364                                 }
365
366                                 sf.loadItems();
367                                 var xinc_str = sf.toSource();
368                                 
369                                 //string xinc_str;
370                                 //FileUtils.get_contents(js, out xinc_str);
371                                 prefix_data += "\n" + xinc_str + "\n";
372                                 
373                         }
374
375                 }
376
377                 
378                 
379                 //print(JSON.stringify(this.items, null,4));
380                        
381                 if (top == null) {
382                         print ("guessname returned false");
383                         return "";
384                 }
385
386
387                 if (top.contains("Dialog")) {
388                         return prefix_data + this.toSourceDialog(true);
389                 }
390
391                 if (top.contains("Modal")) {
392                         return prefix_data + this.toSourceModal(true);
393                 }
394
395                 return prefix_data + this.toSourceLayout(true);
396             
397             
398             
399         }
400         
401         /**
402          * This needs to use some options on the project
403          * to determine how the file is output..
404          * 
405          * At present we are hard coding it..
406          * 
407          * 
408          */
409         public override string toSource()
410         {
411             // dump the file tree back out to a string.
412             
413             // we have 2 types = dialogs and components
414             // 
415             if (this.tree == null) {
416                     return "";
417             }
418             var top = this.tree.fqn();
419             if (top == null) {
420                 return "";
421             }
422             if (top.contains("Dialog")) {
423                 return this.toSourceDialog(false);
424             }
425             
426             if (top.contains("Modal")) {
427                 return this.toSourceModal(false);
428             }
429             return this.toSourceLayout(false);
430             
431             /*
432             eventually support 'classes??'
433              return this.toSourceStdClass();
434             */
435               
436         }
437        
438         public string outputHeader()
439         {
440                 string[] s = {
441                         "//<script type=\"text/javascript\">",
442                         "",
443                         "// Auto generated file - created by app.Builder.js- do not edit directly (at present!)",
444                         ""
445                    
446                 };  
447                 var ret=  string.joinv("\n",s);
448                 var bits = this.name.split(".");
449                 if (bits.length > 1) {
450                         ret += "\nRoo.namespace(\'" + 
451                                 this.name.substring(0, this.name.length - (bits[bits.length-1].length + 1)) +
452                                 "');\n";
453                                 
454                 }
455                 /// genericlly used..
456                   
457                 return ret;
458             
459        
460         }
461         // a standard dialog module.
462         // fixme - this could be alot neater..
463         public string toSourceDialog(bool isPreview) 
464         {
465             
466             //var items = JSON.parse(JSON.stringify(this.items[0]));
467             
468             
469             var o = this.mungeToString("    ");   
470
471  
472             string[] adda = { " = {",
473                 "",
474                 " dialog : false,",
475                 " callback:  false,",
476                 "",   
477                 " show : function(data, cb)",
478                 " {",
479                 "  if (!this.dialog) {",
480                 "   this.create();",
481                 "  }",
482                 "",
483                 "  this.callback = cb;",
484                 "  this.data = data;",
485                 "  this.dialog.show(this.data._el);",
486                 "  if (this.form) {",
487                 "   this.form.reset();",
488                 "   this.form.setValues(data);",
489                 "   this.form.fireEvent('actioncomplete', this.form,  { type: 'setdata', data: data });",
490                 "  }",
491                 "",   
492                 " },",
493                 "",
494                 " create : function()",
495                 " {",
496                 "   var _this = this;",
497                 "   this.dialog = Roo.factory(" 
498             };
499             string[] addb = {  
500                    ");",
501                 " }",
502                 "};",
503                 ""
504             };
505             return  this.outputHeader() + "\n" +
506                 this.name + string.joinv("\n", adda) + o + string.joinv("\n", addb);
507             
508              
509              
510              
511         }
512         
513         public string toSourceModal(bool isPreview) 
514         {
515             
516             
517             //var items = JSON.parse(JSON.stringify(this.items[0]));
518             var o = this.mungeToString("    ");   
519             
520             string[] adda = { " = {",
521                 "",
522                 " dialog : false,",
523                 " callback:  false,",
524                 "",   
525                 " show : function(data, cb)",
526                 " {",
527                 "  if (!this.dialog) {",
528                 "   this.create();",
529                 "  }",
530                 "",
531                 "  this.callback = cb;",
532                 "  this.data = data;",
533                 "  this.dialog.show(this.data._el);",
534                 "  if (this.form) {",
535                 "   this.form.reset();",
536                 "   this.form.setValues(data);",
537                 "   this.form.fireEvent('actioncomplete', this.form,  { type: 'setdata', data: data });",
538                 "  }",
539                 "",   
540                 " },",
541                 "",
542                 " create : function()",
543                 " {",
544                 "  var _this = this;",
545                 "  this.dialog = Roo.factory("
546             };
547             string[] addb =  {
548                 "  );",
549                 " }",
550                 "};",
551                 ""
552             };
553             return this.outputHeader() + "\n" + 
554                 this.name + string.joinv("\n", adda) + o + string.joinv("\n", addb);
555              
556              
557              
558         }
559         
560         
561         public string   pathToPart()
562         {
563             var dir = Path.get_basename(Path.get_dirname(this.path));
564             var ar = dir.split(".");
565             var modname = ar[ar.length-1];
566             
567             // now we have the 'module name'..
568             var fbits = Path.get_basename(this.path).split(".");
569             
570              
571             var npart = fbits[fbits.length - 2]; // this should be 'AdminProjectManager' for example...
572             if (modname.length < npart.length && npart.substring(0, modname.length) == modname) {
573                 npart = npart.substring(modname.length);
574             }
575             return "[" + this.tree.quoteString(modname) + ", " + this.tree.quoteString(npart) + " ]";
576             //return ret;
577             
578             
579             
580             
581         }
582         
583         // a layout compoent 
584         public string toSourceLayout(bool isPreview) 
585         {
586           
587             
588                 if (isPreview) {
589                         //       topItem.region = 'center';
590                         //    topItem.background = false;
591                 }
592             
593                 var o = this.mungeToString("   ");   
594                 var reg = new Regex("[^A-Za-z.]+");
595             
596                 string modkey = this.modOrder + "-" + reg.replace(this.name, this.name.length, 0 , "-");
597             
598                 string  parent =   (this.parent.length > 0 ?  "'" + this.parent + "'" :  "false");
599
600                 
601                 
602                 if (isPreview) {
603                         // set to false to ensure this is the top level..
604                         parent = "false";
605                         var topnode = this.tree.fqn();
606                         print("topnode = %s\n", topnode);
607                         if (GLib.Regex.match_simple("^Roo\\.bootstrap\\.",topnode) &&
608                             topnode != "Roo.bootstrap.Body"
609                         ) {
610                                 parent = "\"#bootstrap-body\"";
611                         }
612                           
613                 }
614             
615           
616                 return 
617                         this.outputHeader() + "\n" +
618                         
619                         this.name  +  " = new Roo.XComponent({\n" +
620                         "  part     :  "+ this.pathToPart() + ",\n" +
621                                 /// critical used by builder to associate modules/parts/persm
622                         "  order    : '" +modkey+"',\n" +
623                         "  region   : '" + this.region   +"',\n" +
624                         "  parent   : "+ parent + ",\n" +
625                         "  name     : " + this.tree.quoteString(this.title.length > 0 ? this.title : "unnamed module") + ",\n" +
626                         "  disabled : " + (this.disabled ? "true" : "false") +", \n" +
627                         "  permname : '" + (this.permname.length > 0 ? this.permname : "") +"', \n" +
628                             
629                        // "    tree : function() { return this._tree(); },\n" +   //BC
630                         "  _tree : function()\n" +
631                         "  {\n" +
632                         "   var _this = this;\n" + // bc
633                         "   var MODULE = this;\n" + /// this looks like a better name.
634                         "   return " + o + ";" +
635                         "  }\n" +
636                         "});\n";
637                          
638              
639             
640         }
641             
642         public new string? guessName (Node? ar) // turns the object into full name.
643         {
644              // eg. xns: Roo, xtype: XXX -> Roo.xxx
645             if (ar == null) {
646                 return null;
647             }
648             
649             string[] ret = {} ;
650             ret += (ar.get("|xns").length < 1 ? "Roo": ar.get("|xns"));
651              
652             
653             if ( ar.get("xtype").length < 1) {
654                 return null;
655             }
656                     
657             var xtype = ar.get("xtype");
658
659             if (xtype[0] == '*') { // prefixes????
660                 xtype  = xtype.substring(1);
661             }
662             if (! Regex.match_simple("^Roo", xtype)) {
663                 
664                 // already starts with roo...
665                 ret = {};
666             }
667             ret += xtype;
668             var str =  string.joinv(".", ret);
669             
670             return str;
671            // 
672             //Palete.Palete.factory("Roo").guessName(str);
673             
674                             
675                                  
676         }
677         
678         string getHelpUrl(string cls)
679         {
680             return "http://www.roojs.com/roojs1/docs/symbols/" + cls + ".html";
681         }
682                  
683      
684     }
685 }