Pman.Tab.BuilderTree.js
[Pman.Builder] / Pman.Tab.BuilderTree.js
1 //<script type="text/javascript">
2
3 // Auto generated file - created by app.Builder.js- do not edit directly (at present!)
4
5
6
7 // register the module first
8 Pman.on('beforeload', function()
9 {
10     Pman.register({
11         modKey : '001-Pman.Tab.BuilderTree',
12         module : Pman.Tab.BuilderTree,
13         region : 'center',
14         parent : Pman.Tab.BuilderTab,
15         name : "Pman.Tab.BuilderTree",
16         disabled : false, 
17         permname: '' 
18     });
19 });
20
21 Pman.Tab.BuilderTree = new Roo.util.Observable({
22
23     panel : false,
24     disabled : false,
25     parentLayout:  false,
26
27     add : function(parentLayout, region)
28     {
29
30         var _this = this;
31         this.parentLayout = parentLayout;
32
33         this.panel = parentLayout.addxtype({
34             xtype: 'NestedLayoutPanel',
35             xns: Roo,
36             region : 'west',
37             layout : {
38                 xtype: 'BorderLayout',
39                 xns: Roo,
40                 items : [
41                     {
42                         xtype: 'TreePanel',
43                         xns: Roo,
44                         listeners : {
45                             activate : function (_self)
46                             {
47                                 
48                                 _this.tree = _self.tree;
49                                 if (_this.hasMouseEvent) {
50                                     return;
51                                 }
52                                 
53                                 _this.hasMouseEvent = true;
54                                  this.el.on('mouseover', function() { _this.isMouseOver= true; });
55                                 this.el.on('mouseout', function() { _this.isMouseOver = false; });
56                             
57                             }
58                         },
59                         region : 'center',
60                         tree : {
61                             xtype: 'TreePanel',
62                             xns: Roo.tree,
63                             listeners : {
64                                 beforenodedrop : function (e)
65                                 {
66                                     // nodedragover handles the allow/disallow..
67                                     
68                                     /*
69                                     tree - The TreePanel
70                                     target - The node being targeted for the drop
71                                     data - The drag data from the drag source
72                                     point - The point of the drop - append, above or below
73                                     source - The drag source
74                                     rawEvent - Raw mouse event
75                                     dropNode - Drop node(s) provided by the source OR you can supply node(s) to be inserted by setting them on this object.
76                                     cancel - Set this to true to cancel the drop.
77                                     */
78                                     var np = e.point == 'append' ? e.target : e.target.parentNode ; // new parent
79                                       
80                                     if (!e.tree || !e.dropNode) {
81                                     
82                                         // form palete...
83                                         var data  = e.source.dragData.selections[0].data;
84                                         var nar = data.name.split(':')
85                                         var xar = nar[0].split('.');
86                                 
87                                         var cfg = {
88                                             '|xns' : xar.pop(),
89                                             'xtype' : xar.join('.')
90                                         };
91                                         if (nar.length > 1) {
92                                             cfg['*prop'] = nar[1];
93                                         }
94                                         // at this point it should of a set of options...
95                                         this.appendNode(np, cfg);
96                                      
97                                         return; // fixme drop of elements from palete..
98                                     }
99                                 
100                                     // always drop onto own parent
101                                     if (np == e.dropNode.parentNode) {
102                                         if (e.rawEvent.ctrlKey) {
103                                             e.dropNode = this.dupeNode(e.dropNode);
104                                         }
105                                         return true;
106                                     }
107                                     // can append has to use palete...
108                                     // this code should be in nodedragover.
109                                     
110                                     Roo.log("move checks need moving");
111                                     return;
112                                     
113                                     if (_this.canAppend(np, e.dropNode.elConfig)) {
114                                         if (e.rawEvent.ctrlKey) {
115                                             e.dropNode = _this.dupeNode(e.dropNode);
116                                               
117                                             if (np.elConfig.xtype == 'GridEditor') {
118                                                 e.dropNode.elConfig['*prop'] = 'field';
119                                             }
120                                             
121                                         }
122                                         return true;
123                                     }  
124                                     Roo.log('can not drop ' + e.dropNode.elConfig.xtype + ' ontop of ' + np.elConfig.xtype);
125                                     
126                                     
127                                     
128                                     return false;
129                                                         
130                                 
131                                 },
132                                 nodedrop : function (e)
133                                 {
134                                     
135                                     Roo.log("Node Drop");
136                                     return;
137                                     e.dropNode.setText(
138                                         _this.configToText(e.dropNode.elConfig)
139                                         );
140                                         var bp = Pman.Tab.BuilderPanel;
141                                         bp.redraw.defer(1000, bp, [true]);
142                                 
143                                 },
144                                 click : function (node, e)
145                                 {
146                                       e.preventDefault();
147                                                        // console.log(e.button);
148                                         this.setCurrentNode(node);
149                                 
150                                 },
151                                 contextmenu : function (node, e)
152                                 {
153                                     e.stopEvent();
154                                         
155                                         this.getSelectionModel().select(node);
156                                          _this.setCurrentNode(node);
157                                         var xt = node.elConfig.xtype;
158                                         var altx= false;
159                                         if (typeof(node.elConfig['*prop']) != 'undefined') {
160                                             altx = node.parentNode.elConfig.xtype +'.' + node.elConfig['*prop'];
161                                         }
162                                         var mn = Pman.Tab.BuilderPalete.getMenu(xt,altx);
163                                         
164                                         
165                                         if (mn) {
166                                             mn.show(e.getTarget());
167                                         }
168                                         
169                                 
170                                 
171                                 },
172                                 nodedragover : function (e)
173                                 {
174                                     Roo.log('nodedragover');
175                                      Roo.log(e);
176                                      // e.cancel..
177                                      // if we have within the same tree:
178                                        // dropNode (the node being dragged !!important!!) 
179                                        // point: below, append
180                                        // target - node 
181                                     // for palete
182                                         // dropNode = false;
183                                         // grid = the grid...
184                                         // source.dragData.selections[..] 
185                                    
186                                     
187                                     // we can only check parents... (we in theory can check dupe properties.. but let's ignore that for the time being.)
188                                     
189                                     // ok off we go.
190                                     
191                                     if (!e.dropNode) {
192                                         // drag from palete..
193                                         if (!e.source.dragData.selections.length) {
194                                             e.cancel = true;
195                                             return;
196                                         }
197                                         var drop_rec = e.source.dragData.selections[0];
198                                         var drop_xtype = drop_rec.data.name;
199                                         var ok_parents = drop_rec.json.parents;
200                                         Roo.log("TEST PARENTS: " + ok_parents.join(', '));
201                                         var new_parent = this.nodeXtype((e.point == 'append') ? e.target :  e.target.parentNode);
202                                         Roo.log("NEW PARENT: " + e.point + " = " + new_parent);
203                                         
204                                         // see if the new_parent is actually in the list of ok_parents
205                                         e.cancel = true;
206                                         Roo.each(ok_parents,function(n) {
207                                             if (n == new_parent || n.split(':').shift() == new_parent) {
208                                                 e.cancel = false;
209                                                 return true;
210                                             }
211                                         });
212                                         // done all the checks...
213                                         return;
214                                         
215                                     }
216                                      
217                                    
218                                 }
219                             },
220                             animate : false,
221                             containerScroll : true,
222                             ddGroup : 'component',
223                             enableDD : true,
224                             rootVisible : true,
225                             appendNode : function(parent, inConfig, markUndo) {
226                                 
227                                     
228                              
229                                 var items = [];
230                                 if (inConfig.items) { // loading!
231                                     items = inConfig.items;
232                                     delete inConfig.items;
233                                 }
234                                 var config = this.cloneConfig(inConfig);
235                                 
236                                 if (!parent) {
237                                 parent = this.root;
238                                 }
239                                       
240                                 var newNode = new Roo.tree.TreeNode({
241                                         text: this.configToText(config)
242                                 });
243                                         
244                                 
245                                 newNode.elConfig = config;
246                                 //if (markUndo === true) {
247                                 //Pman.Tab.Builder.markUndo("Add " + newNode.text);
248                                 //
249                                     // appends to our tree...
250                                 parent.appendChild(newNode);
251                                 
252                                     
253                                 if (items.length) {
254                                     Roo.each(items, function(i) {
255                                         this.appendNode(newNode, i);
256                                     },this);
257                                     
258                                 }
259                                     
260                                     
261                                     /*
262                                     -- panels with panes...
263                                         if (items && items.length) {
264                                                 for (var i = 0; i < items.length; i++) {
265                                                                 this.appendConfig(items[i], newNode, false);
266                                                 }
267                                         }
268                                         if (opts.doUpdate !== false) {
269                                                 this.updateForm(false, newNode);
270                                         }
271                                     */
272                                 return newNode;
273                             
274                                  
275                             },
276                             clearAll : function() {
277                                 var rt = this.root;
278                                  if (rt.childNodes.length) {
279                                     rt.removeChild(rt.childNodes[0]);
280                                 }
281                                
282                                 this.root.elConfig  = Roo.apply({ }, this.defaultElConfig());  
283                                 //var btop = Pman.Tab.BuilderTop;
284                                 //if (btop.modsel && btop.modsel.lastData) {
285                                 //    this.tree.root.elConfig.app = btop.modsel.lastData.app;
286                                 //}
287                                 
288                                 this.setCurrentNode(this.root,true);
289                             
290                             },
291                             cloneConfig : function(config) {
292                                 if (!config) { return null; }
293                                 var newConfig = {};
294                                 
295                                 for (var i in config) {
296                                     if (typeof config[i] == 'object') {
297                                          newConfig[i] = this.cloneConfig(config[i]);
298                                     } else if (typeof config[i] != 'function') { // should this happen?
299                                          newConfig[i] = config[i];
300                                     }
301                                 }
302                                 return newConfig;
303                             },
304                             configToText : function(c) {
305                                  
306                                 var txt = [];
307                                 c = c || {};
308                                       var sr = (typeof(c['+buildershow']) != 'undefined') &&  !c['+buildershow'] ? true : false;
309                                     if (sr) txt.push('<s>');
310                                     if (typeof(c['*prop']) != 'undefined')   { txt.push(c['*prop']+ ':'); }
311                                 if (c.xtype)      { txt.push(c.xtype); }
312                                 if (c.fieldLabel) { txt.push('[' + c.fieldLabel + ']'); }
313                                 if (c.boxLabel)   { txt.push('[' + c.boxLabel + ']'); }
314                                 
315                                 
316                                 if (c.layout)     { txt.push('<i>' + c.layout + '</i>'); }
317                                 if (c.title)      { txt.push('<b>' + c.title + '</b>'); }
318                                     if (c.header)    { txt.push('<b>' + c.header + '</b>'); }
319                                     if (c.legend)      { txt.push('<b>' + c.legend + '</b>'); }
320                                 if (c.text)       { txt.push('<b>' + c.text + '</b>'); }
321                                     if (c.name)       { txt.push('<b>' + c.name+ '</b>'); }
322                                 if (c.region)     { txt.push('<i>(' + c.region + ')</i>'); }
323                                     if (c.dataIndex) { txt.push('[' + c.dataIndex+ ']'); }
324                                     if (sr) txt.push('</s>');
325                                 return (txt.length == 0 ? "Element" : txt.join(" "));
326                              
327                               
328                             },
329                             currentNodeType : function() {
330                                 return this.nodeXtype(this.currentNode);
331                              
332                             },
333                             defaultElConfig : function() {
334                                 return {
335                                    xtype : '*Module',
336                                     
337                                     module : 'TestApp',
338                                     part:   'Partname',
339                                     modkey : 0,
340                                     region : 'center',
341                                     parent : 'Pman',
342                                     name : 'Module Name',
343                                     items: [] 
344                                 };
345                             },
346                             dupeNode : function(node)
347                                 {
348                                     var cfg = this.cloneConfig(node.elConfig);
349                                     
350                                     var newNode = new Roo.tree.TreeNode(
351                                     {
352                                             id: Roo.id(),
353                                             text: this.configToText(cfg)
354                                     });
355                                     
356                                     newNode.elConfig = cfg;
357                                     node.eachChild(function(n) {
358                                         newNode.appendChild(this.dupeNode(n));
359                                     },this);
360                                     
361                                     return newNode;
362                                         
363                                 },
364                             loadBJS : function(module, part) {
365                                 var _t = this;
366                                 new Pman.Request({
367                                     url : baseURL + '/Roo/Builder_part.php',
368                                     method : 'GET',
369                                     params : {
370                                        _id : part
371                                     },
372                                     success : function(res)         
373                                     {
374                                         // data is in.. 
375                                         Roo.log(res);
376                                         _t.loadTree(JSON.parse(res.data.json));
377                                         
378                                      
379                                     },
380                             
381                                  })  
382                                     
383                                 
384                                 
385                             },
386                             loadTree : function(o) {
387                                 this.clearAll();
388                                 this.root.elConfig = o;
389                                 this.root.setText(this.configToText(this.root.elConfig));
390                                 this.appendNode(this.root, o.items[0]);
391                                 this.root.expand(true);
392                                 Pman.Tab.BuilderView.panel.redraw();
393                                 this.setCurrentNode(this.root,true);
394                             },
395                             nodeXtype : function(n) {
396                                  if (!n) {return ''; }
397                                 var xt = n.elConfig.xtype ||  '';
398                                 var xns= n.elConfig['|xns'] ||   '';
399                                 xns += xns.length ? '.' : '';
400                                 return xns + xt;
401                             },
402                             renderer : function(n) { return n.text; },
403                             setCurrentNode : function(node,select) {
404                                     this.currentNode = node || this.root;
405                                     
406                                     //Pman.Tab.BuilderView.highlightElement(this.currentNode);
407                             
408                                     var p = Pman.Tab.BuilderProps.grid;
409                                     if (p) { //may not be ready yet..
410                                         p.setCurrrentNode(this.currentNode);
411                                     }
412                                     
413                                   
414                                     this.currentNode.setText(this.configToText(this.currentNode.elConfig));
415                                     
416                                     if (select) { //&& node !== this.tree.root) {
417                                         if (this.currentNode !== this.root)  {
418                                                  this.currentNode.ensureVisible();
419                                           }   
420                                          this.currentNode.expand(false,false);
421                                         this.currentNode.select();
422                                 }
423                                 // update palete..
424                                 Pman.Tab.BuilderPalette.grid.getSelectionModel().clearSelections();
425                                 Pman.Tab.BuilderPalette.grid.view.refresh();
426                             
427                             },
428                             sm : {
429                                 xtype: 'DefaultSelectionModel',
430                                 xns: Roo.tree
431                             },
432                             root : {
433                                 xtype: 'TreeNode',
434                                 xns: Roo.tree,
435                                 text : "Part",
436                                 elConfig : function() {
437                                     return  {
438                                          xtype : '*Module',
439                                             
440                                             app : 'TestApp',
441                                             // perm
442                                             // permtype
443                                             modkey : 0,
444                                             '|module' :  '',
445                                             region : 'center',
446                                             '|parent' : 'Pman',
447                                             name : "Module Name",
448                                             items: [] 
449                                 
450                                     
451                                     }
452                                 }
453                             }
454                         }
455                     }
456                 ],
457                 center : {
458                     xtype: 'LayoutRegion',
459                     xns: Roo
460                 },
461                 south : {
462                     xtype: 'LayoutRegion',
463                     xns: Roo,
464                     height : 300,
465                     split : true
466                 }
467             }
468         });
469         this.layout = this.panel.layout;
470
471     }
472 });