devextreme
Version:
HTML5 JavaScript Component Suite for Responsive Web Development
163 lines (153 loc) • 5.74 kB
JavaScript
/**
* DevExtreme (cjs/__internal/scheduler/workspaces/m_timeline_month.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.default = void 0;
var _component_registrator = _interopRequireDefault(require("../../../core/component_registrator"));
var _date = _interopRequireDefault(require("../../../core/utils/date"));
var _index = require("../../scheduler/r1/components/index");
var _index2 = require("../../scheduler/r1/utils/index");
var _m_constants = require("../m_constants");
var _m_timeline = _interopRequireDefault(require("./m_timeline"));
function _interopRequireDefault(obj) {
return obj && obj.__esModule ? obj : {
default: obj
}
}
function _extends() {
_extends = Object.assign ? Object.assign.bind() : function(target) {
for (var i = 1; i < arguments.length; i++) {
var source = arguments[i];
for (var key in source) {
if (Object.prototype.hasOwnProperty.call(source, key)) {
target[key] = source[key]
}
}
}
return target
};
return _extends.apply(this, arguments)
}
function _defineProperties(target, props) {
for (var i = 0; i < props.length; i++) {
var descriptor = props[i];
descriptor.enumerable = descriptor.enumerable || false;
descriptor.configurable = true;
if ("value" in descriptor) {
descriptor.writable = true
}
Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor)
}
}
function _createClass(Constructor, protoProps, staticProps) {
if (protoProps) {
_defineProperties(Constructor.prototype, protoProps)
}
if (staticProps) {
_defineProperties(Constructor, staticProps)
}
Object.defineProperty(Constructor, "prototype", {
writable: false
});
return Constructor
}
function _toPropertyKey(arg) {
var key = _toPrimitive(arg, "string");
return "symbol" === typeof key ? key : String(key)
}
function _toPrimitive(input, hint) {
if ("object" !== typeof input || null === input) {
return input
}
var prim = input[Symbol.toPrimitive];
if (void 0 !== prim) {
var res = prim.call(input, hint || "default");
if ("object" !== typeof res) {
return res
}
throw new TypeError("@@toPrimitive must return a primitive value.")
}
return ("string" === hint ? String : Number)(input)
}
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)
}
const TIMELINE_CLASS = "dx-scheduler-timeline-month";
let SchedulerTimelineMonth = function(_SchedulerTimeline) {
_inheritsLoose(SchedulerTimelineMonth, _SchedulerTimeline);
function SchedulerTimelineMonth() {
var _this;
_this = _SchedulerTimeline.apply(this, arguments) || this;
_this.viewDirection = "horizontal";
return _this
}
var _proto = SchedulerTimelineMonth.prototype;
_proto._renderView = function() {
_SchedulerTimeline.prototype._renderView.call(this);
this._updateScrollable()
};
_proto._getElementClass = function() {
return TIMELINE_CLASS
};
_proto._getDateHeaderTemplate = function() {
return this.option("dateCellTemplate")
};
_proto._calculateDurationInCells = function(timeDiff) {
return timeDiff / this.getCellDuration()
};
_proto.isIndicatorVisible = function() {
return true
};
_proto._getFormat = function() {
return _index2.formatWeekdayAndDay
};
_proto._getIntervalBetween = function(currentDate) {
const firstViewDate = this.getStartViewDate();
const timeZoneOffset = _date.default.getTimezonesDifference(firstViewDate, currentDate);
return currentDate.getTime() - (firstViewDate.getTime() - 36e5 * this.option("startDayHour")) - timeZoneOffset
};
_proto._getViewStartByOptions = function() {
return _index2.monthUtils.getViewStartByOptions(this.option("startDate"), this.option("currentDate"), this.option("intervalCount"), _date.default.getFirstMonthDate(this.option("startDate")))
};
_proto.generateRenderOptions = function() {
const options = _SchedulerTimeline.prototype.generateRenderOptions.call(this, true);
return _extends(_extends({}, options), {
getDateForHeaderText: (_, date) => date
})
};
_proto.keepOriginalHours = function() {
return true
};
_createClass(SchedulerTimelineMonth, [{
key: "type",
get: function() {
return _m_constants.VIEWS.TIMELINE_MONTH
}
}, {
key: "renovatedHeaderPanelComponent",
get: function() {
return _index.HeaderPanelComponent
}
}]);
return SchedulerTimelineMonth
}(_m_timeline.default);
(0, _component_registrator.default)("dxSchedulerTimelineMonth", SchedulerTimelineMonth);
var _default = SchedulerTimelineMonth;
exports.default = _default;