jquery.spinner.js
2.86 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
/* ==============================================================================
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
;(function ($) {
$.fn.spinner = function (opts) {
return this.each(function () {
var defaults = {value:1, min:0}
var options = $.extend(defaults, opts)
var keyCodes = {up:38, down:40}
var container = $('<div></div>')
container.addClass('spinner')
var textField = $(this).addClass('value').attr('maxlength', '2').val(options.value)
.bind('keyup paste change', function (e) {
var field = $(this)
if (e.keyCode == keyCodes.up) changeValue(1)
else if (e.keyCode == keyCodes.down) changeValue(-1)
else if (getValue(field) != container.data('lastValidValue')) validateAndTrigger(field)
})
textField.wrap(container)
var increaseButton = $('<button class="increase">+</button>').click(function () { changeValue(1) })
var decreaseButton = $('<button class="decrease">-</button>').click(function () { changeValue(-1) })
validate(textField)
container.data('lastValidValue', options.value)
textField.before(decreaseButton)
textField.after(increaseButton)
function changeValue(delta) {
textField.val(getValue() + delta)
validateAndTrigger(textField)
}
function validateAndTrigger(field) {
clearTimeout(container.data('timeout'))
var value = validate(field)
if (!isInvalid(value)) {
textField.trigger('update', [field, value])
}
}
function validate(field) {
var value = getValue()
if (value <= options.min) decreaseButton.attr('disabled', 'disabled')
else decreaseButton.removeAttr('disabled')
field.toggleClass('invalid', isInvalid(value)).toggleClass('passive', value === 0)
if (isInvalid(value)) {
var timeout = setTimeout(function () {
textField.val(container.data('lastValidValue'))
validate(field)
}, 500)
container.data('timeout', timeout)
} else {
container.data('lastValidValue', value)
}
return value
}
function isInvalid(value) { return isNaN(+value) || value < options.min; }
function getValue(field) {
field = field || textField;
return parseInt(field.val() || 0, 10)
}
})
}
})(jQuery)