devextreme
Version:
HTML5 JavaScript Component Suite for Responsive Web Development
1,112 lines (1,109 loc) • 50.7 kB
JavaScript
/**
* DevExtreme (cjs/ui/form/ui.form.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/
*/
"use strict";
exports.default = void 0;
var _renderer = _interopRequireDefault(require("../../core/renderer"));
var _events_engine = _interopRequireDefault(require("../../events/core/events_engine"));
var _component_registrator = _interopRequireDefault(require("../../core/component_registrator"));
var _guid = _interopRequireDefault(require("../../core/guid"));
var _common = require("../../core/utils/common");
var _config = _interopRequireDefault(require("../../core/config"));
var _type = require("../../core/utils/type");
var _iterator = require("../../core/utils/iterator");
var _extend = require("../../core/utils/extend");
var _visibility_change = require("../../events/visibility_change");
var _element = require("../../core/element");
var _message = _interopRequireDefault(require("../../localization/message"));
var _ui = _interopRequireDefault(require("../widget/ui.widget"));
var _editor = _interopRequireDefault(require("../editor/editor"));
var _window = require("../../core/utils/window");
var _validation_engine = _interopRequireDefault(require("../validation_engine"));
var _uiForm = _interopRequireDefault(require("./ui.form.items_runtime_info"));
var _tab_panel = _interopRequireDefault(require("../tab_panel"));
var _ui2 = _interopRequireDefault(require("../scroll_view/ui.scrollable"));
var _deferred = require("../../core/utils/deferred");
var _themes = require("../themes");
var _uiForm2 = _interopRequireDefault(require("./ui.form.item_options_actions"));
var _resize_observer = _interopRequireDefault(require("../../core/resize_observer"));
require("./ui.form.layout_manager");
var _uiForm4 = require("./ui.form.utils");
var _uiFormLayout_manager = require("./ui.form.layout_manager.utils");
var _label = require("./components/label");
require("../validation_summary");
require("../validation_group");
var _constants = require("./constants");
var _constants2 = require("../toolbar/constants");
function _interopRequireDefault(obj) {
return obj && obj.__esModule ? obj : {
default: obj
}
}
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)
}
const FOCUSED_STATE_CLASS = "dx-state-focused";
const ITEM_OPTIONS_FOR_VALIDATION_UPDATING = ["items", "isRequired", "validationRules", "visible"];
const Form = _ui.default.inherit({
_init: function() {
this.callBase();
this._dirtyFields = new Set;
this._cachedColCountOptions = [];
this._itemsRunTimeInfo = new _uiForm.default;
this._groupsColCount = [];
this._attachSyncSubscriptions()
},
_getDefaultOptions: function() {
return (0, _extend.extend)(this.callBase(), {
formID: "dx-" + new _guid.default,
formData: {},
colCount: 1,
screenByWidth: _window.defaultScreenFactorFunc,
colCountByScreen: void 0,
labelLocation: "left",
readOnly: false,
onFieldDataChanged: null,
customizeItem: null,
onEditorEnterKey: null,
minColWidth: 200,
alignItemLabels: true,
alignItemLabelsInAllGroups: true,
alignRootItemLabels: true,
showColonAfterLabel: true,
showRequiredMark: true,
showOptionalMark: false,
requiredMark: "*",
optionalMark: _message.default.format("dxForm-optionalMark"),
requiredMessage: _message.default.getFormatter("dxForm-requiredMessage"),
showValidationSummary: false,
items: void 0,
scrollingEnabled: false,
validationGroup: void 0,
stylingMode: (0, _config.default)().editorStylingMode,
labelMode: "outside",
isDirty: false
})
},
_defaultOptionsRules: function() {
return this.callBase().concat([{
device: function() {
return (0, _themes.isMaterialBased)()
},
options: {
labelLocation: "top"
}
}, {
device: function() {
return (0, _themes.isMaterial)()
},
options: {
showColonAfterLabel: false
}
}])
},
_setOptionsByReference: function() {
this.callBase();
(0, _extend.extend)(this._optionsByReference, {
formData: true,
validationGroup: true
})
},
_getGroupColCount: function($element) {
return parseInt($element.attr(_constants.GROUP_COL_COUNT_ATTR))
},
_applyLabelsWidthByCol: function($container, index) {
let options = arguments.length > 2 && void 0 !== arguments[2] ? arguments[2] : {};
let labelMarkOptions = arguments.length > 3 ? arguments[3] : void 0;
const fieldItemClass = options.inOneColumn ? _constants.FIELD_ITEM_CLASS : _constants.FORM_FIELD_ITEM_COL_CLASS + index;
const cssExcludeTabbedSelector = options.excludeTabbed ? ":not(.".concat(_constants.FIELD_ITEM_TAB_CLASS, ")") : "";
(0, _label.setLabelWidthByMaxLabelWidth)($container, ".".concat(fieldItemClass).concat(cssExcludeTabbedSelector), labelMarkOptions);
return
},
_applyLabelsWidth: function($container, excludeTabbed, inOneColumn, colCount, labelMarkOptions) {
colCount = inOneColumn ? 1 : colCount || this._getGroupColCount($container);
const applyLabelsOptions = {
excludeTabbed: excludeTabbed,
inOneColumn: inOneColumn
};
let i;
for (i = 0; i < colCount; i++) {
this._applyLabelsWidthByCol($container, i, applyLabelsOptions, labelMarkOptions)
}
},
_getGroupElementsInColumn: function($container, columnIndex, colCount) {
const cssColCountSelector = (0, _type.isDefined)(colCount) ? "." + _constants.GROUP_COL_COUNT_CLASS + colCount : "";
const groupSelector = "." + _constants.FORM_FIELD_ITEM_COL_CLASS + columnIndex + " > ." + _constants.FIELD_ITEM_CONTENT_CLASS + " > ." + _constants.FORM_GROUP_CLASS + cssColCountSelector;
return $container.find(groupSelector)
},
_applyLabelsWidthWithGroups: function($container, colCount, excludeTabbed, labelMarkOptions) {
if (true === this.option("alignRootItemLabels")) {
const $rootSimpleItems = $container.find(".".concat(_constants.ROOT_SIMPLE_ITEM_CLASS));
for (let colIndex = 0; colIndex < colCount; colIndex++) {
this._applyLabelsWidthByCol($rootSimpleItems, colIndex, excludeTabbed, labelMarkOptions)
}
}
const alignItemLabelsInAllGroups = this.option("alignItemLabelsInAllGroups");
if (alignItemLabelsInAllGroups) {
this._applyLabelsWidthWithNestedGroups($container, colCount, excludeTabbed, labelMarkOptions)
} else {
const $groups = this.$element().find("." + _constants.FORM_GROUP_CLASS);
let i;
for (i = 0; i < $groups.length; i++) {
this._applyLabelsWidth($groups.eq(i), excludeTabbed, void 0, void 0, labelMarkOptions)
}
}
},
_applyLabelsWidthWithNestedGroups: function($container, colCount, excludeTabbed, labelMarkOptions) {
const applyLabelsOptions = {
excludeTabbed: excludeTabbed
};
let colIndex;
let groupsColIndex;
let groupColIndex;
let $groupsByCol;
for (colIndex = 0; colIndex < colCount; colIndex++) {
$groupsByCol = this._getGroupElementsInColumn($container, colIndex);
this._applyLabelsWidthByCol($groupsByCol, 0, applyLabelsOptions, labelMarkOptions);
for (groupsColIndex = 0; groupsColIndex < this._groupsColCount.length; groupsColIndex++) {
$groupsByCol = this._getGroupElementsInColumn($container, colIndex, this._groupsColCount[groupsColIndex]);
const groupColCount = this._getGroupColCount($groupsByCol);
for (groupColIndex = 1; groupColIndex < groupColCount; groupColIndex++) {
this._applyLabelsWidthByCol($groupsByCol, groupColIndex, applyLabelsOptions, labelMarkOptions)
}
}
}
},
_labelLocation: function() {
return this.option("labelLocation")
},
_alignLabelsInColumn: function(_ref) {
let {
layoutManager: layoutManager,
inOneColumn: inOneColumn,
$container: $container,
excludeTabbed: excludeTabbed,
items: items
} = _ref;
if (!(0, _window.hasWindow)() || "top" === this._labelLocation()) {
return
}
const labelMarkOptions = (0, _uiFormLayout_manager.convertToLabelMarkOptions)(layoutManager._getMarkOptions());
if (inOneColumn) {
this._applyLabelsWidth($container, excludeTabbed, true, void 0, labelMarkOptions)
} else if (this._checkGrouping(items)) {
this._applyLabelsWidthWithGroups($container, layoutManager._getColCount(), excludeTabbed, labelMarkOptions)
} else {
this._applyLabelsWidth($container, excludeTabbed, false, layoutManager._getColCount(), labelMarkOptions)
}
},
_prepareFormData: function() {
if (!(0, _type.isDefined)(this.option("formData"))) {
this.option("formData", {})
}
},
_setStylingModeClass: function() {
if ("underlined" === this.option("stylingMode")) {
this.$element().addClass(_constants.FORM_UNDERLINED_CLASS)
}
},
_initMarkup: function() {
_validation_engine.default.addGroup(this._getValidationGroup());
this._clearCachedInstances();
this._prepareFormData();
this.$element().addClass(_constants.FORM_CLASS);
this._setStylingModeClass();
this.callBase();
this.setAria("role", "form", this.$element());
if (this.option("scrollingEnabled")) {
this._renderScrollable()
}
this._renderLayout();
this._renderValidationSummary();
this._lastMarkupScreenFactor = this._targetScreenFactor || this._getCurrentScreenFactor();
this._attachResizeObserverSubscription()
},
_attachResizeObserverSubscription: function() {
if ((0, _window.hasWindow)()) {
const formRootElement = this.$element().get(0);
_resize_observer.default.unobserve(formRootElement);
_resize_observer.default.observe(formRootElement, () => {
this._resizeHandler()
})
}
},
_resizeHandler: function() {
if (this._cachedLayoutManagers.length) {
(0, _iterator.each)(this._cachedLayoutManagers, (_, layoutManager) => {
var _layoutManager$option;
null === (_layoutManager$option = layoutManager.option("onLayoutChanged")) || void 0 === _layoutManager$option ? void 0 : _layoutManager$option(layoutManager.isSingleColumnMode())
})
}
},
_getCurrentScreenFactor: function() {
return (0, _window.hasWindow)() ? (0, _window.getCurrentScreenFactor)(this.option("screenByWidth")) : "lg"
},
_clearCachedInstances: function() {
this._itemsRunTimeInfo.clear();
this._cachedLayoutManagers = []
},
_alignLabels: function(layoutManager, inOneColumn) {
this._alignLabelsInColumn({
$container: this.$element(),
layoutManager: layoutManager,
excludeTabbed: true,
items: this.option("items"),
inOneColumn: inOneColumn
});
(0, _visibility_change.triggerResizeEvent)(this.$element().find(".".concat(_constants2.TOOLBAR_CLASS)))
},
_clean: function() {
this._clearValidationSummary();
this.callBase();
this._groupsColCount = [];
this._cachedColCountOptions = [];
this._lastMarkupScreenFactor = void 0;
_resize_observer.default.unobserve(this.$element().get(0))
},
_renderScrollable: function() {
const useNativeScrolling = this.option("useNativeScrolling");
this._scrollable = new _ui2.default(this.$element(), {
useNative: !!useNativeScrolling,
useSimulatedScrollbar: !useNativeScrolling,
useKeyboard: false,
direction: "both",
bounceEnabled: false
})
},
_getContent: function() {
return this.option("scrollingEnabled") ? (0, _renderer.default)(this._scrollable.content()) : this.$element()
},
_clearValidationSummary: function() {
var _this$_$validationSum;
null === (_this$_$validationSum = this._$validationSummary) || void 0 === _this$_$validationSum ? void 0 : _this$_$validationSum.remove();
this._$validationSummary = void 0;
this._validationSummary = void 0
},
_renderValidationSummary: function() {
this._clearValidationSummary();
if (this.option("showValidationSummary")) {
this._$validationSummary = (0, _renderer.default)("<div>").addClass(_constants.FORM_VALIDATION_SUMMARY).appendTo(this._getContent());
this._validationSummary = this._$validationSummary.dxValidationSummary({
validationGroup: this._getValidationGroup()
}).dxValidationSummary("instance")
}
},
_prepareItems(items, parentIsTabbedItem, currentPath, isTabs) {
if (items) {
const result = [];
for (let i = 0; i < items.length; i++) {
let item = items[i];
const path = (0, _uiForm4.concatPaths)(currentPath, (0, _uiForm4.createItemPathByIndex)(i, isTabs));
const itemRunTimeInfo = {
item: item,
itemIndex: i,
path: path
};
const guid = this._itemsRunTimeInfo.add(itemRunTimeInfo);
if ((0, _type.isString)(item)) {
item = {
dataField: item
}
}
if ((0, _type.isObject)(item)) {
const preparedItem = _extends({}, item);
itemRunTimeInfo.preparedItem = preparedItem;
preparedItem.guid = guid;
this._tryPrepareGroupItem(preparedItem);
this._tryPrepareTabbedItem(preparedItem, path);
this._tryPrepareItemTemplate(preparedItem);
if (parentIsTabbedItem) {
preparedItem.cssItemClass = _constants.FIELD_ITEM_TAB_CLASS
}
if (preparedItem.items) {
preparedItem.items = this._prepareItems(preparedItem.items, parentIsTabbedItem, path)
}
result.push(preparedItem)
} else {
result.push(item)
}
}
return result
}
},
_tryPrepareGroupItem: function(item) {
if ("group" === item.itemType) {
item.alignItemLabels = (0, _common.ensureDefined)(item.alignItemLabels, true);
item._prepareGroupItemTemplate = itemTemplate => {
if (item.template) {
item.groupContentTemplate = this._getTemplate(itemTemplate)
}
item.template = this._itemGroupTemplate.bind(this, item)
};
item._prepareGroupItemTemplate(item.template)
}
},
_tryPrepareTabbedItem: function(item, path) {
if ("tabbed" === item.itemType) {
item.template = this._itemTabbedTemplate.bind(this, item);
item.tabs = this._prepareItems(item.tabs, true, path, true)
}
},
_tryPrepareItemTemplate: function(item) {
if (item.template) {
item.template = this._getTemplate(item.template)
}
},
_checkGrouping: function(items) {
if (items) {
for (let i = 0; i < items.length; i++) {
const item = items[i];
if ("group" === item.itemType) {
return true
}
}
}
},
_renderLayout: function() {
const that = this;
let items = that.option("items");
const $content = that._getContent();
items = that._prepareItems(items);
that._rootLayoutManager = that._renderLayoutManager($content, this._createLayoutManagerOptions(items, {
isRoot: true,
colCount: that.option("colCount"),
alignItemLabels: that.option("alignItemLabels"),
screenByWidth: this.option("screenByWidth"),
colCountByScreen: this.option("colCountByScreen"),
onLayoutChanged: function(inOneColumn) {
that._alignLabels.bind(that)(that._rootLayoutManager, inOneColumn)
},
onContentReady: function(e) {
that._alignLabels(e.component, e.component.isSingleColumnMode())
}
}))
},
_tryGetItemsForTemplate: function(item) {
return item.items || []
},
_itemTabbedTemplate: function(item, e, $container) {
var _item$tabs;
const $tabPanel = (0, _renderer.default)("<div>").appendTo($container);
const tabPanelOptions = (0, _extend.extend)({}, item.tabPanelOptions, {
dataSource: item.tabs,
onItemRendered: args => {
var _item$tabPanelOptions, _item$tabPanelOptions2;
null === (_item$tabPanelOptions = item.tabPanelOptions) || void 0 === _item$tabPanelOptions ? void 0 : null === (_item$tabPanelOptions2 = _item$tabPanelOptions.onItemRendered) || void 0 === _item$tabPanelOptions2 ? void 0 : _item$tabPanelOptions2.call(_item$tabPanelOptions, args);
(0, _visibility_change.triggerShownEvent)(args.itemElement)
},
itemTemplate: (itemData, e, container) => {
const $container = (0, _renderer.default)(container);
const alignItemLabels = (0, _common.ensureDefined)(itemData.alignItemLabels, true);
const layoutManager = this._renderLayoutManager($container, this._createLayoutManagerOptions(this._tryGetItemsForTemplate(itemData), {
colCount: itemData.colCount,
alignItemLabels: alignItemLabels,
screenByWidth: this.option("screenByWidth"),
colCountByScreen: itemData.colCountByScreen,
cssItemClass: itemData.cssItemClass,
onLayoutChanged: inOneColumn => {
this._alignLabelsInColumn({
$container: $container,
layoutManager: layoutManager,
items: itemData.items,
inOneColumn: inOneColumn
})
}
}));
if (this._itemsRunTimeInfo) {
this._itemsRunTimeInfo.extendRunTimeItemInfoByKey(itemData.guid, {
layoutManager: layoutManager
})
}
if (alignItemLabels) {
this._alignLabelsInColumn({
$container: $container,
layoutManager: layoutManager,
items: itemData.items,
inOneColumn: layoutManager.isSingleColumnMode()
})
}
}
});
const tryUpdateTabPanelInstance = (items, instance) => {
if (Array.isArray(items)) {
items.forEach(item => this._itemsRunTimeInfo.extendRunTimeItemInfoByKey(item.guid, {
widgetInstance: instance
}))
}
};
const tabPanel = this._createComponent($tabPanel, _tab_panel.default, tabPanelOptions);
(0, _renderer.default)($container).parent().addClass(_constants.FIELD_ITEM_CONTENT_HAS_TABS_CLASS);
tabPanel.on("optionChanged", e => {
if ("dataSource" === e.fullName) {
tryUpdateTabPanelInstance(e.value, e.component)
}
});
tryUpdateTabPanelInstance([{
guid: item.guid
}, ...null !== (_item$tabs = item.tabs) && void 0 !== _item$tabs ? _item$tabs : []], tabPanel)
},
_itemGroupTemplate: function(item, options, $container) {
const id = options.editorOptions.inputAttr.id;
const $group = (0, _renderer.default)("<div>").toggleClass(_constants.FORM_GROUP_WITH_CAPTION_CLASS, (0, _type.isDefined)(item.caption) && item.caption.length).addClass(_constants.FORM_GROUP_CLASS).appendTo($container);
const groupAria = {
role: "group",
labelledby: id
};
this.setAria(groupAria, $group);
(0, _renderer.default)($container).parent().addClass(_constants.FIELD_ITEM_CONTENT_HAS_GROUP_CLASS);
if (item.caption) {
(0, _renderer.default)("<span>").addClass(_constants.FORM_GROUP_CAPTION_CLASS).text(item.caption).attr("id", id).appendTo($group)
}
const $groupContent = (0, _renderer.default)("<div>").addClass(_constants.FORM_GROUP_CONTENT_CLASS).appendTo($group);
if (item.groupContentTemplate) {
item._renderGroupContentTemplate = () => {
$groupContent.empty();
const data = {
formData: this.option("formData"),
component: this
};
item.groupContentTemplate.render({
model: data,
container: (0, _element.getPublicElement)($groupContent)
})
};
item._renderGroupContentTemplate()
} else {
const layoutManager = this._renderLayoutManager($groupContent, this._createLayoutManagerOptions(this._tryGetItemsForTemplate(item), {
colCount: item.colCount,
colCountByScreen: item.colCountByScreen,
alignItemLabels: item.alignItemLabels,
cssItemClass: item.cssItemClass
}));
this._itemsRunTimeInfo && this._itemsRunTimeInfo.extendRunTimeItemInfoByKey(item.guid, {
layoutManager: layoutManager
});
const colCount = layoutManager._getColCount();
if (!this._groupsColCount.includes(colCount)) {
this._groupsColCount.push(colCount)
}
$group.addClass(_constants.GROUP_COL_COUNT_CLASS + colCount);
$group.attr(_constants.GROUP_COL_COUNT_ATTR, colCount)
}
},
_createLayoutManagerOptions: function(items, extendedLayoutManagerOptions) {
return (0, _uiForm4.convertToLayoutManagerOptions)({
form: this,
formOptions: this.option(),
$formElement: this.$element(),
items: items,
validationGroup: this._getValidationGroup(),
extendedLayoutManagerOptions: extendedLayoutManagerOptions,
onFieldDataChanged: args => {
if (!this._isDataUpdating) {
this._triggerOnFieldDataChanged(args)
}
},
onContentReady: args => {
this._itemsRunTimeInfo.addItemsOrExtendFrom(args.component._itemsRunTimeInfo);
extendedLayoutManagerOptions.onContentReady && extendedLayoutManagerOptions.onContentReady(args)
},
onDisposing: _ref2 => {
let {
component: component
} = _ref2;
const nestedItemsRunTimeInfo = component.getItemsRunTimeInfo();
this._itemsRunTimeInfo.removeItemsByItems(nestedItemsRunTimeInfo)
},
onFieldItemRendered: () => {
var _this$_validationSumm;
null === (_this$_validationSumm = this._validationSummary) || void 0 === _this$_validationSumm ? void 0 : _this$_validationSumm.refreshValidationGroup()
}
})
},
_renderLayoutManager: function($parent, layoutManagerOptions) {
const baseColCountByScreen = {
lg: layoutManagerOptions.colCount,
md: layoutManagerOptions.colCount,
sm: layoutManagerOptions.colCount,
xs: 1
};
this._cachedColCountOptions.push({
colCountByScreen: (0, _extend.extend)(baseColCountByScreen, layoutManagerOptions.colCountByScreen)
});
const $element = (0, _renderer.default)("<div>");
$element.appendTo($parent);
const instance = this._createComponent($element, "dxLayoutManager", layoutManagerOptions);
instance.on("autoColCountChanged", () => {
this._clearAutoColCountChangedTimeout();
this.autoColCountChangedTimeoutId = setTimeout(() => !this._disposed && this._refresh(), 0)
});
this._cachedLayoutManagers.push(instance);
return instance
},
_getValidationGroup: function() {
return this.option("validationGroup") || this
},
_createComponent: function($element, type, config) {
config = config || {};
this._extendConfig(config, {
readOnly: this.option("readOnly")
});
return this.callBase($element, type, config)
},
_attachSyncSubscriptions: function() {
const that = this;
that.on("optionChanged", (function(args) {
const optionFullName = args.fullName;
if ("formData" === optionFullName) {
if (!(0, _type.isDefined)(args.value)) {
that._options.silent("formData", args.value = {})
}
that._triggerOnFieldDataChangedByDataSet(args.value)
}
if (that._cachedLayoutManagers.length) {
(0, _iterator.each)(that._cachedLayoutManagers, (function(index, layoutManager) {
if ("formData" === optionFullName) {
that._isDataUpdating = true;
layoutManager.option("layoutData", args.value);
that._isDataUpdating = false
}
if ("readOnly" === args.name || "disabled" === args.name) {
layoutManager.option(optionFullName, args.value)
}
}))
}
}))
},
_optionChanged: function(args) {
const splitFullName = args.fullName.split(".");
if (splitFullName.length > 1 && -1 !== splitFullName[0].search("items") && this._itemsOptionChangedHandler(args)) {
return
}
if (splitFullName.length > 1 && -1 !== splitFullName[0].search("formData") && this._formDataOptionChangedHandler(args)) {
return
}
this._defaultOptionChangedHandler(args)
},
_defaultOptionChangedHandler: function(args) {
switch (args.name) {
case "formData":
if (!this.option("items")) {
this._invalidate()
} else if ((0, _type.isEmptyObject)(args.value)) {
this._clear()
}
break;
case "onFieldDataChanged":
break;
case "items":
case "colCount":
case "onEditorEnterKey":
case "labelLocation":
case "labelMode":
case "alignItemLabels":
case "showColonAfterLabel":
case "customizeItem":
case "alignItemLabelsInAllGroups":
case "showRequiredMark":
case "showOptionalMark":
case "requiredMark":
case "optionalMark":
case "requiredMessage":
case "scrollingEnabled":
case "formID":
case "colCountByScreen":
case "screenByWidth":
case "stylingMode":
this._invalidate();
break;
case "showValidationSummary":
this._renderValidationSummary();
break;
case "minColWidth":
if ("auto" === this.option("colCount")) {
this._invalidate()
}
break;
case "alignRootItemLabels":
case "readOnly":
case "isDirty":
break;
case "width":
this.callBase(args);
this._rootLayoutManager.option(args.name, args.value);
this._alignLabels(this._rootLayoutManager, this._rootLayoutManager.isSingleColumnMode());
break;
case "validationGroup":
_validation_engine.default.removeGroup(args.previousValue || this);
this._invalidate();
break;
default:
this.callBase(args)
}
},
_itemsOptionChangedHandler: function(args) {
const nameParts = args.fullName.split(".");
const value = args.value;
const itemPath = this._getItemPath(nameParts);
const item = this.option(itemPath);
const optionNameWithoutPath = args.fullName.replace(itemPath + ".", "");
const simpleOptionName = optionNameWithoutPath.split(".")[0].replace(/\[\d+]/, "");
const itemAction = this._tryCreateItemOptionAction(simpleOptionName, item, item[simpleOptionName], args.previousValue, itemPath);
let result = this._tryExecuteItemOptionAction(itemAction) || this._tryChangeLayoutManagerItemOption(args.fullName, value);
if (!result && item) {
this._changeItemOption(item, optionNameWithoutPath, value);
const items = this._generateItemsFromData(this.option("items"));
this.option("items", items);
result = true
}
return result
},
_formDataOptionChangedHandler: function(args) {
const nameParts = args.fullName.split(".");
const value = args.value;
const dataField = nameParts.slice(1).join(".");
const editor = this.getEditor(dataField);
if (editor) {
editor.option("value", value)
} else {
this._triggerOnFieldDataChanged({
dataField: dataField,
value: value
})
}
return true
},
_tryCreateItemOptionAction: function(optionName, item, value, previousValue, itemPath) {
if ("tabs" === optionName) {
this._itemsRunTimeInfo.removeItemsByPathStartWith("".concat(itemPath, ".tabs"));
value = this._prepareItems(value, true, itemPath, true)
}
return (0, _uiForm2.default)(optionName, {
item: item,
value: value,
previousValue: previousValue,
itemsRunTimeInfo: this._itemsRunTimeInfo
})
},
_tryExecuteItemOptionAction: function(action) {
return action && action.tryExecute()
},
_updateValidationGroupAndSummaryIfNeeded: function(fullName) {
const optionName = (0, _uiForm4.getOptionNameFromFullName)(fullName);
if (ITEM_OPTIONS_FOR_VALIDATION_UPDATING.indexOf(optionName) > -1) {
_validation_engine.default.addGroup(this._getValidationGroup());
if (this.option("showValidationSummary")) {
var _this$_validationSumm2;
null === (_this$_validationSumm2 = this._validationSummary) || void 0 === _this$_validationSumm2 ? void 0 : _this$_validationSumm2.refreshValidationGroup()
}
}
},
_setLayoutManagerItemOption(layoutManager, optionName, value, path) {
if (this._updateLockCount > 0) {
!layoutManager._updateLockCount && layoutManager.beginUpdate();
const key = this._itemsRunTimeInfo.findKeyByPath(path);
this.postponedOperations.add(key, () => {
!layoutManager._disposed && layoutManager.endUpdate();
return (new _deferred.Deferred).resolve()
})
}
const contentReadyHandler = e => {
e.component.off("contentReady", contentReadyHandler);
if ((0, _uiForm4.isFullPathContainsTabs)(path)) {
const tabPath = (0, _uiForm4.tryGetTabPath)(path);
const tabLayoutManager = this._itemsRunTimeInfo.findGroupOrTabLayoutManagerByPath(tabPath);
if (tabLayoutManager) {
this._alignLabelsInColumn({
items: tabLayoutManager.option("items"),
layoutManager: tabLayoutManager,
$container: tabLayoutManager.$element(),
inOneColumn: tabLayoutManager.isSingleColumnMode()
})
}
} else {
this._alignLabels(this._rootLayoutManager, this._rootLayoutManager.isSingleColumnMode())
}
};
layoutManager.on("contentReady", contentReadyHandler);
layoutManager.option(optionName, value);
this._updateValidationGroupAndSummaryIfNeeded(optionName)
},
_tryChangeLayoutManagerItemOption(fullName, value) {
const nameParts = fullName.split(".");
const optionName = (0, _uiForm4.getOptionNameFromFullName)(fullName);
if ("items" === optionName && nameParts.length > 1) {
const itemPath = this._getItemPath(nameParts);
const layoutManager = this._itemsRunTimeInfo.findGroupOrTabLayoutManagerByPath(itemPath);
if (layoutManager) {
this._itemsRunTimeInfo.removeItemsByItems(layoutManager.getItemsRunTimeInfo());
const items = this._prepareItems(value, false, itemPath);
this._setLayoutManagerItemOption(layoutManager, optionName, items, itemPath);
return true
}
} else if (nameParts.length > 2) {
const endPartIndex = nameParts.length - 2;
const itemPath = this._getItemPath(nameParts.slice(0, endPartIndex));
const layoutManager = this._itemsRunTimeInfo.findGroupOrTabLayoutManagerByPath(itemPath);
if (layoutManager) {
const fullOptionName = (0, _uiForm4.getFullOptionName)(nameParts[endPartIndex], optionName);
if ("editorType" === optionName) {
if (layoutManager.option(fullOptionName) !== value) {
return false
}
}
if ("visible" === optionName) {
const formItems = this.option((0, _uiForm4.getFullOptionName)(itemPath, "items"));
if (formItems && formItems.length) {
const layoutManagerItems = layoutManager.option("items");
formItems.forEach((item, index) => {
const layoutItem = layoutManagerItems[index];
layoutItem.visibleIndex = item.visibleIndex
})
}
}
this._setLayoutManagerItemOption(layoutManager, fullOptionName, value, itemPath);
return true
}
}
return false
},
_tryChangeLayoutManagerItemOptions(itemPath, options) {
let result;
this.beginUpdate();
(0, _iterator.each)(options, (optionName, optionValue) => {
result = this._tryChangeLayoutManagerItemOption((0, _uiForm4.getFullOptionName)(itemPath, optionName), optionValue);
if (!result) {
return false
}
});
this.endUpdate();
return result
},
_getItemPath: function(nameParts) {
let itemPath = nameParts[0];
let i;
for (i = 1; i < nameParts.length; i++) {
if (-1 !== nameParts[i].search(/items\[\d+]|tabs\[\d+]/)) {
itemPath += "." + nameParts[i]
} else {
break
}
}
return itemPath
},
_triggerOnFieldDataChanged: function(args) {
this._updateIsDirty(args.dataField);
this._createActionByOption("onFieldDataChanged")(args)
},
_triggerOnFieldDataChangedByDataSet(data) {
if (data && (0, _type.isObject)(data)) {
Object.keys(data).forEach(key => {
this._triggerOnFieldDataChanged({
dataField: key,
value: data[key]
})
})
}
},
_updateFieldValue: function(dataField, value) {
if ((0, _type.isDefined)(this.option("formData"))) {
const editor = this.getEditor(dataField);
this.option("formData." + dataField, value);
if (editor) {
const editorValue = editor.option("value");
if (editorValue !== value) {
editor.option("value", value)
}
}
}
},
_generateItemsFromData: function(items) {
const formData = this.option("formData");
const result = [];
if (!items && (0, _type.isDefined)(formData)) {
(0, _iterator.each)(formData, (function(dataField) {
result.push({
dataField: dataField
})
}))
}
if (items) {
(0, _iterator.each)(items, (function(index, item) {
if ((0, _type.isObject)(item)) {
result.push(item)
} else {
result.push({
dataField: item
})
}
}))
}
return result
},
_getItemByField: function(field, items) {
const that = this;
const fieldParts = (0, _type.isObject)(field) ? field : that._getFieldParts(field);
const fieldName = fieldParts.fieldName;
const fieldPath = fieldParts.fieldPath;
let resultItem;
if (items.length) {
(0, _iterator.each)(items, (function(index, item) {
const itemType = item.itemType;
if (fieldPath.length) {
const path = fieldPath.slice();
item = that._getItemByFieldPath(path, fieldName, item)
} else if ("group" === itemType && !(item.caption || item.name) || "tabbed" === itemType && !item.name) {
const subItemsField = that._getSubItemField(itemType);
item.items = that._generateItemsFromData(item.items);
item = that._getItemByField({
fieldName: fieldName,
fieldPath: fieldPath
}, item[subItemsField])
}
if ((0, _uiForm4.isEqualToDataFieldOrNameOrTitleOrCaption)(item, fieldName)) {
resultItem = item;
return false
}
}))
}
return resultItem
},
_getFieldParts: function(field) {
let fieldName = field;
let separatorIndex = fieldName.indexOf(".");
const resultPath = [];
while (-1 !== separatorIndex) {
resultPath.push(fieldName.substr(0, separatorIndex));
fieldName = fieldName.substr(separatorIndex + 1);
separatorIndex = fieldName.indexOf(".")
}
return {
fieldName: fieldName,
fieldPath: resultPath.reverse()
}
},
_getItemByFieldPath: function(path, fieldName, item) {
const that = this;
const itemType = item.itemType;
const subItemsField = that._getSubItemField(itemType);
const isItemWithSubItems = "group" === itemType || "tabbed" === itemType || item.title;
let result;
do {
if (isItemWithSubItems) {
const name = item.name || item.caption || item.title;
const isGroupWithName = (0, _type.isDefined)(name);
const nameWithoutSpaces = (0, _uiForm4.getTextWithoutSpaces)(name);
let pathNode;
item[subItemsField] = that._generateItemsFromData(item[subItemsField]);
if (isGroupWithName) {
pathNode = path.pop()
}
if (!path.length) {
result = that._getItemByField(fieldName, item[subItemsField]);
if (result) {
break
}
}
if (!isGroupWithName || isGroupWithName && nameWithoutSpaces === pathNode) {
if (path.length) {
result = that._searchItemInEverySubItem(path, fieldName, item[subItemsField])
}
}
} else {
break
}
} while (path.length && !(0, _type.isDefined)(result));
return result
},
_getSubItemField: function(itemType) {
return "tabbed" === itemType ? "tabs" : "items"
},
_searchItemInEverySubItem: function(path, fieldName, items) {
const that = this;
let result;
(0, _iterator.each)(items, (function(index, groupItem) {
result = that._getItemByFieldPath(path.slice(), fieldName, groupItem);
if (result) {
return false
}
}));
if (!result) {
result = false
}
return result
},
_changeItemOption: function(item, option, value) {
if ((0, _type.isObject)(item)) {
item[option] = value
}
},
_dimensionChanged: function() {
const currentScreenFactor = this._getCurrentScreenFactor();
if (this._lastMarkupScreenFactor !== currentScreenFactor) {
if (this._isColCountChanged(this._lastMarkupScreenFactor, currentScreenFactor)) {
this._targetScreenFactor = currentScreenFactor;
this._refresh();
this._targetScreenFactor = void 0
}
this._lastMarkupScreenFactor = currentScreenFactor
}
},
_isColCountChanged: function(oldScreenSize, newScreenSize) {
let isChanged = false;
(0, _iterator.each)(this._cachedColCountOptions, (function(index, item) {
if (item.colCountByScreen[oldScreenSize] !== item.colCountByScreen[newScreenSize]) {
isChanged = true;
return false
}
}));
return isChanged
},
_refresh: function() {
const editorSelector = ".".concat("dx-state-focused", " > :not(.dx-dropdowneditor-input-wrapper) input,") + " .".concat("dx-state-focused", " textarea");
_events_engine.default.trigger(this.$element().find(editorSelector), "change");
this.callBase()
},
_updateIsDirty: function(dataField) {
const editor = this.getEditor(dataField);
if (!editor) {
return
}
if (editor.option("isDirty")) {
this._dirtyFields.add(dataField)
} else {
this._dirtyFields.delete(dataField)
}
this.option("isDirty", !!this._dirtyFields.size)
},
updateRunTimeInfoForEachEditor: function(editorAction) {
this._itemsRunTimeInfo.each((function(_, itemRunTimeInfo) {
const widgetInstance = itemRunTimeInfo.widgetInstance;
if ((0, _type.isDefined)(widgetInstance) && _editor.default.isEditor(widgetInstance)) {
editorAction(widgetInstance)
}
}))
},
_clear: function() {
this.updateRunTimeInfoForEachEditor(editor => {
editor.clear();
editor.option("isValid", true)
});
_validation_engine.default.resetGroup(this._getValidationGroup())
},
_updateData: function(data, value, isComplexData) {
const that = this;
const _data = isComplexData ? value : data;
if ((0, _type.isObject)(_data)) {
(0, _iterator.each)(_data, (function(dataField, fieldValue) {
that._updateData(isComplexData ? data + "." + dataField : dataField, fieldValue, (0, _type.isObject)(fieldValue))
}))
} else if ((0, _type.isString)(data)) {
that._updateFieldValue(data, value)
}
},
registerKeyHandler: function(key, handler) {
this.callBase(key, handler);
this._itemsRunTimeInfo.each((function(_, itemRunTimeInfo) {
if ((0, _type.isDefined)(itemRunTimeInfo.widgetInstance)) {
itemRunTimeInfo.widgetInstance.registerKeyHandler(key, handler)
}
}))
},
_focusTarget: function() {
return this.$element().find("." + _constants.FIELD_ITEM_CONTENT_CLASS + " [tabindex]").first()
},
_visibilityChanged: function() {
this._alignLabels(this._rootLayoutManager, this._rootLayoutManager.isSingleColumnMode())
},
_clearAutoColCountChangedTimeout: function() {
if (this.autoColCountChangedTimeoutId) {
clearTimeout(this.autoColCountChangedTimeoutId);
this.autoColCountChangedTimeoutId = void 0
}
},
_dispose: function() {
this._clearAutoColCountChangedTimeout();
_validation_engine.default.removeGroup(this._getValidationGroup());
this.callBase()
},
clear: function() {
this._clear()
},
resetValues: function() {
this._clear()
},
reset: function(editorsData) {
this.updateRunTimeInfoForEachEditor(editor => {
const editorName = editor.option("name");
if (editorsData && editorName in editorsData) {
editor.reset(editorsData[editorName])
} else {
editor.reset()
}
});
this._renderValidationSummary()
},
updateData: function(data, value) {
this._updateData(data, value)
},
getEditor: function(dataField) {
return this._itemsRunTimeInfo.findWidgetInstanceByDataField(dataField) || this._itemsRunTimeInfo.findWidgetInstanceByName(dataField)
},
getButton: function(name) {
return this._itemsRunTimeInfo.findWidgetInstanceByName(name)
},
updateDimensions: function() {
const that = this;
const deferred = new _deferred.Deferred;
if (that._scrollable) {
that._scrollable.update().done((function() {
deferred.resolveWith(that)
}))
} else {
deferred.resolveWith(that)
}
return deferred.promise()
},
itemOption: function(id, option, value) {
const items = this._generateItemsFromData(this.option("items"));
const item = this._getItemByField(id, items);
const path = (0, _uiForm4.getItemPath)(items, item);
if (!item) {
return
}
switch (arguments.length) {
case 1:
return item;
case 3: {
const itemAction = this._tryCreateItemOptionAction(option, item, value, item[option], path);
this._changeItemOption(item, option, value);
const fullName = (0, _uiForm4.getFullOptionName)(path, option);
if (!this._tryExecuteItemOptionAction(itemAction) && !this._tryChangeLayoutManagerItemOption(fullName, value)) {
this.option("items", items)
}
break
}
default:
if ((0, _type.isObject)(option)) {
if (!this._tryChangeLayoutManagerItemOptions(path, option)) {
let allowUpdateItems;
(0, _iterator.each)(option, (optionName, optionValue) => {
const itemAction = this._tryCreateItemOptionAction(optionName, item, optionValue, item[optionName], path);
this._changeItemOption(item, optionName, optionValue);
if (!allowUpdateItems && !this._tryExecuteItemOptionAction(itemAction)) {