UNPKG

devextreme

Version:

HTML5 JavaScript Component Suite for Responsive Web Development

219 lines (218 loc) • 7.23 kB
/** * DevExtreme (esm/__internal/ui/speed_dial_action/m_speed_dial_item.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/ */ import _extends from "@babel/runtime/helpers/esm/extends"; import { name as clickEventName } from "../../../common/core/events/click"; import eventsEngine from "../../../common/core/events/core/events_engine"; import { addNamespace } from "../../../common/core/events/utils/index"; import $ from "../../../core/renderer"; import { getImageContainer } from "../../../core/utils/icon"; import { isPlainObject } from "../../../core/utils/type"; import Overlay from "../../../ui/overlay/ui.overlay"; import { isMaterial } from "../../../ui/themes"; import { render } from "../../../ui/widget/utils.ink_ripple"; const FAB_CLASS = "dx-fa-button"; const FAB_ICON_CLASS = "dx-fa-button-icon"; const FAB_LABEL_CLASS = "dx-fa-button-label"; const FAB_LABEL_WRAPPER_CLASS = "dx-fa-button-label-wrapper"; const FAB_CONTENT_REVERSE_CLASS = "dx-fa-button-content-reverse"; const OVERLAY_CONTENT_SELECTOR = ".dx-overlay-content"; class SpeedDialItem extends Overlay { _getDefaultOptions() { return _extends({}, super._getDefaultOptions(), { shading: false, useInkRipple: false, callOverlayRenderShading: false, width: "auto", zIndex: 1500, _observeContentResize: false }) } _defaultOptionsRules() { return super._defaultOptionsRules().concat([{ device: () => isMaterial(), options: { useInkRipple: true } }]) } _moveToContainer() { this._$wrapper.appendTo(this.$element()); this._$content.appendTo(this._$wrapper) } _render() { this.$element().addClass(FAB_CLASS); this._renderIcon(); this._renderLabel(); super._render(); if (this.option("useInkRipple")) { this._renderInkRipple() } this._renderClick() } _renderLabel() { if (this._$label) { this._$label.remove() } const { label: label } = this.option(); if (!label) { this._$label = null; return } const $element = $("<div>").addClass(FAB_LABEL_CLASS); const $wrapper = $("<div>").addClass(FAB_LABEL_WRAPPER_CLASS); this._$label = $wrapper.prependTo(this.$content()).append($element.text(label)); this.$content().toggleClass(FAB_CONTENT_REVERSE_CLASS, this._isPositionLeft(this.option("parentPosition"))) } _isPositionLeft(position) { let currentLocation = ""; if (position) { if (isPlainObject(position) && position.at) { if (position.at.x) { currentLocation = position.at.x } else { currentLocation = position.at } } else if ("string" === typeof position) { currentLocation = position } } return "left" === currentLocation.split(" ")[0] } _renderButtonIcon($element, icon, iconClass) { !!$element && $element.remove(); $element = $("<div>").addClass(iconClass); const $iconElement = getImageContainer(icon); $element.append($iconElement).appendTo(this.$content()); return $element } _renderIcon() { this._$icon = this._renderButtonIcon(this._$icon, this._options.silent("icon"), FAB_ICON_CLASS) } _renderWrapper() { if (this._options.silent("callOverlayRenderShading")) { super._renderWrapper() } } _getVisibleActions(actions) { const currentActions = actions || this.option("actions") || []; return currentActions.filter((action => action.option("visible"))) } _getActionComponent() { if (1 === this._getVisibleActions().length) { return this._getVisibleActions()[0] } return this.option("actionComponent") || this.option("actions")[0] } _initContentReadyAction() { this._contentReadyAction = this._getActionComponent()._createActionByOption("onContentReady", { excludeValidators: ["disabled", "readOnly"] }, true) } _fireContentReadyAction() { this._contentReadyAction({ actionElement: this.$element() }) } _updateZIndexStackPosition() { const { zIndex: zIndex } = this.option(); this._$wrapper.css("zIndex", zIndex); this._$content.css("zIndex", zIndex) } _setClickAction() { const eventName = addNamespace(clickEventName, this.NAME); const overlayContent = this.$element().find(".dx-overlay-content"); eventsEngine.off(overlayContent, eventName); eventsEngine.on(overlayContent, eventName, (e => { const clickActionArgs = { event: e, actionElement: this.element(), element: this._getActionComponent().$element() }; this._clickAction(clickActionArgs) })) } _defaultActionArgs() { return { component: this._getActionComponent() } } _renderClick() { this._clickAction = this._getActionComponent()._createActionByOption("onClick"); this._setClickAction() } _renderInkRipple() { this._inkRipple = render() } _getInkRippleContainer() { return this._$icon } _toggleActiveState($element, value, event) { super._toggleActiveState($element, value, event); if (!this._inkRipple) { return } const config = { element: this._getInkRippleContainer(), event: event }; if (value) { this._inkRipple.showWave(config) } else { this._inkRipple.hideWave(config) } } _optionChanged(args) { const { name: name, value: value, previousValue: previousValue } = args; switch (name) { case "icon": this._renderIcon(); break; case "onClick": this._renderClick(); break; case "label": this._renderLabel(); break; case "visible": this._currentVisible = previousValue; if (value) { this._show() } else { this._hide() } break; case "useInkRipple": this._render(); break; default: super._optionChanged(args) } } } export default SpeedDialItem;