devextreme
Version:
HTML5 JavaScript Component Suite for Responsive Web Development
74 lines (72 loc) • 2.74 kB
JavaScript
/**
* DevExtreme (cjs/__internal/scheduler/appointments/rendering_strategies/m_appointments_positioning_strategy_adaptive.js)
* Version: 24.2.6
* Build date: Mon Mar 17 2025
*
* Copyright (c) 2012 - 2025 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 _m_appointments_positioning_strategy_base = _interopRequireDefault(require("./m_appointments_positioning_strategy_base"));
function _interopRequireDefault(e) {
return e && e.__esModule ? e : {
default: e
}
}
const COLLECTOR_ADAPTIVE_SIZE = 28;
const COLLECTOR_ADAPTIVE_BOTTOM_OFFSET = 40;
const ADAPTIVE_APPOINTMENT_DEFAULT_OFFSET = 35;
const ADAPTIVE_APPOINTMENT_DEFAULT_WIDTH = 30;
class AdaptivePositioningStrategy extends _m_appointments_positioning_strategy_base.default {
getDropDownAppointmentWidth(intervalCount, isAllDay) {
return this.getDropDownButtonAdaptiveSize()
}
getDropDownButtonAdaptiveSize() {
return 28
}
getCollectorTopOffset(allDay) {
const renderingStrategy = this._renderingStrategy;
if (renderingStrategy.allDaySupported() && allDay) {
return (renderingStrategy.allDayHeight - renderingStrategy.getDropDownButtonAdaptiveSize()) / 2
}
return this._renderingStrategy.cellHeight - 40
}
getCollectorLeftOffset() {
const collectorWidth = this._renderingStrategy.getDropDownAppointmentWidth();
return (this._renderingStrategy.cellWidth - collectorWidth) / 2
}
getAppointmentDefaultOffset() {
return 35
}
getDynamicAppointmentCountPerCell() {
const renderingStrategy = this._renderingStrategy;
if (renderingStrategy.allDaySupported()) {
return {
allDay: 0,
simple: this._calculateDynamicAppointmentCountPerCell() || this._getAppointmentMinCount()
}
}
return 0
}
getDropDownAppointmentHeight() {
return 28
}
_getAppointmentMinCount() {
return 0
}
_getAppointmentDefaultWidth() {
const renderingStrategy = this._renderingStrategy;
if (renderingStrategy.allDaySupported()) {
return 30
}
return super._getAppointmentDefaultWidth()
}
_calculateDynamicAppointmentCountPerCell() {
return Math.floor(this._renderingStrategy._getAppointmentMaxWidth() / this._renderingStrategy._getAppointmentDefaultWidth())
}
}
var _default = exports.default = AdaptivePositioningStrategy;