devextreme
Version:
HTML5 JavaScript Component Suite for Responsive Web Development
836 lines (831 loc) • 34.9 kB
JavaScript
/**
* DevExtreme (ui/scheduler/rendering_strategies/ui.scheduler.appointments.strategy.base.js)
* Version: 20.1.7
* Build date: Tue Aug 25 2020
*
* Copyright (c) 2012 - 2020 Developer Express Inc. ALL RIGHTS RESERVED
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
*/
"use strict";
var _uiSchedulerAppointmentsPositioningStrategy = require("./ui.scheduler.appointmentsPositioning.strategy.base");
var _uiSchedulerAppointmentsPositioningStrategy2 = _interopRequireDefault(_uiSchedulerAppointmentsPositioningStrategy);
var _uiSchedulerAppointmentsPositioningStrategy3 = require("./ui.scheduler.appointmentsPositioning.strategy.adaptive");
var _uiSchedulerAppointmentsPositioningStrategy4 = _interopRequireDefault(_uiSchedulerAppointmentsPositioningStrategy3);
var _extend = require("../../../core/utils/extend");
var _ui = require("../../widget/ui.errors");
var _ui2 = _interopRequireDefault(_ui);
var _date = require("../../../core/utils/date");
var _date2 = _interopRequireDefault(_date);
var _type = require("../../../core/utils/type");
var _type2 = _interopRequireDefault(_type);
var _themes = require("../../themes");
var _themes2 = _interopRequireDefault(_themes);
var _utils = require("../utils.timeZone");
var _utils2 = _interopRequireDefault(_utils);
function _interopRequireDefault(obj) {
return obj && obj.__esModule ? obj : {
"default": obj
}
}
function _classCallCheck(instance, Constructor) {
if (!(instance instanceof Constructor)) {
throw new TypeError("Cannot call a class as a function")
}
}
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, descriptor.key, descriptor)
}
}
function _createClass(Constructor, protoProps, staticProps) {
if (protoProps) {
_defineProperties(Constructor.prototype, protoProps)
}
if (staticProps) {
_defineProperties(Constructor, staticProps)
}
return Constructor
}
var toMs = _date2.default.dateToMilliseconds;
var APPOINTMENT_MIN_SIZE = 2;
var APPOINTMENT_DEFAULT_HEIGHT = 20;
var COMPACT_THEME_APPOINTMENT_DEFAULT_HEIGHT = 18;
var DROP_DOWN_BUTTON_ADAPTIVE_SIZE = 28;
var BaseRenderingStrategy = function() {
function BaseRenderingStrategy(instance) {
_classCallCheck(this, BaseRenderingStrategy);
this.instance = instance;
this._initPositioningStrategy()
}
_createClass(BaseRenderingStrategy, [{
key: "_isAdaptive",
value: function() {
return this.instance.fire("isAdaptive")
}
}, {
key: "_correctCollectorCoordinatesInAdaptive",
value: function(coordinates, isAllDay) {
coordinates.top = coordinates.top + this.getCollectorTopOffset(isAllDay);
coordinates.left = coordinates.left + this.getCollectorLeftOffset()
}
}, {
key: "_initPositioningStrategy",
value: function() {
this._positioningStrategy = this._isAdaptive() ? new _uiSchedulerAppointmentsPositioningStrategy4.default(this) : new _uiSchedulerAppointmentsPositioningStrategy2.default(this)
}
}, {
key: "getPositioningStrategy",
value: function() {
return this._positioningStrategy
}
}, {
key: "getAppointmentMinSize",
value: function() {
return APPOINTMENT_MIN_SIZE
}
}, {
key: "keepAppointmentSettings",
value: function() {
return false
}
}, {
key: "getDeltaTime",
value: function() {}
}, {
key: "getAppointmentGeometry",
value: function(coordinates) {
return coordinates
}
}, {
key: "needCorrectAppointmentDates",
value: function() {
return true
}
}, {
key: "getDirection",
value: function() {
return "horizontal"
}
}, {
key: "createTaskPositionMap",
value: function(items) {
delete this._maxAppointmentCountPerCell;
var length = items && items.length;
if (!length) {
return
}
this._defaultWidth = this.instance._cellWidth;
this._defaultHeight = this.instance._cellHeight;
this._allDayHeight = this.instance._allDayCellHeight;
var map = [];
for (var i = 0; i < length; i++) {
var coordinates = this._getItemPosition(items[i]);
if (this._isRtl()) {
coordinates = this._correctRtlCoordinates(coordinates)
}
map.push(coordinates)
}
var positionArray = this._getSortedPositions(map);
var resultPositions = this._getResultPositions(positionArray);
return this._getExtendedPositionMap(map, resultPositions)
}
}, {
key: "_getDeltaWidth",
value: function(args, initialSize) {
var intervalWidth = this.instance.fire("getResizableStep") || this.getAppointmentMinSize();
var initialWidth = initialSize.width;
return Math.round((args.width - initialWidth) / intervalWidth)
}
}, {
key: "_correctRtlCoordinates",
value: function(coordinates) {
var width = coordinates[0].width || this._getAppointmentMaxWidth();
coordinates.forEach(function(coordinate) {
if (!coordinate.appointmentReduced) {
coordinate.left -= width
}
});
return coordinates
}
}, {
key: "_getAppointmentMaxWidth",
value: function() {
return this.getDefaultCellWidth()
}
}, {
key: "_getItemPosition",
value: function(item) {
var position = this._getAppointmentCoordinates(item);
var allDay = this.isAllDay(item);
var result = [];
var startDate = new Date(this.instance.fire("getField", "startDate", item));
var isRecurring = !!this.instance.fire("getField", "recurrenceRule", item);
for (var j = 0; j < position.length; j++) {
var height = this.calculateAppointmentHeight(item, position[j], isRecurring);
var width = this.calculateAppointmentWidth(item, position[j], isRecurring);
var resultWidth = width;
var appointmentReduced = null;
var multiWeekAppointmentParts = [];
var initialRowIndex = position[j].rowIndex;
var initialCellIndex = position[j].cellIndex;
if (this._needVerifyItemSize() || allDay) {
var currentMaxAllowedPosition = position[j].hMax;
if (this.isAppointmentGreaterThan(currentMaxAllowedPosition, {
left: position[j].left,
width: width
})) {
appointmentReduced = "head";
initialRowIndex = position[j].rowIndex;
initialCellIndex = position[j].cellIndex;
resultWidth = this._reduceMultiWeekAppointment(width, {
left: position[j].left,
right: currentMaxAllowedPosition
});
multiWeekAppointmentParts = this._getAppointmentParts({
sourceAppointmentWidth: width,
reducedWidth: resultWidth,
height: height
}, position[j], startDate);
if (this._isRtl()) {
position[j].left = currentMaxAllowedPosition
}
}
}(0, _extend.extend)(position[j], {
height: height,
width: resultWidth,
allDay: allDay,
rowIndex: initialRowIndex,
cellIndex: initialCellIndex,
appointmentReduced: appointmentReduced,
originalAppointmentStartDate: this.startDate(item, true),
originalAppointmentEndDate: this.endDate(item),
endDate: this.endDate(item, position[j], isRecurring)
});
result = this._getAppointmentPartsPosition(multiWeekAppointmentParts, position[j], result)
}
return result
}
}, {
key: "_getAppointmentPartsPosition",
value: function(appointmentParts, position, result) {
if (appointmentParts.length) {
appointmentParts.unshift(position);
result = result.concat(appointmentParts)
} else {
result.push(position)
}
return result
}
}, {
key: "_getAppointmentCoordinates",
value: function(itemData) {
return this.instance.fire("needCoordinates", {
startDate: this.startDate(itemData),
originalStartDate: this.startDate(itemData, true),
appointmentData: itemData
})
}
}, {
key: "_isRtl",
value: function() {
return this.instance.option("rtlEnabled")
}
}, {
key: "_getAppointmentParts",
value: function() {
return []
}
}, {
key: "_getCompactAppointmentParts",
value: function(appointmentWidth) {
var cellWidth = this.getDefaultCellWidth() || this.getAppointmentMinSize();
return Math.round(appointmentWidth / cellWidth)
}
}, {
key: "_reduceMultiWeekAppointment",
value: function(sourceAppointmentWidth, bound) {
if (this._isRtl()) {
sourceAppointmentWidth = Math.floor(bound.left - bound.right)
} else {
sourceAppointmentWidth = bound.right - Math.floor(bound.left)
}
return sourceAppointmentWidth
}
}, {
key: "calculateAppointmentHeight",
value: function() {
return 0
}
}, {
key: "calculateAppointmentWidth",
value: function() {
return 0
}
}, {
key: "isAppointmentGreaterThan",
value: function(etalon, comparisonParameters) {
var result = comparisonParameters.left + comparisonParameters.width - etalon;
if (this._isRtl()) {
result = etalon + comparisonParameters.width - comparisonParameters.left
}
return result > this.getDefaultCellWidth() / 2
}
}, {
key: "isAllDay",
value: function() {
return false
}
}, {
key: "cropAppointmentWidth",
value: function(width, cellWidth) {
if (this.instance.fire("isGroupedByDate")) {
width = cellWidth
}
return width
}
}, {
key: "_getSortedPositions",
value: function(positionList) {
var _this = this;
var result = [];
var round = function(value) {
return Math.round(100 * value) / 100
};
var createItem = function(rowIndex, cellIndex, top, left, bottom, right, position, allDay) {
return {
i: rowIndex,
j: cellIndex,
top: round(top),
left: round(left),
bottom: round(bottom),
right: round(right),
cellPosition: position,
allDay: allDay
}
};
for (var rowIndex = 0, rowCount = positionList.length; rowIndex < rowCount; rowIndex++) {
for (var cellIndex = 0, cellCount = positionList[rowIndex].length; cellIndex < cellCount; cellIndex++) {
var _positionList$rowInde = positionList[rowIndex][cellIndex],
top = _positionList$rowInde.top,
left = _positionList$rowInde.left,
height = _positionList$rowInde.height,
width = _positionList$rowInde.width,
cellPosition = _positionList$rowInde.cellPosition,
allDay = _positionList$rowInde.allDay;
result.push(createItem(rowIndex, cellIndex, top, left, top + height, left + width, cellPosition, allDay))
}
}
return result.sort(function(a, b) {
return _this._sortCondition(a, b)
})
}
}, {
key: "_sortCondition",
value: function() {}
}, {
key: "_getConditions",
value: function(a, b) {
var isSomeEdge = this._isSomeEdge(a, b);
return {
columnCondition: isSomeEdge || this._normalizeCondition(a.left, b.left),
rowCondition: isSomeEdge || this._normalizeCondition(a.top, b.top),
cellPositionCondition: isSomeEdge || this._normalizeCondition(a.cellPosition, b.cellPosition)
}
}
}, {
key: "_rowCondition",
value: function(a, b) {
var conditions = this._getConditions(a, b);
return conditions.columnCondition || conditions.rowCondition
}
}, {
key: "_columnCondition",
value: function(a, b) {
var conditions = this._getConditions(a, b);
return conditions.rowCondition || conditions.columnCondition
}
}, {
key: "_isSomeEdge",
value: function(a, b) {
return a.i === b.i && a.j === b.j
}
}, {
key: "_normalizeCondition",
value: function(first, second) {
var result = first - second;
return Math.abs(result) > 1 ? result : 0
}
}, {
key: "_isItemsCross",
value: function(firstItem, secondItem) {
var areItemsInTheSameTable = !!firstItem.allDay === !!secondItem.allDay;
var areItemsAllDay = firstItem.allDay && secondItem.allDay;
if (areItemsInTheSameTable) {
var orientation = this._getOrientation(areItemsAllDay);
return this._checkItemsCrossing(firstItem, secondItem, orientation)
} else {
return false
}
}
}, {
key: "_checkItemsCrossing",
value: function(firstItem, secondItem, orientation) {
var firstItemSide_1 = Math.floor(firstItem[orientation[0]]);
var firstItemSide_2 = Math.floor(firstItem[orientation[1]]);
var secondItemSide_1 = Math.ceil(secondItem[orientation[0]]);
var secondItemSide_2 = Math.ceil(secondItem[orientation[1]]);
var isItemCross = Math.abs(firstItem[orientation[2]] - secondItem[orientation[2]]) <= 1;
return isItemCross && (firstItemSide_1 <= secondItemSide_1 && firstItemSide_2 > secondItemSide_1 || firstItemSide_1 < secondItemSide_2 && firstItemSide_2 >= secondItemSide_2 || firstItemSide_1 === secondItemSide_1 && firstItemSide_2 === secondItemSide_2)
}
}, {
key: "_getOrientation",
value: function(isAllDay) {
return isAllDay ? ["left", "right", "top"] : ["top", "bottom", "left"]
}
}, {
key: "_getResultPositions",
value: function(sortedArray) {
var _this2 = this;
var result = [];
var i;
var sortedIndex = 0;
var currentItem;
var indexes;
var itemIndex;
var maxIndexInStack = 0;
var stack = {};
var findFreeIndex = function findFreeIndex(indexes, index) {
var isFind = indexes.some(function(item) {
return item === index
});
if (isFind) {
return findFreeIndex(indexes, ++index)
} else {
return index
}
};
var createItem = function(currentItem, index) {
var currentIndex = index || 0;
return {
index: currentIndex,
i: currentItem.i,
j: currentItem.j,
left: currentItem.left,
right: currentItem.right,
top: currentItem.top,
bottom: currentItem.bottom,
allDay: currentItem.allDay,
sortedIndex: _this2._skipSortedIndex(currentIndex) ? null : sortedIndex++
}
};
var startNewStack = function(currentItem) {
stack.items = [createItem(currentItem)];
stack.left = currentItem.left;
stack.right = currentItem.right;
stack.top = currentItem.top;
stack.bottom = currentItem.bottom;
stack.allDay = currentItem.allDay
};
var pushItemsInResult = function(items) {
items.forEach(function(item) {
result.push({
index: item.index,
count: maxIndexInStack + 1,
i: item.i,
j: item.j,
sortedIndex: item.sortedIndex
})
})
};
for (i = 0; i < sortedArray.length; i++) {
currentItem = sortedArray[i];
indexes = [];
if (!stack.items) {
startNewStack(currentItem)
} else {
if (this._isItemsCross(stack, currentItem)) {
stack.items.forEach(function(item, index) {
if (_this2._isItemsCross(item, currentItem)) {
indexes.push(item.index)
}
});
itemIndex = indexes.length ? findFreeIndex(indexes, 0) : 0;
stack.items.push(createItem(currentItem, itemIndex));
maxIndexInStack = Math.max(itemIndex, maxIndexInStack);
stack.left = Math.min(stack.left, currentItem.left);
stack.right = Math.max(stack.right, currentItem.right);
stack.top = Math.min(stack.top, currentItem.top);
stack.bottom = Math.max(stack.bottom, currentItem.bottom);
stack.allDay = currentItem.allDay
} else {
pushItemsInResult(stack.items);
stack = {};
startNewStack(currentItem);
maxIndexInStack = 0
}
}
}
if (stack.items) {
pushItemsInResult(stack.items)
}
return result.sort(function(a, b) {
var columnCondition = a.j - b.j;
var rowCondition = a.i - b.i;
return rowCondition ? rowCondition : columnCondition
})
}
}, {
key: "_skipSortedIndex",
value: function(index) {
return index > this._getMaxAppointmentCountPerCell() - 1
}
}, {
key: "_findIndexByKey",
value: function(arr, iKey, jKey, iValue, jValue) {
var result = 0;
for (var i = 0, len = arr.length; i < len; i++) {
if (arr[i][iKey] === iValue && arr[i][jKey] === jValue) {
result = i;
break
}
}
return result
}
}, {
key: "_getExtendedPositionMap",
value: function(map, positions) {
var positionCounter = 0;
var result = [];
for (var i = 0, mapLength = map.length; i < mapLength; i++) {
var resultString = [];
for (var j = 0, itemLength = map[i].length; j < itemLength; j++) {
map[i][j].index = positions[positionCounter].index;
map[i][j].sortedIndex = positions[positionCounter].sortedIndex;
map[i][j].count = positions[positionCounter++].count;
resultString.push(map[i][j]);
this._checkLongCompactAppointment(map[i][j], resultString)
}
result.push(resultString)
}
return result
}
}, {
key: "_checkLongCompactAppointment",
value: function(item, result) {
this._splitLongCompactAppointment(item, result);
return result
}
}, {
key: "_splitLongCompactAppointment",
value: function(item, result) {
var appointmentCountPerCell = this._getMaxAppointmentCountPerCellByType(item.allDay);
var compactCount = 0;
if (void 0 !== appointmentCountPerCell && item.index > appointmentCountPerCell - 1) {
item.isCompact = true;
compactCount = this._getCompactAppointmentParts(item.width);
for (var k = 1; k < compactCount; k++) {
var compactPart = (0, _extend.extend)(true, {}, item);
compactPart.left = this._getCompactLeftCoordinate(item.left, k);
compactPart.cellIndex = compactPart.cellIndex + k;
compactPart.sortedIndex = null;
result.push(compactPart)
}
}
return result
}
}, {
key: "startDate",
value: function startDate(appointment, skipNormalize, position) {
var startDate = position && position.startDate;
var rangeStartDate = this.instance._getStartDate(appointment, skipNormalize);
var text = this.instance.fire("getField", "text", appointment);
if (startDate && rangeStartDate > startDate || !startDate) {
startDate = rangeStartDate
}
if (isNaN(startDate.getTime())) {
throw _ui2.default.Error("E1032", text)
}
return startDate
}
}, {
key: "endDate",
value: function endDate(appointment, position, isRecurring) {
var ignoreViewDates = arguments.length > 3 && void 0 !== arguments[3] ? arguments[3] : false;
var endDate = this.instance._getEndDate(appointment, ignoreViewDates);
var realStartDate = this.startDate(appointment, true);
var viewStartDate = this.startDate(appointment, false, position);
if (viewStartDate.getTime() > endDate.getTime() || isRecurring) {
var recurrencePartStartDate = position ? position.initialStartDate || position.startDate : realStartDate;
var recurrencePartCroppedByViewStartDate = position ? position.startDate : realStartDate;
var fullDuration = viewStartDate.getTime() > endDate.getTime() ? this.instance.fire("getField", "endDate", appointment).getTime() - this.instance.fire("getField", "startDate", appointment).getTime() : endDate.getTime() - realStartDate.getTime();
fullDuration = this._adjustDurationByDaylightDiff(fullDuration, realStartDate, endDate);
endDate = new Date(viewStartDate.getTime() >= recurrencePartStartDate.getTime() ? recurrencePartStartDate.getTime() : viewStartDate.getTime());
if (isRecurring) {
endDate = new Date(endDate.getTime() + fullDuration)
}
if (!_date2.default.sameDate(realStartDate, endDate) && recurrencePartCroppedByViewStartDate.getTime() < viewStartDate.getTime()) {
var headDuration = _date2.default.trimTime(endDate).getTime() - recurrencePartCroppedByViewStartDate.getTime();
var tailDuration = fullDuration - headDuration || fullDuration;
endDate = new Date(_date2.default.trimTime(viewStartDate).getTime() + tailDuration)
}
}
if (!this.isAllDay(appointment)) {
var viewEndDate = _date2.default.roundToHour(this.instance.fire("getEndViewDate"));
if (endDate > viewEndDate) {
endDate = viewEndDate
}
}
var currentViewEndTime = new Date(new Date(endDate).setHours(this.instance.option("endDayHour"), 0, 0));
if (endDate.getTime() > currentViewEndTime.getTime()) {
endDate = currentViewEndTime
}
return endDate
}
}, {
key: "_adjustDurationByDaylightDiff",
value: function(duration, startDate, endDate) {
var daylightDiff = _utils2.default.getDaylightOffset(startDate, endDate);
return this._needAdjustDuration(daylightDiff) ? this._calculateDurationByDaylightDiff(duration, daylightDiff) : duration
}
}, {
key: "_needAdjustDuration",
value: function(diff) {
return 0 !== diff
}
}, {
key: "_calculateDurationByDaylightDiff",
value: function(duration, diff) {
return duration + diff * toMs("minute")
}
}, {
key: "_getAppointmentDurationInMs",
value: function(startDate, endDate, allDay) {
return this.instance.fire("getAppointmentDurationInMs", {
startDate: startDate,
endDate: endDate,
allDay: allDay
})
}
}, {
key: "_markAppointmentAsVirtual",
value: function(coordinates, isAllDay) {
var countFullWidthAppointmentInCell = this._getMaxAppointmentCountPerCellByType(isAllDay);
if (coordinates.count - countFullWidthAppointmentInCell > 0) {
coordinates.virtual = {
top: coordinates.top,
left: coordinates.left,
index: "tail" === coordinates.appointmentReduced ? coordinates.groupIndex + "-" + coordinates.rowIndex + "-" + coordinates.cellIndex : coordinates.groupIndex + "-" + coordinates.rowIndex + "-" + coordinates.cellIndex + "-tail",
isAllDay: isAllDay
}
}
}
}, {
key: "_getMaxAppointmentCountPerCellByType",
value: function(isAllDay) {
var appointmentCountPerCell = this._getMaxAppointmentCountPerCell();
if (_type2.default.isObject(appointmentCountPerCell)) {
return isAllDay ? this._getMaxAppointmentCountPerCell().allDay : this._getMaxAppointmentCountPerCell().simple
} else {
return appointmentCountPerCell
}
}
}, {
key: "getDropDownAppointmentWidth",
value: function(intervalCount, isAllDay) {
return this.getPositioningStrategy().getDropDownAppointmentWidth(intervalCount, isAllDay)
}
}, {
key: "getDropDownAppointmentHeight",
value: function() {
return this.getPositioningStrategy().getDropDownAppointmentHeight()
}
}, {
key: "getDropDownButtonAdaptiveSize",
value: function() {
return DROP_DOWN_BUTTON_ADAPTIVE_SIZE
}
}, {
key: "getDefaultCellWidth",
value: function() {
return this._defaultWidth
}
}, {
key: "getDefaultCellHeight",
value: function() {
return this._defaultHeight
}
}, {
key: "getDefaultAllDayCellHeight",
value: function() {
return this._allDayHeight
}
}, {
key: "getCollectorTopOffset",
value: function(allDay) {
return this.getPositioningStrategy().getCollectorTopOffset(allDay)
}
}, {
key: "getCollectorLeftOffset",
value: function() {
return this.getPositioningStrategy().getCollectorLeftOffset()
}
}, {
key: "getAppointmentDataCalculator",
value: function() {}
}, {
key: "_customizeCoordinates",
value: function(coordinates, height, appointmentCountPerCell, topOffset, isAllDay) {
var index = coordinates.index;
var appointmentHeight = height / appointmentCountPerCell;
var appointmentTop = coordinates.top + index * appointmentHeight;
var top = appointmentTop + topOffset;
var width = coordinates.width;
var left = coordinates.left;
if (coordinates.isCompact) {
this._isAdaptive() && this._correctCollectorCoordinatesInAdaptive(coordinates, isAllDay);
this._markAppointmentAsVirtual(coordinates, isAllDay)
}
return {
height: appointmentHeight,
width: width,
top: top,
left: left,
empty: this._isAppointmentEmpty(height, width)
}
}
}, {
key: "_isAppointmentEmpty",
value: function(height, width) {
return height < this._getAppointmentMinHeight() || width < this._getAppointmentMinWidth()
}
}, {
key: "_calculateGeometryConfig",
value: function(coordinates) {
var overlappingMode = this.instance.fire("getMaxAppointmentsPerCell");
var offsets = this._getOffsets();
var appointmentDefaultOffset = this._getAppointmentDefaultOffset();
var appointmentCountPerCell = this._getAppointmentCount(overlappingMode, coordinates);
var ratio = this._getDefaultRatio(coordinates, appointmentCountPerCell);
var maxHeight = this._getMaxHeight();
if (!(0, _type.isNumeric)(appointmentCountPerCell)) {
appointmentCountPerCell = coordinates.count;
ratio = (maxHeight - offsets.unlimited) / maxHeight
}
var topOffset = (1 - ratio) * maxHeight;
if ("auto" === overlappingMode || (0, _type.isNumeric)(overlappingMode)) {
ratio = 1;
maxHeight -= appointmentDefaultOffset;
topOffset = appointmentDefaultOffset
}
return {
height: ratio * maxHeight,
appointmentCountPerCell: appointmentCountPerCell,
offset: topOffset
}
}
}, {
key: "_getAppointmentCount",
value: function() {}
}, {
key: "_getDefaultRatio",
value: function() {}
}, {
key: "_getOffsets",
value: function() {}
}, {
key: "_getMaxHeight",
value: function() {}
}, {
key: "_needVerifyItemSize",
value: function() {
return false
}
}, {
key: "needSeparateAppointment",
value: function(allDay) {
return this.instance.fire("isGroupedByDate") && allDay
}
}, {
key: "_getMaxAppointmentCountPerCell",
value: function() {
if (!this._maxAppointmentCountPerCell) {
var overlappingMode = this.instance.fire("getMaxAppointmentsPerCell");
var appointmentCountPerCell;
if ((0, _type.isNumeric)(overlappingMode)) {
appointmentCountPerCell = overlappingMode
}
if ("auto" === overlappingMode) {
appointmentCountPerCell = this._getDynamicAppointmentCountPerCell()
}
if ("unlimited" === overlappingMode) {
appointmentCountPerCell = void 0
}
this._maxAppointmentCountPerCell = appointmentCountPerCell
}
return this._maxAppointmentCountPerCell
}
}, {
key: "_getDynamicAppointmentCountPerCell",
value: function() {
return this.getPositioningStrategy().getDynamicAppointmentCountPerCell()
}
}, {
key: "hasAllDayAppointments",
value: function() {
return false
}
}, {
key: "_isCompactTheme",
value: function() {
return "compact" === (_themes2.default.current() || "").split(".").pop()
}
}, {
key: "_getAppointmentDefaultOffset",
value: function() {
return this.getPositioningStrategy().getAppointmentDefaultOffset()
}
}, {
key: "_getAppointmentDefaultHeight",
value: function() {
return this._getAppointmentHeightByTheme()
}
}, {
key: "_getAppointmentMinHeight",
value: function() {
return this._getAppointmentDefaultHeight()
}
}, {
key: "_getAppointmentHeightByTheme",
value: function() {
return this._isCompactTheme() ? COMPACT_THEME_APPOINTMENT_DEFAULT_HEIGHT : APPOINTMENT_DEFAULT_HEIGHT
}
}, {
key: "_getAppointmentDefaultWidth",
value: function() {
return this.getPositioningStrategy()._getAppointmentDefaultWidth()
}
}, {
key: "_getAppointmentMinWidth",
value: function() {
return this._getAppointmentDefaultWidth()
}
}, {
key: "_needVerticalGroupBounds",
value: function() {
return false
}
}, {
key: "_needHorizontalGroupBounds",
value: function() {
return false
}
}]);
return BaseRenderingStrategy
}();
module.exports = BaseRenderingStrategy;