Roo/bootstrap/dash/TabBox.js
[roojs1] / Roo / bootstrap / dash / TabBox.js
1 /*
2  * - LGPL
3  *
4  * TabBox
5  * 
6  */
7 Roo.bootstrap.dash = Roo.bootstrap.dash || {};
8
9 /**
10  * @class Roo.bootstrap.dash.TabBox
11  * @extends Roo.bootstrap.Component
12  * Bootstrap TabBox class
13  * @cfg {String} title Title of the TabBox
14  * @cfg {String} icon Icon of the TabBox
15  * @cfg {Boolean} showtabs (true|false) show the tabs default true
16  * 
17  * @constructor
18  * Create a new TabBox
19  * @param {Object} config The config object
20  */
21
22
23 Roo.bootstrap.dash.TabBox = function(config){
24     Roo.bootstrap.dash.TabBox.superclass.constructor.call(this, config);
25     this.addEvents({
26         // raw events
27         /**
28          * @event addpane
29          * When a pane is added
30          * @param {Roo.bootstrap.dash.TabPane} pane
31          */
32         "addpane" : true,
33         /**
34          * @event activatepane
35          * When a pane is activated
36          * @param {Roo.bootstrap.dash.TabPane} pane
37          */
38         "activatepane" : true
39         
40          
41     });
42     
43     this.panes = [];
44 };
45
46 Roo.extend(Roo.bootstrap.dash.TabBox, Roo.bootstrap.Component,  {
47
48     title : '',
49     icon : false,
50     showtabs : true,
51     
52     getChildContainer : function()
53     {
54         return this.el.select('.tab-content', true).first();
55     },
56     
57     getAutoCreate : function(){
58         
59         var header = {
60             tag: 'li',
61             cls: 'pull-left header',
62             html: this.title,
63             cn : []
64         };
65         
66         if(this.icon){
67             header.cn.push({
68                 tag: 'i',
69                 cls: 'fa ' + this.icon
70             });
71         }
72         
73         
74         var cfg = {
75             tag: 'div',
76             cls: 'nav-tabs-custom',
77             cn: [
78                 {
79                     tag: 'ul',
80                     cls: 'nav nav-tabs pull-right',
81                     cn: [
82                         header
83                     ]
84                 },
85                 {
86                     tag: 'div',
87                     cls: 'tab-content no-padding',
88                     cn: []
89                 }
90             ]
91         }
92
93         return  cfg;
94     },
95     initEvents : function()
96     {
97         //Roo.log('add add pane handler');
98         this.on('addpane', this.onAddPane, this);
99     },
100      /**
101      * Updates the box title
102      * @param {String} html to set the title to.
103      */
104     setTitle : function(value)
105     {
106         this.el.select('.nav-tabs .header', true).first().dom.innerHTML = value;
107     },
108     onAddPane : function(pane)
109     {
110         //Roo.log('addpane');
111         //Roo.log(pane);
112         // tabs are rendere left to right..
113         if(!this.showtabs){
114             return;
115         }
116         
117         var ctr = this.el.select('.nav-tabs', true).first();
118          
119          
120         var existing = ctr.select('.nav-tab',true);
121         var qty = existing.getCount();;
122         
123         
124         var tab = ctr.createChild({
125             tag : 'li',
126             cls : 'nav-tab' + (qty ? '' : ' active'),
127             cn : [
128                 {
129                     tag : 'a',
130                     href:'#',
131                     html : pane.title
132                 }
133             ]
134         }, qty ? existing.first().dom : ctr.select('.header', true).first().dom );
135         pane.tab = tab;
136         
137         tab.on('click', this.onTabClick.createDelegate(this, [pane], true));
138         if (!qty) {
139             pane.el.addClass('active');
140         }
141         
142                 
143     },
144     onTabClick : function(ev,un,ob,pane)
145     {
146         //Roo.log('tab - prev default');
147         ev.preventDefault();
148         
149         
150         this.el.select('.nav-tabs li.nav-tab', true).removeClass('active');
151         pane.tab.addClass('active');
152         //Roo.log(pane.title);
153         this.getChildContainer().select('.tab-pane',true).removeClass('active');
154         // technically we should have a deactivate event.. but maybe add later.
155         // and it should not de-activate the selected tab...
156         this.fireEvent('activatepane', pane);
157         pane.el.addClass('active');
158         pane.fireEvent('activate');
159         
160         
161     }
162     
163     
164 });
165
166