devextreme
Version:
HTML5 JavaScript Component Suite for Responsive Web Development
122 lines (121 loc) • 4.46 kB
JavaScript
/**
* DevExtreme (esm/renovation/component_wrapper/button.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 _extends from "@babel/runtime/helpers/esm/extends";
import ValidationEngine from "../../ui/validation_engine";
import Component from "./common/component";
import {
getImageSourceType
} from "../../core/utils/icon";
export default class ButtonWrapper extends Component {
get _validationGroupConfig() {
return ValidationEngine.getGroupConfig(this._findGroup())
}
getDefaultTemplateNames() {
return ["content"]
}
getSupportedKeyNames() {
return ["space", "enter"]
}
getProps() {
var props = super.getProps();
props.onClick = _ref => {
var {
event: event
} = _ref;
this._clickAction({
event: event,
validationGroup: this._validationGroupConfig
})
};
var iconType = getImageSourceType(props.icon);
if ("svg" === iconType) {
props.iconTemplate = this._createTemplateComponent(() => props.icon)
}
return props
}
get _templatesInfo() {
return {
template: "content"
}
}
_toggleActiveState(_, value) {
var button = this.viewRef;
value ? button.activate() : button.deactivate()
}
_getSubmitAction() {
var needValidate = true;
var validationStatus = "valid";
return this._createAction(_ref2 => {
var {
event: event,
submitInput: submitInput
} = _ref2;
if (needValidate) {
var validationGroup = this._validationGroupConfig;
if (void 0 !== validationGroup && "" !== validationGroup) {
var validationResult = validationGroup.validate();
validationStatus = validationResult.status;
if ("pending" === validationResult.status) {
needValidate = false;
this.option("disabled", true);
validationResult.complete.then(_ref3 => {
var {
status: status
} = _ref3;
this.option("disabled", false);
validationStatus = status;
"valid" === validationStatus && submitInput.click();
needValidate = true
})
}
}
}
"valid" !== validationStatus && event.preventDefault();
event.stopPropagation()
})
}
_initializeComponent() {
super._initializeComponent();
this._addAction("onSubmit", this._getSubmitAction());
this._clickAction = this._createClickAction()
}
_initMarkup() {
super._initMarkup();
var $content = this.$element().find(".dx-button-content").first();
var $template = $content.children().filter(".dx-template-wrapper");
var $input = $content.children().filter(".dx-button-submit-input");
if ($template.length) {
$template.addClass("dx-button-content");
$template.append($input);
$content.replaceWith($template)
}
}
_patchOptionValues(options) {
return super._patchOptionValues(_extends({}, options, {
templateData: options._templateData
}))
}
_findGroup() {
var $element = this.$element();
var validationGroup = this.option("validationGroup");
return void 0 !== validationGroup && "" !== validationGroup ? validationGroup : ValidationEngine.findGroup($element, this._modelByElement($element))
}
_createClickAction() {
return this._createActionByOption("onClick", {
excludeValidators: ["readOnly"]
})
}
_optionChanged(option) {
switch (option.name) {
case "onClick":
this._clickAction = this._createClickAction()
}
super._optionChanged(option)
}
}