-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbutton.js
265 lines (208 loc) · 8.6 KB
/
button.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
// TODO:
// * Hacer que los radiobutton tambien escuchen eventos y puedan
// * y puedan actualizar el estado del botón si es que son "checados" dinámicamente
;(function ($, undefined) {
var pluginName = 'button';
var storageName = 'plugin_' + pluginName;
var defaults = {
activeClass: 'active',
disableClass: 'disabled',
behaviour: 'single',
beforeActivate: function () {},
onActivate: function () {},
onDeactivate: function () {}
};
// Constructor
var Button = function (element, options) {
var self = this;
self.$element = $(element);
self.$elementData = self.$element.data('button');
self.$group = self.$elementData ? $(self.$elementData.group) : [];
self.$options = $.extend({}, defaults, options);
self.init();
// function option (key, val){
// if (val) {
// self.$options[key] = val;
// } else if(self.$options[key]) {
// return self.$options[key];
// }else if(self[key]){
// // Solo lectura
// return self[key];
// }
// }
};
Button.prototype = {
init: function () {
this.setBindings();
},
setBindings: function () {
var self = this;
this.$element.on('click.' + pluginName, function (e) {
e.preventDefault();
self.click();
});
this.$element.on('activate.' + pluginName, function (e) {
e.preventDefault();
self.activate();
});
this.$element.on('deactivate.' + pluginName, function (e) {
e.preventDefault();
self.deactivate();
});
},
click: function () {
var pluginInstance = (this instanceof Button) ? this : $(this).data(storageName);
var thisInstance = (this instanceof HTMLElement) ? $(this) : this.$element;
if(thisInstance.data('status') === 'disabled') return;
var $elementData = pluginInstance.$element.data('button');
var behaviour = ($elementData && $elementData.behaviour) ? $elementData.behaviour : 'single';
switch(behaviour) {
case 'radiobutton':
console.log('radiobutton case');
// Deseleccionamos todos los demás radiobutton del grupo
$($elementData.group).not(this.$element).trigger('deactivate.'+pluginName);
// Activamos al que se le hizo click
pluginInstance.$element.trigger('activate');
break;
case 'checkbox':
case 'single':
console.log('checkbox case');
if(pluginInstance.isActive()){
console.log('trigger: Deactivate');
pluginInstance.$element.trigger('deactivate.'+pluginName);
}else{
console.log('trigger: Activate');
pluginInstance.$element.trigger('activate');
}
break;
}
},
isActive: function () {
return this.$element.hasClass(this.$options.activeClass);
},
activate: function () {
var pluginInstance = (this instanceof Button) ? this : $(this).data(storageName);
var thisInstance = (this instanceof HTMLElement) ? $(this) : this.$element;
if(thisInstance.data('status') === 'disabled') return;
console.log('Activate method');
// Ejecutamos before activate
pluginInstance.$options.beforeActivate.call(this);
var $elementData = pluginInstance.$element.data('button');
var behaviour = ($elementData && $elementData.behaviour) ? $elementData.behaviour : 'single';
// Manejamos los input relacionados
if( behaviour == 'radiobutton' ){
// Seleccionamos el radio button correspondiente
$($elementData.input).removeAttr('checked');
$($elementData.input + '[value="' + $elementData.value + '"]').prop({
'checked': true
});
// Quitamos clase de estado para los demás elementos del grupo
// Note: Quizá debería ser más específico el selector aquí y no
// quitar la clase para el elemento actual
// OJO: No tocamos los elementos deshabilitados
pluginInstance.$group.not('.disabled').removeClass(pluginInstance.$options.activeClass);
// Lo mismo para el grupo, quitamos la data de activo
pluginInstance.$group.not('.disabled').removeData('status');
}else if( behaviour == 'checkbox' ){
// Checkbox
$($elementData.input + '[value="' + $elementData.value + '"]').prop({
'checked': true
});
}
// Añadimos clase para estado
pluginInstance.$element.addClass(pluginInstance.$options.activeClass);
// Añadimos estado al elemento
thisInstance.data('status', 'active');
// Ejecutamos callback
pluginInstance.$options.onActivate.call(pluginInstance);
},
deactivate: function () {
var pluginInstance = (this instanceof Button) ? this : $(this).data(storageName);
var thisInstance = (this instanceof HTMLElement) ? $(this) : this.$element;
if(thisInstance.data('status') === 'disabled') return;
console.log('Deactivate method');
var $elementData = pluginInstance.$element.data('button');
var behaviour = ($elementData && $elementData.behaviour) ? $elementData.behaviour : 'single';
if( behaviour == 'radiobutton' ){
$($elementData.input + '[value="' + $elementData.value + '"]').removeAttr('checked');
}else if( behaviour == 'checkbox' ){
// Quitamos check
$($elementData.input + '[value="' + $elementData.value + '"]').prop({
checked: false
});
}
// Quitamos clase de estado
pluginInstance.$element.removeClass(pluginInstance.$options.activeClass);
// Añadimos estado al elemento
thisInstance.data('status', 'default');
// Ejecutamos callback
pluginInstance.$options.onDeactivate.call(pluginInstance);
},
toggle: function(){
var pluginInstance = (this instanceof Button) ? this : $(this).data(storageName);
var thisInstance = (this instanceof HTMLElement) ? $(this) : this.$element;
if(thisInstance.data('status') === 'disabled') return;
if(pluginInstance.isActive()){
pluginInstance.deactivate();
}else{
pluginInstance.activate();
}
},
disable: function(){
console.log('Disable method');
var pluginInstance = (this instanceof Button) ? this : $(this).data(storageName);
var thisInstance = (this instanceof HTMLElement) ? $(this) : this.$element;
// Añadimos clase de estado
pluginInstance.$element.addClass(pluginInstance.$options.disableClass);
thisInstance.data('status', 'disabled');
},
enable: function(){
console.log('Enable method');
var pluginInstance = (this instanceof Button) ? this : $(this).data(storageName);
var thisInstance = (this instanceof HTMLElement) ? $(this) : this.$element;
// Añadimos clase de estado
pluginInstance.$element.removeClass(pluginInstance.$options.disableClass);
thisInstance.removeData('status');
}
}
$.fn[pluginName] = function (options) {
// Plugin definition based on
// http://f6design.com/journal/2012/05/06/a-jquery-plugin-boilerplate/
// If the first parameter is a string, treat this as a call to
// a public method.
if (typeof arguments[0] === 'string') {
var methodName = arguments[0];
var args = Array.prototype.slice.call(arguments, 1);
var returnVal;
this.each(function () {
// Check that the element has a plugin instance, and that
// the requested public method exists.
if ($.data(this, storageName) && typeof $.data(this, storageName)[methodName] === 'function') {
// Call the method of the Plugin instance, and Pass it
// the supplied arguments.
returnVal = $.data(this, storageName)[methodName].apply(this, args);
} else {
throw new Error('Method ' + methodName + ' does not exist on jQuery.' + pluginName);
}
});
if (returnVal !== undefined) {
// If the method returned a value, return the value.
return returnVal;
} else {
// Otherwise, returning 'this' preserves chainability.
return this;
}
// If the first parameter is an object (options), or was omitted,
// instantiate a new instance of the plugin.
} else if (typeof options === "object" || !options) {
return this.each(function () {
// Only allow the plugin to be instantiated once.
if (!$.data(this, storageName)) {
// Pass options to Plugin constructor, and store Plugin
// instance in the elements jQuery data object.
$.data(this, storageName, new Button(this, options));
}
});
}
};
})(jQuery);