jquery-ui/ui/ui.progressbar.js

229 lines
4.6 KiB
JavaScript
Raw Normal View History

/*
* jQuery UI Progressbar @VERSION
*
* Copyright (c) 2008 AUTHORS.txt (http://ui.jquery.com/about)
* Dual licensed under the MIT (MIT-LICENSE.txt)
* and GPL (GPL-LICENSE.txt) licenses.
*
* http://docs.jquery.com/UI/Progressbar
*
* Depends:
* ui.core.js
*/
(function($) {
$.widget("ui.progressbar", {
2008-11-21 04:12:18 +00:00
_init: function() {
this._interval = this.options.interval;
var self = this,
options = this.options,
identifier = 'progressbar' + (++$.ui.progressbar.uuid),
text = options.text || '0%';
this.element
.addClass("ui-progressbar")
.width(options.width)
.attr({
role: "progressbar",
"aria-valuemin": 0,
"aria-valuemax": 100,
"aria-valuenow": 0
});
$.extend(this, {
active: false,
pixelState: 0,
percentState: 0,
identifier: identifier
});
this.wrapper = $('<div class="ui-progressbar-wrap"></div>')
.appendTo(this.element);
this.bar = $('<div class="ui-progressbar-bar ui-hidden"></div>')
.css({
width: 0,
overflow: 'hidden',
zIndex: 100
})
.appendTo(this.wrapper);
this.textElement = $('<div class="ui-progressbar-text"></div>')
.html(text)
.css({
width: 0,
overflow: 'hidden'
})
.appendTo(this.bar);
this.textBg = $('<div class="ui-progressbar-text ui-progressbar-text-back"></div>')
.html(text)
.css({
width: this.element.width()
})
.appendTo(this.bar);
},
2008-09-20 11:22:54 +00:00
2008-11-21 04:12:18 +00:00
destroy: function() {
this.stop();
this.element
.removeClass("ui-progressbar ui-progressbar-disabled")
.removeData("progressbar").unbind(".progressbar")
.find('.ui-progressbar-wrap').remove();
delete $.easing[this.identifier];
},
2008-09-20 11:22:54 +00:00
_animate: function() {
var self = this,
options = this.options,
interval = options.interval;
2008-09-20 11:22:54 +00:00
this.bar.animate(
{
width: options.width
},
{
duration: interval,
easing: options.equation || this.identifier,
step: function(step, b) {
var timestamp = new Date().getTime(), elapsedTime = (timestamp - b.startTime);
2008-11-21 04:12:18 +00:00
self.progress( (step / options.width) * 100 );
2008-09-20 11:22:54 +00:00
options.interval = interval - elapsedTime;
},
complete: function() {
if (self.active) {
options.interval = self._interval;
self.bar.width(0);
self.textElement.width(0);
self._animate();
}
else {
delete $.easing[self.identifier];
2008-09-20 11:22:54 +00:00
}
}
}
);
},
2008-09-20 11:22:54 +00:00
disable: function() {
this.element.addClass("ui-progressbar-disabled");
this.disabled = true;
this.element.attr("aria-disabled", true);
2008-09-20 11:22:54 +00:00
},
enable: function() {
this.element.removeClass("ui-progressbar-disabled");
this.disabled = false;
this.element.attr("aria-disabled", false);
},
2008-09-20 11:22:54 +00:00
pause: function() {
if (this.disabled) return;
this.bar.stop();
this._trigger('pause', null, this.ui());
2008-09-20 11:22:54 +00:00
},
2008-09-20 11:22:54 +00:00
progress: function(percentState) {
this.bar.removeClass('ui-hidden');
2008-09-20 11:22:54 +00:00
this.percentState = percentState > 100 ? 100 : percentState;
2008-11-21 04:12:18 +00:00
this.pixelState = (this.percentState / 100) * this.options.width;
2008-09-20 11:22:54 +00:00
this.bar.width(this.pixelState);
this.textElement.width(this.pixelState);
var percent = Math.round(this.percentState);
2008-09-20 11:22:54 +00:00
if (this.options.range && !this.options.text) {
2008-11-18 02:22:30 +00:00
this._setText(percent + '%');
2008-09-20 11:22:54 +00:00
}
this.element.attr("aria-valuenow", percent);
this._trigger('progress', null, this.ui());
},
start: function() {
var self = this, options = this.options;
if (this.disabled) {
return;
}
$.easing[this.identifier] = function (x, t, b, c, d) {
var inc = options.increment,
width = options.width,
2008-11-21 04:12:18 +00:00
step = ((inc > width ? width : inc) / width),
state = Math.round(x / step) * step;
return state > 1 ? 1 : state;
};
self.active = true;
2008-09-20 04:09:27 +00:00
if (options.duration < options.interval) {
options.duration = options.interval;
}
setTimeout(
function() {
self.active = false;
},
options.duration
);
this._animate();
this._trigger('start', null, this.ui());
return false;
},
stop: function() {
this.bar.stop();
this.bar.width(0);
this.textElement.width(0);
this.bar.addClass('ui-hidden');
this.options.interval = this._interval;
this._trigger('stop', null, this.ui());
},
2008-11-18 02:22:30 +00:00
_setData: function(key, value){
switch (key) {
case 'text':
this._setText(value);
break;
}
2008-11-18 02:22:30 +00:00
$.widget.prototype._setData.apply(this, arguments);
},
2008-11-18 02:22:30 +00:00
_setText: function(text){
this.textElement.add(this.textBg).html(text);
2008-11-21 04:12:18 +00:00
},
ui: function() {
return {
options: this.options,
pixelState: this.pixelState,
percentState: this.percentState
};
}
2008-11-21 04:12:18 +00:00
});
$.extend($.ui.progressbar, {
version: "@VERSION",
defaults: {
duration: 1000,
increment: 1,
2008-11-21 04:12:18 +00:00
interval: 1000,
range: true,
2008-11-21 04:12:18 +00:00
text: '',
width: 300
2008-09-20 11:22:54 +00:00
},
uuid: 0
});
2008-09-20 01:48:18 +00:00
})(jQuery);