-
Notifications
You must be signed in to change notification settings - Fork 103
Expand file tree
/
Copy pathbutton.js
More file actions
271 lines (225 loc) · 8.44 KB
/
Copy pathbutton.js
File metadata and controls
271 lines (225 loc) · 8.44 KB
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
266
267
268
269
270
271
import $ from "jquery"
import jui from "../main.js"
export default {
name: "ui.button",
extend: "event",
component: function () {
var _ = jui.include("util.base");
var UIRadio = function(ui, element, options) {
this.data = { index: 0, value: "", elem: null };
this.ui = ui;
this.element = element;
this.options = $.extend({ index: 0, value: "" }, options);
// Private
this._setting = function(type, e, order) {
var self = this,
className = "active",
index = this.options.index,
value = this.options.value;
$(self.element).children(".btn").each(function(i) {
if(type == "event") {
if(e.currentTarget == this) on(i, this);
else off(this);
} else if(type == "init") {
if(order == "value") {
if(value == $(this).attr("value")) on(i, this);
else off(this);
} else {
if(index == i) on(i, this);
else off(this);
}
}
});
function on(i, elem) {
var value = $(elem).attr("value"),
text = $(elem).text();
self.data = { index: i, value: value, text: text };
$(elem).addClass(className);
}
function off(elem) {
$(elem).removeClass(className);
}
}
this.init = function() {
var self = this;
// Event
this.ui.addEvent($(self.element).children(".btn"), "click", function(e) {
if($(e.currentTarget).hasClass("disabled")) {
return false;
}
self._setting("event", e);
self.ui.emit("click", [ self.data, e ]);
self.ui.emit("change", [ self.data, e ]);
e.preventDefault();
});
// Init
if(this.options.value != "") {
this._setting("init", this.options.value, "value");
} else {
this._setting("init", this.options.index, "index");
}
}
}
var UICheck = function() {
this.data = [];
this.options = $.extend({ index: [], value: [] }, this.options);
this._setting = function(type, e, order) {
var self = this,
className = "active",
index = this.options.index,
value = this.options.value;
$(self.element).children(".btn").each(function(i) {
if(type == "init") {
if(order == "value") {
if(inArray(value, $(this).attr("value"))) on(i, this);
else off(i, this);
} else {
if(inArray(index, i)) on(i, this);
else off(i, this);
}
} else {
if(e.currentTarget == this) {
if(!$(this).hasClass("active")) on(i, this);
else off(i, this);
}
}
});
function on(i, elem) {
var value = $(elem).attr("value"),
text = $(elem).text();
self.data[i] = { index: i, value: value, text: text };
$(elem).addClass(className);
}
function off(i, elem) {
self.data[i] = null;
$(elem).removeClass(className);
}
function inArray(arr, val) {
for(var i = 0; i < arr.length; i++) {
if(arr[i] == val) return true;
}
return false;
}
}
}
var UI = function() {
var ui_list = {};
this.init = function() {
var self = this, opts = this.options;
if(opts.type == "radio") {
ui_list[opts.type] = new UIRadio(self, this.root, self.options);
ui_list[opts.type].init();
} else if(opts.type == "check") {
UICheck.prototype = new UIRadio(self, this.root, self.options);
ui_list[opts.type] = new UICheck();
ui_list[opts.type].init();
}
}
/**
* @method setIndex
* Selects a button of a specified index
*
* @param {Array} indexList Index for button check
*/
this.setIndex = function(indexList) {
var btn = ui_list[this.options.type];
btn.options.index = indexList;
btn._setting("init", null, "index");
this.emit("change", [ btn.data ]);
}
/**
* @method setValue
* Selects a button with a specified value
*
* @param {Array} valueList Values for button check
*/
this.setValue = function(valueList) {
var btn = ui_list[this.options.type];
btn.options.value = valueList;
btn._setting("init", null, "value");
this.emit("change", [ btn.data ]);
}
/**
* @method getData
* Gets the data of the button currently selected
*
* @return {Array}
*/
this.getData = function() {
return ui_list[this.options.type].data;
}
/**
* @method getValue
* Gets the value of the button currently selected
*
* @return {Array} Values
* @return {Object} Value
*/
this.getValue = function() {
var data = this.getData();
if(_.typeCheck("array", data)) { // 타입이 체크일 경우
var values = [];
for(var i = 0; i < data.length; i++) {
values[i] = (data[i] != null) ? data[i].value : data[i];
}
return values;
}
return data.value;
}
/**
* @method reload
* Re-defines the button UI
*/
this.reload = function() {
ui_list[this.options.type]._setting("init");
}
/**
* @method enable
* Enables the tab at a specified index
*
* @param {Boolean} isActive
*/
this.enable = function(isActive) {
if(isActive) {
$(this.root).find(".btn").removeClass("disabled");
} else {
$(this.root).find(".btn").addClass("disabled");
}
}
}
UI.setup = function() {
return {
/**
* @cfg {String} [type="radio"]
* Determines whether to use a radio/check button
*/
type: "radio",
/**
* @cfg {Integer} [index=0]
* Determines an initial selection button with a specified index
*/
index: 0,
/**
* @cfg {String} [index=""]
* Determines an initial selection button with a specified value
*/
value: ""
}
}
/**
* @event change
* Event that occurs when clicking on a button
*
* @param {Object} data Data of the selected button
* @param {jQueryEvent} e The event object
*/
/**
* @event click
* Event that occurs when clicking on a button
*
* @param {Object} data Data of the selected button
* @param {jQueryEvent} e The event object
*/
return UI;
}
}