-
Notifications
You must be signed in to change notification settings - Fork 41
/
jquery.fs.stepper.js
339 lines (293 loc) · 7.71 KB
/
jquery.fs.stepper.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
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
/*
* Stepper v3.0.8 - 2015-04-04
* A jQuery plugin for cross browser number inputs. Part of the Formstone Library.
* http://classic.formstone.it/stepper/
*
* Copyright 2015 Ben Plum; MIT Licensed
*/
;(function ($, window) {
"use strict";
/**
* @options
* @param customClass [string] <''> "Class applied to instance"
* @param lables.up [string] <'Up'> "Up arrow label"
* @param lables.down [string] <'Down'> "Down arrow label"
*/
var options = {
customClass: "",
labels: {
up: "Up",
down: "Down"
}
};
var pub = {
/**
* @method
* @name defaults
* @description Sets default plugin options
* @param opts [object] <{}> "Options object"
* @example $.stepper("defaults", opts);
*/
defaults: function(opts) {
options = $.extend(options, opts || {});
return (typeof this === 'object') ? $(this) : true;
},
/**
* @method
* @name destroy
* @description Removes instance of plugin
* @example $(".target").stepper("destroy");
*/
destroy: function() {
return $(this).each(function(i) {
var data = $(this).data("stepper");
if (data) {
// Unbind click events
data.$stepper.off(".stepper")
.find(".stepper-arrow")
.remove();
// Restore DOM
data.$input.unwrap()
.removeClass("stepper-input");
}
});
},
/**
* @method
* @name disable
* @description Disables target instance
* @example $(".target").stepper("disable");
*/
disable: function() {
return $(this).each(function(i) {
var data = $(this).data("stepper");
if (data) {
data.$input.attr("disabled", "disabled");
data.$stepper.addClass("disabled");
}
});
},
/**
* @method
* @name enable
* @description Enables target instance
* @example $(".target").stepper("enable");
*/
enable: function() {
return $(this).each(function(i) {
var data = $(this).data("stepper");
if (data) {
data.$input.attr("disabled", null);
data.$stepper.removeClass("disabled");
}
});
}
};
/**
* @method private
* @name _init
* @description Initializes plugin
* @param opts [object] "Initialization options"
*/
function _init(opts) {
// Local options
opts = $.extend({}, options, opts || {});
// Apply to each element
var $items = $(this);
for (var i = 0, count = $items.length; i < count; i++) {
_build($items.eq(i), opts);
}
return $items;
}
/**
* @method private
* @name _build
* @description Builds each instance
* @param $select [jQuery object] "Target jQuery object"
* @param opts [object] <{}> "Options object"
*/
function _build($input, opts) {
if (!$input.hasClass("stepper-input")) {
// EXTEND OPTIONS
opts = $.extend({}, opts, $input.data("stepper-options"));
// HTML5 attributes
var min = parseFloat($input.attr("min")),
max = parseFloat($input.attr("max")),
step = parseFloat($input.attr("step")) || 1;
// Modify DOM
$input.addClass("stepper-input")
.wrap('<div class="stepper ' + opts.customClass + '" />')
.after('<span class="stepper-arrow up">' + opts.labels.up + '</span><span class="stepper-arrow down">' + opts.labels.down + '</span>');
// Store data
var $stepper = $input.parent(".stepper"),
data = $.extend({
$stepper: $stepper,
$input: $input,
$arrow: $stepper.find(".stepper-arrow"),
min: (typeof min !== undefined && !isNaN(min)) ? min : false,
max: (typeof max !== undefined && !isNaN(max)) ? max : false,
step: (typeof step !== undefined && !isNaN(step)) ? step : 1,
timer: null
}, opts);
data.digits = _digits(data.step);
// Check disabled
if ($input.is(":disabled")) {
$stepper.addClass("disabled");
}
// Bind keyboard events
$stepper.on("keypress", ".stepper-input", data, _onKeyup);
// Bind click events
$stepper.on("touchstart.stepper mousedown.stepper", ".stepper-arrow", data, _onMouseDown)
.data("stepper", data);
}
}
/**
* @method private
* @name _onKeyup
* @description Handles keypress event on inputs
* @param e [object] "Event data"
*/
function _onKeyup(e) {
var data = e.data;
// If arrow keys
if (e.keyCode === 38 || e.keyCode === 40) {
e.preventDefault();
_step(data, (e.keyCode === 38) ? data.step : -data.step);
}
}
/**
* @method private
* @name _onMouseDown
* @description Handles mousedown event on instance arrows
* @param e [object] "Event data"
*/
function _onMouseDown(e) {
e.preventDefault();
e.stopPropagation();
// Make sure we reset the states
_onMouseUp(e);
var data = e.data;
if (!data.$input.is(':disabled') && !data.$stepper.hasClass("disabled")) {
var change = $(e.target).hasClass("up") ? data.step : -data.step;
data.timer = _startTimer(data.timer, 125, function() {
_step(data, change, false);
});
_step(data, change);
$("body").on("touchend.stepper mouseup.stepper", data, _onMouseUp);
}
}
/**
* @method private
* @name _onMouseUp
* @description Handles mouseup event on instance arrows
* @param e [object] "Event data"
*/
function _onMouseUp(e) {
e.preventDefault();
e.stopPropagation();
var data = e.data;
_clearTimer(data.timer);
$("body").off(".stepper");
}
/**
* @method private
* @name _step
* @description Steps through values
* @param e [object] "Event data"
* @param change [string] "Change value"
*/
function _step(data, change) {
var originalValue = parseFloat(data.$input.val()),
value = change;
if (typeof originalValue === undefined || isNaN(originalValue)) {
if (data.min !== false) {
value = data.min;
} else {
value = 0;
}
} else if (data.min !== false && originalValue < data.min) {
value = data.min;
} else {
value += originalValue;
}
var diff = (value - data.min) % data.step;
if (diff !== 0) {
value -= diff;
}
if (data.min !== false && value < data.min) {
value = data.min;
}
if (data.max !== false && value > data.max) {
value -= data.step;
}
if (value !== originalValue) {
value = _round(value, data.digits);
data.$input.val(value)
.trigger("change");
}
}
/**
* @method private
* @name _startTimer
* @description Starts an internal timer
* @param timer [int] "Timer ID"
* @param time [int] "Time until execution"
* @param callback [int] "Function to execute"
*/
function _startTimer(timer, time, callback) {
_clearTimer(timer);
return setInterval(callback, time);
}
/**
* @method private
* @name _clearTimer
* @description Clears an internal timer
* @param timer [int] "Timer ID"
*/
function _clearTimer(timer) {
if (timer) {
clearInterval(timer);
timer = null;
}
}
/**
* @method private
* @name _digits
* @description Analyzes and returns significant digit count
* @param value [float] "Value to analyze"
* @return [int] "Number of significant digits"
*/
function _digits(value) {
var test = String(value);
if (test.indexOf(".") > -1) {
return test.length - test.indexOf(".") - 1;
} else {
return 0;
}
}
/**
* @method private
* @name _round
* @description Rounds a number to a sepcific significant digit count
* @param value [float] "Value to round"
* @param digits [float] "Digits to round to"
* @return [number] "Rounded number"
*/
function _round(value, digits) {
var exp = Math.pow(10, digits);
return Math.round(value * exp) / exp;
}
$.fn.stepper = function(method) {
if (pub[method]) {
return pub[method].apply(this, Array.prototype.slice.call(arguments, 1));
} else if (typeof method === 'object' || !method) {
return _init.apply(this, arguments);
}
return this;
};
$.stepper = function(method) {
if (method === "defaults") {
pub.defaults.apply(this, Array.prototype.slice.call(arguments, 1));
}
};
})(jQuery, this);