devextreme
Version:
HTML5 JavaScript Component Suite for Responsive Web Development
1,141 lines (1,136 loc) • 46.5 kB
JavaScript
/**
* DevExtreme (cjs/__internal/ui/popup/m_popup.js)
* Version: 25.1.5
* Build date: Wed Sep 03 2025
*
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
*/
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = exports.TEMPLATE_WRAPPER_CLASS = exports.POPUP_TITLE_CLOSEBUTTON_CLASS = exports.POPUP_CONTENT_SCROLLABLE_CLASS = exports.POPUP_CONTENT_CLASS = exports.POPUP_CLASS = void 0;
require("../../../ui/toolbar/ui.toolbar.base");
var _visibility_change = require("../../../common/core/events/visibility_change");
var _message = _interopRequireDefault(require("../../../common/core/localization/message"));
var _component_registrator = _interopRequireDefault(require("../../../core/component_registrator"));
var _devices = _interopRequireDefault(require("../../../core/devices"));
var _element = require("../../../core/element");
var _guid = _interopRequireDefault(require("../../../core/guid"));
var _renderer = _interopRequireDefault(require("../../../core/renderer"));
var _resize_observer = _interopRequireDefault(require("../../../core/resize_observer"));
var _empty_template = require("../../../core/templates/empty_template");
var _common = require("../../../core/utils/common");
var _extend = require("../../../core/utils/extend");
var _inflector = require("../../../core/utils/inflector");
var _iterator = require("../../../core/utils/iterator");
var _position = require("../../../core/utils/position");
var _size = require("../../../core/utils/size");
var _type = require("../../../core/utils/type");
var _button = _interopRequireDefault(require("../../../ui/button"));
var _resizable = _interopRequireDefault(require("../../../ui/resizable"));
var _themes = require("../../../ui/themes");
var _m_window = _interopRequireDefault(require("../../core/utils/m_window"));
var _overlay = _interopRequireDefault(require("../../ui/overlay/overlay"));
var zIndexPool = _interopRequireWildcard(require("../../ui/overlay/z_index"));
var _constants = require("../../ui/toolbar/constants");
var _m_popup_drag = _interopRequireDefault(require("./m_popup_drag"));
var _m_popup_overflow_manager = require("./m_popup_overflow_manager");
var _popup_position_controller = require("./popup_position_controller");
function _getRequireWildcardCache(e) {
if ("function" != typeof WeakMap) {
return null
}
var r = new WeakMap,
t = new WeakMap;
return (_getRequireWildcardCache = function(e) {
return e ? t : r
})(e)
}
function _interopRequireWildcard(e, r) {
if (!r && e && e.__esModule) {
return e
}
if (null === e || "object" != typeof e && "function" != typeof e) {
return {
default: e
}
}
var t = _getRequireWildcardCache(r);
if (t && t.has(e)) {
return t.get(e)
}
var n = {
__proto__: null
},
a = Object.defineProperty && Object.getOwnPropertyDescriptor;
for (var u in e) {
if ("default" !== u && {}.hasOwnProperty.call(e, u)) {
var i = a ? Object.getOwnPropertyDescriptor(e, u) : null;
i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]
}
}
return n.default = e, t && t.set(e, n), n
}
function _interopRequireDefault(e) {
return e && e.__esModule ? e : {
default: e
}
}
function _extends() {
return _extends = Object.assign ? Object.assign.bind() : function(n) {
for (var e = 1; e < arguments.length; e++) {
var t = arguments[e];
for (var r in t) {
({}).hasOwnProperty.call(t, r) && (n[r] = t[r])
}
}
return n
}, _extends.apply(null, arguments)
}
const window = _m_window.default.getWindow();
const POPUP_CLASS = exports.POPUP_CLASS = "dx-popup";
const POPUP_WRAPPER_CLASS = "dx-popup-wrapper";
const POPUP_FULL_SCREEN_CLASS = "dx-popup-fullscreen";
const POPUP_FULL_SCREEN_WIDTH_CLASS = "dx-popup-fullscreen-width";
const POPUP_NORMAL_CLASS = "dx-popup-normal";
const POPUP_CONTENT_CLASS = exports.POPUP_CONTENT_CLASS = "dx-popup-content";
const POPUP_CONTENT_SCROLLABLE_CLASS = exports.POPUP_CONTENT_SCROLLABLE_CLASS = "dx-popup-content-scrollable";
const DISABLED_STATE_CLASS = "dx-state-disabled";
const POPUP_DRAGGABLE_CLASS = "dx-popup-draggable";
const POPUP_TITLE_CLASS = "dx-popup-title";
const POPUP_TITLE_CLOSEBUTTON_CLASS = exports.POPUP_TITLE_CLOSEBUTTON_CLASS = "dx-closebutton";
const POPUP_BOTTOM_CLASS = "dx-popup-bottom";
const POPUP_HAS_CLOSE_BUTTON_CLASS = "dx-has-close-button";
const TEMPLATE_WRAPPER_CLASS = exports.TEMPLATE_WRAPPER_CLASS = "dx-template-wrapper";
const POPUP_CONTENT_FLEX_HEIGHT_CLASS = "dx-popup-flex-height";
const POPUP_CONTENT_INHERIT_HEIGHT_CLASS = "dx-popup-inherit-height";
const TOOLBAR_LABEL_CLASS = "dx-toolbar-label";
const ALLOWED_TOOLBAR_ITEM_ALIASES = ["cancel", "clear", "done"];
const BUTTON_DEFAULT_TYPE = "default";
const BUTTON_NORMAL_TYPE = "normal";
const BUTTON_TEXT_MODE = "text";
const BUTTON_CONTAINED_MODE = "contained";
const BUTTON_OUTLINED_MODE = "outlined";
const TOOLBAR_NAME_BASE = "dxToolbarBase";
const HEIGHT_STRATEGIES = {
static: "",
inherit: "dx-popup-inherit-height",
flex: "dx-popup-flex-height"
};
const getButtonPlace = name => {
const device = _devices.default.current();
const {
platform: platform
} = device;
let toolbar = "bottom";
let location = "before";
if ("ios" === platform) {
switch (name) {
case "cancel":
toolbar = "top";
break;
case "clear":
toolbar = "top";
location = "after";
break;
case "done":
location = "after"
}
} else if ("android" === platform) {
switch (name) {
case "cancel":
case "done":
location = "after"
}
}
return {
toolbar: toolbar,
location: location
}
};
const getLocalizationKey = itemType => "done" === itemType.toLowerCase() ? "OK" : (0, _inflector.camelize)(itemType, true);
const getHeightStrategyChangeOffset = (currentHeightStrategyClass, popupVerticalPaddings) => currentHeightStrategyClass === HEIGHT_STRATEGIES.flex ? -popupVerticalPaddings : 0;
class Popup extends _overlay.default {
_supportedKeys() {
return _extends({}, super._supportedKeys(), {
upArrow: e => {
var _this$_drag;
null === (_this$_drag = this._drag) || void 0 === _this$_drag || _this$_drag.moveUp(e)
},
downArrow: e => {
var _this$_drag2;
null === (_this$_drag2 = this._drag) || void 0 === _this$_drag2 || _this$_drag2.moveDown(e)
},
leftArrow: e => {
var _this$_drag3;
null === (_this$_drag3 = this._drag) || void 0 === _this$_drag3 || _this$_drag3.moveLeft(e)
},
rightArrow: e => {
var _this$_drag4;
null === (_this$_drag4 = this._drag) || void 0 === _this$_drag4 || _this$_drag4.moveRight(e)
}
})
}
_getDefaultOptions() {
return _extends({}, super._getDefaultOptions(), {
fullScreen: false,
title: "",
showTitle: true,
titleTemplate: "title",
onTitleRendered: null,
dragOutsideBoundary: false,
dragEnabled: false,
enableBodyScroll: true,
outsideDragFactor: 0,
onResizeStart: null,
onResize: null,
onResizeEnd: null,
resizeEnabled: false,
toolbarItems: [],
showCloseButton: false,
bottomTemplate: "bottom",
useDefaultToolbarButtons: false,
useFlatToolbarButtons: false,
autoResizeEnabled: true
})
}
_defaultOptionsRules() {
return super._defaultOptionsRules().concat([{
device: {
platform: "ios"
},
options: {
animation: this._iosAnimation
}
}, {
device: {
platform: "android"
},
options: {
animation: this._androidAnimation
}
}, {
device: {
platform: "generic"
},
options: {
showCloseButton: true
}
}, {
device: device => "desktop" === _devices.default.real().deviceType && "generic" === device.platform,
options: {
dragEnabled: true
}
}, {
device: () => "desktop" === _devices.default.real().deviceType && !_devices.default.isSimulator(),
options: {
focusStateEnabled: true
}
}, {
device: () => (0, _themes.isMaterialBased)((0, _themes.current)()),
options: {
useFlatToolbarButtons: true
}
}, {
device: () => (0, _themes.isMaterial)((0, _themes.current)()),
options: {
useDefaultToolbarButtons: true,
showCloseButton: false
}
}])
}
_iosAnimation() {
return {
show: {
type: "slide",
duration: 400,
from: {
position: {
my: "top",
at: "bottom"
}
},
to: {
position: {
my: "center",
at: "center"
}
}
},
hide: {
type: "slide",
duration: 400,
from: {
opacity: 1,
position: {
my: "center",
at: "center"
}
},
to: {
opacity: 1,
position: {
my: "top",
at: "bottom"
}
}
}
}
}
_androidAnimation() {
return this.option("fullScreen") ? {
show: {
type: "slide",
duration: 300,
from: {
top: "30%",
opacity: 0
},
to: {
top: 0,
opacity: 1
}
},
hide: {
type: "slide",
duration: 300,
from: {
top: 0,
opacity: 1
},
to: {
top: "30%",
opacity: 0
}
}
} : {
show: {
type: "fade",
duration: 400,
from: 0,
to: 1
},
hide: {
type: "fade",
duration: 400,
from: 1,
to: 0
}
}
}
_init() {
const {
_wrapperClassExternal: popupWrapperClassExternal
} = this.option();
const popupWrapperClasses = popupWrapperClassExternal ? `dx-popup-wrapper ${popupWrapperClassExternal}` : "dx-popup-wrapper";
super._init();
this._createBodyOverflowManager();
this._updateResizeCallbackSkipCondition();
this.$element().addClass(POPUP_CLASS);
this.$wrapper().addClass(popupWrapperClasses);
this._$popupContent = this._$content.wrapInner((0, _renderer.default)("<div>").addClass(POPUP_CONTENT_CLASS)).children().eq(0);
this._toggleContentScrollClass();
this.$overlayContent().attr("role", "dialog")
}
_render() {
const isFullscreen = Boolean(this.option("fullScreen"));
this._toggleFullScreenClass(isFullscreen);
super._render()
}
_createBodyOverflowManager() {
this._bodyOverflowManager = (0, _m_popup_overflow_manager.createBodyOverflowManager)()
}
_toggleFullScreenClass(value) {
this.$overlayContent().toggleClass("dx-popup-fullscreen", value).toggleClass("dx-popup-normal", !value)
}
_initTemplates() {
super._initTemplates();
this._templateManager.addDefaultTemplates({
title: new _empty_template.EmptyTemplate,
bottom: new _empty_template.EmptyTemplate
})
}
_getActionsList() {
return super._getActionsList().concat(["onResizeStart", "onResize", "onResizeEnd"])
}
_contentResizeHandler(entry) {
if (!this._shouldSkipContentResize(entry)) {
this._renderGeometry({
shouldOnlyReposition: true
})
}
}
_isShowAnimationResizing() {
const animation = this.option("animation");
return ["to", "from"].some((prop => {
var _animation$show;
const config = null === animation || void 0 === animation || null === (_animation$show = animation.show) || void 0 === _animation$show ? void 0 : _animation$show[prop];
return (0, _type.isObject)(config) && ("width" in config || "height" in config)
}))
}
_updateResizeCallbackSkipCondition() {
const isShowAnimationResizing = this._isShowAnimationResizing();
this._shouldSkipContentResize = entry => isShowAnimationResizing && this._showAnimationProcessing || this._areContentDimensionsRendered(entry)
}
_observeContentResize(shouldObserve) {
if (!this.option("useResizeObserver")) {
return
}
const contentElement = this._$content.get(0);
if (shouldObserve) {
_resize_observer.default.observe(contentElement, (entry => {
this._contentResizeHandler(entry)
}))
} else {
_resize_observer.default.unobserve(contentElement)
}
}
_areContentDimensionsRendered(entry) {
var _entry$contentBoxSize, _this$_renderedDimens3, _this$_renderedDimens4;
const contentBox = null === (_entry$contentBoxSize = entry.contentBoxSize) || void 0 === _entry$contentBoxSize ? void 0 : _entry$contentBoxSize[0];
if (contentBox) {
var _this$_renderedDimens, _this$_renderedDimens2;
return parseInt(contentBox.inlineSize, 10) === (null === (_this$_renderedDimens = this._renderedDimensions) || void 0 === _this$_renderedDimens ? void 0 : _this$_renderedDimens.width) && parseInt(contentBox.blockSize, 10) === (null === (_this$_renderedDimens2 = this._renderedDimensions) || void 0 === _this$_renderedDimens2 ? void 0 : _this$_renderedDimens2.height)
}
const {
contentRect: contentRect
} = entry;
return parseInt(contentRect.width, 10) === (null === (_this$_renderedDimens3 = this._renderedDimensions) || void 0 === _this$_renderedDimens3 ? void 0 : _this$_renderedDimens3.width) && parseInt(contentRect.height, 10) === (null === (_this$_renderedDimens4 = this._renderedDimensions) || void 0 === _this$_renderedDimens4 ? void 0 : _this$_renderedDimens4.height)
}
_renderContent() {
super._renderContent();
this._observeContentResize(true)
}
_processContentRendering() {
this._renderTopToolbar();
this._renderBottomToolbar();
this._renderResize();
super._processContentRendering()
}
_getTopToolbarItems() {
const {
showTitle: showTitle,
title: title
} = this.option();
const {
ios: isIOS
} = _devices.default.current();
const items = this._getToolbarItems("top");
if (showTitle && Boolean(title)) {
items.unshift({
location: isIOS ? "center" : "before",
text: title
})
}
return items
}
_renderTopToolbar() {
const {
showTitle: showTitle
} = this.option();
const items = this._getTopToolbarItems();
const shouldBeShown = showTitle || items.length > 0;
if (shouldBeShown) {
var _this$_$topToolbar;
if (this._$topToolbar) {
this._updateToolbarOptions("top", {
items: items
})
} else {
this._renderTopToolbarImpl()
}
null === (_this$_$topToolbar = this._$topToolbar) || void 0 === _this$_$topToolbar || _this$_$topToolbar.toggleClass("dx-has-close-button", this._hasCloseButton())
} else {
var _this$_$topToolbar2;
null === (_this$_$topToolbar2 = this._$topToolbar) || void 0 === _this$_$topToolbar2 || _this$_$topToolbar2.detach()
}
this._toggleAriaLabel()
}
_renderTopToolbarImpl() {
var _this$_$topToolbar3;
null === (_this$_$topToolbar3 = this._$topToolbar) || void 0 === _this$_$topToolbar3 || _this$_$topToolbar3.remove();
const items = this._getTopToolbarItems();
const $toolbarContainer = (0, _renderer.default)("<div>").addClass("dx-popup-title").addClass(_constants.TOOLBAR_CLASS).insertBefore(this.$content());
this._$topToolbar = this._renderToolbar("titleTemplate", items, $toolbarContainer, {
onInitialized: e => {
this._topToolbar = e.component
}
});
this._$topToolbar.addClass("dx-popup-title");
this._renderDrag();
this._executeTitleRenderAction(this._$topToolbar)
}
_renderBottomToolbar() {
const items = this._getToolbarItems("bottom");
if (!items.length) {
var _this$_$bottomToolbar;
null === (_this$_$bottomToolbar = this._$bottomToolbar) || void 0 === _this$_$bottomToolbar || _this$_$bottomToolbar.detach();
return
}
if (this._$bottomToolbar) {
this._updateToolbarOptions("bottom", {
items: items
})
} else {
this._renderBottomToolbarImpl()
}
this._toggleClasses()
}
_renderBottomToolbarImpl() {
var _this$_$bottomToolbar2;
null === (_this$_$bottomToolbar2 = this._$bottomToolbar) || void 0 === _this$_$bottomToolbar2 || _this$_$bottomToolbar2.remove();
const items = this._getToolbarItems("bottom");
const $toolbarContainer = (0, _renderer.default)("<div>").addClass("dx-popup-bottom").addClass(_constants.TOOLBAR_CLASS).insertAfter(this.$content());
this._$bottomToolbar = this._renderToolbar("bottomTemplate", items, $toolbarContainer, {
compactMode: true,
onInitialized: e => {
this._bottomToolbar = e.component
}
});
this._$bottomToolbar.addClass("dx-popup-bottom")
}
_triggerToolbarResizeEvent() {
[this._$topToolbar, this._$bottomToolbar].forEach(($toolbar => {
if ($toolbar) {
(0, _visibility_change.triggerResizeEvent)($toolbar);
(0, _visibility_change.triggerResizeEvent)($toolbar)
}
}))
}
_renderToolbar(optionName, items, $container) {
let additionalToolbarOptions = arguments.length > 3 && void 0 !== arguments[3] ? arguments[3] : {};
const template = this._getTemplateByOption(optionName);
const isEmptyTemplate = template instanceof _empty_template.EmptyTemplate;
if (isEmptyTemplate) {
return this._renderByPolymorphicTemplate(items, $container, additionalToolbarOptions)
}
return this._renderByTemplate(template, $container)
}
_renderByPolymorphicTemplate(items, $container, additionalToolbarOptions) {
const {
disabled: disabled,
rtlEnabled: rtlEnabled,
useDefaultToolbarButtons: useDefaultToolbarButtons,
useFlatToolbarButtons: useFlatToolbarButtons
} = this.option();
const integrationOptions = (0, _extend.extend)({}, this.option("integrationOptions"), {
skipTemplates: ["content", "title"]
});
const toolbarOptions = (0, _extend.extend)(additionalToolbarOptions, {
disabled: disabled,
rtlEnabled: rtlEnabled,
items: items,
useDefaultButtons: useDefaultToolbarButtons,
useFlatButtons: useFlatToolbarButtons,
integrationOptions: integrationOptions
});
const template = this._getTemplate("dx-polymorph-widget");
template.render({
container: $container,
model: {
widget: this._getToolbarName(),
options: toolbarOptions
}
});
const $toolbar = $container.children("div");
$container.replaceWith($toolbar);
return $toolbar
}
_renderByTemplate(template, $container) {
const $result = (0, _renderer.default)(template.render({
container: (0, _element.getPublicElement)($container)
}));
if ($result.hasClass(TEMPLATE_WRAPPER_CLASS)) {
$container.replaceWith($result);
$container = $result
}
return $container
}
_updateToolbarOptions(toolbar, options) {
const instance = "top" === toolbar ? this._topToolbar : this._bottomToolbar;
null === instance || void 0 === instance || instance.option(options)
}
_toggleAriaLabel() {
var _this$_$topToolbar4;
const {
title: title,
showTitle: showTitle
} = this.option();
const shouldSetAriaLabel = showTitle && Boolean(title);
const titleId = shouldSetAriaLabel ? (new _guid.default).toString() : null;
null === (_this$_$topToolbar4 = this._$topToolbar) || void 0 === _this$_$topToolbar4 || _this$_$topToolbar4.find(".dx-toolbar-label").eq(0).attr("id", titleId);
this.$overlayContent().attr("aria-labelledby", titleId)
}
_animateShowing() {
this._triggerToolbarResizeEvent();
super._animateShowing()
}
_renderVisibilityAnimate(visible) {
return super._renderVisibilityAnimate(visible)
}
_hide() {
this._observeContentResize(false);
return super._hide()
}
_executeTitleRenderAction($titleElement) {
this._getTitleRenderAction()({
titleElement: (0, _element.getPublicElement)($titleElement)
})
}
_getTitleRenderAction() {
return this._titleRenderAction ?? this._createTitleRenderAction()
}
_createTitleRenderAction() {
this._titleRenderAction = this._createActionByOption("onTitleRendered", {
element: this.element(),
excludeValidators: ["disabled", "readOnly"]
});
return this._titleRenderAction
}
_getCloseButton() {
return {
toolbar: "top",
location: "after",
template: this._getCloseButtonRenderer()
}
}
_getCloseButtonRenderer() {
return (_, __, container) => {
const $button = (0, _renderer.default)("<div>").addClass(POPUP_TITLE_CLOSEBUTTON_CLASS);
this._createComponent($button, _button.default, {
icon: "close",
onClick: this._createToolbarItemAction(void 0),
stylingMode: "text",
integrationOptions: {}
});
(0, _renderer.default)(container).append($button)
}
}
_getToolbarItems(toolbar) {
const {
platform: currentPlatform
} = _devices.default.current();
const {
toolbarItems: toolbarItems
} = this.option();
const toolbarsItems = [];
this._toolbarItemClasses = [];
let index = 0;
(0, _iterator.each)(toolbarItems, ((_, data) => {
const isShortcut = (0, _type.isDefined)(data.shortcut);
const item = isShortcut ? getButtonPlace(data.shortcut) : data;
if (isShortcut && "ios" === currentPlatform && index < 2) {
item.toolbar = "top";
index++
}
item.toolbar = data.toolbar || item.toolbar || "top";
if (item && item.toolbar === toolbar) {
if (isShortcut) {
(0, _extend.extend)(item, {
location: data.location
}, this._getToolbarItemByAlias(data))
}
const isLTROrder = "generic" === currentPlatform;
if ("done" === data.shortcut && isLTROrder || "cancel" === data.shortcut && !isLTROrder) {
toolbarsItems.unshift(item)
} else {
toolbarsItems.push(item)
}
}
}));
if ("top" === toolbar && this._hasCloseButton()) {
toolbarsItems.push(this._getCloseButton())
}
return toolbarsItems
}
_hasCloseButton() {
const {
showCloseButton: showCloseButton,
showTitle: showTitle
} = this.option();
return showCloseButton && showTitle
}
_getToolbarButtonStylingMode(shortcut) {
if ((0, _themes.isFluent)((0, _themes.current)())) {
return "done" === shortcut ? "contained" : "outlined"
}
return this.option("useFlatToolbarButtons") ? "text" : "contained"
}
_getToolbarButtonType(shortcut) {
if ((0, _themes.isFluent)((0, _themes.current)()) && "done" === shortcut || this.option("useDefaultToolbarButtons")) {
return "default"
}
return "normal"
}
_getToolbarItemByAlias(data) {
const itemType = data.shortcut;
if (!ALLOWED_TOOLBAR_ITEM_ALIASES.includes(itemType)) {
return false
}
const itemConfig = (0, _extend.extend)({
text: _message.default.format(getLocalizationKey(itemType)),
onClick: this._createToolbarItemAction(data.onClick),
integrationOptions: {},
type: this._getToolbarButtonType(itemType),
stylingMode: this._getToolbarButtonStylingMode(itemType)
}, data.options || {});
const itemClass = `${POPUP_CLASS}-${itemType}`;
this._toolbarItemClasses.push(itemClass);
return {
template: (_, __, container) => {
const $toolbarItem = (0, _renderer.default)("<div>").addClass(itemClass).appendTo(container);
this._createComponent($toolbarItem, _button.default, itemConfig)
}
}
}
_createToolbarItemAction(clickAction) {
return this._createAction(clickAction, {
afterExecute(e) {
e.component.hide()
}
})
}
_getToolbarName() {
return "dxToolbarBase"
}
_toggleDisabledState(value) {
super._toggleDisabledState(...arguments);
this.$content().toggleClass("dx-state-disabled", Boolean(value))
}
_toggleClasses() {
const aliases = ALLOWED_TOOLBAR_ITEM_ALIASES;
(0, _iterator.each)(aliases, ((_, alias) => {
var _this$_$bottomToolbar3;
const className = `${POPUP_CLASS}-${alias}`;
const isVisible = this._toolbarItemClasses.includes(className);
this.$wrapper().toggleClass(`${className}-visible`, isVisible);
null === (_this$_$bottomToolbar3 = this._$bottomToolbar) || void 0 === _this$_$bottomToolbar3 || _this$_$bottomToolbar3.toggleClass(className, isVisible)
}))
}
_toggleFocusClass(isFocused, $element) {
super._toggleFocusClass(isFocused, $element);
if (isFocused && !zIndexPool.isLastZIndexInStack(this._zIndex)) {
const zIndex = zIndexPool.create(this._zIndexInitValue());
zIndexPool.remove(this._zIndex);
this._zIndex = zIndex;
this._$wrapper.css("zIndex", zIndex);
this._$content.css("zIndex", zIndex)
}
}
_toggleContentScrollClass() {
const isNativeScrollingEnabled = !this.option("preventScrollEvents");
this.$content().toggleClass(POPUP_CONTENT_SCROLLABLE_CLASS, isNativeScrollingEnabled)
}
_getPositionControllerConfig() {
const superConfiguration = super._getPositionControllerConfig();
const {
fullScreen: fullScreen,
forceApplyBindings: forceApplyBindings,
dragOutsideBoundary: dragOutsideBoundary,
dragAndResizeArea: dragAndResizeArea,
outsideDragFactor: outsideDragFactor
} = this.option();
const properties = _extends({}, superConfiguration.properties, {
fullScreen: fullScreen,
forceApplyBindings: forceApplyBindings,
dragOutsideBoundary: dragOutsideBoundary,
dragAndResizeArea: dragAndResizeArea,
outsideDragFactor: outsideDragFactor
});
const elements = _extends({}, superConfiguration.elements);
const configuration = {
properties: properties,
elements: elements
};
return configuration
}
_initPositionController() {
if (this._positionController) {
return
}
this._positionController = new _popup_position_controller.PopupPositionController(this._getPositionControllerConfig())
}
_getDragTarget() {
return this.topToolbar()
}
_renderGeometry() {
let options = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : {};
const {
visible: visible,
useResizeObserver: useResizeObserver
} = this.option();
const {
forceStopAnimation: forceStopAnimation,
shouldOnlyReposition: shouldOnlyReposition,
isDimensionChange: isDimensionChange
} = options;
if (visible && _m_window.default.hasWindow()) {
const isAnimated = this._showAnimationProcessing;
const shouldRepeatAnimation = isAnimated && !forceStopAnimation && useResizeObserver;
this._isAnimationPaused = shouldRepeatAnimation || void 0;
this._stopAnimation();
if (shouldOnlyReposition) {
this._renderPosition(false)
} else {
this._renderGeometryImpl(isDimensionChange)
}
if (shouldRepeatAnimation) {
this._animateShowing();
this._isAnimationPaused = void 0
}
}
}
_cacheDimensions() {
if (!this.option("useResizeObserver")) {
return
}
this._renderedDimensions = {
width: parseInt((0, _size.getWidth)(this._$content), 10),
height: parseInt((0, _size.getHeight)(this._$content), 10)
}
}
_renderGeometryImpl() {
let isDimensionChange = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : false;
if (!isDimensionChange) {
this._resetContentHeight()
}
super._renderGeometryImpl();
this._cacheDimensions();
this._setContentHeight()
}
_resetContentHeight() {
const height = this._getOptionValue("height");
if ("auto" === height) {
this.$content().css({
height: "auto",
maxHeight: "none"
})
}
}
_renderDrag() {
const $dragTarget = this._getDragTarget();
const {
dragEnabled: dragEnabled
} = this.option();
if (!$dragTarget) {
return
}
const config = {
dragEnabled: dragEnabled,
handle: $dragTarget.get(0),
draggableElement: this._$content.get(0),
positionController: this._positionController
};
if (this._drag) {
this._drag.init(config)
} else {
this._drag = new _m_popup_drag.default(config)
}
this.$overlayContent().toggleClass("dx-popup-draggable", dragEnabled)
}
_renderResize() {
this._resizable = this._createComponent(this._$content, _resizable.default, {
handles: this.option("resizeEnabled") ? "all" : "none",
onResizeStart: e => {
var _this$_actions, _this$_actions$onResi;
this._observeContentResize(false);
null === (_this$_actions = this._actions) || void 0 === _this$_actions || null === (_this$_actions$onResi = _this$_actions.onResizeStart) || void 0 === _this$_actions$onResi || _this$_actions$onResi.call(_this$_actions, e)
},
onResize: e => {
var _this$_actions2, _this$_actions2$onRes;
this._setContentHeight();
null === (_this$_actions2 = this._actions) || void 0 === _this$_actions2 || null === (_this$_actions2$onRes = _this$_actions2.onResize) || void 0 === _this$_actions2$onRes || _this$_actions2$onRes.call(_this$_actions2, e)
},
onResizeEnd: e => {
this._resizeEndHandler(e);
this._observeContentResize(true)
},
minHeight: 100,
minWidth: 100,
area: this._positionController.$dragResizeContainer,
keepAspectRatio: false
})
}
_resizeEndHandler(e) {
var _this$_actions3, _this$_actions3$onRes;
const width = this._resizable.option("width");
const height = this._resizable.option("height");
if (width) {
this._setOptionWithoutOptionChange("width", width)
}
if (height) {
this._setOptionWithoutOptionChange("height", height)
}
this._cacheDimensions();
this._positionController.resizeHandled();
this._positionController.detectVisualPositionChange(e.event);
null === (_this$_actions3 = this._actions) || void 0 === _this$_actions3 || null === (_this$_actions3$onRes = _this$_actions3.onResizeEnd) || void 0 === _this$_actions3$onRes || _this$_actions3$onRes.call(_this$_actions3, e)
}
_setContentHeight() {
const {
forceApplyBindings: forceApplyBindings
} = this.option();
(forceApplyBindings ?? _common.noop)();
const overlayContent = this.$overlayContent().get(0);
const currentHeightStrategyClass = this._chooseHeightStrategy(overlayContent);
this.$content().css(this._getHeightCssStyles(currentHeightStrategyClass, overlayContent));
this._setHeightClasses(this.$overlayContent(), currentHeightStrategyClass)
}
_chooseHeightStrategy(overlayContent) {
const isAutoWidth = "auto" === overlayContent.style.width || "" === overlayContent.style.width;
let currentHeightStrategyClass = HEIGHT_STRATEGIES.static;
if (this._isAutoHeight() && this.option("autoResizeEnabled")) {
if (isAutoWidth) {
currentHeightStrategyClass = HEIGHT_STRATEGIES.inherit
} else {
currentHeightStrategyClass = HEIGHT_STRATEGIES.flex
}
}
return currentHeightStrategyClass
}
_getHeightCssStyles(currentHeightStrategyClass, overlayContent) {
let cssStyles = {};
const contentMaxHeight = this._getOptionValue("maxHeight", overlayContent);
const contentMinHeight = this._getOptionValue("minHeight", overlayContent);
const popupHeightParts = this._splitPopupHeight();
const heightStrategyChangeOffset = getHeightStrategyChangeOffset(currentHeightStrategyClass, popupHeightParts.popupVerticalPaddings);
const toolbarsAndVerticalOffsetsHeight = popupHeightParts.header + popupHeightParts.footer + popupHeightParts.contentVerticalOffsets + popupHeightParts.popupVerticalOffsets + heightStrategyChangeOffset;
if (currentHeightStrategyClass === HEIGHT_STRATEGIES.static) {
if (!this._isAutoHeight() || contentMaxHeight || contentMinHeight) {
const overlayHeight = this.option("fullScreen") ? Math.min((0, _position.getBoundingRect)(overlayContent).height, _m_window.default.getWindow().innerHeight) : (0, _position.getBoundingRect)(overlayContent).height;
const contentHeight = overlayHeight - toolbarsAndVerticalOffsetsHeight;
cssStyles = {
height: Math.max(0, contentHeight),
minHeight: "auto",
maxHeight: "auto"
}
}
} else {
const container = (0, _renderer.default)(this._positionController.$visualContainer).get(0);
const maxHeightValue = (0, _size.addOffsetToMaxHeight)(contentMaxHeight, -toolbarsAndVerticalOffsetsHeight, container);
const minHeightValue = (0, _size.addOffsetToMinHeight)(contentMinHeight, -toolbarsAndVerticalOffsetsHeight, container);
cssStyles = {
height: "auto",
minHeight: minHeightValue,
maxHeight: maxHeightValue
}
}
return cssStyles
}
_setHeightClasses($container, currentClass) {
let excessClasses = "";
for (const name in HEIGHT_STRATEGIES) {
if (HEIGHT_STRATEGIES[name] !== currentClass) {
excessClasses += ` ${HEIGHT_STRATEGIES[name]}`
}
}
$container.removeClass(excessClasses).addClass(currentClass)
}
_isAutoHeight() {
return "auto" === this.$overlayContent().get(0).style.height
}
_splitPopupHeight() {
const topToolbar = this.topToolbar();
const bottomToolbar = this.bottomToolbar();
return {
header: (0, _size.getVisibleHeight)(null === topToolbar || void 0 === topToolbar ? void 0 : topToolbar.get(0)),
footer: (0, _size.getVisibleHeight)(null === bottomToolbar || void 0 === bottomToolbar ? void 0 : bottomToolbar.get(0)),
contentVerticalOffsets: (0, _size.getVerticalOffsets)(this.$overlayContent().get(0), true),
popupVerticalOffsets: (0, _size.getVerticalOffsets)(this.$content().get(0), true),
popupVerticalPaddings: (0, _size.getVerticalOffsets)(this.$content().get(0), false)
}
}
_isAllWindowCovered() {
const {
fullScreen: fullScreen
} = this.option();
return super._isAllWindowCovered() || Boolean(fullScreen)
}
_renderDimensions() {
if (this.option("fullScreen")) {
this.$overlayContent().css({
width: "100%",
height: "100%",
minWidth: "",
maxWidth: "",
minHeight: "",
maxHeight: ""
})
} else {
super._renderDimensions()
}
if (_m_window.default.hasWindow()) {
this._renderFullscreenWidthClass()
}
}
_dimensionChanged() {
this._renderGeometry({
isDimensionChange: true
})
}
_clean() {
super._clean();
this._observeContentResize(false)
}
_dispose() {
super._dispose();
this._toggleBodyScroll(true)
}
_renderFullscreenWidthClass() {
const isFullScreen = (0, _size.getOuterWidth)(this.$overlayContent()) === (0, _size.getWidth)(window);
this.$overlayContent().toggleClass("dx-popup-fullscreen-width", isFullScreen)
}
_toggleSafariScrolling() {
if (!this.option("enableBodyScroll")) {
return
}
super._toggleSafariScrolling()
}
_toggleBodyScroll(enabled) {
if (!this._bodyOverflowManager) {
return
}
const {
setOverflow: setOverflow,
restoreOverflow: restoreOverflow
} = this._bodyOverflowManager;
if (enabled) {
restoreOverflow()
} else {
setOverflow()
}
}
refreshPosition() {
this._renderPosition()
}
_optionChanged(args) {
var _this$_resizable2;
const {
value: value,
name: name
} = args;
switch (name) {
case "rtlEnabled":
case "disabled": {
super._optionChanged(args);
const options = {
[name]: Boolean(value)
};
this._updateToolbarOptions("top", options);
this._updateToolbarOptions("bottom", options);
break
}
case "animation":
this._updateResizeCallbackSkipCondition();
break;
case "enableBodyScroll":
if (this.option("visible")) {
this._toggleBodyScroll(value)
}
break;
case "showTitle":
case "title":
this._renderTopToolbar();
this._renderGeometry();
(0, _visibility_change.triggerResizeEvent)(this.$overlayContent());
break;
case "titleTemplate":
this._renderTopToolbarImpl();
this._renderGeometry();
(0, _visibility_change.triggerResizeEvent)(this.$overlayContent());
break;
case "bottomTemplate":
this._renderBottomToolbarImpl();
this._renderGeometry();
(0, _visibility_change.triggerResizeEvent)(this.$overlayContent());
break;
case "container":
super._optionChanged(args);
if (this.option("resizeEnabled")) {
var _this$_resizable;
null === (_this$_resizable = this._resizable) || void 0 === _this$_resizable || _this$_resizable.option("area", this._positionController.$dragResizeContainer)
}
break;
case "width":
case "height":
super._optionChanged(args);
null === (_this$_resizable2 = this._resizable) || void 0 === _this$_resizable2 || _this$_resizable2.option(name, value);
break;
case "onTitleRendered":
this._createTitleRenderAction();
break;
case "toolbarItems":
case "useDefaultToolbarButtons":
case "useFlatToolbarButtons":
this._renderTopToolbar();
this._renderBottomToolbar();
this._renderGeometry();
this._triggerToolbarResizeEvent();
break;
case "dragEnabled":
this._renderDrag();
break;
case "dragAndResizeArea":
this._positionController.dragAndResizeArea = value;
if (this.option("resizeEnabled")) {
this._resizable.option("area", this._positionController.$dragResizeContainer)
}
this._positionController.positionContent();
break;
case "dragOutsideBoundary":
this._positionController.dragOutsideBoundary = value;
if (this.option("resizeEnabled")) {
this._resizable.option("area", this._positionController.$dragResizeContainer)
}
break;
case "outsideDragFactor":
this._positionController.outsideDragFactor = value;
break;
case "resizeEnabled":
this._renderResize();
this._renderGeometry();
break;
case "autoResizeEnabled":
this._renderGeometry();
(0, _visibility_change.triggerResizeEvent)(this.$overlayContent());
break;
case "fullScreen":
this._positionController.fullScreen = value;
this._toggleFullScreenClass(Boolean(value));
this._toggleSafariScrolling();
this._renderGeometry();
(0, _visibility_change.triggerResizeEvent)(this.$overlayContent());
break;
case "showCloseButton":
this._renderTopToolbar();
break;
case "preventScrollEvents":
super._optionChanged(args);
this._toggleContentScrollClass();
break;
default:
super._optionChanged(args)
}
}
bottomToolbar() {
return this._$bottomToolbar
}
topToolbar() {
return this._$topToolbar
}
$content() {
return this._$popupContent
}
content() {
return (0, _element.getPublicElement)(this.$content())
}
$overlayContent() {
return this._$content
}
getFocusableElements() {
return this.$wrapper().find("[tabindex]").filter(((_, item) => item.getAttribute("tabindex") >= 0))
}
}(0, _component_registrator.default)("dxPopup", Popup);
var _default = exports.default = Popup;