UNPKG

devextreme

Version:

HTML5 JavaScript Component Suite for Responsive Web Development

354 lines (353 loc) • 12.5 kB
/** * DevExtreme (esm/ui/toolbar/internal/ui.toolbar.menu.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 { getOuterHeight } from "../../../core/utils/size"; import $ from "../../../core/renderer"; import devices from "../../../core/devices"; import { extend } from "../../../core/utils/extend"; import Widget from "../../widget/ui.widget"; import Button from "../../button"; import ToolbarMenuList from "./ui.toolbar.menu.list"; import { isFluent, isMaterialBased } from "../../themes"; import { ChildDefaultTemplate } from "../../../core/templates/child_default_template"; import { toggleItemFocusableElementTabIndex } from "../ui.toolbar.utils"; import { getWindow } from "../../../core/utils/window"; import "../../popup"; var DROP_DOWN_MENU_CLASS = "dx-dropdownmenu"; var DROP_DOWN_MENU_POPUP_CLASS = "dx-dropdownmenu-popup"; var DROP_DOWN_MENU_POPUP_WRAPPER_CLASS = "dx-dropdownmenu-popup-wrapper"; var DROP_DOWN_MENU_LIST_CLASS = "dx-dropdownmenu-list"; var DROP_DOWN_MENU_BUTTON_CLASS = "dx-dropdownmenu-button"; var POPUP_BOUNDARY_VERTICAL_OFFSET = 10; var POPUP_VERTICAL_OFFSET = 3; export default class DropDownMenu extends Widget { _supportedKeys() { var extension = {}; if (!this.option("opened") || !this._list.option("focusedElement")) { extension = this._button._supportedKeys() } return extend(super._supportedKeys(), extension, { tab: function() { this._popup && this._popup.hide() } }) } _getDefaultOptions() { return extend(super._getDefaultOptions(), { items: [], onItemClick: null, dataSource: null, itemTemplate: "item", onButtonClick: null, activeStateEnabled: true, hoverStateEnabled: true, opened: false, onItemRendered: null, closeOnClick: true, useInkRipple: false, container: void 0, animation: { show: { type: "fade", from: 0, to: 1 }, hide: { type: "fade", to: 0 } } }) } _defaultOptionsRules() { return super._defaultOptionsRules().concat([{ device: function() { return "desktop" === devices.real().deviceType && !devices.isSimulator() }, options: { focusStateEnabled: true } }, { device: function() { return isMaterialBased() }, options: { useInkRipple: true, animation: { show: { type: "pop", duration: 200, from: { scale: 0 }, to: { scale: 1 } }, hide: { type: "pop", duration: 200, from: { scale: 1 }, to: { scale: 0 } } } } }]) } _init() { super._init(); this.$element().addClass(DROP_DOWN_MENU_CLASS); this._initItemClickAction(); this._initButtonClickAction() } _initItemClickAction() { this._itemClickAction = this._createActionByOption("onItemClick") } _initButtonClickAction() { this._buttonClickAction = this._createActionByOption("onButtonClick") } _initTemplates() { this._templateManager.addDefaultTemplates({ content: new ChildDefaultTemplate("content") }); super._initTemplates() } _initMarkup() { this._renderButton(); super._initMarkup() } _render() { super._render(); this.setAria({ haspopup: true, expanded: this.option("opened") }) } _renderContentImpl() { if (this.option("opened")) { this._renderPopup() } } _clean() { this._cleanFocusState(); this._list && this._list.$element().remove(); this._popup && this._popup.$element().remove(); delete this._list; delete this._popup } _renderButton() { var $button = this.$element().addClass(DROP_DOWN_MENU_BUTTON_CLASS); this._button = this._createComponent($button, Button, { icon: "overflow", template: "content", stylingMode: isFluent() ? "text" : "contained", useInkRipple: this.option("useInkRipple"), hoverStateEnabled: false, focusStateEnabled: false, onClick: e => { this.option("opened", !this.option("opened")); this._buttonClickAction(e) } }) } _toggleActiveState($element, value, e) { this._button._toggleActiveState($element, value, e) } _toggleMenuVisibility(opened) { var state = null !== opened && void 0 !== opened ? opened : !this._popup.option("visible"); if (opened) { this._renderPopup() } this._popup.toggle(state); this.setAria("expanded", state) } _renderPopup() { if (this._$popup) { return } this._$popup = $("<div>").appendTo(this.$element()); var { rtlEnabled: rtlEnabled, container: container, animation: animation } = this.option(); this._popup = this._createComponent(this._$popup, "dxPopup", { onInitialized(_ref) { var { component: component } = _ref; component.$wrapper().addClass(DROP_DOWN_MENU_POPUP_WRAPPER_CLASS).addClass(DROP_DOWN_MENU_POPUP_CLASS) }, deferRendering: false, contentTemplate: contentElement => this._renderList(contentElement), _ignoreFunctionValueDeprecation: true, maxHeight: () => this._getMaxHeight(), position: { my: "top ".concat(rtlEnabled ? "left" : "right"), at: "bottom ".concat(rtlEnabled ? "left" : "right"), collision: "fit flip", offset: { v: POPUP_VERTICAL_OFFSET }, of: this.$element() }, animation: animation, onOptionChanged: _ref2 => { var { name: name, value: value } = _ref2; if ("visible" === name) { this.option("opened", value) } }, container: container, autoResizeEnabled: false, height: "auto", width: "auto", hideOnOutsideClick: e => this._closeOutsideDropDownHandler(e), hideOnParentScroll: true, shading: false, dragEnabled: false, showTitle: false, fullScreen: false, _fixWrapperPosition: true }) } _getMaxHeight() { var $element = this.$element(); var offsetTop = $element.offset().top; var windowHeight = getOuterHeight(getWindow()); var maxHeight = Math.max(offsetTop, windowHeight - offsetTop - getOuterHeight($element)); return Math.min(windowHeight, maxHeight - POPUP_VERTICAL_OFFSET - POPUP_BOUNDARY_VERTICAL_OFFSET) } _closeOutsideDropDownHandler(e) { var isOutsideClick = !$(e.target).closest(this.$element()).length; return isOutsideClick } _renderList(contentElement) { var $content = $(contentElement); $content.addClass(DROP_DOWN_MENU_LIST_CLASS); this._list = this._createComponent($content, ToolbarMenuList, { dataSource: this._getListDataSource(), pageLoadMode: "scrollBottom", indicateLoading: false, noDataText: "", itemTemplate: this.option("itemTemplate"), onItemClick: e => { if (this.option("closeOnClick")) { this.option("opened", false) } this._itemClickAction(e) }, tabIndex: -1, focusStateEnabled: false, activeStateEnabled: true, onItemRendered: this.option("onItemRendered"), _itemAttributes: { role: "menuitem" } }) } _itemOptionChanged(item, property, value) { var _this$_list; null === (_this$_list = this._list) || void 0 === _this$_list ? void 0 : _this$_list._itemOptionChanged(item, property, value); toggleItemFocusableElementTabIndex(this._list, item) } _getListDataSource() { var _this$option; return null !== (_this$option = this.option("dataSource")) && void 0 !== _this$option ? _this$option : this.option("items") } _setListDataSource() { var _this$_list2; null === (_this$_list2 = this._list) || void 0 === _this$_list2 ? void 0 : _this$_list2.option("dataSource", this._getListDataSource()); delete this._deferRendering } _getKeyboardListeners() { return super._getKeyboardListeners().concat([this._list]) } _toggleVisibility(visible) { super._toggleVisibility(visible); this._button.option("visible", visible) } _optionChanged(args) { var _this$_list3, _this$_list4, _this$_list5; var { name: name, value: value } = args; switch (name) { case "items": case "dataSource": if (!this.option("opened")) { this._deferRendering = true } else { this._setListDataSource() } break; case "itemTemplate": null === (_this$_list3 = this._list) || void 0 === _this$_list3 ? void 0 : _this$_list3.option(name, this._getTemplate(value)); break; case "onItemClick": this._initItemClickAction(); break; case "onButtonClick": this._buttonClickAction(); break; case "useInkRipple": this._invalidate(); break; case "focusStateEnabled": null === (_this$_list4 = this._list) || void 0 === _this$_list4 ? void 0 : _this$_list4.option(name, value); super._optionChanged(args); break; case "onItemRendered": null === (_this$_list5 = this._list) || void 0 === _this$_list5 ? void 0 : _this$_list5.option(name, value); break; case "opened": if (this._deferRendering) { this._setListDataSource() } this._toggleMenuVisibility(value); this._updateFocusableItemsTabIndex(); break; case "closeOnClick": break; case "container": this._popup && this._popup.option(name, value); break; case "disabled": if (this._list) { this._updateFocusableItemsTabIndex() } break; default: super._optionChanged(args) } } _updateFocusableItemsTabIndex() { this.option("items").forEach(item => toggleItemFocusableElementTabIndex(this._list, item)) } }