Roo/bootstrap/Button.js
[roojs1] / Roo / bootstrap / Button.js
1 /*
2  * - LGPL
3  *
4  * button
5  * 
6  */
7
8 /**
9  * @class Roo.bootstrap.Button
10  * @extends Roo.bootstrap.Component
11  * Bootstrap Button class
12  * @cfg {String} html The button content
13  * @cfg {String} weight default (or empty) | primary | success | info | warning | danger | link
14  * @cfg {String} size empty | lg | sm | xs
15  * @cfg {String} tag empty | a | input | submit
16  * @cfg {String} href empty or href
17  * @cfg {Boolean} disabled false | true
18  * @cfg {Boolean} isClose false | true
19  * @cfg {String} glyphicon empty | adjust | align-center | align-justify | align-left | align-right | arrow-down | arrow-left | arrow-right | arrow-up | asterisk | backward | ban-circle | barcode | bell | bold | book | bookmark | briefcase | bullhorn | calendar | camera | certificate | check | chevron-down | chevron-left | chevron-right | chevron-up | circle-arrow-down | circle-arrow-left | circle-arrow-right | circle-arrow-up | cloud | cloud-download | cloud-upload | cog | collapse-down | collapse-up | comment | compressed | copyright-mark | credit-card | cutlery | dashboard | download | download-alt | earphone | edit | eject | envelope | euro | exclamation-sign | expand | export | eye-close | eye-open | facetime-video | fast-backward | fast-forward | file | film | filter | fire | flag | flash | floppy-disk | floppy-open | floppy-remove | floppy-save | floppy-saved | folder-close | folder-open | font | forward | fullscreen | gbp | gift | glass | globe | hand-down | hand-left | hand-right | hand-up | hd-video | hdd | header | headphones | heart | heart-empty | home | import | inbox | indent-left | indent-right | info-sign | italic | leaf | link | list | list-alt | lock | log-in | log-out | magnet | map-marker | minus | minus-sign | move | music | new-window | off | ok | ok-circle | ok-sign | open | paperclip | pause | pencil | phone | phone-alt | picture | plane | play | play-circle | plus | plus-sign | print | pushpin | qrcode | question-sign | random | record | refresh | registration-mark | remove | remove-circle | remove-sign | repeat | resize-full | resize-horizontal | resize-small | resize-vertical | retweet | road | save | saved | screenshot | sd-video | search | send | share | share-alt | shopping-cart | signal | sort | sort-by-alphabet | sort-by-alphabet-alt | sort-by-attributes | sort-by-attributes-alt | sort-by-order | sort-by-order-alt | sound-5-1 | sound-6-1 | sound-7-1 | sound-dolby | sound-stereo | star | star-empty | stats | step-backward | step-forward | stop | subtitles | tag | tags | tasks | text-height | text-width | th | th-large | th-list | thumbs-down | thumbs-up | time | tint | tower | transfer | trash | tree-conifer | tree-deciduous | unchecked | upload | usd | user | volume-down | volume-off | volume-up | warning-sign | wrench | zoom-in | zoom-out
20  * @cfg {String} badge text for badge
21  * @cfg {String} theme default (or empty) | glow
22  * @cfg {Boolean} inverse false | true
23  * @cfg {Boolean} toggle false | true
24  * @cfg {String} ontext text for on toggle state
25  * @cfg {String} offtext text for off toggle state
26  * @cfg {Boolean} defaulton true | false
27  * @cfg {Boolean} preventDefault (true | false) default true
28  * @cfg {Boolean} removeClass true | false remove the standard class..
29  * @cfg {String} target (_self|_blank|_parent|_top)target for a href.
30  * 
31  * @constructor
32  * Create a new button
33  * @param {Object} config The config object
34  */
35
36
37 Roo.bootstrap.Button = function(config){
38     Roo.bootstrap.Button.superclass.constructor.call(this, config);
39     this.addEvents({
40         // raw events
41         /**
42          * @event click
43          * The raw click event for the entire grid.
44          * @param {Roo.EventObject} e
45          */
46         "click" : true
47     });
48 };
49
50 Roo.extend(Roo.bootstrap.Button, Roo.bootstrap.Component,  {
51     html: false,
52     active: false,
53     weight: '',
54     size: '',
55     tag: 'button',
56     href: '',
57     disabled: false,
58     isClose: false,
59     glyphicon: '',
60     badge: '',
61     theme: 'default',
62     inverse: false,
63     
64     toggle: false,
65     ontext: 'ON',
66     offtext: 'OFF',
67     defaulton: true,
68     preventDefault: true,
69     removeClass: false,
70     name: false,
71     target: false,
72     
73     getAutoCreate : function(){
74         
75         var cfg = {
76             tag : 'button',
77             cls : 'roo-button',
78             html: ''
79         };
80         
81         if (['a', 'button', 'input', 'submit'].indexOf(this.tag) < 0) {
82             throw "Invalid value for tag: " + this.tag + ". must be a, button, input or submit.";
83             this.tag = 'button';
84         } else {
85             cfg.tag = this.tag;
86         }
87         cfg.html = this.html || cfg.html;
88         
89         if (this.toggle===true) {
90             cfg={
91                 tag: 'div',
92                 cls: 'slider-frame roo-button',
93                 cn: [
94                     {
95                         tag: 'span',
96                         'data-on-text':'ON',
97                         'data-off-text':'OFF',
98                         cls: 'slider-button',
99                         html: this.offtext
100                     }
101                 ]
102             };
103             
104             if (['default', 'primary', 'success', 'info', 'warning', 'danger', 'link'].indexOf(this.weight) > -1) {
105                 cfg.cls += ' '+this.weight;
106             }
107             
108             return cfg;
109         }
110         
111         if (this.isClose) {
112             cfg.cls += ' close';
113             
114             cfg["aria-hidden"] = true;
115             
116             cfg.html = "&times;";
117             
118             return cfg;
119         }
120         
121          
122         if (this.theme==='default') {
123             cfg.cls = 'btn roo-button';
124             
125             if (this.parentType != 'Navbar') {
126                 this.weight = this.weight.length ?  this.weight : 'default';
127             }
128             if (['default', 'primary', 'success', 'info', 'warning', 'danger', 'link'].indexOf(this.weight) > -1) {
129                 
130                 cfg.cls += ' btn-' + this.weight;
131             }
132         } else if (this.theme==='glow') {
133             
134             cfg.tag = 'a';
135             cfg.cls = 'btn-glow roo-button';
136             
137             if (['default', 'primary', 'success', 'info', 'warning', 'danger', 'link'].indexOf(this.weight) > -1) {
138                 
139                 cfg.cls += ' ' + this.weight;
140             }
141         }
142    
143         
144         if (this.inverse) {
145             this.cls += ' inverse';
146         }
147         
148         
149         if (this.active) {
150             cfg.cls += ' active';
151         }
152         
153         if (this.disabled) {
154             cfg.disabled = 'disabled';
155         }
156         //????
157         if (this.items) {
158             Roo.log('changing to ul' );
159             cfg.tag = 'ul';
160             this.glyphicon = 'caret';
161         }
162         
163         if (this.glyphicon) {
164             cfg.html = ' ' + cfg.html;
165             
166             cfg.cn = [
167                 {
168                     tag: 'span',
169                     cls: 'glyphicon glyphicon-' + this.glyphicon
170                 }
171             ];
172         }
173         
174         if (this.badge) {
175             cfg.html += ' ';
176             
177             cfg.tag = 'a';
178             
179 //            cfg.cls='btn roo-button';
180             
181             cfg.href=this.href;
182             
183             var value = cfg.html;
184             
185             if(this.glyphicon){
186                 value = {
187                             tag: 'span',
188                             cls: 'glyphicon glyphicon-' + this.glyphicon,
189                             html: this.html
190                         };
191                 
192             }
193             
194             cfg.cn = [
195                 value,
196                 {
197                     tag: 'span',
198                     cls: 'badge',
199                     html: this.badge
200                 }
201             ];
202             
203             cfg.html='';
204         }
205         
206         cfg.cls += this.size.length ? (' btn-' + this.size) : '';
207          
208         //gsRoo.log(this.parentType);
209         if (this.parentType === 'Navbar') {
210             cfg.tag = 'li';
211             
212             cfg.cls = '';
213             cfg.cn =  [{
214                 tag : 'a',
215                 cls : 'roo-button',
216                 html : this.html,
217                 href : this.href || '#'
218             }];
219             if (this.menu) {
220                 cfg.cn[0].html = this.html  + ' <span class="caret"></span>';
221                 cfg.cls += ' dropdown';
222             }   
223             
224             delete cfg.html;
225             
226         } 
227         else if (this.menu) {
228             cfg.cls += ' dropdown';
229             cfg.html = this.html  + ' <span class="caret"></span>';
230         }
231         
232         if (cfg.tag !== 'a' && this.href !== '') {
233             throw "Tag must be a to set href.";
234         } else if (this.href.length > 0) {
235             cfg.href = this.href;
236         }
237         
238         if(this.removeClass){
239             cfg.cls = '';
240         }
241         
242         if(this.target){
243             cfg.target = this.target;
244         }
245         
246         return cfg;
247     },
248     initEvents: function() {
249        // Roo.log('init events?');
250 //        Roo.log(this.el.dom);
251        if (this.el.hasClass('roo-button')) {
252             this.el.on('click', this.onClick, this);
253        } else {
254             this.el.select('.roo-button').on('click', this.onClick, this);
255        }
256        
257        
258         
259     },
260     onClick : function(e)
261     {
262         Roo.log('button on click ');
263         if(this.preventDefault){
264             e.preventDefault();
265         }
266         
267         this.fireEvent('click', this, e);
268     }
269     
270     
271 });
272
273