oxjs/source/Ox.UI/js/Form/TimeInput.js

174 lines
5.3 KiB
JavaScript
Raw Normal View History

2011-11-05 16:46:53 +00:00
'use strict';
2011-05-16 10:49:48 +00:00
/*@
2012-05-31 10:32:54 +00:00
Ox.TimeInput <f> TimeInput Object
([options[, self]]) -> <o:Ox.InputGroup> TimeInput Object
2011-05-16 10:49:48 +00:00
options <o> Options object
ampm <b|false> 24h/ampm
seconds <b|false> show seconds
milliseconds <b|false> show milliseconds
value <d> value, defaults to current time
2011-05-16 10:49:48 +00:00
self <o> shared private variable
@*/
2011-04-22 22:03:10 +00:00
Ox.TimeInput = function(options, self) {
// fixme: seconds get set even if options.seconds is false
2011-12-21 13:42:47 +00:00
var that;
self = Ox.extend(self || {}, {
options: Ox.extend({
ampm: false,
seconds: false,
milliseconds: false,
value: (function() {
var date = new Date();
return Ox.formatDate(
date,
options && (options.seconds || options.milliseconds) ? '%T' : '%H:%M'
) + (options && options.milliseconds ? '.' + Ox.pad(date % 1000, 3) : '');
2011-12-21 13:42:47 +00:00
}()),
width: {
hours: 32,
minutes: 32,
seconds: 32,
milliseconds: 40,
ampm: 32
}
}, options || {})
});
self.options.seconds = self.options.seconds || self.options.milliseconds;
2011-04-22 22:03:10 +00:00
self.$input = {
hours: Ox.Input({
autocomplete: (self.options.ampm ? Ox.range(1, 13) : Ox.range(0, 24)).map(function(i) {
return Ox.pad(i, 2);
2011-04-22 22:03:10 +00:00
}),
autocompleteReplace: true,
autocompleteReplaceCorrect: true,
id: 'hours',
textAlign: 'right',
width: self.options.width.hours
2011-04-22 22:03:10 +00:00
}),
minutes: Ox.Input({
autocomplete: Ox.range(0, 60).map(function(i) {
return Ox.pad(i, 2);
2011-04-22 22:03:10 +00:00
}),
autocompleteReplace: true,
autocompleteReplaceCorrect: true,
id: 'minutes',
textAlign: 'right',
width: self.options.width.minutes
2011-04-22 22:03:10 +00:00
}),
seconds: Ox.Input({
autocomplete: Ox.range(0, 60).map(function(i) {
return Ox.pad(i, 2);
2011-04-22 22:03:10 +00:00
}),
autocompleteReplace: true,
autocompleteReplaceCorrect: true,
id: 'seconds',
textAlign: 'right',
width: self.options.width.seconds
2011-04-22 22:03:10 +00:00
}),
milliseconds: Ox.Input({
autocomplete: Ox.range(0, 1000).map(function(i) {
return Ox.pad(i, 3);
2011-04-22 22:03:10 +00:00
}),
autocompleteReplace: true,
autocompleteReplaceCorrect: true,
id: 'milliseconds',
textAlign: 'right',
width: self.options.width.milliseconds
2011-04-22 22:03:10 +00:00
}),
ampm: Ox.Input({
2011-04-22 22:03:10 +00:00
autocomplete: ['AM', 'PM'],
autocompleteReplace: true,
autocompleteReplaceCorrect: true,
id: 'ampm',
width: self.options.width.ampm
2011-04-22 22:03:10 +00:00
})
};
that = Ox.InputGroup(Ox.extend(self.options, {
2011-12-21 13:42:47 +00:00
id: self.options.id,
2012-05-24 07:45:33 +00:00
inputs: [].concat([
2011-12-21 13:42:47 +00:00
self.$input.hours,
self.$input.minutes,
], self.options.seconds ? [
self.$input.seconds
] : [], self.options.milliseconds ? [
self.$input.milliseconds
] : [], self.options.ampm ? [
self.$input.ampm
] : []),
join: join,
2012-05-24 07:45:33 +00:00
separators: [].concat([
2011-12-21 13:42:47 +00:00
{title: ':', width: 8},
], self.options.seconds ? [
{title: ':', width: 8}
] : [], self.options.milliseconds ? [
{title: '.', width: 8}
] : [], self.options.ampm ? [
{title: '', width: 8}
] : []),
split: split,
value: self.options.value,
width: 0
}), self);
2011-04-22 22:03:10 +00:00
function getDate() {
return new Date('1970/01/01 ' + (
2011-12-21 13:42:47 +00:00
self.options.milliseconds
2012-05-24 09:47:33 +00:00
? self.options.value.slice(0, -4)
2011-12-21 13:42:47 +00:00
: self.options.value
2011-04-22 22:03:10 +00:00
));
}
function getValues() {
2011-12-21 13:42:47 +00:00
var date = getDate();
2011-04-22 22:03:10 +00:00
return {
2011-12-21 13:42:47 +00:00
ampm: Ox.formatDate(date, '%p'),
hours: Ox.formatDate(date, self.options.ampm ? '%I' : '%H'),
2012-05-24 09:47:33 +00:00
milliseconds: self.options.milliseconds ? self.options.value.slice(-3) : '000',
2011-12-21 13:42:47 +00:00
minutes: Ox.formatDate(date, '%M'),
seconds: Ox.formatDate(date, '%S')
2011-04-22 22:03:10 +00:00
};
}
2011-12-21 13:42:47 +00:00
function join() {
return Ox.formatDate(
new Date(
'1970/01/01 ' + [
2011-12-21 15:33:52 +00:00
self.$input.hours.value(),
self.$input.minutes.value(),
self.options.seconds ? self.$input.seconds.value() : '00'
2011-12-21 13:42:47 +00:00
].join(':') + (
2011-12-21 15:33:52 +00:00
self.options.ampm ? ' ' + self.$input.ampm.value() : ''
2011-12-21 13:42:47 +00:00
)
),
(
self.options.seconds ? '%T' : '%H:%M'
) + (
2011-12-21 15:33:52 +00:00
self.options.milliseconds ? '.' + self.$input.milliseconds.value() : ''
2011-12-21 13:42:47 +00:00
)
);
2011-04-22 22:03:10 +00:00
}
2011-12-21 13:42:47 +00:00
function split(value) {
var values = getValues();
2012-05-24 07:45:33 +00:00
return [].concat([
2011-12-21 13:42:47 +00:00
values.hours,
values.minutes,
], self.options.seconds ? [
values.seconds
] : [], self.options.milliseconds ? [
values.milliseconds
] : [], self.options.ampm ? [
values.ampm
] : []);
2011-04-22 22:03:10 +00:00
}
return that;
};