devextreme
Version:
HTML5 JavaScript Component Suite for Responsive Web Development
420 lines (406 loc) • 17.3 kB
JavaScript
/**
* DevExtreme (renovation/ui/button.js)
* Version: 21.1.4
* Build date: Mon Jun 21 2021
*
* Copyright (c) 2012 - 2021 Developer Express Inc. ALL RIGHTS RESERVED
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
*/
"use strict";
exports.defaultOptions = defaultOptions;
exports.Button = exports.defaultOptionRules = exports.ButtonProps = exports.viewFunction = void 0;
var _inferno = require("inferno");
var _vdom = require("@devextreme/vdom");
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 _icon2 = require("./common/icon");
var _ink_ripple = require("./common/ink_ripple");
var _widget = require("./common/widget");
var _base_props = require("./common/base_props");
var _excluded = ["accessKey", "activeStateEnabled", "children", "disabled", "focusStateEnabled", "height", "hint", "hoverStateEnabled", "icon", "iconPosition", "onClick", "onContentReady", "onKeyDown", "onSubmit", "pressed", "rtlEnabled", "stylingMode", "tabIndex", "template", "text", "type", "useInkRipple", "useSubmitBehavior", "validationGroup", "visible", "width"];
function _interopRequireDefault(obj) {
return obj && obj.__esModule ? obj : {
default: 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, descriptor.key, descriptor)
}
}
function _createClass(Constructor, protoProps, staticProps) {
if (protoProps) {
_defineProperties(Constructor.prototype, protoProps)
}
if (staticProps) {
_defineProperties(Constructor, staticProps)
}
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 || function(o, p) {
o.__proto__ = p;
return o
};
return _setPrototypeOf(o, p)
}
function _extends() {
_extends = Object.assign || 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) {
if (key in obj) {
Object.defineProperty(obj, key, {
value: value,
enumerable: true,
configurable: true,
writable: true
})
} else {
obj[key] = value
}
return obj
}
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 && -1 !== stylingModes.indexOf(stylingMode);
var classesMap = (_classesMap = {
"dx-button": true
}, _defineProperty(_classesMap, "dx-button-mode-".concat(isValidStylingMode ? stylingMode : "contained"), true), _defineProperty(_classesMap, "dx-button-".concat(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,
icon = _viewModel$props.icon,
iconPosition = _viewModel$props.iconPosition,
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 && (0, _inferno.createComponentVNode)(2, _icon2.Icon, {
source: viewModel.iconSource,
position: iconPosition
});
return (0, _inferno.normalizeProps)((0, _inferno.createComponentVNode)(2, _widget.Widget, _extends({
accessKey: viewModel.props.accessKey,
activeStateEnabled: viewModel.props.activeStateEnabled,
aria: viewModel.aria,
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,
onContentReady: viewModel.props.onContentReady,
onClick: viewModel.onWidgetClick,
onInactive: viewModel.onInactive,
onKeyDown: viewModel.onWidgetKeyDown,
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: {
icon: icon,
text: text
}
}), !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 = _extends({}, _base_props.BaseWidgetProps, {
activeStateEnabled: true,
hoverStateEnabled: true,
icon: "",
iconPosition: "left",
text: "",
useInkRipple: false,
useSubmitBehavior: false,
validationGroup: void 0
});
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.contentReadyEffect = _this.contentReadyEffect.bind(_assertThisInitialized(_this));
_this.focus = _this.focus.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.onWidgetKeyDown = _this.onWidgetKeyDown.bind(_assertThisInitialized(_this));
_this.submitEffect = _this.submitEffect.bind(_assertThisInitialized(_this));
return _this
}
var _proto = Button.prototype;
_proto.createEffects = function() {
return [new _vdom.InfernoEffect(this.contentReadyEffect, [this.props.onContentReady]), new _vdom.InfernoEffect(this.submitEffect, [this.props.onSubmit, this.props.useSubmitBehavior])]
};
_proto.updateEffects = function() {
var _this$_effects$, _this$_effects$2;
null === (_this$_effects$ = this._effects[0]) || void 0 === _this$_effects$ ? void 0 : _this$_effects$.update([this.props.onContentReady]);
null === (_this$_effects$2 = this._effects[1]) || void 0 === _this$_effects$2 ? void 0 : _this$_effects$2.update([this.props.onSubmit, this.props.useSubmitBehavior])
};
_proto.contentReadyEffect = function() {
var onContentReady = this.props.onContentReady;
null === onContentReady || void 0 === onContentReady ? void 0 : onContentReady({
element: this.contentRef.current.parentNode
})
};
_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,
validationGroup = _this$props2.validationGroup;
null === onClick || void 0 === onClick ? void 0 : onClick({
event: event,
validationGroup: validationGroup
});
useSubmitBehavior && this.submitInputRef.current.click()
};
_proto.onWidgetKeyDown = function(options) {
var onKeyDown = this.props.onKeyDown;
var keyName = options.keyName,
originalEvent = options.originalEvent,
which = options.which;
var result = null === onKeyDown || void 0 === onKeyDown ? void 0 : onKeyDown(options);
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.render = function() {
var props = this.props;
return viewFunction({
props: _extends({}, props, {
template: getTemplate(props.template)
}),
contentRef: this.contentRef,
submitInputRef: this.submitInputRef,
inkRippleRef: this.inkRippleRef,
widgetRef: this.widgetRef,
onActive: this.onActive,
onInactive: this.onInactive,
onWidgetClick: this.onWidgetClick,
onWidgetKeyDown: this.onWidgetKeyDown,
aria: this.aria,
cssClasses: this.cssClasses,
iconSource: this.iconSource,
inkRippleConfig: this.inkRippleConfig,
restAttributes: this.restAttributes
})
};
_createClass(Button, [{
key: "aria",
get: function() {
var _this$props3 = this.props,
icon = _this$props3.icon,
text = _this$props3.text;
var label = text || icon;
if (!text && icon && "image" === (0, _icon.getImageSourceType)(icon)) {
label = -1 === icon.indexOf("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;
return icon || "back" === type ? icon || "back" : ""
}
}, {
key: "inkRippleConfig",
get: function() {
var _this$props5 = this.props,
icon = _this$props5.icon,
text = _this$props5.text,
type = _this$props5.type;
return !text && icon || "back" === type ? {
isCentered: true,
useHoldAnimation: false,
waveSizeCoefficient: 1
} : {}
}
}, {
key: "restAttributes",
get: function() {
var _this$props6 = this.props,
restProps = (_this$props6.accessKey, _this$props6.activeStateEnabled, _this$props6.children, _this$props6.disabled, _this$props6.focusStateEnabled, _this$props6.height, _this$props6.hint, _this$props6.hoverStateEnabled, _this$props6.icon, _this$props6.iconPosition, _this$props6.onClick, _this$props6.onContentReady, _this$props6.onKeyDown, _this$props6.onSubmit, _this$props6.pressed, _this$props6.rtlEnabled, _this$props6.stylingMode, _this$props6.tabIndex, _this$props6.template, _this$props6.text, _this$props6.type, _this$props6.useInkRipple, _this$props6.useSubmitBehavior, _this$props6.validationGroup, _this$props6.visible, _this$props6.width, _objectWithoutProperties(_this$props6, _excluded));
return restProps
}
}]);
return Button
}(_vdom.InfernoWrapperComponent);
exports.Button = Button;
function __createDefaultProps() {
return _extends({}, ButtonProps, (0, _utils.convertRulesToOptions)(defaultOptionRules))
}
Button.defaultProps = __createDefaultProps();
var __defaultOptionRules = [];
function defaultOptions(rule) {
__defaultOptionRules.push(rule);
Button.defaultProps = _extends({}, __createDefaultProps(), (0, _utils.convertRulesToOptions)(__defaultOptionRules))
}