devextreme
Version:
HTML5 JavaScript Component Suite for Responsive Web Development
193 lines (192 loc) • 7.08 kB
JavaScript
/**
* DevExtreme (esm/ui/date_box/ui.date_box.strategy.calendar.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/
*/
import Calendar from "../calendar";
import DateBoxStrategy from "./ui.date_box.strategy";
import dateUtils from "../../core/utils/date";
import {
splitPair
} from "../../core/utils/common";
import {
isFunction,
isEmptyObject
} from "../../core/utils/type";
import {
extend
} from "../../core/utils/extend";
import messageLocalization from "../../localization/message";
import {
isMaterial
} from "../themes";
var TODAY_BUTTON_CLASS = "dx-button-today";
var CalendarStrategy = DateBoxStrategy.inherit({
NAME: "Calendar",
getDefaultOptions: function() {
return extend(this.callBase(), {
todayButtonText: messageLocalization.format("dxCalendar-todayButtonText")
})
},
supportedKeys: function() {
var homeEndHandler = function(e) {
if (this.option("opened")) {
e.preventDefault();
return true
}
return false
};
return {
rightArrow: function() {
if (this.option("opened")) {
return true
}
},
leftArrow: function() {
if (this.option("opened")) {
return true
}
},
enter: function(e) {
if (this.dateBox.option("opened")) {
e.preventDefault();
if (this._widget.option("zoomLevel") === this._widget.option("maxZoomLevel")) {
var viewValue = this._getContouredValue();
var lastActionElement = this._lastActionElement;
var shouldCloseDropDown = this._closeDropDownByEnter();
if (shouldCloseDropDown && viewValue && "calendar" === lastActionElement) {
this.dateBoxValue(viewValue, e)
}
shouldCloseDropDown && this.dateBox.close();
this.dateBox._valueChangeEventHandler(e);
return !shouldCloseDropDown
} else {
return true
}
} else {
this.dateBox._valueChangeEventHandler(e)
}
}.bind(this),
home: homeEndHandler,
end: homeEndHandler
}
},
getDisplayFormat: function(displayFormat) {
return displayFormat || "shortdate"
},
_closeDropDownByEnter: () => true,
_getWidgetName: function() {
return Calendar
},
_getContouredValue: function() {
return this._widget._view.option("contouredDate")
},
getKeyboardListener() {
return this._widget
},
_getWidgetOptions: function() {
var disabledDates = this.dateBox.option("disabledDates");
return extend(this.dateBox.option("calendarOptions"), {
value: this.dateBoxValue() || null,
selectionMode: "single",
dateSerializationFormat: null,
min: this.dateBox.dateOption("min"),
max: this.dateBox.dateOption("max"),
onValueChanged: this._valueChangedHandler.bind(this),
onCellClick: this._cellClickHandler.bind(this),
disabledDates: isFunction(disabledDates) ? this._injectComponent(disabledDates.bind(this.dateBox)) : disabledDates,
onContouredChanged: this._refreshActiveDescendant.bind(this),
skipFocusCheck: true
})
},
_injectComponent: function(func) {
var that = this;
return function(params) {
extend(params, {
component: that.dateBox
});
return func(params)
}
},
_refreshActiveDescendant: function(e) {
this._lastActionElement = "calendar";
this.dateBox.setAria("activedescendant", e.actionValue)
},
_getTodayButtonConfig() {
var buttonsLocation = this.dateBox.option("buttonsLocation");
var isButtonsLocationDefault = "default" === buttonsLocation;
var position = isButtonsLocationDefault ? ["bottom", "center"] : splitPair(buttonsLocation);
var stylingMode = isMaterial() ? "text" : "outlined";
return {
widget: "dxButton",
toolbar: position[0],
location: "after" === position[1] ? "before" : position[1],
options: {
onClick: args => {
this._widget._toTodayView(args)
},
text: this.dateBox.option("todayButtonText"),
elementAttr: {
class: TODAY_BUTTON_CLASS
},
stylingMode: stylingMode
}
}
},
_isCalendarVisible: function() {
var {
calendarOptions: calendarOptions
} = this.dateBox.option();
return isEmptyObject(calendarOptions) || false !== calendarOptions.visible
},
_getPopupToolbarItems(toolbarItems) {
var useButtons = "useButtons" === this.dateBox.option("applyValueMode");
var shouldRenderTodayButton = useButtons && this._isCalendarVisible();
if (shouldRenderTodayButton) {
var todayButton = this._getTodayButtonConfig();
return [todayButton, ...toolbarItems]
}
return toolbarItems
},
popupConfig: function(_popupConfig) {
return extend(true, _popupConfig, {
position: {
collision: "flipfit flip"
},
width: "auto"
})
},
_valueChangedHandler: function(e) {
var value = e.value;
var prevValue = e.previousValue;
if (dateUtils.sameDate(value, prevValue) && dateUtils.sameHoursAndMinutes(value, prevValue)) {
return
}
if ("instantly" === this.dateBox.option("applyValueMode")) {
this.dateBoxValue(this.getValue(), e.event)
}
},
_updateValue: function() {
if (!this._widget) {
return
}
this._widget.option("value", this.dateBoxValue())
},
textChangedHandler: function() {
this._lastActionElement = "input";
if (this.dateBox.option("opened") && this._widget) {
this._updateValue(true)
}
},
_cellClickHandler: function(e) {
var dateBox = this.dateBox;
if ("instantly" === dateBox.option("applyValueMode")) {
dateBox.option("opened", false);
this.dateBoxValue(this.getValue(), e.event)
}
}
});
export default CalendarStrategy;