src/JsRender/Gtk.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                 print("save() - reset transStrings\n");
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 override 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                                         print("flag=%s type=%s name=%s : %s\n", kflag,ktype,kname,str);
355                                         this.transStrings.set(str,  
356                                                 GLib.Checksum.compute_for_string (ChecksumType.MD5, str)
357                                         );
358                                         continue;
359                                 }
360                                 
361                                 if (ktype.down() == "string" && kname[0] == '_') {
362                                         print("flag=%s type=%s name=%s : %s\n", kflag,ktype,kname,str);
363                                         this.transStrings.set(str,  
364                                                 GLib.Checksum.compute_for_string (ChecksumType.MD5, str)
365                                         );
366                                         continue;
367                                 }
368                                 
369                         }
370                          
371
372                         
373                         // iterate children..
374                         for (var i =0; i < node.items.size; i++) {
375                                 this.findTransStrings(node.items.get(i) );
376                         }
377                 
378                                 
379                 }  
380                 
381                 public string  transStringsToJs()
382                 {
383                         
384                         print("Roo.transStringsToJs()\n");
385                         if (this.transStrings.size < 1) {
386                                 print("Roo.transStringsToJs() size < 1?\n");
387                                 return "";
388                         }
389                          
390                         string[] kvs = {};
391                         var iter = this.transStrings.map_iterator();
392                         while (iter.next()) {
393                                 kvs +=  ("  '" + iter.get_value() + "' :" + 
394                                         this.tree.quoteString(iter.get_key())
395                                         );
396                         }
397                         return " _strings : {\n" + string.joinv(",\n", kvs) + "\n" + 
398                                 " },";
399                                 
400                 
401               
402                         
403                 }
404                   
405         /**
406          * javascript used in Webkit preview 
407          */
408         
409         public override string  toSourcePreview()
410         {
411                         print("toSourcePreview() - reset transStrings\n");
412                         this.transStrings = new Gee.HashMap<string,string>();
413                         
414                 
415                         print("to source preview\n");
416                         if (this.tree == null) {
417                                 return "";
418                         }
419                         this.findTransStrings(this.tree);
420                         var top = this.tree.fqn();
421                         var xinc = new Gee.ArrayList<string>(); 
422
423                         this.findxincludes(this.tree, xinc);
424                         print("got %d xincludes\n", xinc.size);
425                         var prefix_data = "";
426                         if (xinc.size > 0 ) {
427                                 for(var i = 0; i < xinc.size; i++) {
428                                         print("check xinclude:  %s\n", xinc.get(i));
429                                         var sf = this.project.getByName(xinc.get(i));
430                                         if (sf == null) {
431                                                 print("Failed to find file by name?\n");
432                                                 continue;
433                                         }
434
435                                         sf.loadItems();
436                                         sf.findTransStrings(sf.tree);
437                                         var xinc_str = sf.toSource();
438                                         
439                                         //string xinc_str;
440                                         //FileUtils.get_contents(js, out xinc_str);
441                                         prefix_data += "\n" + xinc_str + "\n";
442                                         
443                                 }
444
445                         }
446
447                         
448                         
449                         //print(JSON.stringify(this.items, null,4));
450                                    
451                         if (top == null) {
452                                 print ("guessname returned false");
453                                 return "";
454                         }
455
456
457                         if (top.contains("Dialog")) {
458                                 return prefix_data + this.toSourceDialog(true);
459                         }
460
461                         if (top.contains("Modal")) {
462                                 return prefix_data + this.toSourceModal(true);
463                         }
464
465                         return prefix_data + this.toSourceLayout(true);
466                                 
467                                 
468             
469         }
470         public override void setSource(string str) {}
471         /**
472          * This needs to use some options on the project
473          * to determine how the file is output..
474          * 
475          * At present we are hard coding it..
476          * 
477          * 
478          */
479         public override string toSource()
480         {
481             // dump the file tree back out to a string.
482             
483             // we have 2 types = dialogs and components
484             // 
485             
486             
487                         if (this.tree == null) {
488                                 return "";
489                         }
490             var top = this.tree.fqn();
491             if (top == null) {
492                 return "";
493             }
494             // get the translatable strings..
495             
496             
497             
498             if (top.contains("Dialog")) {
499                 return this.toSourceDialog(false);
500             }
501             
502             if (top.contains("Modal")) {
503                 return this.toSourceModal(false);
504             }
505             return this.toSourceLayout(false);
506             
507             /*
508             eventually support 'classes??'
509              return this.toSourceStdClass();
510             */
511               
512         }
513        
514         public string outputHeader()
515         {
516                 string[] s = {
517                         "//<script type=\"text/javascript\">",
518                         "",
519                         "// Auto generated file - created by app.Builder.js- do not edit directly (at present!)",
520                         ""
521                    
522                 };  
523                 var ret=  string.joinv("\n",s);
524                 var bits = this.name.split(".");
525                 if (bits.length > 1) {
526                         ret += "\nRoo.namespace(\'" + 
527                                 this.name.substring(0, this.name.length - (bits[bits.length-1].length + 1)) +
528                                 "');\n";
529                                 
530                 }
531                 /// genericlly used..
532                   
533                 return ret;
534             
535        
536         }
537         // a standard dialog module.
538         // fixme - this could be alot neater..
539         public string toSourceDialog(bool isPreview) 
540         {
541             
542             //var items = JSON.parse(JSON.stringify(this.items[0]));
543             
544             
545             var o = this.mungeToString("    ");   
546
547  
548             string[] adda = { " = {",
549                 "",
550                 this.transStringsToJs() ,
551                 "",
552                 " dialog : false,",
553                 " callback:  false,",
554                 "",   
555                 " show : function(data, cb)",
556                 " {",
557                 "  if (!this.dialog) {",
558                 "   this.create();",
559                 "  }",
560                 "",
561                 "  this.callback = cb;",
562                 "  this.data = data;",
563                 "  this.dialog.show(this.data._el);",
564                 "  if (this.form) {",
565                 "   this.form.reset();",
566                 "   this.form.setValues(data);",
567                 "   this.form.fireEvent('actioncomplete', this.form,  { type: 'setdata', data: data });",
568                 "  }",
569                 "",   
570                 " },",
571                 "",
572                 " create : function()",
573                 " {",
574                 "   var _this = this;",
575                 "   this.dialog = Roo.factory(" 
576             };
577             string[] addb = {  
578                    ");",
579                 " }",
580                 "};",
581                 ""
582             };
583             return  this.outputHeader() + "\n" +
584                 this.name + string.joinv("\n", adda) + o + string.joinv("\n", addb);
585             
586              
587              
588              
589         }
590         
591         public string toSourceModal(bool isPreview) 
592         {
593             
594             
595             //var items = JSON.parse(JSON.stringify(this.items[0]));
596             var o = this.mungeToString("    ");   
597             
598             string[] adda = { " = {",
599                 "",
600                 this.transStringsToJs() ,
601                 "",
602                 " dialog : false,",
603                 " callback:  false,",
604                 "",   
605                 " show : function(data, cb)",
606                 " {",
607                 "  if (!this.dialog) {",
608                 "   this.create();",
609                 "  }",
610                 "",
611                 "  this.callback = cb;",
612                 "  this.data = data;",
613                 "  this.dialog.show(this.data._el);",
614                 "  if (this.form) {",
615                 "   this.form.reset();",
616                 "   this.form.setValues(data);",
617                 "   this.form.fireEvent('actioncomplete', this.form,  { type: 'setdata', data: data });",
618                 "  }",
619                 "",   
620                 " },",
621                 "",
622                 " create : function()",
623                 " {",
624                 "  var _this = this;",
625                 "  this.dialog = Roo.factory("
626             };
627             string[] addb =  {
628                 "  );",
629                 " }",
630                 "};",
631                 ""
632             };
633             return this.outputHeader() + "\n" + 
634                 this.name + string.joinv("\n", adda) + o + string.joinv("\n", addb);
635              
636              
637              
638         }
639         
640         
641         public string   pathToPart()
642         {
643             var dir = Path.get_basename(Path.get_dirname(this.path));
644             var ar = dir.split(".");
645             var modname = ar[ar.length-1];
646             
647             // now we have the 'module name'..
648             var fbits = Path.get_basename(this.path).split(".");
649             
650              
651             var npart = fbits[fbits.length - 2]; // this should be 'AdminProjectManager' for example...
652             if (modname.length < npart.length && npart.substring(0, modname.length) == modname) {
653                 npart = npart.substring(modname.length);
654             }
655             return "[" + this.tree.quoteString(modname) + ", " + this.tree.quoteString(npart) + " ]";
656             //return ret;
657             
658             
659             
660             
661         }
662         
663         // a layout compoent 
664         public string toSourceLayout(bool isPreview) 
665         {
666           
667             
668                 if (isPreview) {
669                         //       topItem.region = 'center';
670                         //    topItem.background = false;
671                 }
672             
673                 var o = this.mungeToString("   ");   
674                 var reg = new Regex("[^A-Za-z.]+");
675             
676                 string modkey = this.modOrder + "-" + reg.replace(this.name, this.name.length, 0 , "-");
677             
678                 string  parent =   (this.parent.length > 0 ?  "'" + this.parent + "'" :  "false");
679
680                 
681                 
682                 if (isPreview) {
683                         // set to false to ensure this is the top level..
684                         parent = "false";
685                                 var topnode = this.tree.fqn();
686                                 print("topnode = %s\n", topnode);
687                         if (GLib.Regex.match_simple("^Roo\\.bootstrap\\.",topnode) &&
688                             topnode != "Roo.bootstrap.Body"
689                         ) {
690                                 parent = "\"#bootstrap-body\"";
691                         }
692                           
693                 }
694             
695           
696                 return 
697                         this.outputHeader() + "\n" +
698                         
699                         this.name  +  " = new Roo.XComponent({\n" +
700                         "\n" + 
701                         this.transStringsToJs()  +    "\n" +
702                 "\n" +
703                         "  part     :  "+ this.pathToPart() + ",\n" +
704                                 /// critical used by builder to associate modules/parts/persm
705                         "  order    : '" +modkey+"',\n" +
706                         "  region   : '" + this.region   +"',\n" +
707                         "  parent   : "+ parent + ",\n" +
708                         "  name     : " + this.tree.quoteString(this.title.length > 0 ? this.title : "unnamed module") + ",\n" +
709                         "  disabled : " + (this.disabled ? "true" : "false") +", \n" +
710                         "  permname : '" + (this.permname.length > 0 ? this.permname : "") +"', \n" +
711                             
712                        // "    tree : function() { return this._tree(); },\n" +   //BC
713                         "  _tree : function()\n" +
714                         "  {\n" +
715                         "   var _this = this;\n" + // bc
716                         "   var MODULE = this;\n" + /// this looks like a better name.
717                         "   return " + o + ";" +
718                         "  }\n" +
719                         "});\n";
720                          
721               
722         }
723             
724         public new string? guessName (Node? ar) // turns the object into full name.
725         {
726              // eg. xns: Roo, xtype: XXX -> Roo.xxx
727             if (ar == null) {
728                 return null;
729             }
730             
731             string[] ret = {} ;
732             ret += (ar.get("|xns").length < 1 ? "Roo": ar.get("|xns"));
733              
734             
735             if ( ar.get("xtype").length < 1) {
736                 return null;
737             }
738                     
739             var xtype = ar.get("xtype");
740
741             if (xtype[0] == '*') { // prefixes????
742                 xtype  = xtype.substring(1);
743             }
744             if (! Regex.match_simple("^Roo", xtype)) {
745                 
746                 // already starts with roo...
747                 ret = {};
748             }
749             ret += xtype;
750             var str =  string.joinv(".", ret);
751             
752             return str;
753            // 
754             //Palete.Palete.factory("Roo").guessName(str);
755             
756                             
757                                  
758         }
759         
760         string getHelpUrl(string cls)
761         {
762             return "http://www.roojs.com/roojs1/docs/symbols/" + cls + ".html";
763         }
764                  
765      
766     }
767 }