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