Roo/form/ComboBoxArray.js
[roojs1] / Roo / XComponent.js
1 /*
2  * Original code for Roojs - LGPL
3  * <script type="text/javascript">
4  */
5  
6 /**
7  * @class Roo.XComponent
8  * A delayed Element creator...
9  * Or a way to group chunks of interface together.
10  * technically this is a wrapper around a tree of Roo elements (which defines a 'module'),
11  *  used in conjunction with XComponent.build() it will create an instance of each element,
12  *  then call addxtype() to build the User interface.
13  * 
14  * Mypart.xyx = new Roo.XComponent({
15
16     parent : 'Mypart.xyz', // empty == document.element.!!
17     order : '001',
18     name : 'xxxx'
19     region : 'xxxx'
20     disabled : function() {} 
21      
22     tree : function() { // return an tree of xtype declared components
23         var MODULE = this;
24         return 
25         {
26             xtype : 'NestedLayoutPanel',
27             // technicall
28         }
29      ]
30  *})
31  *
32  *
33  * It can be used to build a big heiracy, with parent etc.
34  * or you can just use this to render a single compoent to a dom element
35  * MYPART.render(Roo.Element | String(id) | dom_element )
36  *
37  *
38  * Usage patterns.
39  *
40  * Classic Roo
41  *
42  * Roo is designed primarily as a single page application, so the UI build for a standard interface will
43  * expect a single 'TOP' level module normally indicated by the 'parent' of the XComponent definition being defined as false.
44  *
45  * Each sub module is expected to have a parent pointing to the class name of it's parent module.
46  *
47  * When the top level is false, a 'Roo.BorderLayout' is created and the element is flagged as 'topModule'
48  * - if mulitple topModules exist, the last one is defined as the top module.
49  *
50  * Embeded Roo
51  * 
52  * When the top level or multiple modules are to embedded into a existing HTML page,
53  * the parent element can container '#id' of the element where the module will be drawn.
54  *
55  * Bootstrap Roo
56  *
57  * Unlike classic Roo, the bootstrap tends not to be used as a single page.
58  * it relies more on a include mechanism, where sub modules are included into an outer page.
59  * This is normally managed by the builder tools using Roo.apply( options, Included.Sub.Module )
60  * 
61  * Bootstrap Roo Included elements
62  *
63  * Our builder application needs the ability to preview these sub compoennts. They will normally have parent=false set,
64  * hence confusing the component builder as it thinks there are multiple top level elements. 
65  *
66  * 
67  * 
68  * @extends Roo.util.Observable
69  * @constructor
70  * @param cfg {Object} configuration of component
71  * 
72  */
73 Roo.XComponent = function(cfg) {
74     Roo.apply(this, cfg);
75     this.addEvents({ 
76         /**
77              * @event built
78              * Fires when this the componnt is built
79              * @param {Roo.XComponent} c the component
80              */
81         'built' : true
82         
83     });
84     this.region = this.region || 'center'; // default..
85     Roo.XComponent.register(this);
86     this.modules = false;
87     this.el = false; // where the layout goes..
88     
89     
90 }
91 Roo.extend(Roo.XComponent, Roo.util.Observable, {
92     /**
93      * @property el
94      * The created element (with Roo.factory())
95      * @type {Roo.Layout}
96      */
97     el  : false,
98     
99     /**
100      * @property el
101      * for BC  - use el in new code
102      * @type {Roo.Layout}
103      */
104     panel : false,
105     
106     /**
107      * @property layout
108      * for BC  - use el in new code
109      * @type {Roo.Layout}
110      */
111     layout : false,
112     
113      /**
114      * @cfg {Function|boolean} disabled
115      * If this module is disabled by some rule, return true from the funtion
116      */
117     disabled : false,
118     
119     /**
120      * @cfg {String} parent 
121      * Name of parent element which it get xtype added to..
122      */
123     parent: false,
124     
125     /**
126      * @cfg {String} order
127      * Used to set the order in which elements are created (usefull for multiple tabs)
128      */
129     
130     order : false,
131     /**
132      * @cfg {String} name
133      * String to display while loading.
134      */
135     name : false,
136     /**
137      * @cfg {String} region
138      * Region to render component to (defaults to center)
139      */
140     region : 'center',
141     
142     /**
143      * @cfg {Array} items
144      * A single item array - the first element is the root of the tree..
145      * It's done this way to stay compatible with the Xtype system...
146      */
147     items : false,
148     
149     /**
150      * @property _tree
151      * The method that retuns the tree of parts that make up this compoennt 
152      * @type {function}
153      */
154     _tree  : false,
155     
156      /**
157      * render
158      * render element to dom or tree
159      * @param {Roo.Element|String|DomElement} optional render to if parent is not set.
160      */
161     
162     render : function(el)
163     {
164         
165         el = el || false;
166         var hp = this.parent ? 1 : 0;
167         Roo.log(this);
168         
169         if (!el && typeof(this.parent) == 'string' && this.parent.substring(0,1) == '#') {
170             // if parent is a '#.....' string, then let's use that..
171             var ename = this.parent.substr(1);
172             this.parent = false;
173             Roo.log(ename);
174             switch (ename) {
175                 case 'bootstrap-body' :
176                     if (typeof(Roo.bootstrap.Body) != 'undefined') {
177                         this.parent = { el :  new  Roo.bootstrap.Body() };
178                         Roo.log("setting el to doc body");
179                          
180                     } else {
181                         throw "Container is bootstrap body, but Roo.bootstrap.Body is not defined";
182                     }
183                     break;
184                 case 'bootstrap':
185                     this.parent = { el : true};
186                     // fall through
187                 default:
188                     el = Roo.get(ename);
189                     break;
190             }
191                 
192             
193             if (!el && !this.parent) {
194                 Roo.log("Warning - element can not be found :#" + ename );
195                 return;
196             }
197         }
198         Roo.log("EL:");Roo.log(el);
199         Roo.log("this.parent.el:");Roo.log(this.parent.el);
200         
201         var tree = this._tree ? this._tree() : this.tree();
202
203         // altertive root elements ??? - we need a better way to indicate these.
204         var is_alt = (typeof(Roo.bootstrap) != 'undefined' && tree.xns == Roo.bootstrap) ||
205                         (typeof(Roo.mailer) != 'undefined' && tree.xns == Roo.mailer) ;
206         
207         if (!this.parent && is_alt) {
208             //el = Roo.get(document.body);
209             this.parent = { el : true };
210         }
211             
212             
213         
214         if (!this.parent) {
215             
216             Roo.log("no parent - creating one");
217             
218             el = el ? Roo.get(el) : false;      
219             
220             // it's a top level one..
221             this.parent =  {
222                 el : new Roo.BorderLayout(el || document.body, {
223                 
224                      center: {
225                          titlebar: false,
226                          autoScroll:false,
227                          closeOnTab: true,
228                          tabPosition: 'top',
229                           //resizeTabs: true,
230                          alwaysShowTabs: el && hp? false :  true,
231                          hideTabs: el || !hp ? true :  false,
232                          minTabWidth: 140
233                      }
234                  })
235             }
236         }
237         
238         if (!this.parent.el) {
239                 // probably an old style ctor, which has been disabled.
240                 return;
241
242         }
243                 // The 'tree' method is  '_tree now' 
244             
245         tree.region = tree.region || this.region;
246         
247         if (this.parent.el === true) {
248             // bootstrap... - body..
249             this.parent.el = Roo.factory(tree);
250         }
251         
252         this.el = this.parent.el.addxtype(tree);
253         this.fireEvent('built', this);
254         
255         this.panel = this.el;
256         this.layout = this.panel.layout;
257         this.parentLayout = this.parent.layout  || false;  
258          
259     }
260     
261 });
262
263 Roo.apply(Roo.XComponent, {
264     /**
265      * @property  hideProgress
266      * true to disable the building progress bar.. usefull on single page renders.
267      * @type Boolean
268      */
269     hideProgress : false,
270     /**
271      * @property  buildCompleted
272      * True when the builder has completed building the interface.
273      * @type Boolean
274      */
275     buildCompleted : false,
276      
277     /**
278      * @property  topModule
279      * the upper most module - uses document.element as it's constructor.
280      * @type Object
281      */
282      
283     topModule  : false,
284       
285     /**
286      * @property  modules
287      * array of modules to be created by registration system.
288      * @type {Array} of Roo.XComponent
289      */
290     
291     modules : [],
292     /**
293      * @property  elmodules
294      * array of modules to be created by which use #ID 
295      * @type {Array} of Roo.XComponent
296      */
297      
298     elmodules : [],
299
300      /**
301      * @property  build_from_html
302      * Build elements from html - used by bootstrap HTML stuff 
303      *    - this is cleared after build is completed
304      * @type {boolean} true  (default false)
305      */
306      
307     build_from_html : false,
308
309     /**
310      * Register components to be built later.
311      *
312      * This solves the following issues
313      * - Building is not done on page load, but after an authentication process has occured.
314      * - Interface elements are registered on page load
315      * - Parent Interface elements may not be loaded before child, so this handles that..
316      * 
317      *
318      * example:
319      * 
320      * MyApp.register({
321           order : '000001',
322           module : 'Pman.Tab.projectMgr',
323           region : 'center',
324           parent : 'Pman.layout',
325           disabled : false,  // or use a function..
326         })
327      
328      * * @param {Object} details about module
329      */
330     register : function(obj) {
331                 
332         Roo.XComponent.event.fireEvent('register', obj);
333         switch(typeof(obj.disabled) ) {
334                 
335             case 'undefined':
336                 break;
337             
338             case 'function':
339                 if ( obj.disabled() ) {
340                         return;
341                 }
342                 break;
343             
344             default:
345                 if (obj.disabled) {
346                         return;
347                 }
348                 break;
349         }
350                 
351         this.modules.push(obj);
352          
353     },
354     /**
355      * convert a string to an object..
356      * eg. 'AAA.BBB' -> finds AAA.BBB
357
358      */
359     
360     toObject : function(str)
361     {
362         if (!str || typeof(str) == 'object') {
363             return str;
364         }
365         if (str.substring(0,1) == '#') {
366             return str;
367         }
368
369         var ar = str.split('.');
370         var rt, o;
371         rt = ar.shift();
372             /** eval:var:o */
373         try {
374             eval('if (typeof ' + rt + ' == "undefined"){ o = false;} o = ' + rt + ';');
375         } catch (e) {
376             throw "Module not found : " + str;
377         }
378         
379         if (o === false) {
380             throw "Module not found : " + str;
381         }
382         Roo.each(ar, function(e) {
383             if (typeof(o[e]) == 'undefined') {
384                 throw "Module not found : " + str;
385             }
386             o = o[e];
387         });
388         
389         return o;
390         
391     },
392     
393     
394     /**
395      * move modules into their correct place in the tree..
396      * 
397      */
398     preBuild : function ()
399     {
400         var _t = this;
401         Roo.each(this.modules , function (obj)
402         {
403             Roo.XComponent.event.fireEvent('beforebuild', obj);
404             
405             var opar = obj.parent;
406             try { 
407                 obj.parent = this.toObject(opar);
408             } catch(e) {
409                 Roo.log("parent:toObject failed: " + e.toString());
410                 return;
411             }
412             
413             if (!obj.parent) {
414                 Roo.debug && Roo.log("GOT top level module");
415                 Roo.debug && Roo.log(obj);
416                 obj.modules = new Roo.util.MixedCollection(false, 
417                     function(o) { return o.order + '' }
418                 );
419                 this.topModule = obj;
420                 return;
421             }
422                         // parent is a string (usually a dom element name..)
423             if (typeof(obj.parent) == 'string') {
424                 this.elmodules.push(obj);
425                 return;
426             }
427             if (obj.parent.constructor != Roo.XComponent) {
428                 Roo.log("Warning : Object Parent is not instance of XComponent:" + obj.name)
429             }
430             if (!obj.parent.modules) {
431                 obj.parent.modules = new Roo.util.MixedCollection(false, 
432                     function(o) { return o.order + '' }
433                 );
434             }
435             if (obj.parent.disabled) {
436                 obj.disabled = true;
437             }
438             obj.parent.modules.add(obj);
439         }, this);
440     },
441     
442      /**
443      * make a list of modules to build.
444      * @return {Array} list of modules. 
445      */ 
446     
447     buildOrder : function()
448     {
449         var _this = this;
450         var cmp = function(a,b) {   
451             return String(a).toUpperCase() > String(b).toUpperCase() ? 1 : -1;
452         };
453         if ((!this.topModule || !this.topModule.modules) && !this.elmodules.length) {
454             throw "No top level modules to build";
455         }
456         
457         // make a flat list in order of modules to build.
458         var mods = this.topModule ? [ this.topModule ] : [];
459                 
460         
461         // elmodules (is a list of DOM based modules )
462         Roo.each(this.elmodules, function(e) {
463             mods.push(e);
464             if (!this.topModule &&
465                 typeof(e.parent) == 'string' &&
466                 e.parent.substring(0,1) == '#' &&
467                 Roo.get(e.parent.substr(1))
468                ) {
469                 
470                 _this.topModule = e;
471             }
472             
473         });
474
475         
476         // add modules to their parents..
477         var addMod = function(m) {
478             Roo.debug && Roo.log("build Order: add: " + m.name);
479                 
480             mods.push(m);
481             if (m.modules && !m.disabled) {
482                 Roo.debug && Roo.log("build Order: " + m.modules.length + " child modules");
483                 m.modules.keySort('ASC',  cmp );
484                 Roo.debug && Roo.log("build Order: " + m.modules.length + " child modules (after sort)");
485     
486                 m.modules.each(addMod);
487             } else {
488                 Roo.debug && Roo.log("build Order: no child modules");
489             }
490             // not sure if this is used any more..
491             if (m.finalize) {
492                 m.finalize.name = m.name + " (clean up) ";
493                 mods.push(m.finalize);
494             }
495             
496         }
497         if (this.topModule && this.topModule.modules) { 
498             this.topModule.modules.keySort('ASC',  cmp );
499             this.topModule.modules.each(addMod);
500         } 
501         return mods;
502     },
503     
504      /**
505      * Build the registered modules.
506      * @param {Object} parent element.
507      * @param {Function} optional method to call after module has been added.
508      * 
509      */ 
510    
511     build : function(opts) 
512     {
513         
514         if (typeof(opts) != 'undefined') {
515             Roo.apply(this,opts);
516         }
517         
518         this.preBuild();
519         var mods = this.buildOrder();
520       
521         //this.allmods = mods;
522         //Roo.debug && Roo.log(mods);
523         //return;
524         if (!mods.length) { // should not happen
525             throw "NO modules!!!";
526         }
527         
528         
529         var msg = "Building Interface...";
530         // flash it up as modal - so we store the mask!?
531         if (!this.hideProgress && Roo.MessageBox) {
532             Roo.MessageBox.show({ title: 'loading' });
533             Roo.MessageBox.show({
534                title: "Please wait...",
535                msg: msg,
536                width:450,
537                progress:true,
538                closable:false,
539                modal: false
540               
541             });
542         }
543         var total = mods.length;
544         
545         var _this = this;
546         var progressRun = function() {
547             if (!mods.length) {
548                 Roo.debug && Roo.log('hide?');
549                 if (!this.hideProgress && Roo.MessageBox) {
550                     Roo.MessageBox.hide();
551                 }
552                 Roo.XComponent.build_from_html = false; // reset, so dialogs will be build from javascript
553                 
554                 Roo.XComponent.event.fireEvent('buildcomplete', _this.topModule);
555                 
556                 // THE END...
557                 return false;   
558             }
559             
560             var m = mods.shift();
561             
562             
563             Roo.debug && Roo.log(m);
564             // not sure if this is supported any more.. - modules that are are just function
565             if (typeof(m) == 'function') { 
566                 m.call(this);
567                 return progressRun.defer(10, _this);
568             } 
569             
570             
571             msg = "Building Interface " + (total  - mods.length) + 
572                     " of " + total + 
573                     (m.name ? (' - ' + m.name) : '');
574                         Roo.debug && Roo.log(msg);
575             if (!this.hideProgress &&  Roo.MessageBox) { 
576                 Roo.MessageBox.updateProgress(  (total  - mods.length)/total, msg  );
577             }
578             
579          
580             // is the module disabled?
581             var disabled = (typeof(m.disabled) == 'function') ?
582                 m.disabled.call(m.module.disabled) : m.disabled;    
583             
584             
585             if (disabled) {
586                 return progressRun(); // we do not update the display!
587             }
588             
589             // now build 
590             
591                         
592                         
593             m.render();
594             // it's 10 on top level, and 1 on others??? why...
595             return progressRun.defer(10, _this);
596              
597         }
598         progressRun.defer(1, _this);
599      
600         
601         
602     },
603         
604         
605         /**
606          * Event Object.
607          *
608          *
609          */
610         event: false, 
611     /**
612          * wrapper for event.on - aliased later..  
613          * Typically use to register a event handler for register:
614          *
615          * eg. Roo.XComponent.on('register', function(comp) { comp.disable = true } );
616          *
617          */
618     on : false
619    
620     
621     
622 });
623
624 Roo.XComponent.event = new Roo.util.Observable({
625                 events : { 
626                         /**
627                          * @event register
628                          * Fires when an Component is registered,
629                          * set the disable property on the Component to stop registration.
630                          * @param {Roo.XComponent} c the component being registerd.
631                          * 
632                          */
633                         'register' : true,
634             /**
635                          * @event beforebuild
636                          * Fires before each Component is built
637                          * can be used to apply permissions.
638                          * @param {Roo.XComponent} c the component being registerd.
639                          * 
640                          */
641                         'beforebuild' : true,
642                         /**
643                          * @event buildcomplete
644                          * Fires on the top level element when all elements have been built
645                          * @param {Roo.XComponent} the top level component.
646                          */
647                         'buildcomplete' : true
648                         
649                 }
650 });
651
652 Roo.XComponent.on = Roo.XComponent.event.on.createDelegate(Roo.XComponent.event); 
653