Roo/ContentPanel.js
[roojs1] / Roo / ContentPanel.js
1 /*
2  * Based on:
3  * Ext JS Library 1.1.1
4  * Copyright(c) 2006-2007, Ext JS, LLC.
5  *
6  * Originally Released Under LGPL - original licence link has changed is not relivant.
7  *
8  * Fork - LGPL
9  * <script type="text/javascript">
10  */
11 /**
12  * @class Roo.ContentPanel
13  * @extends Roo.util.Observable
14  * A basic ContentPanel element.
15  * @cfg {Boolean}   fitToFrame    True for this panel to adjust its size to fit when the region resizes  (defaults to false)
16  * @cfg {Boolean}   fitContainer   When using {@link #fitToFrame} and {@link #resizeEl}, you can also fit the parent container  (defaults to false)
17  * @cfg {Boolean/Object} autoCreate True to auto generate the DOM element for this panel, or a {@link Roo.DomHelper} config of the element to create
18  * @cfg {Boolean}   closable      True if the panel can be closed/removed
19  * @cfg {Boolean}   background    True if the panel should not be activated when it is added (defaults to false)
20  * @cfg {String/HTMLElement/Element} resizeEl An element to resize if {@link #fitToFrame} is true (instead of this panel's element)
21  * @cfg {Toolbar}   toolbar       A toolbar for this panel
22  * @cfg {Boolean} autoScroll    True to scroll overflow in this panel (use with {@link #fitToFrame})
23  * @cfg {String} title          The title for this panel
24  * @cfg {Array} adjustments     Values to <b>add</b> to the width/height when doing a {@link #fitToFrame} (default is [0, 0])
25  * @cfg {String} url            Calls {@link #setUrl} with this value
26  * @cfg {String} region         (center|north|south|east|west) which region to put this panel on (when used with xtype constructors)
27  * @cfg {String/Object} params  When used with {@link #url}, calls {@link #setUrl} with this value
28  * @cfg {Boolean} loadOnce      When used with {@link #url}, calls {@link #setUrl} with this value
29  * @cfg {String}    content        Raw content to fill content panel with (uses setContent on construction.)
30
31  * @constructor
32  * Create a new ContentPanel.
33  * @param {String/HTMLElement/Roo.Element} el The container element for this panel
34  * @param {String/Object} config A string to set only the title or a config object
35  * @param {String} content (optional) Set the HTML content for this panel
36  * @param {String} region (optional) Used by xtype constructors to add to regions. (values center,east,west,south,north)
37  */
38 Roo.ContentPanel = function(el, config, content){
39     
40      
41     /*
42     if(el.autoCreate || el.xtype){ // xtype is available if this is called from factory
43         config = el;
44         el = Roo.id();
45     }
46     if (config && config.parentLayout) { 
47         el = config.parentLayout.el.createChild(); 
48     }
49     */
50     if(el.autoCreate){ // xtype is available if this is called from factory
51         config = el;
52         el = Roo.id();
53     }
54     this.el = Roo.get(el);
55     if(!this.el && config && config.autoCreate){
56         if(typeof config.autoCreate == "object"){
57             if(!config.autoCreate.id){
58                 config.autoCreate.id = config.id||el;
59             }
60             this.el = Roo.DomHelper.append(document.body,
61                         config.autoCreate, true);
62         }else{
63             this.el = Roo.DomHelper.append(document.body,
64                         {tag: "div", cls: "x-layout-inactive-content", id: config.id||el}, true);
65         }
66     }
67     this.closable = false;
68     this.loaded = false;
69     this.active = false;
70     if(typeof config == "string"){
71         this.title = config;
72     }else{
73         Roo.apply(this, config);
74     }
75     
76     if (this.toolbar && !this.toolbar.el && this.toolbar.xtype) {
77         this.wrapEl = this.el.wrap();
78         this.toolbar.container = this.el.insertSibling(false, 'before');
79         this.toolbar = new Roo.Toolbar(this.toolbar);
80     }
81     
82     // xtype created footer. - not sure if will work as we normally have to render first..
83     if (this.footer && !this.footer.el && this.footer.xtype) {
84         if (!this.wrapEl) {
85             this.wrapEl = this.el.wrap();
86         }
87     
88         this.footer.container = this.el.insertSibling(false, 'after');
89          
90         this.footer = Roo.factory(this.footer, Roo);
91         
92     }
93     
94     if(this.resizeEl){
95         this.resizeEl = Roo.get(this.resizeEl, true);
96     }else{
97         this.resizeEl = this.el;
98     }
99     this.addEvents({
100         /**
101          * @event activate
102          * Fires when this panel is activated. 
103          * @param {Roo.ContentPanel} this
104          */
105         "activate" : true,
106         /**
107          * @event deactivate
108          * Fires when this panel is activated. 
109          * @param {Roo.ContentPanel} this
110          */
111         "deactivate" : true,
112
113         /**
114          * @event resize
115          * Fires when this panel is resized if fitToFrame is true.
116          * @param {Roo.ContentPanel} this
117          * @param {Number} width The width after any component adjustments
118          * @param {Number} height The height after any component adjustments
119          */
120         "resize" : true,
121         
122          /**
123          * @event render
124          * Fires when this tab is created
125          * @param {Roo.ContentPanel} this
126          */
127         "render" : true
128         
129         
130         
131     });
132     if(this.autoScroll){
133         this.resizeEl.setStyle("overflow", "auto");
134     } else {
135         // fix randome scrolling
136         this.el.on('scroll', function() {
137             Roo.log('fix random scolling');
138             this.scrollTo('top',0); 
139         });
140     }
141     content = content || this.content;
142     if(content){
143         this.setContent(content);
144     }
145     if(config && config.url){
146         this.setUrl(this.url, this.params, this.loadOnce);
147     }
148     
149     
150     
151     Roo.ContentPanel.superclass.constructor.call(this);
152     
153     this.fireEvent('render', this);
154 };
155
156 Roo.extend(Roo.ContentPanel, Roo.util.Observable, {
157     tabTip:'',
158     setRegion : function(region){
159         this.region = region;
160         if(region){
161            this.el.replaceClass("x-layout-inactive-content", "x-layout-active-content");
162         }else{
163            this.el.replaceClass("x-layout-active-content", "x-layout-inactive-content");
164         } 
165     },
166     
167     /**
168      * Returns the toolbar for this Panel if one was configured. 
169      * @return {Roo.Toolbar} 
170      */
171     getToolbar : function(){
172         return this.toolbar;
173     },
174     
175     setActiveState : function(active){
176         this.active = active;
177         if(!active){
178             this.fireEvent("deactivate", this);
179         }else{
180             this.fireEvent("activate", this);
181         }
182     },
183     /**
184      * Updates this panel's element
185      * @param {String} content The new content
186      * @param {Boolean} loadScripts (optional) true to look for and process scripts
187     */
188     setContent : function(content, loadScripts){
189         this.el.update(content, loadScripts);
190     },
191
192     ignoreResize : function(w, h){
193         if(this.lastSize && this.lastSize.width == w && this.lastSize.height == h){
194             return true;
195         }else{
196             this.lastSize = {width: w, height: h};
197             return false;
198         }
199     },
200     /**
201      * Get the {@link Roo.UpdateManager} for this panel. Enables you to perform Ajax updates.
202      * @return {Roo.UpdateManager} The UpdateManager
203      */
204     getUpdateManager : function(){
205         return this.el.getUpdateManager();
206     },
207      /**
208      * Loads this content panel immediately with content from XHR. Note: to delay loading until the panel is activated, use {@link #setUrl}.
209      * @param {Object/String/Function} url The url for this request or a function to call to get the url or a config object containing any of the following options:
210 <pre><code>
211 panel.load({
212     url: "your-url.php",
213     params: {param1: "foo", param2: "bar"}, // or a URL encoded string
214     callback: yourFunction,
215     scope: yourObject, //(optional scope)
216     discardUrl: false,
217     nocache: false,
218     text: "Loading...",
219     timeout: 30,
220     scripts: false
221 });
222 </code></pre>
223      * The only required property is <i>url</i>. The optional properties <i>nocache</i>, <i>text</i> and <i>scripts</i>
224      * are shorthand for <i>disableCaching</i>, <i>indicatorText</i> and <i>loadScripts</i> and are used to set their associated property on this panel UpdateManager instance.
225      * @param {String/Object} params (optional) The parameters to pass as either a URL encoded string "param1=1&amp;param2=2" or an object {param1: 1, param2: 2}
226      * @param {Function} callback (optional) Callback when transaction is complete -- called with signature (oElement, bSuccess, oResponse)
227      * @param {Boolean} discardUrl (optional) By default when you execute an update the defaultUrl is changed to the last used URL. If true, it will not store the URL.
228      * @return {Roo.ContentPanel} this
229      */
230     load : function(){
231         var um = this.el.getUpdateManager();
232         um.update.apply(um, arguments);
233         return this;
234     },
235
236
237     /**
238      * Set a URL to be used to load the content for this panel. When this panel is activated, the content will be loaded from that URL.
239      * @param {String/Function} url The URL to load the content from or a function to call to get the URL
240      * @param {String/Object} params (optional) The string params for the update call or an object of the params. See {@link Roo.UpdateManager#update} for more details. (Defaults to null)
241      * @param {Boolean} loadOnce (optional) Whether to only load the content once. If this is false it makes the Ajax call every time this panel is activated. (Defaults to false)
242      * @return {Roo.UpdateManager} The UpdateManager
243      */
244     setUrl : function(url, params, loadOnce){
245         if(this.refreshDelegate){
246             this.removeListener("activate", this.refreshDelegate);
247         }
248         this.refreshDelegate = this._handleRefresh.createDelegate(this, [url, params, loadOnce]);
249         this.on("activate", this.refreshDelegate);
250         return this.el.getUpdateManager();
251     },
252     
253     _handleRefresh : function(url, params, loadOnce){
254         if(!loadOnce || !this.loaded){
255             var updater = this.el.getUpdateManager();
256             updater.update(url, params, this._setLoaded.createDelegate(this));
257         }
258     },
259     
260     _setLoaded : function(){
261         this.loaded = true;
262     }, 
263     
264     /**
265      * Returns this panel's id
266      * @return {String} 
267      */
268     getId : function(){
269         return this.el.id;
270     },
271     
272     /** 
273      * Returns this panel's element - used by regiosn to add.
274      * @return {Roo.Element} 
275      */
276     getEl : function(){
277         return this.wrapEl || this.el;
278     },
279     
280     adjustForComponents : function(width, height){
281         if(this.resizeEl != this.el){
282             width -= this.el.getFrameWidth('lr');
283             height -= this.el.getFrameWidth('tb');
284         }
285         if(this.toolbar){
286             var te = this.toolbar.getEl();
287             height -= te.getHeight();
288             te.setWidth(width);
289         }
290         if(this.footer){
291             var te = this.footer.getEl();
292             height -= te.getHeight();
293             te.setWidth(width);
294         }
295         
296         
297         if(this.adjustments){
298             width += this.adjustments[0];
299             height += this.adjustments[1];
300         }
301         return {"width": width, "height": height};
302     },
303     
304     setSize : function(width, height){
305         if(this.fitToFrame && !this.ignoreResize(width, height)){
306             if(this.fitContainer && this.resizeEl != this.el){
307                 this.el.setSize(width, height);
308             }
309             var size = this.adjustForComponents(width, height);
310             this.resizeEl.setSize(this.autoWidth ? "auto" : size.width, this.autoHeight ? "auto" : size.height);
311             this.fireEvent('resize', this, size.width, size.height);
312         }
313     },
314     
315     /**
316      * Returns this panel's title
317      * @return {String} 
318      */
319     getTitle : function(){
320         return this.title;
321     },
322     
323     /**
324      * Set this panel's title
325      * @param {String} title
326      */
327     setTitle : function(title){
328         this.title = title;
329         if(this.region){
330             this.region.updatePanelTitle(this, title);
331         }
332     },
333     
334     /**
335      * Returns true is this panel was configured to be closable
336      * @return {Boolean} 
337      */
338     isClosable : function(){
339         return this.closable;
340     },
341     
342     beforeSlide : function(){
343         this.el.clip();
344         this.resizeEl.clip();
345     },
346     
347     afterSlide : function(){
348         this.el.unclip();
349         this.resizeEl.unclip();
350     },
351     
352     /**
353      *   Force a content refresh from the URL specified in the {@link #setUrl} method.
354      *   Will fail silently if the {@link #setUrl} method has not been called.
355      *   This does not activate the panel, just updates its content.
356      */
357     refresh : function(){
358         if(this.refreshDelegate){
359            this.loaded = false;
360            this.refreshDelegate();
361         }
362     },
363     
364     /**
365      * Destroys this panel
366      */
367     destroy : function(){
368         this.el.removeAllListeners();
369         var tempEl = document.createElement("span");
370         tempEl.appendChild(this.el.dom);
371         tempEl.innerHTML = "";
372         this.el.remove();
373         this.el = null;
374     },
375     
376     /**
377      * form - if the content panel contains a form - this is a reference to it.
378      * @type {Roo.form.Form}
379      */
380     form : false,
381     /**
382      * view - if the content panel contains a view (Roo.DatePicker / Roo.View / Roo.JsonView)
383      *    This contains a reference to it.
384      * @type {Roo.View}
385      */
386     view : false,
387     
388       /**
389      * Adds a xtype elements to the panel - currently only supports Forms, View, JsonView.
390      * <pre><code>
391
392 layout.addxtype({
393        xtype : 'Form',
394        items: [ .... ]
395    }
396 );
397
398 </code></pre>
399      * @param {Object} cfg Xtype definition of item to add.
400      */
401     
402     addxtype : function(cfg) {
403         // add form..
404         if (cfg.xtype.match(/^Form$/)) {
405             
406             var el;
407             //if (this.footer) {
408             //    el = this.footer.container.insertSibling(false, 'before');
409             //} else {
410                 el = this.el.createChild();
411             //}
412
413             this.form = new  Roo.form.Form(cfg);
414             
415             
416             if ( this.form.allItems.length) this.form.render(el.dom);
417             return this.form;
418         }
419         // should only have one of theses..
420         if (['View', 'JsonView', 'DatePicker'].indexOf(cfg.xtype) > -1) {
421             // views..
422             cfg.el = this.el.appendChild(document.createElement("div"));
423             // factory?
424             
425             var ret = new Roo.factory(cfg);
426             ret.render && ret.render(false, ''); // render blank..
427             this.view = ret;
428             return ret;
429         }
430         return false;
431     }
432 });
433
434 /**
435  * @class Roo.GridPanel
436  * @extends Roo.ContentPanel
437  * @constructor
438  * Create a new GridPanel.
439  * @param {Roo.grid.Grid} grid The grid for this panel
440  * @param {String/Object} config A string to set only the panel's title, or a config object
441  */
442 Roo.GridPanel = function(grid, config){
443     
444   
445     this.wrapper = Roo.DomHelper.append(document.body, // wrapper for IE7 strict & safari scroll issue
446         {tag: "div", cls: "x-layout-grid-wrapper x-layout-inactive-content"}, true);
447         
448     this.wrapper.dom.appendChild(grid.getGridEl().dom);
449     
450     Roo.GridPanel.superclass.constructor.call(this, this.wrapper, config);
451     
452     if(this.toolbar){
453         this.toolbar.el.insertBefore(this.wrapper.dom.firstChild);
454     }
455     // xtype created footer. - not sure if will work as we normally have to render first..
456     if (this.footer && !this.footer.el && this.footer.xtype) {
457         
458         this.footer.container = this.grid.getView().getFooterPanel(true);
459         this.footer.dataSource = this.grid.dataSource;
460         this.footer = Roo.factory(this.footer, Roo);
461         
462     }
463     
464     grid.monitorWindowResize = false; // turn off autosizing
465     grid.autoHeight = false;
466     grid.autoWidth = false;
467     this.grid = grid;
468     this.grid.getGridEl().replaceClass("x-layout-inactive-content", "x-layout-component-panel");
469 };
470
471 Roo.extend(Roo.GridPanel, Roo.ContentPanel, {
472     getId : function(){
473         return this.grid.id;
474     },
475     
476     /**
477      * Returns the grid for this panel
478      * @return {Roo.grid.Grid} 
479      */
480     getGrid : function(){
481         return this.grid;    
482     },
483     
484     setSize : function(width, height){
485         if(!this.ignoreResize(width, height)){
486             var grid = this.grid;
487             var size = this.adjustForComponents(width, height);
488             grid.getGridEl().setSize(size.width, size.height);
489             grid.autoSize();
490         }
491     },
492     
493     beforeSlide : function(){
494         this.grid.getView().scroller.clip();
495     },
496     
497     afterSlide : function(){
498         this.grid.getView().scroller.unclip();
499     },
500     
501     destroy : function(){
502         this.grid.destroy();
503         delete this.grid;
504         Roo.GridPanel.superclass.destroy.call(this); 
505     }
506 });
507
508
509 /**
510  * @class Roo.NestedLayoutPanel
511  * @extends Roo.ContentPanel
512  * @constructor
513  * Create a new NestedLayoutPanel.
514  * 
515  * 
516  * @param {Roo.BorderLayout} layout The layout for this panel
517  * @param {String/Object} config A string to set only the title or a config object
518  */
519 Roo.NestedLayoutPanel = function(layout, config)
520 {
521     // construct with only one argument..
522     /* FIXME - implement nicer consturctors
523     if (layout.layout) {
524         config = layout;
525         layout = config.layout;
526         delete config.layout;
527     }
528     if (layout.xtype && !layout.getEl) {
529         // then layout needs constructing..
530         layout = Roo.factory(layout, Roo);
531     }
532     */
533     
534     
535     Roo.NestedLayoutPanel.superclass.constructor.call(this, layout.getEl(), config);
536     
537     layout.monitorWindowResize = false; // turn off autosizing
538     this.layout = layout;
539     this.layout.getEl().addClass("x-layout-nested-layout");
540     
541     
542     
543     
544 };
545
546 Roo.extend(Roo.NestedLayoutPanel, Roo.ContentPanel, {
547
548     setSize : function(width, height){
549         if(!this.ignoreResize(width, height)){
550             var size = this.adjustForComponents(width, height);
551             var el = this.layout.getEl();
552             el.setSize(size.width, size.height);
553             var touch = el.dom.offsetWidth;
554             this.layout.layout();
555             // ie requires a double layout on the first pass
556             if(Roo.isIE && !this.initialized){
557                 this.initialized = true;
558                 this.layout.layout();
559             }
560         }
561     },
562     
563     // activate all subpanels if not currently active..
564     
565     setActiveState : function(active){
566         this.active = active;
567         if(!active){
568             this.fireEvent("deactivate", this);
569             return;
570         }
571         
572         this.fireEvent("activate", this);
573         // not sure if this should happen before or after..
574         if (!this.layout) {
575             return; // should not happen..
576         }
577         var reg = false;
578         for (var r in this.layout.regions) {
579             reg = this.layout.getRegion(r);
580             if (reg.getActivePanel()) {
581                 //reg.showPanel(reg.getActivePanel()); // force it to activate.. 
582                 reg.setActivePanel(reg.getActivePanel());
583                 continue;
584             }
585             if (!reg.panels.length) {
586                 continue;
587             }
588             reg.showPanel(reg.getPanel(0));
589         }
590         
591         
592         
593         
594     },
595     
596     /**
597      * Returns the nested BorderLayout for this panel
598      * @return {Roo.BorderLayout} 
599      */
600     getLayout : function(){
601         return this.layout;
602     },
603     
604      /**
605      * Adds a xtype elements to the layout of the nested panel
606      * <pre><code>
607
608 panel.addxtype({
609        xtype : 'ContentPanel',
610        region: 'west',
611        items: [ .... ]
612    }
613 );
614
615 panel.addxtype({
616         xtype : 'NestedLayoutPanel',
617         region: 'west',
618         layout: {
619            center: { },
620            west: { }   
621         },
622         items : [ ... list of content panels or nested layout panels.. ]
623    }
624 );
625 </code></pre>
626      * @param {Object} cfg Xtype definition of item to add.
627      */
628     addxtype : function(cfg) {
629         return this.layout.addxtype(cfg);
630     
631     }
632 });
633
634 Roo.ScrollPanel = function(el, config, content){
635     config = config || {};
636     config.fitToFrame = true;
637     Roo.ScrollPanel.superclass.constructor.call(this, el, config, content);
638     
639     this.el.dom.style.overflow = "hidden";
640     var wrap = this.el.wrap({cls: "x-scroller x-layout-inactive-content"});
641     this.el.removeClass("x-layout-inactive-content");
642     this.el.on("mousewheel", this.onWheel, this);
643
644     var up = wrap.createChild({cls: "x-scroller-up", html: "&#160;"}, this.el.dom);
645     var down = wrap.createChild({cls: "x-scroller-down", html: "&#160;"});
646     up.unselectable(); down.unselectable();
647     up.on("click", this.scrollUp, this);
648     down.on("click", this.scrollDown, this);
649     up.addClassOnOver("x-scroller-btn-over");
650     down.addClassOnOver("x-scroller-btn-over");
651     up.addClassOnClick("x-scroller-btn-click");
652     down.addClassOnClick("x-scroller-btn-click");
653     this.adjustments = [0, -(up.getHeight() + down.getHeight())];
654
655     this.resizeEl = this.el;
656     this.el = wrap; this.up = up; this.down = down;
657 };
658
659 Roo.extend(Roo.ScrollPanel, Roo.ContentPanel, {
660     increment : 100,
661     wheelIncrement : 5,
662     scrollUp : function(){
663         this.resizeEl.scroll("up", this.increment, {callback: this.afterScroll, scope: this});
664     },
665
666     scrollDown : function(){
667         this.resizeEl.scroll("down", this.increment, {callback: this.afterScroll, scope: this});
668     },
669
670     afterScroll : function(){
671         var el = this.resizeEl;
672         var t = el.dom.scrollTop, h = el.dom.scrollHeight, ch = el.dom.clientHeight;
673         this.up[t == 0 ? "addClass" : "removeClass"]("x-scroller-btn-disabled");
674         this.down[h - t <= ch ? "addClass" : "removeClass"]("x-scroller-btn-disabled");
675     },
676
677     setSize : function(){
678         Roo.ScrollPanel.superclass.setSize.apply(this, arguments);
679         this.afterScroll();
680     },
681
682     onWheel : function(e){
683         var d = e.getWheelDelta();
684         this.resizeEl.dom.scrollTop -= (d*this.wheelIncrement);
685         this.afterScroll();
686         e.stopEvent();
687     },
688
689     setContent : function(content, loadScripts){
690         this.resizeEl.update(content, loadScripts);
691     }
692
693 });
694
695
696
697
698
699
700
701
702
703 /**
704  * @class Roo.TreePanel
705  * @extends Roo.ContentPanel
706  * @constructor
707  * Create a new TreePanel. - defaults to fit/scoll contents.
708  * @param {String/Object} config A string to set only the panel's title, or a config object
709  * @cfg {Roo.tree.TreePanel} tree The tree TreePanel, with config etc.
710  */
711 Roo.TreePanel = function(config){
712     var el = config.el;
713     var tree = config.tree;
714     delete config.tree; 
715     delete config.el; // hopefull!
716     
717     // wrapper for IE7 strict & safari scroll issue
718     
719     var treeEl = el.createChild();
720     config.resizeEl = treeEl;
721     
722     
723     
724     Roo.TreePanel.superclass.constructor.call(this, el, config);
725  
726  
727     this.tree = new Roo.tree.TreePanel(treeEl , tree);
728     //console.log(tree);
729     this.on('activate', function()
730     {
731         if (this.tree.rendered) {
732             return;
733         }
734         //console.log('render tree');
735         this.tree.render();
736     });
737     // this should not be needed.. - it's actually the 'el' that resizes?
738     // actuall it breaks the containerScroll - dragging nodes auto scroll at top
739     
740     //this.on('resize',  function (cp, w, h) {
741     //        this.tree.innerCt.setWidth(w);
742     //        this.tree.innerCt.setHeight(h);
743     //        //this.tree.innerCt.setStyle('overflow-y', 'auto');
744     //});
745
746         
747     
748 };
749
750 Roo.extend(Roo.TreePanel, Roo.ContentPanel, {   
751     fitToFrame : true,
752     autoScroll : true
753 });
754
755
756
757
758
759
760
761
762
763
764