jquery-ui/ui/ui.slider.js

495 lines
13 KiB
JavaScript
Raw Normal View History

2008-06-04 02:34:33 +00:00
/*
* jQuery UI Slider @VERSION
2008-06-04 02:34:33 +00:00
*
2009-01-03 21:55:13 +00:00
* Copyright (c) 2009 AUTHORS.txt (http://ui.jquery.com/about)
2008-06-04 02:34:33 +00:00
* Dual licensed under the MIT (MIT-LICENSE.txt)
* and GPL (GPL-LICENSE.txt) licenses.
*
2008-06-04 02:34:33 +00:00
* http://docs.jquery.com/UI/Slider
*
* Depends:
* ui.core.js
*/
(function($) {
2008-06-04 02:34:33 +00:00
$.widget("ui.slider", $.extend({}, $.ui.mouse, {
2008-08-16 15:19:01 +00:00
_init: function() {
var self = this, o = this.options;
this._keySliding = false;
this._handleIndex = null;
2009-01-29 15:13:47 +00:00
this._detectOrientation();
this._mouseInit();
this.element
.addClass("ui-slider"
+ " ui-slider-" + this.orientation
+ " ui-widget"
+ " ui-widget-content"
+ " ui-corner-all");
this.range = $([]);
if (o.range) {
2009-01-22 13:10:18 +00:00
if (o.range === true) {
this.range = $('<div></div>');
if (!o.values) o.values = [this._valueMin(), this._valueMin()];
if (o.values.length && o.values.length != 2) {
o.values = [o.values[0], o.values[0]];
}
} else {
this.range = $('<div></div>');
}
2009-01-12 13:02:47 +00:00
this.range
.appendTo(this.element)
.addClass("ui-slider-range"
+ " ui-widget-header");
(o.range == "min") && (this.orientation == "horizontal") && this.range.css({ left : 0 });
(o.range == "max") && (this.orientation == "horizontal") && this.range.css({ right : 0 });
(o.range == "min") && (this.orientation == "vertical") && this.range.css({ bottom : 0 });
(o.range == "max") && (this.orientation == "vertical") && this.range.css({ top : 0 });
2009-01-22 13:10:18 +00:00
}
2008-11-28 15:43:32 +00:00
if ($(".ui-slider-handle", this.element).length == 0)
$('<a href="#"></a>')
.appendTo(this.element)
.addClass("ui-slider-handle");
2008-11-28 15:43:32 +00:00
if (o.values && o.values.length) {
while ($(".ui-slider-handle", this.element).length < o.values.length)
$('<a href="#"></a>')
.appendTo(this.element)
.addClass("ui-slider-handle");
}
2008-11-28 15:43:32 +00:00
this.handles = $(".ui-slider-handle", this.element)
.addClass("ui-state-default"
+ " ui-corner-all");
this.handle = this.handles.eq(0);
this.handles.add(this.range).filter("a")
.click(function(event) { event.preventDefault(); })
.hover(function() { $(this).addClass('ui-state-hover'); }, function() { $(this).removeClass('ui-state-hover'); })
.focus(function() { self.handles.removeClass('ui-state-focus'); $(this).addClass('ui-state-focus'); })
.blur(function() { $(this).removeClass('ui-state-focus'); });
this.handles.each(function(i) {
$(this).data("index.ui-slider-handle", i);
2009-01-12 13:02:47 +00:00
});
this.handles.keydown(function(event) {
2009-01-12 13:02:47 +00:00
var index = $(this).data("index.ui-slider-handle");
if (self.options.disabled)
return;
switch (event.keyCode) {
case $.ui.keyCode.HOME:
case $.ui.keyCode.END:
case $.ui.keyCode.UP:
case $.ui.keyCode.RIGHT:
case $.ui.keyCode.DOWN:
case $.ui.keyCode.LEFT:
if (!self._keySliding) {
self._keySliding = true;
$(this).addClass("ui-state-active");
self._start(event);
}
break;
}
2008-11-28 15:43:32 +00:00
var curVal, newVal, step = self._step();
if (self.options.values && self.options.values.length) {
curVal = newVal = self.values(index);
} else {
curVal = newVal = self.value();
}
2008-11-28 15:43:32 +00:00
switch (event.keyCode) {
case $.ui.keyCode.HOME:
newVal = self._valueMin();
break;
case $.ui.keyCode.END:
newVal = self._valueMax();
break;
case $.ui.keyCode.UP:
case $.ui.keyCode.RIGHT:
if(curVal == self._valueMax()) return;
newVal = curVal + step;
break;
case $.ui.keyCode.DOWN:
case $.ui.keyCode.LEFT:
if(curVal == self._valueMin()) return;
newVal = curVal - step;
break;
}
self._slide(event, index, newVal);
2009-01-12 13:02:47 +00:00
}).keyup(function(event) {
2009-01-12 13:02:47 +00:00
if (self._keySliding) {
self._stop(event);
self._change(event);
self._keySliding = false;
$(this).removeClass("ui-state-active");
}
2009-01-12 13:02:47 +00:00
2008-06-04 02:34:33 +00:00
});
this._refreshValue();
},
destroy: function() {
this.handles.remove();
this.element
.removeClass("ui-slider"
+ " ui-slider-horizontal"
+ " ui-slider-vertical"
+ " ui-slider-disabled"
+ " ui-widget"
+ " ui-widget-content"
+ " ui-corner-all")
.removeData("slider")
.unbind(".slider");
this._mouseDestroy();
},
_mouseCapture: function(event) {
var o = this.options;
if (o.disabled)
return false;
this._start(event);
this.elementSize = {
width: this.element.outerWidth(),
height: this.element.outerHeight()
};
this.elementOffset = this.element.offset();
var position = { x: event.pageX, y: event.pageY };
var normValue = this._normValueFromMouse(position);
var distance = this._valueMax() + 1, closestHandle;
var self = this, index;
this.handles.each(function(i) {
var thisDistance = Math.abs(normValue - self.values(i));
if (distance > thisDistance) {
distance = thisDistance;
closestHandle = $(this);
index = i;
}
2008-06-04 02:34:33 +00:00
});
// workaround for bug #3736 (if both handles of a range are at 0, the first is always used as the one with least distance,
// and moving it is obviously prevented by preventing negative ranges)
if(o.range && (this.values(0) + this.values(1)) == 0) {
closestHandle = $(this.handles[++index]);
}
self._handleIndex = index;
closestHandle
.addClass("ui-state-active")
.focus();
var offset = closestHandle.offset();
var mouseOverHandle = !$(event.target).parents().andSelf().is('.ui-slider-handle');
this._clickOffset = mouseOverHandle ? { left: 0, top: 0 } : {
left: event.pageX - offset.left + (parseInt(closestHandle.css('marginLeft'),10) || 0),
top: event.pageY - offset.top + (parseInt(closestHandle.css('marginTop'),10) || 0)
};
normValue = this._normValueFromMouse(position);
this._slide(event, index, normValue);
return true;
2008-06-04 02:34:33 +00:00
},
_mouseStart: function(event) {
return true;
2008-06-04 02:34:33 +00:00
},
_mouseDrag: function(event) {
2009-01-22 13:10:18 +00:00
var position = { x: event.pageX, y: event.pageY };
var normValue = this._normValueFromMouse(position);
this._slide(event, this._handleIndex, normValue);
return false;
2009-01-22 13:10:18 +00:00
2008-06-04 02:34:33 +00:00
},
_mouseStop: function(event) {
2009-01-22 13:10:18 +00:00
this.handles.removeClass("ui-state-active");
this._stop(event);
this._change(event);
this._handleIndex = null;
this._clickOffset = null;
return false;
2009-01-22 13:10:18 +00:00
2008-06-04 02:34:33 +00:00
},
2009-01-29 15:13:47 +00:00
_detectOrientation: function() {
this.orientation = this.options.orientation == 'auto' ? (this.element[0].offsetWidth/this.element[0].offsetHeight > 1 ? 'horizontal' : 'vertical') : this.options.orientation;
},
_normValueFromMouse: function(position) {
var pixelTotal, pixelMouse;
if ('horizontal' == this.orientation) {
pixelTotal = this.elementSize.width;
pixelMouse = position.x - this.elementOffset.left - (this._clickOffset ? this._clickOffset.left : 0);
} else {
pixelTotal = this.elementSize.height;
pixelMouse = position.y - this.elementOffset.top - (this._clickOffset ? this._clickOffset.top : 0);
}
var percentMouse = (pixelMouse / pixelTotal);
if (percentMouse > 1) percentMouse = 1;
if (percentMouse < 0) percentMouse = 0;
if ('vertical' == this.orientation)
percentMouse = 1 - percentMouse;
2009-01-12 13:02:47 +00:00
var valueTotal = this._valueMax() - this._valueMin(),
valueMouse = percentMouse * valueTotal,
valueMouseModStep = valueMouse % this.options.step,
normValue = this._valueMin() + valueMouse - valueMouseModStep;
if (valueMouseModStep > (this.options.step / 2))
normValue += this.options.step;
return normValue;
2009-01-22 13:10:18 +00:00
2008-06-04 02:34:33 +00:00
},
_start: function(event) {
this._trigger("start", event, {
value: this.value()
});
2008-06-04 02:34:33 +00:00
},
_slide: function(event, index, newVal) {
2009-01-22 13:10:18 +00:00
var handle = this.handles[index];
if (this.options.values && this.options.values.length) {
2009-01-12 13:02:47 +00:00
var otherVal = this.values(index ? 0 : 1);
2009-01-12 13:02:47 +00:00
if ((index == 0 && newVal >= otherVal) || (index == 1 && newVal <= otherVal))
newVal = otherVal;
2009-01-12 13:02:47 +00:00
if (newVal != this.values(index)) {
var newValues = this.values();
newValues[index] = newVal;
// A slide can be canceled by returning false from the slide callback
var allowed = this._trigger("slide", event, {
handle: handle,
value: newVal,
values: newValues
});
var otherVal = this.values(index ? 0 : 1);
if (allowed !== false) {
this.values(index, newVal, !( event.type == 'mousedown' && this.options.animate ));
}
}
2009-01-12 13:02:47 +00:00
2008-06-04 02:34:33 +00:00
} else {
2009-01-12 13:02:47 +00:00
if (newVal != this.value()) {
// A slide can be canceled by returning false from the slide callback
var allowed = this._trigger("slide", event, {
handle: handle,
value: newVal
});
if (allowed !== false) {
this._setData('value', newVal, ( event.type == 'mousedown' && this.options.animate ));
}
}
2009-01-12 13:02:47 +00:00
2008-06-04 02:34:33 +00:00
}
2009-01-12 13:02:47 +00:00
2008-06-04 02:34:33 +00:00
},
_stop: function(event) {
this._trigger("stop", event, {
value: this.value()
});
2008-06-04 02:34:33 +00:00
},
_change: function(event) {
this._trigger("change", event, {
value: this.value()
});
},
value: function(newValue) {
2009-01-12 13:02:47 +00:00
if (arguments.length) {
this._setData("value", newValue);
this._change();
}
return this._value();
2009-01-12 13:02:47 +00:00
2008-06-04 02:34:33 +00:00
},
values: function(index, newValue, noAnimation) {
2009-01-12 13:02:47 +00:00
if(!this.options.animate) noAnimation = true;
if (arguments.length > 1) {
this.options.values[index] = newValue;
this._refreshValue(!noAnimation);
this._change();
2008-06-04 02:34:33 +00:00
}
if (arguments.length) {
if (this.options.values && this.options.values.length) {
return this._values(index);
} else {
return this.value();
2008-06-04 02:34:33 +00:00
}
} else {
return this._values();
2008-06-04 02:34:33 +00:00
}
2009-01-12 13:02:47 +00:00
2008-06-04 02:34:33 +00:00
},
_setData: function(key, value) {
2009-01-12 13:02:47 +00:00
$.widget.prototype._setData.apply(this, arguments);
switch (key) {
case 'orientation':
2009-01-29 15:13:47 +00:00
this._detectOrientation();
this.element
.removeClass("ui-slider-horizontal ui-slider-vertical")
2009-01-29 15:13:47 +00:00
.addClass("ui-slider-" + this.orientation);
this._refreshValue();
break;
case 'value':
this._refreshValue();
break;
}
2009-01-12 13:02:47 +00:00
},
_step: function() {
var step = this.options.step;
return step;
},
_value: function() {
2009-01-12 13:02:47 +00:00
var val = this.options.value;
if (val < this._valueMin()) val = this._valueMin();
if (val > this._valueMax()) val = this._valueMax();
return val;
2009-01-12 13:02:47 +00:00
2008-06-04 02:34:33 +00:00
},
_values: function(index) {
2009-01-12 13:02:47 +00:00
if (arguments.length) {
var val = this.options.values[index];
if (val < this._valueMin()) val = this._valueMin();
if (val > this._valueMax()) val = this._valueMax();
2008-12-31 08:22:11 +00:00
return val;
2008-06-04 02:34:33 +00:00
} else {
return this.options.values;
2008-06-04 02:34:33 +00:00
}
2009-01-12 13:02:47 +00:00
},
_valueMin: function() {
var valueMin = this.options.min;
return valueMin;
},
_valueMax: function() {
var valueMax = this.options.max;
return valueMax;
},
_refreshValue: function(animate) {
2009-01-12 13:02:47 +00:00
var oRange = this.options.range, o = this.options, self = this;
if (this.options.values && this.options.values.length) {
var vp0, vp1;
this.handles.each(function(i, j) {
var valPercent = (self.values(i) - self._valueMin()) / (self._valueMax() - self._valueMin()) * 100;
var _set = {}; _set[self.orientation == 'horizontal' ? 'left' : 'bottom'] = valPercent + '%';
$(this).stop(1,1)[animate ? 'animate' : 'css'](_set, o.animate);
if (self.options.range === true) {
if (self.orientation == 'horizontal') {
(i == 0) && self.range.stop(1,1)[animate ? 'animate' : 'css']({ left: valPercent + '%' }, o.animate);
(i == 1) && self.range[animate ? 'animate' : 'css']({ width: (valPercent - lastValPercent) + '%' }, { queue: false, duration: o.animate });
} else {
(i == 0) && self.range.stop(1,1)[animate ? 'animate' : 'css']({ bottom: (valPercent) + '%' }, o.animate);
(i == 1) && self.range[animate ? 'animate' : 'css']({ height: (valPercent - lastValPercent) + '%' }, { queue: false, duration: o.animate });
}
}
lastValPercent = valPercent;
});
} else {
var valPercent = (this.value() - this._valueMin()) / (this._valueMax() - this._valueMin()) * 100;
var _set = {}; _set[self.orientation == 'horizontal' ? 'left' : 'bottom'] = valPercent + '%';
this.handle.stop(1,1)[animate ? 'animate' : 'css'](_set, o.animate);
(oRange == "min") && (this.orientation == "horizontal") && this.range.stop(1,1)[animate ? 'animate' : 'css']({ left: 0, width: valPercent + '%' }, o.animate);
(oRange == "max") && (this.orientation == "horizontal") && this.range[animate ? 'animate' : 'css']({ left: valPercent + '%', width: (100 - valPercent) + '%' }, { queue: false, duration: o.animate });
(oRange == "min") && (this.orientation == "vertical") && this.range.stop(1,1)[animate ? 'animate' : 'css']({ top: (100 - valPercent) + '%', height: valPercent + '%' }, o.animate);
(oRange == "max") && (this.orientation == "vertical") && this.range[animate ? 'animate' : 'css']({ bottom: valPercent + '%', height: (100 - valPercent) + '%' }, { queue: false, duration: o.animate });
}
2009-01-12 13:02:47 +00:00
2008-06-04 02:34:33 +00:00
}
}));
2008-06-04 02:34:33 +00:00
$.extend($.ui.slider, {
getter: "value values",
version: "@VERSION",
eventPrefix: "slide",
defaults: {
animate: false,
delay: 0,
distance: 0,
max: 100,
min: 0,
orientation: 'auto',
range: false,
step: 1,
value: 0,
values: null
}
});
2008-06-04 02:34:33 +00:00
})(jQuery);