UNPKG

devextreme

Version:

HTML5 JavaScript Component Suite for Responsive Web Development

474 lines (458 loc) • 20 kB
/** * DevExtreme (renovation/ui/button.js) * Version: 22.1.9 * Build date: Tue Apr 18 2023 * * Copyright (c) 2012 - 2023 Developer Express Inc. ALL RIGHTS RESERVED * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/ */ "use strict"; exports.defaultOptionRules = exports.ButtonProps = exports.Button = void 0; exports.defaultOptions = defaultOptions; exports.viewFunction = void 0; var _inferno = require("inferno"); var _inferno2 = require("@devextreme/runtime/inferno"); var _utils = require("../../core/options/utils"); var _devices = _interopRequireDefault(require("../../core/devices")); var _themes = require("../../ui/themes"); var _short = require("../../events/short"); var _combine_classes = require("../utils/combine_classes"); var _icon = require("../../core/utils/icon"); var _inflector = require("../../core/utils/inflector"); var _icon2 = require("./common/icon"); var _ink_ripple = require("./common/ink_ripple"); var _widget = require("./common/widget"); var _base_props = require("./common/base_props"); var _message = _interopRequireDefault(require("../../localization/message")); var _excluded = ["accessKey", "activeStateEnabled", "children", "className", "disabled", "focusStateEnabled", "height", "hint", "hoverStateEnabled", "icon", "iconPosition", "iconTemplate", "onClick", "onKeyDown", "onSubmit", "pressed", "rtlEnabled", "stylingMode", "tabIndex", "template", "templateData", "text", "type", "useInkRipple", "useSubmitBehavior", "visible", "width"]; function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj } } function _typeof(obj) { return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function(obj) { return typeof obj } : function(obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj }, _typeof(obj) } function _objectWithoutProperties(source, excluded) { if (null == source) { return {} } var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) { continue } if (!Object.prototype.propertyIsEnumerable.call(source, key)) { continue } target[key] = source[key] } } return target } function _objectWithoutPropertiesLoose(source, excluded) { if (null == source) { return {} } var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) { continue } target[key] = source[key] } return target } 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, _toPropertyKey(descriptor.key), descriptor) } } function _createClass(Constructor, protoProps, staticProps) { if (protoProps) { _defineProperties(Constructor.prototype, protoProps) } if (staticProps) { _defineProperties(Constructor, staticProps) } Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor } function _assertThisInitialized(self) { if (void 0 === self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called") } return self } function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; _setPrototypeOf(subClass, superClass) } function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function(o, p) { o.__proto__ = p; return o }; return _setPrototypeOf(o, p) } function _extends() { _extends = Object.assign ? Object.assign.bind() : function(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key] } } } return target }; return _extends.apply(this, arguments) } function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }) } else { obj[key] = value } return obj } function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return "symbol" === _typeof(key) ? key : String(key) } function _toPrimitive(input, hint) { if ("object" !== _typeof(input) || null === input) { return input } var prim = input[Symbol.toPrimitive]; if (void 0 !== prim) { var res = prim.call(input, hint || "default"); if ("object" !== _typeof(res)) { return res } throw new TypeError("@@toPrimitive must return a primitive value.") } return ("string" === hint ? String : Number)(input) } var stylingModes = ["outlined", "text", "contained"]; var getCssClasses = function(model) { var _classesMap; var icon = model.icon, iconPosition = model.iconPosition, stylingMode = model.stylingMode, text = model.text, type = model.type; var isValidStylingMode = stylingMode && stylingModes.includes(stylingMode); var classesMap = (_classesMap = { "dx-button": true }, _defineProperty(_classesMap, "dx-button-mode-".concat(isValidStylingMode ? stylingMode : "contained"), true), _defineProperty(_classesMap, "dx-button-".concat(null !== type && void 0 !== type ? type : "normal"), true), _defineProperty(_classesMap, "dx-button-has-text", !!text), _defineProperty(_classesMap, "dx-button-has-icon", !!icon), _defineProperty(_classesMap, "dx-button-icon-right", "left" !== iconPosition), _classesMap); return (0, _combine_classes.combineClasses)(classesMap) }; var viewFunction = function(viewModel) { var _viewModel$props = viewModel.props, children = _viewModel$props.children, iconPosition = _viewModel$props.iconPosition, IconTemplate = _viewModel$props.iconTemplate, ButtonTemplate = _viewModel$props.template, text = _viewModel$props.text; var renderText = !viewModel.props.template && !children && "" !== text; var isIconLeft = "left" === iconPosition; var iconComponent = !viewModel.props.template && !children && (viewModel.iconSource || viewModel.props.iconTemplate) && (0, _inferno.createComponentVNode)(2, _icon2.Icon, { source: viewModel.iconSource, position: iconPosition, iconTemplate: IconTemplate }); return (0, _inferno.normalizeProps)((0, _inferno.createComponentVNode)(2, _widget.Widget, _extends({ accessKey: viewModel.props.accessKey, activeStateEnabled: viewModel.props.activeStateEnabled, aria: viewModel.aria, className: viewModel.props.className, classes: viewModel.cssClasses, disabled: viewModel.props.disabled, focusStateEnabled: viewModel.props.focusStateEnabled, height: viewModel.props.height, hint: viewModel.props.hint, hoverStateEnabled: viewModel.props.hoverStateEnabled, onActive: viewModel.onActive, onClick: viewModel.onWidgetClick, onInactive: viewModel.onInactive, onKeyDown: viewModel.keyDown, rtlEnabled: viewModel.props.rtlEnabled, tabIndex: viewModel.props.tabIndex, visible: viewModel.props.visible, width: viewModel.props.width }, viewModel.restAttributes, { children: (0, _inferno.createVNode)(1, "div", "dx-button-content", [viewModel.props.template && ButtonTemplate({ data: viewModel.buttonTemplateData }), !viewModel.props.template && children, isIconLeft && iconComponent, renderText && (0, _inferno.createVNode)(1, "span", "dx-button-text", text, 0), !isIconLeft && iconComponent, viewModel.props.useSubmitBehavior && (0, _inferno.createVNode)(64, "input", "dx-button-submit-input", null, 1, { type: "submit", tabIndex: -1 }, null, viewModel.submitInputRef), viewModel.props.useInkRipple && (0, _inferno.createComponentVNode)(2, _ink_ripple.InkRipple, { config: viewModel.inkRippleConfig }, null, viewModel.inkRippleRef)], 0, null, null, viewModel.contentRef) }), null, viewModel.widgetRef)) }; exports.viewFunction = viewFunction; var ButtonProps = Object.create(Object.prototype, _extends(Object.getOwnPropertyDescriptors(_base_props.BaseWidgetProps), Object.getOwnPropertyDescriptors({ activeStateEnabled: true, hoverStateEnabled: true, icon: "", iconPosition: "left", stylingMode: "contained", text: "", type: "normal", useInkRipple: false, useSubmitBehavior: false, templateData: Object.freeze({}) }))); exports.ButtonProps = ButtonProps; var defaultOptionRules = (0, _utils.createDefaultOptionRules)([{ device: function() { return "desktop" === _devices.default.real().deviceType && !_devices.default.isSimulator() }, options: { focusStateEnabled: true } }, { device: function() { return (0, _themes.isMaterial)((0, _themes.current)()) }, options: { useInkRipple: true } }]); exports.defaultOptionRules = defaultOptionRules; var getTemplate = function(TemplateProp) { return TemplateProp && (TemplateProp.defaultProps ? function(props) { return (0, _inferno.normalizeProps)((0, _inferno.createComponentVNode)(2, TemplateProp, _extends({}, props))) } : TemplateProp) }; var Button = function(_InfernoWrapperCompon) { _inheritsLoose(Button, _InfernoWrapperCompon); function Button(props) { var _this; _this = _InfernoWrapperCompon.call(this, props) || this; _this.state = {}; _this.contentRef = (0, _inferno.createRef)(); _this.inkRippleRef = (0, _inferno.createRef)(); _this.submitInputRef = (0, _inferno.createRef)(); _this.widgetRef = (0, _inferno.createRef)(); _this.__getterCache = {}; _this.focus = _this.focus.bind(_assertThisInitialized(_this)); _this.activate = _this.activate.bind(_assertThisInitialized(_this)); _this.deactivate = _this.deactivate.bind(_assertThisInitialized(_this)); _this.submitEffect = _this.submitEffect.bind(_assertThisInitialized(_this)); _this.onActive = _this.onActive.bind(_assertThisInitialized(_this)); _this.onInactive = _this.onInactive.bind(_assertThisInitialized(_this)); _this.onWidgetClick = _this.onWidgetClick.bind(_assertThisInitialized(_this)); _this.keyDown = _this.keyDown.bind(_assertThisInitialized(_this)); return _this } var _proto = Button.prototype; _proto.createEffects = function() { return [new _inferno2.InfernoEffect(this.submitEffect, [this.props.onSubmit, this.props.useSubmitBehavior]), (0, _inferno2.createReRenderEffect)()] }; _proto.updateEffects = function() { var _this$_effects$; null === (_this$_effects$ = this._effects[0]) || void 0 === _this$_effects$ ? void 0 : _this$_effects$.update([this.props.onSubmit, this.props.useSubmitBehavior]) }; _proto.submitEffect = function() { var _this2 = this; var _this$props = this.props, onSubmit = _this$props.onSubmit, useSubmitBehavior = _this$props.useSubmitBehavior; if (useSubmitBehavior && onSubmit) { _short.click.on(this.submitInputRef.current, (function(event) { return onSubmit({ event: event, submitInput: _this2.submitInputRef.current }) }), { namespace: "UIFeedback" }); return function() { return _short.click.off(_this2.submitInputRef.current, { namespace: "UIFeedback" }) } } return }; _proto.onActive = function(event) { var useInkRipple = this.props.useInkRipple; useInkRipple && this.inkRippleRef.current.showWave({ element: this.contentRef.current, event: event }) }; _proto.onInactive = function(event) { var useInkRipple = this.props.useInkRipple; useInkRipple && this.inkRippleRef.current.hideWave({ element: this.contentRef.current, event: event }) }; _proto.onWidgetClick = function(event) { var _this$props2 = this.props, onClick = _this$props2.onClick, useSubmitBehavior = _this$props2.useSubmitBehavior; null === onClick || void 0 === onClick ? void 0 : onClick({ event: event }); useSubmitBehavior && this.submitInputRef.current.click() }; _proto.keyDown = function(e) { var onKeyDown = this.props.onKeyDown; var keyName = e.keyName, originalEvent = e.originalEvent, which = e.which; var result = null === onKeyDown || void 0 === onKeyDown ? void 0 : onKeyDown(e); if (null !== result && void 0 !== result && result.cancel) { return result } if ("space" === keyName || "space" === which || "enter" === keyName || "enter" === which) { originalEvent.preventDefault(); this.onWidgetClick(originalEvent) } return }; _proto.focus = function() { this.widgetRef.current.focus() }; _proto.activate = function() { this.widgetRef.current.activate() }; _proto.deactivate = function() { this.widgetRef.current.deactivate() }; _proto.componentWillUpdate = function(nextProps, nextState, context) { _InfernoWrapperCompon.prototype.componentWillUpdate.call(this); if (this.props.icon !== nextProps.icon || this.props.text !== nextProps.text || this.props.type !== nextProps.type) { this.__getterCache.inkRippleConfig = void 0 } }; _proto.render = function() { var props = this.props; return viewFunction({ props: _extends({}, props, { template: getTemplate(props.template), iconTemplate: getTemplate(props.iconTemplate) }), contentRef: this.contentRef, submitInputRef: this.submitInputRef, inkRippleRef: this.inkRippleRef, widgetRef: this.widgetRef, onActive: this.onActive, onInactive: this.onInactive, onWidgetClick: this.onWidgetClick, keyDown: this.keyDown, aria: this.aria, cssClasses: this.cssClasses, iconSource: this.iconSource, inkRippleConfig: this.inkRippleConfig, buttonTemplateData: this.buttonTemplateData, restAttributes: this.restAttributes }) }; _createClass(Button, [{ key: "aria", get: function() { var _this$props3 = this.props, icon = _this$props3.icon, text = _this$props3.text; var label = (null !== text && void 0 !== text ? text : "") || _message.default.format((0, _inflector.camelize)(icon, true)) || icon; if (!text && icon && "image" === (0, _icon.getImageSourceType)(icon)) { label = !icon.includes("base64") ? icon.replace(/.+\/([^.]+)\..+$/, "$1") : "Base64" } return _extends({ role: "button" }, label ? { label: label } : {}) } }, { key: "cssClasses", get: function() { return getCssClasses(this.props) } }, { key: "iconSource", get: function() { var _this$props4 = this.props, icon = _this$props4.icon, type = _this$props4.type; if (icon || "back" === type) { return (null !== icon && void 0 !== icon ? icon : "") || "back" } return "" } }, { key: "inkRippleConfig", get: function() { var _this3 = this; if (void 0 !== this.__getterCache.inkRippleConfig) { return this.__getterCache.inkRippleConfig } return this.__getterCache.inkRippleConfig = (_this3$props = _this3.props, icon = _this3$props.icon, text = _this3$props.text, type = _this3$props.type, !text && icon || "back" === type ? { isCentered: true, useHoldAnimation: false, waveSizeCoefficient: 1 } : {}); var _this3$props, icon, text, type } }, { key: "buttonTemplateData", get: function() { var _this$props5 = this.props, icon = _this$props5.icon, templateData = _this$props5.templateData, text = _this$props5.text; return _extends({ icon: icon, text: text }, templateData) } }, { key: "restAttributes", get: function() { var _this$props6 = this.props, restProps = (_this$props6.accessKey, _this$props6.activeStateEnabled, _this$props6.children, _this$props6.className, _this$props6.disabled, _this$props6.focusStateEnabled, _this$props6.height, _this$props6.hint, _this$props6.hoverStateEnabled, _this$props6.icon, _this$props6.iconPosition, _this$props6.iconTemplate, _this$props6.onClick, _this$props6.onKeyDown, _this$props6.onSubmit, _this$props6.pressed, _this$props6.rtlEnabled, _this$props6.stylingMode, _this$props6.tabIndex, _this$props6.template, _this$props6.templateData, _this$props6.text, _this$props6.type, _this$props6.useInkRipple, _this$props6.useSubmitBehavior, _this$props6.visible, _this$props6.width, _objectWithoutProperties(_this$props6, _excluded)); return restProps } }]); return Button }(_inferno2.InfernoWrapperComponent); exports.Button = Button; Button.defaultProps = Object.create(Object.prototype, _extends(Object.getOwnPropertyDescriptors(ButtonProps), Object.getOwnPropertyDescriptors(_extends({}, (0, _utils.convertRulesToOptions)(defaultOptionRules))))); var __defaultOptionRules = []; function defaultOptions(rule) { __defaultOptionRules.push(rule); Button.defaultProps = Object.create(Object.prototype, _extends(Object.getOwnPropertyDescriptors(Button.defaultProps), Object.getOwnPropertyDescriptors((0, _utils.convertRulesToOptions)(defaultOptionRules)), Object.getOwnPropertyDescriptors((0, _utils.convertRulesToOptions)(__defaultOptionRules)))) }