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         cfg.cls += this.size.length ? (' btn-' + this.size) : '';
164          
165         //gsRoo.log(this.parentType);
166         if (this.parentType === 'Navbar' && !this.parent().bar) {
167             Roo.log('changing to li?');
168             
169             cfg.tag = 'li';
170             
171             cfg.cls = '';
172             cfg.cn =  [{
173                 tag : 'a',
174                 cls : 'roo-button',
175                 html : this.html,
176                 href : this.href || '#'
177             }];
178             if (this.menu) {
179                 cfg.cn[0].html = this.html  + ' <span class="caret"></span>';
180                 cfg.cls += ' dropdown';
181             }   
182             
183             delete cfg.html;
184             
185         } 
186         
187         if (this.glyphicon) {
188             cfg.html = ' ' + cfg.html;
189             
190             cfg.cn = [
191                 {
192                     tag: 'span',
193                     cls: 'glyphicon glyphicon-' + this.glyphicon
194                 }
195             ];
196         }
197         
198         if (this.badge) {
199             cfg.html += ' ';
200             
201             cfg.tag = 'a';
202             
203 //            cfg.cls='btn roo-button';
204             
205             cfg.href=this.href;
206             
207             var value = cfg.html;
208             
209             if(this.glyphicon){
210                 value = {
211                             tag: 'span',
212                             cls: 'glyphicon glyphicon-' + this.glyphicon,
213                             html: this.html
214                         };
215                 
216             }
217             
218             cfg.cn = [
219                 value,
220                 {
221                     tag: 'span',
222                     cls: 'badge',
223                     html: this.badge
224                 }
225             ];
226             
227             cfg.html='';
228         }
229         
230         if (this.menu) {
231             cfg.cls += ' dropdown';
232             cfg.html = typeof(cfg.html) != 'undefined' ? cfg.html + ' <span class="caret"></span>' : '<span class="caret"></span>';
233         }
234         
235         if (cfg.tag !== 'a' && this.href !== '') {
236             throw "Tag must be a to set href.";
237         } else if (this.href.length > 0) {
238             cfg.href = this.href;
239         }
240         
241         if(this.removeClass){
242             cfg.cls = '';
243         }
244         
245         if(this.target){
246             cfg.target = this.target;
247         }
248         
249         return cfg;
250     },
251     initEvents: function() {
252        // Roo.log('init events?');
253 //        Roo.log(this.el.dom);
254        if (this.el.hasClass('roo-button')) {
255             this.el.on('click', this.onClick, this);
256        } else {
257             this.el.select('.roo-button').on('click', this.onClick, this);
258        }
259        
260        
261         
262     },
263     onClick : function(e)
264     {
265         Roo.log('button on click ');
266         if(this.preventDefault){
267             e.preventDefault();
268         }
269         
270         this.fireEvent('click', this, e);
271     }
272     
273     
274 });
275
276