390 lines
No EOL
14 KiB
JavaScript
390 lines
No EOL
14 KiB
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.default = exports.SelectingTimes = void 0;
|
|
|
|
var _VTimePickerTitle = _interopRequireDefault(require("./VTimePickerTitle"));
|
|
|
|
var _VTimePickerClock = _interopRequireDefault(require("./VTimePickerClock"));
|
|
|
|
var _picker = _interopRequireDefault(require("../../mixins/picker"));
|
|
|
|
var _pickerButton = _interopRequireDefault(require("../../mixins/picker-button"));
|
|
|
|
var _helpers = require("../../util/helpers");
|
|
|
|
var _pad = _interopRequireDefault(require("../VDatePicker/util/pad"));
|
|
|
|
var _mixins = _interopRequireDefault(require("../../util/mixins"));
|
|
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
|
|
function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _nonIterableRest(); }
|
|
|
|
function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance"); }
|
|
|
|
function _iterableToArrayLimit(arr, i) { var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"] != null) _i["return"](); } finally { if (_d) throw _e; } } return _arr; }
|
|
|
|
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
|
|
|
|
var rangeHours24 = (0, _helpers.createRange)(24);
|
|
var rangeHours12am = (0, _helpers.createRange)(12);
|
|
var rangeHours12pm = rangeHours12am.map(function (v) {
|
|
return v + 12;
|
|
});
|
|
var range60 = (0, _helpers.createRange)(60);
|
|
var SelectingTimes;
|
|
exports.SelectingTimes = SelectingTimes;
|
|
|
|
(function (SelectingTimes) {
|
|
SelectingTimes[SelectingTimes["Hour"] = 1] = "Hour";
|
|
SelectingTimes[SelectingTimes["Minute"] = 2] = "Minute";
|
|
SelectingTimes[SelectingTimes["Second"] = 3] = "Second";
|
|
})(SelectingTimes || (exports.SelectingTimes = SelectingTimes = {}));
|
|
|
|
var selectingNames = {
|
|
1: 'hour',
|
|
2: 'minute',
|
|
3: 'second'
|
|
};
|
|
|
|
var _default = (0, _mixins.default)(_picker.default, _pickerButton.default
|
|
/* @vue/component */
|
|
).extend({
|
|
name: 'v-time-picker',
|
|
props: {
|
|
allowedHours: {
|
|
type: [Function, Array]
|
|
},
|
|
allowedMinutes: {
|
|
type: [Function, Array]
|
|
},
|
|
allowedSeconds: {
|
|
type: [Function, Array]
|
|
},
|
|
disabled: Boolean,
|
|
format: {
|
|
type: String,
|
|
default: 'ampm',
|
|
validator: function validator(val) {
|
|
return ['ampm', '24hr'].includes(val);
|
|
}
|
|
},
|
|
min: String,
|
|
max: String,
|
|
readonly: Boolean,
|
|
scrollable: Boolean,
|
|
useSeconds: Boolean,
|
|
value: null,
|
|
ampmInTitle: Boolean
|
|
},
|
|
data: function data() {
|
|
return {
|
|
inputHour: null,
|
|
inputMinute: null,
|
|
inputSecond: null,
|
|
lazyInputHour: null,
|
|
lazyInputMinute: null,
|
|
lazyInputSecond: null,
|
|
period: 'am',
|
|
selecting: SelectingTimes.Hour
|
|
};
|
|
},
|
|
computed: {
|
|
selectingHour: {
|
|
get: function get() {
|
|
return this.selecting === SelectingTimes.Hour;
|
|
},
|
|
set: function set(v) {
|
|
this.selecting = SelectingTimes.Hour;
|
|
}
|
|
},
|
|
selectingMinute: {
|
|
get: function get() {
|
|
return this.selecting === SelectingTimes.Minute;
|
|
},
|
|
set: function set(v) {
|
|
this.selecting = SelectingTimes.Minute;
|
|
}
|
|
},
|
|
selectingSecond: {
|
|
get: function get() {
|
|
return this.selecting === SelectingTimes.Second;
|
|
},
|
|
set: function set(v) {
|
|
this.selecting = SelectingTimes.Second;
|
|
}
|
|
},
|
|
isAllowedHourCb: function isAllowedHourCb() {
|
|
var _this = this;
|
|
|
|
var cb;
|
|
|
|
if (this.allowedHours instanceof Array) {
|
|
cb = function cb(val) {
|
|
return _this.allowedHours.includes(val);
|
|
};
|
|
} else {
|
|
cb = this.allowedHours;
|
|
}
|
|
|
|
if (!this.min && !this.max) return cb;
|
|
var minHour = this.min ? Number(this.min.split(':')[0]) : 0;
|
|
var maxHour = this.max ? Number(this.max.split(':')[0]) : 23;
|
|
return function (val) {
|
|
return val >= minHour * 1 && val <= maxHour * 1 && (!cb || cb(val));
|
|
};
|
|
},
|
|
isAllowedMinuteCb: function isAllowedMinuteCb() {
|
|
var _this2 = this;
|
|
|
|
var cb;
|
|
var isHourAllowed = !this.isAllowedHourCb || this.inputHour === null || this.isAllowedHourCb(this.inputHour);
|
|
|
|
if (this.allowedMinutes instanceof Array) {
|
|
cb = function cb(val) {
|
|
return _this2.allowedMinutes.includes(val);
|
|
};
|
|
} else {
|
|
cb = this.allowedMinutes;
|
|
}
|
|
|
|
if (!this.min && !this.max) {
|
|
return isHourAllowed ? cb : function () {
|
|
return false;
|
|
};
|
|
}
|
|
|
|
var _ref = this.min ? this.min.split(':').map(Number) : [0, 0],
|
|
_ref2 = _slicedToArray(_ref, 2),
|
|
minHour = _ref2[0],
|
|
minMinute = _ref2[1];
|
|
|
|
var _ref3 = this.max ? this.max.split(':').map(Number) : [23, 59],
|
|
_ref4 = _slicedToArray(_ref3, 2),
|
|
maxHour = _ref4[0],
|
|
maxMinute = _ref4[1];
|
|
|
|
var minTime = minHour * 60 + minMinute * 1;
|
|
var maxTime = maxHour * 60 + maxMinute * 1;
|
|
return function (val) {
|
|
var time = 60 * _this2.inputHour + val;
|
|
return time >= minTime && time <= maxTime && isHourAllowed && (!cb || cb(val));
|
|
};
|
|
},
|
|
isAllowedSecondCb: function isAllowedSecondCb() {
|
|
var _this3 = this;
|
|
|
|
var cb;
|
|
var isHourAllowed = !this.isAllowedHourCb || this.inputHour === null || this.isAllowedHourCb(this.inputHour);
|
|
var isMinuteAllowed = isHourAllowed && (!this.isAllowedMinuteCb || this.inputMinute === null || this.isAllowedMinuteCb(this.inputMinute));
|
|
|
|
if (this.allowedSeconds instanceof Array) {
|
|
cb = function cb(val) {
|
|
return _this3.allowedSeconds.includes(val);
|
|
};
|
|
} else {
|
|
cb = this.allowedSeconds;
|
|
}
|
|
|
|
if (!this.min && !this.max) {
|
|
return isMinuteAllowed ? cb : function () {
|
|
return false;
|
|
};
|
|
}
|
|
|
|
var _ref5 = this.min ? this.min.split(':').map(Number) : [0, 0, 0],
|
|
_ref6 = _slicedToArray(_ref5, 3),
|
|
minHour = _ref6[0],
|
|
minMinute = _ref6[1],
|
|
minSecond = _ref6[2];
|
|
|
|
var _ref7 = this.max ? this.max.split(':').map(Number) : [23, 59, 59],
|
|
_ref8 = _slicedToArray(_ref7, 3),
|
|
maxHour = _ref8[0],
|
|
maxMinute = _ref8[1],
|
|
maxSecond = _ref8[2];
|
|
|
|
var minTime = minHour * 3600 + minMinute * 60 + (minSecond || 0) * 1;
|
|
var maxTime = maxHour * 3600 + maxMinute * 60 + (maxSecond || 0) * 1;
|
|
return function (val) {
|
|
var time = 3600 * _this3.inputHour + 60 * _this3.inputMinute + val;
|
|
return time >= minTime && time <= maxTime && isMinuteAllowed && (!cb || cb(val));
|
|
};
|
|
},
|
|
isAmPm: function isAmPm() {
|
|
return this.format === 'ampm';
|
|
}
|
|
},
|
|
watch: {
|
|
value: 'setInputData'
|
|
},
|
|
mounted: function mounted() {
|
|
this.setInputData(this.value);
|
|
this.$on('update:period', this.setPeriod);
|
|
},
|
|
methods: {
|
|
genValue: function genValue() {
|
|
if (this.inputHour != null && this.inputMinute != null && (!this.useSeconds || this.inputSecond != null)) {
|
|
return "".concat((0, _pad.default)(this.inputHour), ":").concat((0, _pad.default)(this.inputMinute)) + (this.useSeconds ? ":".concat((0, _pad.default)(this.inputSecond)) : '');
|
|
}
|
|
|
|
return null;
|
|
},
|
|
emitValue: function emitValue() {
|
|
var value = this.genValue();
|
|
if (value !== null) this.$emit('input', value);
|
|
},
|
|
setPeriod: function setPeriod(period) {
|
|
this.period = period;
|
|
|
|
if (this.inputHour != null) {
|
|
var newHour = this.inputHour + (period === 'am' ? -12 : 12);
|
|
this.inputHour = this.firstAllowed('hour', newHour);
|
|
this.emitValue();
|
|
}
|
|
},
|
|
setInputData: function setInputData(value) {
|
|
if (value == null || value === '') {
|
|
this.inputHour = null;
|
|
this.inputMinute = null;
|
|
this.inputSecond = null;
|
|
} else if (value instanceof Date) {
|
|
this.inputHour = value.getHours();
|
|
this.inputMinute = value.getMinutes();
|
|
this.inputSecond = value.getSeconds();
|
|
} else {
|
|
var _ref9 = value.trim().toLowerCase().match(/^(\d+):(\d+)(:(\d+))?([ap]m)?$/) || new Array(6),
|
|
_ref10 = _slicedToArray(_ref9, 6),
|
|
hour = _ref10[1],
|
|
minute = _ref10[2],
|
|
second = _ref10[4],
|
|
period = _ref10[5];
|
|
|
|
this.inputHour = period ? this.convert12to24(parseInt(hour, 10), period) : parseInt(hour, 10);
|
|
this.inputMinute = parseInt(minute, 10);
|
|
this.inputSecond = parseInt(second || 0, 10);
|
|
}
|
|
|
|
this.period = this.inputHour == null || this.inputHour < 12 ? 'am' : 'pm';
|
|
},
|
|
convert24to12: function convert24to12(hour) {
|
|
return hour ? (hour - 1) % 12 + 1 : 12;
|
|
},
|
|
convert12to24: function convert12to24(hour, period) {
|
|
return hour % 12 + (period === 'pm' ? 12 : 0);
|
|
},
|
|
onInput: function onInput(value) {
|
|
if (this.selecting === SelectingTimes.Hour) {
|
|
this.inputHour = this.isAmPm ? this.convert12to24(value, this.period) : value;
|
|
} else if (this.selecting === SelectingTimes.Minute) {
|
|
this.inputMinute = value;
|
|
} else {
|
|
this.inputSecond = value;
|
|
}
|
|
|
|
this.emitValue();
|
|
},
|
|
onChange: function onChange(value) {
|
|
this.$emit("click:".concat(selectingNames[this.selecting]), value);
|
|
var emitChange = this.selecting === (this.useSeconds ? SelectingTimes.Second : SelectingTimes.Minute);
|
|
|
|
if (this.selecting === SelectingTimes.Hour) {
|
|
this.selecting = SelectingTimes.Minute;
|
|
} else if (this.useSeconds && this.selecting === SelectingTimes.Minute) {
|
|
this.selecting = SelectingTimes.Second;
|
|
}
|
|
|
|
if (this.inputHour === this.lazyInputHour && this.inputMinute === this.lazyInputMinute && (!this.useSeconds || this.inputSecond === this.lazyInputSecond)) return;
|
|
var time = this.genValue();
|
|
if (time === null) return;
|
|
this.lazyInputHour = this.inputHour;
|
|
this.lazyInputMinute = this.inputMinute;
|
|
this.useSeconds && (this.lazyInputSecond = this.inputSecond);
|
|
emitChange && this.$emit('change', time);
|
|
},
|
|
firstAllowed: function firstAllowed(type, value) {
|
|
var allowedFn = type === 'hour' ? this.isAllowedHourCb : type === 'minute' ? this.isAllowedMinuteCb : this.isAllowedSecondCb;
|
|
if (!allowedFn) return value; // TODO: clean up
|
|
|
|
var range = type === 'minute' ? range60 : type === 'second' ? range60 : this.isAmPm ? value < 12 ? rangeHours12am : rangeHours12pm : rangeHours24;
|
|
var first = range.find(function (v) {
|
|
return allowedFn((v + value) % range.length + range[0]);
|
|
});
|
|
return ((first || 0) + value) % range.length + range[0];
|
|
},
|
|
genClock: function genClock() {
|
|
return this.$createElement(_VTimePickerClock.default, {
|
|
props: {
|
|
allowedValues: this.selecting === SelectingTimes.Hour ? this.isAllowedHourCb : this.selecting === SelectingTimes.Minute ? this.isAllowedMinuteCb : this.isAllowedSecondCb,
|
|
color: this.color,
|
|
dark: this.dark,
|
|
disabled: this.disabled,
|
|
double: this.selecting === SelectingTimes.Hour && !this.isAmPm,
|
|
format: this.selecting === SelectingTimes.Hour ? this.isAmPm ? this.convert24to12 : function (val) {
|
|
return val;
|
|
} : function (val) {
|
|
return (0, _pad.default)(val, 2);
|
|
},
|
|
light: this.light,
|
|
max: this.selecting === SelectingTimes.Hour ? this.isAmPm && this.period === 'am' ? 11 : 23 : 59,
|
|
min: this.selecting === SelectingTimes.Hour && this.isAmPm && this.period === 'pm' ? 12 : 0,
|
|
readonly: this.readonly,
|
|
scrollable: this.scrollable,
|
|
size: Number(this.width) - (!this.fullWidth && this.landscape ? 80 : 20),
|
|
step: this.selecting === SelectingTimes.Hour ? 1 : 5,
|
|
value: this.selecting === SelectingTimes.Hour ? this.inputHour : this.selecting === SelectingTimes.Minute ? this.inputMinute : this.inputSecond
|
|
},
|
|
on: {
|
|
input: this.onInput,
|
|
change: this.onChange
|
|
},
|
|
ref: 'clock'
|
|
});
|
|
},
|
|
genClockAmPm: function genClockAmPm() {
|
|
return this.$createElement('div', this.setTextColor(this.color || 'primary', {
|
|
staticClass: 'v-time-picker-clock__ampm'
|
|
}), [this.genPickerButton('period', 'am', 'AM', this.disabled || this.readonly), this.genPickerButton('period', 'pm', 'PM', this.disabled || this.readonly)]);
|
|
},
|
|
genPickerBody: function genPickerBody() {
|
|
return this.$createElement('div', {
|
|
staticClass: 'v-time-picker-clock__container',
|
|
key: this.selecting
|
|
}, [!this.ampmInTitle && this.isAmPm && this.genClockAmPm(), this.genClock()]);
|
|
},
|
|
genPickerTitle: function genPickerTitle() {
|
|
var _this4 = this;
|
|
|
|
return this.$createElement(_VTimePickerTitle.default, {
|
|
props: {
|
|
ampm: this.ampmInTitle && this.isAmPm,
|
|
disabled: this.disabled,
|
|
hour: this.inputHour,
|
|
minute: this.inputMinute,
|
|
second: this.inputSecond,
|
|
period: this.period,
|
|
readonly: this.readonly,
|
|
useSeconds: this.useSeconds,
|
|
selecting: this.selecting
|
|
},
|
|
on: {
|
|
'update:selecting': function updateSelecting(value) {
|
|
return _this4.selecting = value;
|
|
},
|
|
'update:period': this.setPeriod
|
|
},
|
|
ref: 'title',
|
|
slot: 'title'
|
|
});
|
|
}
|
|
},
|
|
render: function render() {
|
|
return this.genPicker('v-picker--time');
|
|
}
|
|
});
|
|
|
|
exports.default = _default;
|
|
//# sourceMappingURL=VTimePicker.js.map
|