UNPKG

@progress/kendo-react-dateinputs

Version:
116 lines 5.15 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var kendo_date_math_1 = require("@progress/kendo-date-math"); var utils_1 = require("../../utils"); var utils_2 = require("../utils"); var MINUTES_IN_HOUR = 60; var clampToRange = function (rangeValue) { return function (value) { return value % rangeValue; }; }; var clamp = clampToRange(MINUTES_IN_HOUR); var stepper = function (start, step) { return function (idx) { return clamp(start + (idx * step)); }; }; var distanceFromMin = function (value, min) { return clamp(MINUTES_IN_HOUR + value - min); }; var limit = function (borderValue) { return function (barrier, value) { var useBarrier = !value || barrier.getHours() === value.getHours(); return useBarrier ? barrier : utils_2.setMinutes(barrier, borderValue); }; }; var limitDown = limit(0); var limitUp = limit(MINUTES_IN_HOUR - 1); /** * @hidden */ var MinutesService = /** @class */ (function () { function MinutesService(intl) { this.intl = intl; this.insertUndividedMax = false; } MinutesService.prototype.apply = function (value, candidate) { return utils_2.setMinutes(value, candidate.getMinutes()); }; MinutesService.prototype.configure = function (settings) { var _this = this; var _a = settings.insertUndividedMax, insertUndividedMax = _a === void 0 ? this.insertUndividedMax : _a, _b = settings.min, min = _b === void 0 ? this.min : _b, _c = settings.max, max = _c === void 0 ? this.max : _c, part = settings.part, _d = settings.step, step = _d === void 0 ? this.step : _d; this.insertUndividedMax = insertUndividedMax; this.toListItem = function (minute) { var date = utils_2.setMinutes(utils_1.MIDNIGHT_DATE, minute); return { text: _this.intl.formatDate(date, part.pattern), value: date }; }; this.min = min; this.max = max; this.step = step; }; MinutesService.prototype.data = function (selectedValue) { var _this = this; var min = this.range(selectedValue)[0]; var getMinute = stepper(min, this.step); var convertToItem = function (idx) { return (_this.toListItem(getMinute(idx))); }; var data = utils_2.range(0, this.countFromMin(selectedValue)).map(convertToItem); this.addLast(data); if (selectedValue) { this.addMissing(data, selectedValue); } return data; }; MinutesService.prototype.isRangeChanged = function (min, max) { return !kendo_date_math_1.isEqual(this.min, min) || !kendo_date_math_1.isEqual(this.max, max); }; MinutesService.prototype.limitRange = function (min, max, value) { return [limitDown(min, value), limitUp(max, value)]; }; MinutesService.prototype.total = function (value) { var last = this.insertUndividedMax && this.isLastMissing(value) ? 1 : 0; var missing = this.isMissing(value) ? 1 : 0; return this.countFromMin(value) + missing + last; }; MinutesService.prototype.selectedIndex = function (value) { return Math.ceil(this.divideByStep(value)); }; MinutesService.prototype.valueInList = function (value) { if (!value) { return true; } var matchMax = this.insertUndividedMax && this.lastMinute(value) === value.getMinutes(); return matchMax || !this.isMissing(value); }; MinutesService.prototype.addLast = function (data, value) { if (this.insertUndividedMax && this.isLastMissing(value)) { data.push(this.toListItem(this.lastMinute(value))); } return data; }; MinutesService.prototype.addMissing = function (data, value) { if (this.valueInList(value)) { return data; } var missingItem = this.toListItem(value.getMinutes()); data.splice(this.selectedIndex(value), 0, missingItem); return data; }; MinutesService.prototype.countFromMin = function (value) { var _a = this.range(value), min = _a[0], max = _a[1]; return Math.floor(distanceFromMin(max, min) / this.step) + 1; /* include min */ }; MinutesService.prototype.isMissing = function (value) { if (!value) { return false; } return this.selectedIndex(value) !== this.divideByStep(value); }; MinutesService.prototype.isLastMissing = function (value) { return this.isMissing(utils_2.setMinutes(this.max, this.lastMinute(value))); }; MinutesService.prototype.divideByStep = function (value) { return distanceFromMin(value.getMinutes(), this.min.getMinutes()) / this.step; }; MinutesService.prototype.lastMinute = function (value) { return this.range(value)[1]; }; MinutesService.prototype.range = function (value) { var _a = this.limitRange(this.min, this.max, value), min = _a[0], max = _a[1]; return [min.getMinutes(), max.getMinutes()]; }; return MinutesService; }()); exports.MinutesService = MinutesService; //# sourceMappingURL=MinutesService.js.map