src/Builder4/DialogPluginWebkit.bjs
[app.Builder.js] / src / Builder4 / DialogPluginWebkit.vala
1 static Xcls_DialogPluginWebkit  _DialogPluginWebkit;
2
3 public class Xcls_DialogPluginWebkit : Object 
4 {
5     public Gtk.Dialog el;
6     private Xcls_DialogPluginWebkit  _this;
7
8     public static Xcls_DialogPluginWebkit singleton()
9     {
10         if (_DialogPluginWebkit == null) {
11             _DialogPluginWebkit= new Xcls_DialogPluginWebkit();
12         }
13         return _DialogPluginWebkit;
14     }
15     public Xcls_webview webview;
16
17         // my vars (def)
18     public string tmpjs;
19
20     // ctor 
21     public Xcls_DialogPluginWebkit()
22     {
23         _this = this;
24         this.el = new Gtk.Dialog();
25
26         // my vars (dec)
27
28         // set gobject values
29         this.el.title = "Add / Edit Component";
30         this.el.default_height = 500;
31         this.el.default_width = 500;
32         this.el.deletable = true;
33         this.el.modal = true;
34         var child_0 = new Xcls_VBox2( _this );
35         child_0.ref();
36         this.el.get_content_area().add (  child_0.el  );
37         var child_1 = new Xcls_Button5( _this );
38         child_1.ref();
39         this.el.add_action_widget (  child_1.el , 3 );
40         var child_2 = new Xcls_Button6( _this );
41         child_2.ref();
42         this.el.add_action_widget (  child_2.el , 0 );
43         var child_3 = new Xcls_Button7( _this );
44         child_3.ref();
45         this.el.add_action_widget (  child_3.el , 1 );
46
47         // listeners 
48         this.el.delete_event.connect( (self, event) => {
49             this.el.hide();
50             return true; 
51             //test  
52         });
53     }
54
55     // user defined functions 
56     public string show (Gtk.Window ?parent, string text) {// JsRender.Node node) {
57      
58         if (parent  != null) {
59             this.el.set_transient_for(parent);
60             this.el.modal = true;
61         }
62            var db = new JsRender.RooDatabase.from_cfg ("MySQL", "hydra", "root", "");
63          
64         
65          this.el.show_all();
66          var   ret = "";
67         while (true) {
68         
69             var runhtml = "<script type=\"text/javascript\">\n" ;
70             string builderhtml;
71             
72             
73             GLib.FileUtils.get_contents(BuilderApplication.configDirectory() + "/resources/roo.builder.js", out builderhtml);
74     
75             runhtml += builderhtml + "\n";
76             
77             
78                runhtml += "\n" +
79                 "Builder.saveHTML = function() {};\n" + 
80             "Roo.onReady(function() {\n" +
81     
82             "Roo.XComponent.build();\n" +
83             "});\n";
84         
85         
86             
87     
88             var ar = db.readForeignKeys("Person");
89             var  generator = new Json.Generator ();
90             var  root = new Json.Node(Json.NodeType.OBJECT);
91             root.init_object(ar);
92             generator.set_root (root);
93             
94             generator.pretty = true;
95             generator.indent = 4;
96             
97             runhtml += "\n" +
98             " Roo.XComponent.on('buildcomplete', function() {\n" +
99              "    Editor.Roo.grid.Grid.panel.loadData(" + generator.to_data (null) + "); " +
100             "});\n";
101     
102             
103         
104         
105     
106             runhtml += "</script>\n" ;
107     
108             print(runhtml);
109             // fix to make sure they are the same..
110             
111             // need to modify paths
112     
113             string inhtml;
114             
115             GLib.FileUtils.get_contents(
116                 BuilderApplication.configDirectory() + "/resources/roo.builder.html"
117                     , out inhtml);
118             
119             
120             // fetch the json from the database...
121             
122             //print(runhtml);
123             
124             var html = inhtml.replace("</head>", runhtml + // + this.runhtml + 
125                 "<script type=\"text/javascript\" src=\"xhttp://localhost/app.Builder.js/resources/Editors/Editor.Roo.grid.Grid.js\"></script>" + 
126           //      "<script type=\"text/javascript\" src=\"xhttp://localhost" + fc.fname + "\"></script>" +   
127                   //  "<script type=\"text/javascript\">\n" +
128                   //  js_src + "\n" + 
129                   //  "</script>" + 
130                             
131             "</head>");
132             //print("LOAD HTML " + html);
133             
134              //var rootURL = _this.file.project.rootURL;
135        
136             
137             
138             this.webview.el.load_html( html , 
139                 //fixme - should be a config option!
140                 "xhttp://localhost/app.Builder.js/"
141             );
142         
143             
144         
145        
146             var response_id = this.el.run();
147             
148              if (response_id == 3) {
149                  var loop = new MainLoop();
150                  this.webview.el.run_javascript.begin("Editor.Roo.grid.Grid.panel.toBJS();", null, (obj, res) => {
151                         list_dir.end(res);
152                         loop.quit();
153                     });
154                  loop.run();
155     
156                  response_id = this.el.run();
157                  // try and get the resopse...
158                 break;
159              }
160             if (response_id < 1) {
161                 this.el.hide();
162                  return "";
163             }
164             // keep showing...?
165             break;
166         }
167         
168         // now we save it..
169         this.el.hide();
170         
171         return ret;
172         
173         
174         
175     }
176     public class Xcls_VBox2 : Object 
177     {
178         public Gtk.VBox el;
179         private Xcls_DialogPluginWebkit  _this;
180
181
182             // my vars (def)
183
184         // ctor 
185         public Xcls_VBox2(Xcls_DialogPluginWebkit _owner )
186         {
187             _this = _owner;
188             this.el = new Gtk.VBox( false, 0 );
189
190             // my vars (dec)
191
192             // set gobject values
193             var child_0 = new Xcls_ScrolledWindow3( _this );
194             child_0.ref();
195             this.el.pack_start (  child_0.el , false,true,3 );
196         }
197
198         // user defined functions 
199     }
200     public class Xcls_ScrolledWindow3 : Object 
201     {
202         public Gtk.ScrolledWindow el;
203         private Xcls_DialogPluginWebkit  _this;
204
205
206             // my vars (def)
207
208         // ctor 
209         public Xcls_ScrolledWindow3(Xcls_DialogPluginWebkit _owner )
210         {
211             _this = _owner;
212             this.el = new Gtk.ScrolledWindow( null, null );
213
214             // my vars (dec)
215
216             // set gobject values
217             this.el.expand = true;
218             var child_0 = new Xcls_webview( _this );
219             child_0.ref();
220             this.el.add (  child_0.el  );
221
222             // init method 
223
224             this.el.set_policy(Gtk.PolicyType.AUTOMATIC, Gtk.PolicyType.AUTOMATIC);
225         }
226
227         // user defined functions 
228     }
229     public class Xcls_webview : Object 
230     {
231         public WebKit.WebView el;
232         private Xcls_DialogPluginWebkit  _this;
233
234
235             // my vars (def)
236
237         // ctor 
238         public Xcls_webview(Xcls_DialogPluginWebkit _owner )
239         {
240             _this = _owner;
241             _this.webview = this;
242             this.el = new WebKit.WebView();
243
244             // my vars (dec)
245
246             // set gobject values
247
248             // init method 
249
250             {
251                 // this may not work!?
252                 var settings =  this.el.get_settings();
253                 settings.enable_write_console_messages_to_stdout = true;
254                  
255                 var fs= new FakeServer(this.el);
256                 fs.ref();
257                 // this was an attempt to change the url perms.. did not work..
258                 // settings.enable_file_access_from_file_uris = true;
259                 // settings.enable_offline_web_application_cache - true;
260                 // settings.enable_universal_access_from_file_uris = true;
261                
262                  
263                 
264                 
265                 
266             
267                  // FIXME - base url of script..
268                  // we need it so some of the database features work.
269                 this.el.load_html( "Render not ready" , 
270                         //fixme - should be a config option!
271                         // or should we catch stuff and fix it up..
272                         "xhttp://localhost/app.Builder/"
273                 );
274                     
275                     
276                 
277                 
278             }
279
280             // listeners 
281             this.el.script_dialog.connect( (dialog) => {
282                 if (this.el == null) {
283                     return true;
284                 }
285                 
286                  var msg = dialog.get_message();
287                  if (msg.length < 4) {
288                     return false;
289                  }
290                  if (msg.substring(0,4) != "IPC:") {
291                      return false;
292                  }
293                  var ar = msg.split(":", 3);
294                 if (ar.length < 3) {
295                     return false;
296                 }
297                 print("CMD: %s\n",ar[1]);
298                     print("ARGS: %s\n",ar[2]);
299                 switch(ar[1]) {
300                     case "SAVEHTML":
301                       print("%sw",ar[2]);
302                       //  _this.file.saveHTML(ar[2]);
303                         return true;
304                     default:
305                         return true;
306                 }
307                 
308             });
309         }
310
311         // user defined functions 
312     }
313     public class Xcls_Button5 : Object 
314     {
315         public Gtk.Button el;
316         private Xcls_DialogPluginWebkit  _this;
317
318
319             // my vars (def)
320
321         // ctor 
322         public Xcls_Button5(Xcls_DialogPluginWebkit _owner )
323         {
324             _this = _owner;
325             this.el = new Gtk.Button();
326
327             // my vars (dec)
328
329             // set gobject values
330             this.el.label = "Reload";
331         }
332
333         // user defined functions 
334     }
335     public class Xcls_Button6 : Object 
336     {
337         public Gtk.Button el;
338         private Xcls_DialogPluginWebkit  _this;
339
340
341             // my vars (def)
342
343         // ctor 
344         public Xcls_Button6(Xcls_DialogPluginWebkit _owner )
345         {
346             _this = _owner;
347             this.el = new Gtk.Button();
348
349             // my vars (dec)
350
351             // set gobject values
352             this.el.label = "Cancel";
353         }
354
355         // user defined functions 
356     }
357     public class Xcls_Button7 : Object 
358     {
359         public Gtk.Button el;
360         private Xcls_DialogPluginWebkit  _this;
361
362
363             // my vars (def)
364
365         // ctor 
366         public Xcls_Button7(Xcls_DialogPluginWebkit _owner )
367         {
368             _this = _owner;
369             this.el = new Gtk.Button();
370
371             // my vars (dec)
372
373             // set gobject values
374             this.el.label = "OK";
375         }
376
377         // user defined functions 
378     }
379 }