devextreme
Version:
HTML5 JavaScript Component Suite for Responsive Web Development
67 lines (63 loc) • 2.83 kB
JavaScript
/**
* DevExtreme (cjs/__internal/scheduler/options_validator/options_validator.js)
* Version: 23.2.6
* Build date: Wed May 01 2024
*
* Copyright (c) 2012 - 2024 Developer Express Inc. ALL RIGHTS RESERVED
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
*/
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.SchedulerOptionsValidator = void 0;
var _index = require("./common/index");
var _index2 = require("./core/index");
var _validator_rules = require("./validator_rules");
function _inheritsLoose(subClass, superClass) {
subClass.prototype = Object.create(superClass.prototype);
subClass.prototype.constructor = subClass;
_setPrototypeOf(subClass, superClass)
}
function _setPrototypeOf(o, p) {
_setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function(o, p) {
o.__proto__ = p;
return o
};
return _setPrototypeOf(o, p)
}
let SchedulerOptionsValidator = function(_OptionsValidator) {
_inheritsLoose(SchedulerOptionsValidator, _OptionsValidator);
function SchedulerOptionsValidator() {
return _OptionsValidator.call(this, {
startDayHour: new _index2.Validator(_ref => {
let {
startDayHour: startDayHour
} = _ref;
return startDayHour
}, [_index.mustBeInteger, (0, _index.mustBeInRange)([0, 24])]),
endDayHour: new _index2.Validator(_ref2 => {
let {
endDayHour: endDayHour
} = _ref2;
return endDayHour
}, [_index.mustBeInteger, (0, _index.mustBeInRange)([0, 24])]),
offset: new _index2.Validator(_ref3 => {
let {
offset: offset
} = _ref3;
return offset
}, [_index.mustBeInteger, (0, _index.mustBeInRange)([-1440, 1440]), (0, _index.mustBeDivisibleBy)(5)]),
cellDuration: new _index2.Validator(_ref4 => {
let {
cellDuration: cellDuration
} = _ref4;
return cellDuration
}, [_index.mustBeInteger, (0, _index.mustBeGreaterThan)(0)]),
startDayHourAndEndDayHour: new _index2.Validator(options => options, [_validator_rules.endDayHourMustBeGreaterThanStartDayHour]),
cellDurationAndVisibleInterval: new _index2.Validator(options => options, [_validator_rules.visibleIntervalMustBeDivisibleByCellDuration, _validator_rules.cellDurationMustBeLessThanVisibleInterval])
}) || this
}
return SchedulerOptionsValidator
}(_index2.OptionsValidator);
exports.SchedulerOptionsValidator = SchedulerOptionsValidator;