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     
74     pressed : null,
75     
76     
77     getAutoCreate : function(){
78         
79         var cfg = {
80             tag : 'button',
81             cls : 'roo-button',
82             html: ''
83         };
84         
85         if (['a', 'button', 'input', 'submit'].indexOf(this.tag) < 0) {
86             throw "Invalid value for tag: " + this.tag + ". must be a, button, input or submit.";
87             this.tag = 'button';
88         } else {
89             cfg.tag = this.tag;
90         }
91         cfg.html = this.html || cfg.html;
92         
93         if (this.toggle === true) {
94             cfg={
95                 tag: 'div',
96                 cls: 'slider-frame roo-button',
97                 cn: [
98                     {
99                         tag: 'span',
100                         'data-on-text':'ON',
101                         'data-off-text':'OFF',
102                         cls: 'slider-button',
103                         html: this.offtext
104                     }
105                 ]
106             };
107             
108             if (['default', 'primary', 'success', 'info', 'warning', 'danger', 'link'].indexOf(this.weight) > -1) {
109                 cfg.cls += ' '+this.weight;
110             }
111             
112             return cfg;
113         }
114         
115         if (this.isClose) {
116             cfg.cls += ' close';
117             
118             cfg["aria-hidden"] = true;
119             
120             cfg.html = "&times;";
121             
122             return cfg;
123         }
124         
125          
126         if (this.theme==='default') {
127             cfg.cls = 'btn roo-button';
128             
129             //if (this.parentType != 'Navbar') {
130             this.weight = this.weight.length ?  this.weight : 'default';
131             //}
132             if (['default', 'primary', 'success', 'info', 'warning', 'danger', 'link'].indexOf(this.weight) > -1) {
133                 
134                 cfg.cls += ' btn-' + this.weight;
135             }
136         } else if (this.theme==='glow') {
137             
138             cfg.tag = 'a';
139             cfg.cls = 'btn-glow roo-button';
140             
141             if (['default', 'primary', 'success', 'info', 'warning', 'danger', 'link'].indexOf(this.weight) > -1) {
142                 
143                 cfg.cls += ' ' + this.weight;
144             }
145         }
146    
147         
148         if (this.inverse) {
149             this.cls += ' inverse';
150         }
151         
152         
153         if (this.active) {
154             cfg.cls += ' active';
155         }
156         
157         if (this.disabled) {
158             cfg.disabled = 'disabled';
159         }
160         
161         if (this.items) {
162             Roo.log('changing to ul' );
163             cfg.tag = 'ul';
164             this.glyphicon = 'caret';
165         }
166         
167         cfg.cls += this.size.length ? (' btn-' + this.size) : '';
168          
169         //gsRoo.log(this.parentType);
170         if (this.parentType === 'Navbar' && !this.parent().bar) {
171             Roo.log('changing to li?');
172             
173             cfg.tag = 'li';
174             
175             cfg.cls = '';
176             cfg.cn =  [{
177                 tag : 'a',
178                 cls : 'roo-button',
179                 html : this.html,
180                 href : this.href || '#'
181             }];
182             if (this.menu) {
183                 cfg.cn[0].html = this.html  + ' <span class="caret"></span>';
184                 cfg.cls += ' dropdown';
185             }   
186             
187             delete cfg.html;
188             
189         }
190         
191        cfg.cls += this.parentType === 'Navbar' ?  ' navbar-btn' : '';
192         
193         if (this.glyphicon) {
194             cfg.html = ' ' + cfg.html;
195             
196             cfg.cn = [
197                 {
198                     tag: 'span',
199                     cls: 'glyphicon glyphicon-' + this.glyphicon
200                 }
201             ];
202         }
203         
204         if (this.badge) {
205             cfg.html += ' ';
206             
207             cfg.tag = 'a';
208             
209 //            cfg.cls='btn roo-button';
210             
211             cfg.href=this.href;
212             
213             var value = cfg.html;
214             
215             if(this.glyphicon){
216                 value = {
217                             tag: 'span',
218                             cls: 'glyphicon glyphicon-' + this.glyphicon,
219                             html: this.html
220                         };
221                 
222             }
223             
224             cfg.cn = [
225                 value,
226                 {
227                     tag: 'span',
228                     cls: 'badge',
229                     html: this.badge
230                 }
231             ];
232             
233             cfg.html='';
234         }
235         
236         if (this.menu) {
237             cfg.cls += ' dropdown';
238             cfg.html = typeof(cfg.html) != 'undefined' ? cfg.html + ' <span class="caret"></span>' : '<span class="caret"></span>';
239         }
240         
241         if (cfg.tag !== 'a' && this.href !== '') {
242             throw "Tag must be a to set href.";
243         } else if (this.href.length > 0) {
244             cfg.href = this.href;
245         }
246         
247         if(this.removeClass){
248             cfg.cls = '';
249         }
250         
251         if(this.target){
252             cfg.target = this.target;
253         }
254         
255         return cfg;
256     },
257     initEvents: function() {
258        // Roo.log('init events?');
259 //        Roo.log(this.el.dom);
260        if (this.el.hasClass('roo-button')) {
261             this.el.on('click', this.onClick, this);
262        } else {
263             this.el.select('.roo-button').on('click', this.onClick, this);
264        }
265        
266        
267         
268     },
269     onClick : function(e)
270     {
271         Roo.log('button on click ');
272         if(this.preventDefault){
273             e.preventDefault();
274         }
275         if (this.pressed === true || this.pressed === false) {
276             this.pressed = !this.pressed;
277             this[this.pressed ? 'addClass' : 'removeClass']('active');
278             this.fireEvent('toggle', this,e);
279         }
280         
281         
282         this.fireEvent('click', this, e);
283     }
284     
285     
286 });
287
288