UNPKG

devextreme

Version:

HTML5 JavaScript Component Suite for Responsive Web Development

124 lines (122 loc) 5.39 kB
/** * DevExtreme (cjs/__internal/ui/form/m_form.utils.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/ */ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.concatPaths = void 0; exports.convertToLayoutManagerOptions = convertToLayoutManagerOptions; exports.tryGetTabPath = exports.isFullPathContainsTabs = exports.isEqualToDataFieldOrNameOrTitleOrCaption = exports.getTextWithoutSpaces = exports.getOptionNameFromFullName = exports.getItemPath = exports.getFullOptionName = exports.createItemPathByIndex = void 0; var _extend = require("../../../core/utils/extend"); var _type = require("../../../core/utils/type"); const createItemPathByIndex = (index, isTabs) => `${isTabs?"tabs":"items"}[${index}]`; exports.createItemPathByIndex = createItemPathByIndex; const concatPaths = (path1, path2) => { if ((0, _type.isDefined)(path1) && (0, _type.isDefined)(path2)) { return `${path1}.${path2}` } return path1 || path2 }; exports.concatPaths = concatPaths; const getTextWithoutSpaces = text => text ? text.replace(/\s/g, "") : void 0; exports.getTextWithoutSpaces = getTextWithoutSpaces; const isEqualToDataFieldOrNameOrTitleOrCaption = (item, fieldName) => { if (item) { return item.dataField === fieldName || item.name === fieldName || getTextWithoutSpaces(item.title) === fieldName || "group" === item.itemType && getTextWithoutSpaces(item.caption) === fieldName } return false }; exports.isEqualToDataFieldOrNameOrTitleOrCaption = isEqualToDataFieldOrNameOrTitleOrCaption; const getFullOptionName = (path, optionName) => `${path}.${optionName}`; exports.getFullOptionName = getFullOptionName; const getOptionNameFromFullName = fullName => { const parts = fullName.split("."); return parts[parts.length - 1].replace(/\[\d+]/, "") }; exports.getOptionNameFromFullName = getOptionNameFromFullName; const tryGetTabPath = fullPath => { const pathParts = fullPath.split("."); const resultPathParts = [...pathParts]; for (let i = pathParts.length - 1; i >= 0; i--) { if (isFullPathContainsTabs(pathParts[i])) { return resultPathParts.join(".") } resultPathParts.splice(i, 1) } return "" }; exports.tryGetTabPath = tryGetTabPath; const isFullPathContainsTabs = fullPath => fullPath.indexOf("tabs") > -1; exports.isFullPathContainsTabs = isFullPathContainsTabs; const getItemPath = (items, item, isTabs) => { const index = items.indexOf(item); if (index > -1) { return createItemPathByIndex(index, isTabs) } for (let i = 0; i < items.length; i++) { const targetItem = items[i]; const tabOrGroupItems = targetItem.tabs || targetItem.items; if (tabOrGroupItems) { const itemPath = getItemPath(tabOrGroupItems, item, targetItem.tabs); if (itemPath) { return concatPaths(createItemPathByIndex(i, isTabs), itemPath) } } } }; exports.getItemPath = getItemPath; function convertToLayoutManagerOptions(_ref) { let { form: form, $formElement: $formElement, formOptions: formOptions, items: items, validationGroup: validationGroup, extendedLayoutManagerOptions: extendedLayoutManagerOptions, onFieldDataChanged: onFieldDataChanged, onContentReady: onContentReady, onDisposing: onDisposing, onFieldItemRendered: onFieldItemRendered } = _ref; const baseOptions = { form: form, items: items, $formElement: $formElement, validationGroup: validationGroup, onFieldDataChanged: onFieldDataChanged, onContentReady: onContentReady, onDisposing: onDisposing, onFieldItemRendered: onFieldItemRendered, validationBoundary: formOptions.scrollingEnabled ? $formElement : void 0, scrollingEnabled: formOptions.scrollingEnabled, showRequiredMark: formOptions.showRequiredMark, showOptionalMark: formOptions.showOptionalMark, requiredMark: formOptions.requiredMark, optionalMark: formOptions.optionalMark, requiredMessage: formOptions.requiredMessage, screenByWidth: formOptions.screenByWidth, layoutData: formOptions.formData, labelLocation: formOptions.labelLocation, customizeItem: formOptions.customizeItem, minColWidth: formOptions.minColWidth, showColonAfterLabel: formOptions.showColonAfterLabel, onEditorEnterKey: formOptions.onEditorEnterKey, labelMode: formOptions.labelMode }; const result = (0, _extend.extend)(baseOptions, { isRoot: extendedLayoutManagerOptions.isRoot, colCount: extendedLayoutManagerOptions.colCount, alignItemLabels: extendedLayoutManagerOptions.alignItemLabels, cssItemClass: extendedLayoutManagerOptions.cssItemClass, colCountByScreen: extendedLayoutManagerOptions.colCountByScreen, onLayoutChanged: extendedLayoutManagerOptions.onLayoutChanged, width: extendedLayoutManagerOptions.width }); return result }