@boteteam/utils 0.0.14 → 0.0.17

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (41) hide show
  1. package/dist/cjs/formatModule/formatModuleData.js +19 -1
  2. package/dist/cjs/formatModule/formatModuleData.js.map +2 -2
  3. package/dist/cjs/formatModule/helpers/formatFormProps.js +20 -27
  4. package/dist/cjs/formatModule/helpers/formatFormProps.js.map +2 -2
  5. package/dist/cjs/formatModule/helpers/formatStepsProps.d.ts +23 -0
  6. package/dist/cjs/formatModule/helpers/formatStepsProps.js +88 -0
  7. package/dist/cjs/formatModule/helpers/formatStepsProps.js.map +7 -0
  8. package/dist/cjs/formatModule/helpers/formatTableProps.d.ts +11 -0
  9. package/dist/cjs/formatModule/helpers/formatTableProps.js +76 -6
  10. package/dist/cjs/formatModule/helpers/formatTableProps.js.map +2 -2
  11. package/dist/cjs/formatModule/helpers/index.d.ts +2 -1
  12. package/dist/cjs/formatModule/helpers/index.js +3 -0
  13. package/dist/cjs/formatModule/helpers/index.js.map +3 -3
  14. package/dist/cjs/index.d.ts +2 -1
  15. package/dist/cjs/index.js +9 -0
  16. package/dist/cjs/index.js.map +2 -2
  17. package/dist/cjs/securityUtils.d.ts +28 -0
  18. package/dist/cjs/securityUtils.js +103 -0
  19. package/dist/cjs/securityUtils.js.map +7 -0
  20. package/dist/esm/formatModule/formatModuleData.js +18 -5
  21. package/dist/esm/formatModule/formatModuleData.js.map +1 -1
  22. package/dist/esm/formatModule/helpers/formatFormProps.js +25 -32
  23. package/dist/esm/formatModule/helpers/formatFormProps.js.map +1 -1
  24. package/dist/esm/formatModule/helpers/formatStepsProps.d.ts +23 -0
  25. package/dist/esm/formatModule/helpers/formatStepsProps.js +58 -0
  26. package/dist/esm/formatModule/helpers/formatStepsProps.js.map +1 -0
  27. package/dist/esm/formatModule/helpers/formatTableProps.d.ts +11 -0
  28. package/dist/esm/formatModule/helpers/formatTableProps.js +73 -6
  29. package/dist/esm/formatModule/helpers/formatTableProps.js.map +1 -1
  30. package/dist/esm/formatModule/helpers/index.d.ts +2 -1
  31. package/dist/esm/formatModule/helpers/index.js +2 -1
  32. package/dist/esm/formatModule/helpers/index.js.map +1 -1
  33. package/dist/esm/index.d.ts +2 -1
  34. package/dist/esm/index.js +2 -1
  35. package/dist/esm/index.js.map +1 -1
  36. package/dist/esm/securityUtils.d.ts +28 -0
  37. package/dist/esm/securityUtils.js +101 -0
  38. package/dist/esm/securityUtils.js.map +1 -0
  39. package/dist/umd/index.min.js +1 -1
  40. package/dist/umd/index.min.js.map +1 -1
  41. package/package.json +2 -2
@@ -67,6 +67,8 @@ var formatModuleData = ({
67
67
  itemContent: listItemContent,
68
68
  itemDescribe: listItemDescribe,
69
69
  dataSource: compDataSource,
70
+ columns: compColumns,
71
+ tableBodyHeight,
70
72
  fileProps,
71
73
  attrs,
72
74
  rowSelection,
@@ -173,8 +175,11 @@ var formatModuleData = ({
173
175
  if (compType === "table") {
174
176
  const tableProps = (0, import_helpers.formatTableProps)({
175
177
  options: {
178
+ ...otherCompProps,
179
+ columns: compColumns,
180
+ dataSource: compDataSource,
176
181
  attrs,
177
- dataSource: compDataSource
182
+ tableBodyHeight
178
183
  },
179
184
  staticCodeMap,
180
185
  parameters: allParametrs
@@ -319,6 +324,19 @@ var formatModuleData = ({
319
324
  };
320
325
  }
321
326
  }
327
+ if (compType === "steps") {
328
+ const stepsProps = (0, import_helpers.formatStepsProps)({
329
+ options: {
330
+ dataSource: compDataSource,
331
+ ...otherCompProps
332
+ },
333
+ parameters: allParametrs
334
+ });
335
+ moduleDataRes.compProps = {
336
+ ...moduleDataRes.compProps || {},
337
+ ...stepsProps
338
+ };
339
+ }
322
340
  moduleDataRes.compProps.style = (0, import_helpers.formatStyleProps)(moduleData, parentModuleData);
323
341
  if ((moduleData == null ? void 0 : moduleData.compProps) && fieldName) {
324
342
  moduleDataRes.compProps.fieldName = fieldName;
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../../src/formatModule/formatModuleData.ts"],
4
- "sourcesContent": ["import 'ses';\nimport { getDataArr } from '../treeUtils';\nimport {\n urlPrefix,\n formatListProps,\n formatTableProps,\n formatCarouselProps,\n formatImageProps,\n formatFormProps,\n formatHighCodeProps,\n formatDescriptionsProps,\n formatLoopProps,\n formatStyleProps,\n formatEchartLineProps,\n formatEchartPieProps,\n staticCodeAssemble,\n stringPramarsValTransition,\n} from './helpers';\n\ntype formatModuleProps = {\n moduleData: { [key: string]: any } | null; // 页面配置数据\n parentModuleData?: { [key: string]: any } | null; // 父级配置数据\n pageData?: { [key: string]: any } | null; // 页面组件数据\n parameters?: any; // 入参上下文\n loopItemData?: any; // 循环体数据\n staticCodeList?: { [key: string]: any } | null; // 静态资源数据\n disabled?: boolean;\n};\n\nconst formatModuleData = ({\n moduleData,\n parentModuleData,\n parameters,\n loopItemData,\n staticCodeList,\n disabled,\n pageData,\n}: formatModuleProps): { [key: string]: any } | null => {\n let moduleDataRes: { [key: string]: any } = { };\n const allParametrs:{ [key: string]: any } = {\n ...(parameters || {}),\n pageData: pageData || {},\n loopItem: loopItemData || {},\n }; // 把页面数据与入参组装到一起\n const {\n staticCodeMap,\n staticOptionsMap,\n } = staticCodeAssemble(staticCodeList);\n\n if (moduleData) {\n const {\n compProps,\n compType,\n children,\n moduleTitle,\n moduleDescribe,\n id,\n } = moduleData;\n // 组装静态数据映射\n moduleDataRes = {\n ...moduleData,\n key: id,\n disabled,\n compProps: {},\n originModule: moduleData, // 配置moduled的信息\n };\n const {\n itemLabel: listItemLabel,\n itemContent: listItemContent,\n itemDescribe: listItemDescribe,\n dataSource: compDataSource,\n fileProps,\n attrs,\n rowSelection,\n hasSelectAll,\n rowKey,\n fieldName,\n column,\n articleContent,\n eventFlag,\n ...otherCompProps // 无需处理的属性\n } = compProps || {};\n if (moduleTitle) {\n moduleDataRes.moduleTitle = stringPramarsValTransition(moduleTitle, allParametrs);\n }\n if (moduleDescribe) {\n moduleDataRes.moduleDescribe = stringPramarsValTransition(moduleDescribe, allParametrs);\n }\n if (otherCompProps?.title) {\n moduleDataRes.compProps.title = stringPramarsValTransition(otherCompProps?.title, allParametrs);\n }\n if (eventFlag) {\n moduleDataRes.compProps.eventFlag = { checked: true };\n }\n \n moduleDataRes.parentCompProps = parentModuleData?.compProps || {};\n if (\n ['panel', 'div', 'page'].indexOf(compType) >= 0 &&\n Array.isArray(children) &&\n children.length > 0\n ) {\n const childs = children.map((item) => {\n return formatModuleData({\n moduleData: item,\n parentModuleData: moduleData,\n parameters,\n loopItemData,\n staticCodeList,\n disabled,\n pageData,\n });\n });\n moduleDataRes.children = childs;\n } else {\n if (otherCompProps && Object?.keys(otherCompProps)?.length > 0) {\n Object?.keys(otherCompProps).forEach(compPropKey => {\n if (otherCompProps?.[compPropKey] || typeof otherCompProps?.[compPropKey] === 'number') {\n moduleDataRes.compProps[compPropKey] = otherCompProps?.[compPropKey];\n }\n });\n }\n if (rowSelection) {\n moduleDataRes.compProps.rowSelection = rowSelection;\n if (hasSelectAll && rowSelection?.type === 'checkbox') {\n moduleDataRes.compProps.hasSelectAll = hasSelectAll;\n } else {\n delete moduleDataRes.compProps.hasSelectAll;\n }\n }\n const rowKeyIndexArr = getDataArr(rowKey);\n\n if (Array.isArray(rowKeyIndexArr) && rowKeyIndexArr.length > 0) {\n moduleDataRes.compProps.rowKey = rowKeyIndexArr.slice(-1)?.[0];\n }\n\n if (compType === 'typography') {\n if (articleContent) {\n moduleDataRes.compProps.articleContent = stringPramarsValTransition(articleContent, allParametrs);\n }\n }\n if (compType === 'iframe') {\n moduleDataRes.compProps.url = stringPramarsValTransition(\n otherCompProps?.url,\n allParametrs,\n );\n }\n\n if (compType === 'carousel' && compDataSource && compDataSource?.dataType) {\n const carouselProps = formatCarouselProps({\n options: {\n dataSource: compDataSource,\n },\n parameters: allParametrs,\n });\n moduleDataRes.compProps = {\n ...(moduleDataRes?.compProps || {}),\n ...carouselProps,\n };\n }\n if (compType === 'image' && compDataSource && compDataSource?.dataType) {\n const imageProps = formatImageProps({\n options: {\n dataSource: compDataSource,\n },\n parameters: allParametrs,\n });\n moduleDataRes.compProps = {\n ...(moduleDataRes?.compProps || {}),\n ...imageProps,\n };\n }\n\n if (compType === 'highCodeComp') {\n const highCodeCompProps = formatHighCodeProps({\n options: { fileProps },\n parameters: allParametrs,\n });\n moduleDataRes.compProps = {\n ...(moduleDataRes?.compProps || {}),\n ...highCodeCompProps,\n };\n }\n\n if (compType === 'table') {\n const tableProps = formatTableProps({\n options: {\n attrs,\n dataSource: compDataSource,\n },\n staticCodeMap,\n parameters: allParametrs,\n });\n moduleDataRes.compProps = {\n ...(moduleDataRes?.compProps || {}),\n ...tableProps,\n };\n }\n if (compType === 'form') {\n const formProps = formatFormProps({\n options: {\n column,\n children,\n },\n parameters: allParametrs,\n staticCodeMap,\n staticOptionsMap,\n });\n moduleDataRes.compProps = {\n ...(moduleDataRes?.compProps || {}),\n ...formProps,\n };\n }\n if (compType === 'descriptions') {\n const descriptionsProps = formatDescriptionsProps({\n options: {\n column,\n attrs,\n },\n parameters: allParametrs,\n staticCodeMap,\n });\n moduleDataRes.compProps = {\n ...(moduleDataRes?.compProps || {}),\n ...descriptionsProps,\n };\n }\n if (compType === 'loop') {\n const loopProps = formatLoopProps({\n options: {\n dataSource: compDataSource,\n },\n parameters: allParametrs,\n staticCodeMap,\n });\n const loopChilds:({[key:string]:any}|null)[] = [];\n if (\n Array.isArray(loopProps?.dataSource) && loopProps?.dataSource?.length > 0 &&\n Array.isArray(children) && children.length > 0\n ) {\n loopProps?.dataSource.forEach((dataItem) => {\n const dataItemKey = moduleDataRes?.compProps?.rowKey && dataItem?.[moduleDataRes?.compProps?.rowKey] ?\n dataItem?.[moduleDataRes?.compProps?.rowKey] : '';\n loopChilds.push({\n id: dataItemKey,\n key: dataItemKey,\n compType: 'loopItem',\n compProps: {},\n originItem: dataItem,\n children: children.map((item:{[key:string]:any}) => {\n const loopChildInfo = formatModuleData({\n moduleData: item,\n parentModuleData: moduleData,\n loopItemData: typeof dataItem === 'object' ? dataItem : { item: dataItem },\n parameters,\n staticCodeList,\n disabled,\n pageData,\n });\n return loopChildInfo;\n }),\n });\n });\n } else if (Array.isArray(children) && children.length > 0) {\n loopChilds.push({\n id: '1',\n key: '1',\n compType: 'loopItem',\n compProps: {},\n originItem: {},\n children: children.map((item:{[key:string]:any}) => {\n const loopChildInfo = formatModuleData({\n moduleData: item,\n parentModuleData: moduleData,\n loopItemData: {},\n parameters,\n staticCodeList,\n disabled,\n pageData,\n });\n return loopChildInfo;\n }),\n });\n }\n moduleDataRes.compProps = {\n ...(moduleDataRes?.compProps || {}),\n ...loopProps,\n column,\n children: loopChilds,\n };\n }\n if (['list', 'card', 'recommendList'].includes(compType)) {\n const resProps = formatListProps({\n options: {\n ...otherCompProps,\n rowKey,\n rowSelection,\n attrs,\n itemLabel: listItemLabel,\n itemContent: listItemContent,\n itemDescribe: listItemDescribe,\n dataSource: compDataSource,\n },\n urlPrefix,\n staticCodeMap,\n parameters: allParametrs,\n });\n moduleDataRes.compProps = {\n ...(moduleDataRes.compProps || {}),\n ...resProps,\n };\n }\n if (['echartBar', 'echartLine'].includes(compType)) {\n const echartProps = formatEchartLineProps({\n options: { ...otherCompProps, dataSource: compDataSource },\n parameters: allParametrs,\n });\n\n moduleDataRes.compProps = {\n ...(moduleDataRes.compProps || {}),\n ...echartProps,\n };\n }\n if (compType === 'echartPie') {\n const echartProps = formatEchartPieProps({\n options: {\n dataSource: compDataSource,\n ...otherCompProps,\n },\n parameters: allParametrs,\n });\n\n moduleDataRes.compProps = {\n ...(moduleDataRes.compProps || {}),\n ...echartProps,\n };\n }\n }\n moduleDataRes.compProps.style = formatStyleProps(moduleData, parentModuleData);\n // 所有的模版 拼一个组装数据的key值\n if (moduleData?.compProps && fieldName) {\n moduleDataRes.compProps.fieldName = fieldName;\n }\n }\n \n // console.log('moduleDataRes', moduleDataRes);\n return moduleDataRes;\n};\n\nexport default formatModuleData;\n"],
5
- "mappings": "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",
4
+ "sourcesContent": ["import 'ses';\nimport { getDataArr } from '../treeUtils';\nimport {\n urlPrefix,\n formatListProps,\n formatTableProps,\n formatCarouselProps,\n formatImageProps,\n formatFormProps,\n formatHighCodeProps,\n formatDescriptionsProps,\n formatLoopProps,\n formatStyleProps,\n formatEchartLineProps,\n formatEchartPieProps,\n formatStepsProps,\n staticCodeAssemble,\n stringPramarsValTransition,\n} from './helpers';\n\ntype formatModuleProps = {\n moduleData: { [key: string]: any } | null; // 页面配置数据\n parentModuleData?: { [key: string]: any } | null; // 父级配置数据\n pageData?: { [key: string]: any } | null; // 页面组件数据\n parameters?: any; // 入参上下文\n loopItemData?: any; // 循环体数据\n staticCodeList?: { [key: string]: any } | null; // 静态资源数据\n disabled?: boolean;\n};\n\nconst formatModuleData = ({\n moduleData,\n parentModuleData,\n parameters,\n loopItemData,\n staticCodeList,\n disabled,\n pageData,\n}: formatModuleProps): { [key: string]: any } | null => {\n let moduleDataRes: { [key: string]: any } = { };\n const allParametrs:{ [key: string]: any } = {\n ...(parameters || {}),\n pageData: pageData || {},\n loopItem: loopItemData || {},\n }; // 把页面数据与入参组装到一起\n const {\n staticCodeMap,\n staticOptionsMap,\n } = staticCodeAssemble(staticCodeList);\n\n if (moduleData) {\n const {\n compProps,\n compType,\n children,\n moduleTitle,\n moduleDescribe,\n id,\n } = moduleData;\n // 组装静态数据映射\n moduleDataRes = {\n ...moduleData,\n key: id,\n disabled,\n compProps: {},\n originModule: moduleData, // 配置moduled的信息\n };\n const {\n itemLabel: listItemLabel,\n itemContent: listItemContent,\n itemDescribe: listItemDescribe,\n dataSource: compDataSource,\n columns: compColumns,\n tableBodyHeight,\n fileProps,\n attrs,\n rowSelection,\n hasSelectAll,\n rowKey,\n fieldName,\n column,\n articleContent,\n eventFlag,\n ...otherCompProps // 无需处理的属性\n } = compProps || {};\n if (moduleTitle) {\n moduleDataRes.moduleTitle = stringPramarsValTransition(moduleTitle, allParametrs);\n }\n if (moduleDescribe) {\n moduleDataRes.moduleDescribe = stringPramarsValTransition(moduleDescribe, allParametrs);\n }\n if (otherCompProps?.title) {\n moduleDataRes.compProps.title = stringPramarsValTransition(otherCompProps?.title, allParametrs);\n }\n if (eventFlag) {\n moduleDataRes.compProps.eventFlag = { checked: true };\n }\n \n moduleDataRes.parentCompProps = parentModuleData?.compProps || {};\n if (\n ['panel', 'div', 'page'].indexOf(compType) >= 0 &&\n Array.isArray(children) &&\n children.length > 0\n ) {\n const childs = children.map((item) => {\n return formatModuleData({\n moduleData: item,\n parentModuleData: moduleData,\n parameters,\n loopItemData,\n staticCodeList,\n disabled,\n pageData,\n });\n });\n moduleDataRes.children = childs;\n } else {\n if (otherCompProps && Object?.keys(otherCompProps)?.length > 0) {\n Object?.keys(otherCompProps).forEach(compPropKey => {\n if (otherCompProps?.[compPropKey] || typeof otherCompProps?.[compPropKey] === 'number') {\n moduleDataRes.compProps[compPropKey] = otherCompProps?.[compPropKey];\n }\n });\n }\n if (rowSelection) {\n moduleDataRes.compProps.rowSelection = rowSelection;\n if (hasSelectAll && rowSelection?.type === 'checkbox') {\n moduleDataRes.compProps.hasSelectAll = hasSelectAll;\n } else {\n delete moduleDataRes.compProps.hasSelectAll;\n }\n }\n const rowKeyIndexArr = getDataArr(rowKey);\n\n if (Array.isArray(rowKeyIndexArr) && rowKeyIndexArr.length > 0) {\n moduleDataRes.compProps.rowKey = rowKeyIndexArr.slice(-1)?.[0];\n }\n\n if (compType === 'typography') {\n if (articleContent) {\n moduleDataRes.compProps.articleContent = stringPramarsValTransition(articleContent, allParametrs);\n }\n }\n if (compType === 'iframe') {\n moduleDataRes.compProps.url = stringPramarsValTransition(\n otherCompProps?.url,\n allParametrs,\n );\n }\n\n if (compType === 'carousel' && compDataSource && compDataSource?.dataType) {\n const carouselProps = formatCarouselProps({\n options: {\n dataSource: compDataSource,\n },\n parameters: allParametrs,\n });\n moduleDataRes.compProps = {\n ...(moduleDataRes?.compProps || {}),\n ...carouselProps,\n };\n }\n if (compType === 'image' && compDataSource && compDataSource?.dataType) {\n const imageProps = formatImageProps({\n options: {\n dataSource: compDataSource,\n },\n parameters: allParametrs,\n });\n moduleDataRes.compProps = {\n ...(moduleDataRes?.compProps || {}),\n ...imageProps,\n };\n }\n\n if (compType === 'highCodeComp') {\n const highCodeCompProps = formatHighCodeProps({\n options: { fileProps },\n parameters: allParametrs,\n });\n moduleDataRes.compProps = {\n ...(moduleDataRes?.compProps || {}),\n ...highCodeCompProps,\n };\n }\n\n if (compType === 'table') {\n const tableProps = formatTableProps({\n options: {\n ...otherCompProps,\n columns: compColumns,\n dataSource: compDataSource,\n attrs,\n tableBodyHeight,\n },\n staticCodeMap,\n parameters: allParametrs,\n });\n moduleDataRes.compProps = {\n ...(moduleDataRes?.compProps || {}),\n ...tableProps,\n };\n }\n if (compType === 'form') {\n const formProps = formatFormProps({\n options: {\n column,\n children,\n },\n parameters: allParametrs,\n staticCodeMap,\n staticOptionsMap,\n });\n moduleDataRes.compProps = {\n ...(moduleDataRes?.compProps || {}),\n ...formProps,\n };\n }\n if (compType === 'descriptions') {\n const descriptionsProps = formatDescriptionsProps({\n options: {\n column,\n attrs,\n },\n parameters: allParametrs,\n staticCodeMap,\n });\n moduleDataRes.compProps = {\n ...(moduleDataRes?.compProps || {}),\n ...descriptionsProps,\n };\n }\n if (compType === 'loop') {\n const loopProps = formatLoopProps({\n options: {\n dataSource: compDataSource,\n },\n parameters: allParametrs,\n staticCodeMap,\n });\n const loopChilds:({[key:string]:any}|null)[] = [];\n if (\n Array.isArray(loopProps?.dataSource) && loopProps?.dataSource?.length > 0 &&\n Array.isArray(children) && children.length > 0\n ) {\n loopProps?.dataSource.forEach((dataItem) => {\n const dataItemKey = moduleDataRes?.compProps?.rowKey && dataItem?.[moduleDataRes?.compProps?.rowKey] ?\n dataItem?.[moduleDataRes?.compProps?.rowKey] : '';\n loopChilds.push({\n id: dataItemKey,\n key: dataItemKey,\n compType: 'loopItem',\n compProps: {},\n originItem: dataItem,\n children: children.map((item:{[key:string]:any}) => {\n const loopChildInfo = formatModuleData({\n moduleData: item,\n parentModuleData: moduleData,\n loopItemData: typeof dataItem === 'object' ? dataItem : { item: dataItem },\n parameters,\n staticCodeList,\n disabled,\n pageData,\n });\n return loopChildInfo;\n }),\n });\n });\n } else if (Array.isArray(children) && children.length > 0) {\n loopChilds.push({\n id: '1',\n key: '1',\n compType: 'loopItem',\n compProps: {},\n originItem: {},\n children: children.map((item:{[key:string]:any}) => {\n const loopChildInfo = formatModuleData({\n moduleData: item,\n parentModuleData: moduleData,\n loopItemData: {},\n parameters,\n staticCodeList,\n disabled,\n pageData,\n });\n return loopChildInfo;\n }),\n });\n }\n moduleDataRes.compProps = {\n ...(moduleDataRes?.compProps || {}),\n ...loopProps,\n column,\n children: loopChilds,\n };\n }\n if (['list', 'card', 'recommendList'].includes(compType)) {\n const resProps = formatListProps({\n options: {\n ...otherCompProps,\n rowKey,\n rowSelection,\n attrs,\n itemLabel: listItemLabel,\n itemContent: listItemContent,\n itemDescribe: listItemDescribe,\n dataSource: compDataSource,\n },\n urlPrefix,\n staticCodeMap,\n parameters: allParametrs,\n });\n moduleDataRes.compProps = {\n ...(moduleDataRes.compProps || {}),\n ...resProps,\n };\n }\n if (['echartBar', 'echartLine'].includes(compType)) {\n const echartProps = formatEchartLineProps({\n options: { ...otherCompProps, dataSource: compDataSource },\n parameters: allParametrs,\n });\n\n moduleDataRes.compProps = {\n ...(moduleDataRes.compProps || {}),\n ...echartProps,\n };\n }\n if (compType === 'echartPie') {\n const echartProps = formatEchartPieProps({\n options: {\n dataSource: compDataSource,\n ...otherCompProps,\n },\n parameters: allParametrs,\n });\n\n moduleDataRes.compProps = {\n ...(moduleDataRes.compProps || {}),\n ...echartProps,\n };\n }\n }\n if (compType === 'steps') {\n const stepsProps = formatStepsProps({\n options: {\n dataSource: compDataSource,\n ...otherCompProps,\n },\n parameters: allParametrs,\n });\n moduleDataRes.compProps = {\n ...(moduleDataRes.compProps || {}),\n ...stepsProps,\n };\n }\n moduleDataRes.compProps.style = formatStyleProps(moduleData, parentModuleData);\n // 所有的模版 拼一个组装数据的key值\n if (moduleData?.compProps && fieldName) {\n moduleDataRes.compProps.fieldName = fieldName;\n }\n }\n \n // console.log('moduleDataRes', moduleDataRes);\n return moduleDataRes;\n};\n\nexport default formatModuleData;\n"],
5
+ "mappings": "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",
6
6
  "names": ["_a", "_b", "_c"]
7
7
  }
@@ -64,7 +64,7 @@ var formatFormProps = ({
64
64
  const initValues = {};
65
65
  if (Array.isArray(children) && children.length > 0) {
66
66
  children.forEach((attrItem) => {
67
- var _a, _b, _c, _d, _e, _f, _g, _h, _i, _j, _k, _l, _m, _n, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z, _A;
67
+ var _a, _b, _c, _d, _e, _f, _g, _h, _i, _j, _k, _l, _m, _n, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y;
68
68
  const {
69
69
  compProps: attrCompProps,
70
70
  formProps: attrFormProps
@@ -109,25 +109,18 @@ var formatFormProps = ({
109
109
  delete formItem.formProps.extend;
110
110
  }
111
111
  if ((attrItem == null ? void 0 : attrItem.compType) === "table") {
112
- const {
113
- columns,
114
- dataSource
115
- } = (0, import_formatTableProps.default)({
116
- options: {
117
- attrs: (_b = attrItem == null ? void 0 : attrItem.compProps) == null ? void 0 : _b.attrs,
118
- dataSource: (_c = attrItem == null ? void 0 : attrItem.compProps) == null ? void 0 : _c.dataSource
119
- },
112
+ const tableProps = (0, import_formatTableProps.default)({
113
+ options: attrItem == null ? void 0 : attrItem.compProps,
120
114
  staticCodeMap,
121
115
  parameters
122
116
  });
123
- const rowKeys = (0, import_treeUtils.getDataArr)((_d = attrItem == null ? void 0 : attrItem.compProps) == null ? void 0 : _d.rowKey);
117
+ const rowKeys = (0, import_treeUtils.getDataArr)((_b = attrItem == null ? void 0 : attrItem.compProps) == null ? void 0 : _b.rowKey);
124
118
  formItem.props = {
125
119
  ...formItem.props,
126
- columns,
127
- dataSource,
120
+ ...tableProps,
128
121
  rowKey: (rowKeys == null ? void 0 : rowKeys.length) > 0 ? rowKeys == null ? void 0 : rowKeys[(rowKeys == null ? void 0 : rowKeys.length) - 1] : "key",
129
- hasSelectAll: ((_e = attrItem == null ? void 0 : attrItem.compProps) == null ? void 0 : _e.rowSelection) && ((_f = attrItem == null ? void 0 : attrItem.compProps) == null ? void 0 : _f.hasSelectAll) ? (_g = attrItem == null ? void 0 : attrItem.compProps) == null ? void 0 : _g.hasSelectAll : null,
130
- rowSelection: ((_h = attrItem == null ? void 0 : attrItem.compProps) == null ? void 0 : _h.rowSelection) || { type: "radio" }
122
+ hasSelectAll: ((_c = attrItem == null ? void 0 : attrItem.compProps) == null ? void 0 : _c.rowSelection) && ((_d = attrItem == null ? void 0 : attrItem.compProps) == null ? void 0 : _d.hasSelectAll) ? (_e = attrItem == null ? void 0 : attrItem.compProps) == null ? void 0 : _e.hasSelectAll : null,
123
+ rowSelection: ((_f = attrItem == null ? void 0 : attrItem.compProps) == null ? void 0 : _f.rowSelection) || { type: "radio" }
131
124
  };
132
125
  }
133
126
  if (["list", "card"].includes(attrItem == null ? void 0 : attrItem.compType)) {
@@ -139,13 +132,13 @@ var formatFormProps = ({
139
132
  });
140
133
  formItem.props = {
141
134
  ...resProps,
142
- rowSelection: ((_i = attrItem == null ? void 0 : attrItem.compProps) == null ? void 0 : _i.rowSelection) || { type: "radio" }
135
+ rowSelection: ((_g = attrItem == null ? void 0 : attrItem.compProps) == null ? void 0 : _g.rowSelection) || { type: "radio" }
143
136
  };
144
137
  }
145
138
  if ((attrItem == null ? void 0 : attrItem.compType) === "upload") {
146
- if (((_j = attrItem == null ? void 0 : attrItem.compProps) == null ? void 0 : _j.data) && ((_l = Object.keys((_k = attrItem == null ? void 0 : attrItem.compProps) == null ? void 0 : _k.data)) == null ? void 0 : _l.length) > 0) {
139
+ if (((_h = attrItem == null ? void 0 : attrItem.compProps) == null ? void 0 : _h.data) && ((_j = Object.keys((_i = attrItem == null ? void 0 : attrItem.compProps) == null ? void 0 : _i.data)) == null ? void 0 : _j.length) > 0) {
147
140
  const uploadDataParams = {};
148
- Object.keys((_m = attrItem == null ? void 0 : attrItem.compProps) == null ? void 0 : _m.data).forEach((paramsName) => {
141
+ Object.keys((_k = attrItem == null ? void 0 : attrItem.compProps) == null ? void 0 : _k.data).forEach((paramsName) => {
149
142
  var _a2, _b2, _c2, _d2, _e2, _f2;
150
143
  if (/\$\{(.+?)\}/g.test((_b2 = (_a2 = attrItem == null ? void 0 : attrItem.compProps) == null ? void 0 : _a2.data) == null ? void 0 : _b2[paramsName])) {
151
144
  uploadDataParams[paramsName] = (0, import_treeUtils.getParamsContentByParamKeys)((_d2 = (_c2 = attrItem == null ? void 0 : attrItem.compProps) == null ? void 0 : _c2.data) == null ? void 0 : _d2[paramsName], parameters);
@@ -158,25 +151,25 @@ var formatFormProps = ({
158
151
  data: uploadDataParams
159
152
  };
160
153
  }
161
- if (((_o = (_n = attrItem == null ? void 0 : attrItem.compProps) == null ? void 0 : _n.action) == null ? void 0 : _o.url) && typeof ((_q = (_p = attrItem == null ? void 0 : attrItem.compProps) == null ? void 0 : _p.action) == null ? void 0 : _q.url) === "string") {
154
+ if (((_m = (_l = attrItem == null ? void 0 : attrItem.compProps) == null ? void 0 : _l.action) == null ? void 0 : _m.url) && typeof ((_o = (_n = attrItem == null ? void 0 : attrItem.compProps) == null ? void 0 : _n.action) == null ? void 0 : _o.url) === "string") {
162
155
  formItem.props = {
163
156
  ...formItem.props,
164
- action: (_s = (_r = attrItem == null ? void 0 : attrItem.compProps) == null ? void 0 : _r.action) == null ? void 0 : _s.url
157
+ action: (_q = (_p = attrItem == null ? void 0 : attrItem.compProps) == null ? void 0 : _p.action) == null ? void 0 : _q.url
165
158
  };
166
159
  }
167
160
  }
168
- let otherRules = Array.isArray(otherAttrFormProps == null ? void 0 : otherAttrFormProps.rules) ? (_t = otherAttrFormProps == null ? void 0 : otherAttrFormProps.rules) == null ? void 0 : _t.filter((item) => !(item == null ? void 0 : item.required)) : [];
169
- if ((_u = attrItem == null ? void 0 : attrItem.formProps) == null ? void 0 : _u.defaultValue) {
161
+ let otherRules = Array.isArray(otherAttrFormProps == null ? void 0 : otherAttrFormProps.rules) ? (_r = otherAttrFormProps == null ? void 0 : otherAttrFormProps.rules) == null ? void 0 : _r.filter((item) => !(item == null ? void 0 : item.required)) : [];
162
+ if ((_s = attrItem == null ? void 0 : attrItem.formProps) == null ? void 0 : _s.defaultValue) {
170
163
  let attrDefVal = "";
171
164
  if ((attrItem == null ? void 0 : attrItem.compType) === "upload") {
172
165
  formItem.formProps = {
173
166
  ...formItem.formProps,
174
167
  valuePropName: "fileList"
175
168
  };
176
- attrDefVal = (0, import_treeUtils.getParamsContentByParamKeys)((_v = attrItem == null ? void 0 : attrItem.formProps) == null ? void 0 : _v.defaultValue, parameters) || [];
169
+ attrDefVal = (0, import_treeUtils.getParamsContentByParamKeys)((_t = attrItem == null ? void 0 : attrItem.formProps) == null ? void 0 : _t.defaultValue, parameters) || [];
177
170
  } else {
178
171
  delete formItem.formProps.valuePropName;
179
- attrDefVal = (0, import_treeUtils.replaceParamsValue)((_w = attrItem == null ? void 0 : attrItem.formProps) == null ? void 0 : _w.defaultValue, parameters) || "";
172
+ attrDefVal = (0, import_treeUtils.replaceParamsValue)((_u = attrItem == null ? void 0 : attrItem.formProps) == null ? void 0 : _u.defaultValue, parameters) || "";
180
173
  }
181
174
  initValues[otherAttrFormProps == null ? void 0 : otherAttrFormProps.name] = attrDefVal;
182
175
  }
@@ -221,8 +214,8 @@ var formatFormProps = ({
221
214
  if (dataOptions) {
222
215
  const attrItemDataOptions = dataOptions || {};
223
216
  if (attrItemDataOptions == null ? void 0 : attrItemDataOptions.staticCode) {
224
- if ((attrItem == null ? void 0 : attrItem.defaultValue) && (staticCodeMap == null ? void 0 : staticCodeMap[attrItemDataOptions == null ? void 0 : attrItemDataOptions.staticCode]) && ((_x = staticCodeMap == null ? void 0 : staticCodeMap[attrItemDataOptions == null ? void 0 : attrItemDataOptions.staticCode]) == null ? void 0 : _x[attrItem == null ? void 0 : attrItem.defaultValue])) {
225
- initValues[attrItem == null ? void 0 : attrItem.attrCode] = (_y = staticCodeMap == null ? void 0 : staticCodeMap[attrItemDataOptions == null ? void 0 : attrItemDataOptions.staticCode]) == null ? void 0 : _y[attrItem == null ? void 0 : attrItem.defaultValue];
217
+ if ((attrItem == null ? void 0 : attrItem.defaultValue) && (staticCodeMap == null ? void 0 : staticCodeMap[attrItemDataOptions == null ? void 0 : attrItemDataOptions.staticCode]) && ((_v = staticCodeMap == null ? void 0 : staticCodeMap[attrItemDataOptions == null ? void 0 : attrItemDataOptions.staticCode]) == null ? void 0 : _v[attrItem == null ? void 0 : attrItem.defaultValue])) {
218
+ initValues[attrItem == null ? void 0 : attrItem.attrCode] = (_w = staticCodeMap == null ? void 0 : staticCodeMap[attrItemDataOptions == null ? void 0 : attrItemDataOptions.staticCode]) == null ? void 0 : _w[attrItem == null ? void 0 : attrItem.defaultValue];
226
219
  }
227
220
  const formatToTreeData = (optionsItems) => {
228
221
  if (Array.isArray(optionsItems)) {
@@ -246,8 +239,8 @@ var formatFormProps = ({
246
239
  };
247
240
  }
248
241
  } else if ((attrItemDataOptions == null ? void 0 : attrItemDataOptions.contextOptions) && parameters) {
249
- const optLabelStr = (_z = attrItemDataOptions == null ? void 0 : attrItemDataOptions.contextOptions) == null ? void 0 : _z.label;
250
- const optValueStr = (_A = attrItemDataOptions == null ? void 0 : attrItemDataOptions.contextOptions) == null ? void 0 : _A.value;
242
+ const optLabelStr = (_x = attrItemDataOptions == null ? void 0 : attrItemDataOptions.contextOptions) == null ? void 0 : _x.label;
243
+ const optValueStr = (_y = attrItemDataOptions == null ? void 0 : attrItemDataOptions.contextOptions) == null ? void 0 : _y.value;
251
244
  const splitParamsPath = (paramsPathStr) => {
252
245
  if (typeof paramsPathStr === "string") {
253
246
  const paramsPathArr = paramsPathStr.replace(/\$\{|\}/g, "").split(".");
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../../../src/formatModule/helpers/formatFormProps.ts"],
4
- "sourcesContent": ["import { get } from 'lodash';\nimport { stringScriptExecution } from './stringScriptExecution';\nimport { getDataArr, getParamsContentByParamKeys, replaceParamsValue } from '../../treeUtils';\nimport formatTableProps from './formatTableProps';\nimport formatListProps from './formatListProps';\nimport formRulsRegMap from './formRulsRegMap';\nimport urlPrefix from './urlPrefix';\nimport patternTransitionRegExp from './patternTransitionRegExp';\n\nexport type formatFormPropsType = {\n options?: {\n column?: number;\n children?: {[key:string]: any}[]\n }\n parameters: {[key:string]: any};\n staticCodeMap: {[key:string]: any};\n staticOptionsMap: {[key:string]: any};\n}\n\nconst formatOptionsRecursively = (data: any[], labelApiPath: string[], valApiPath: string[]): any[] => {\n return data.map((item) => {\n const option: any = {\n label: get(item, labelApiPath),\n value: get(item, valApiPath),\n };\n \n // 如果存在children属性,递归处理\n if (item.children && Array.isArray(item.children)) {\n option.children = formatOptionsRecursively(item.children, labelApiPath, valApiPath);\n }\n \n return option;\n });\n};\n\nconst formatFormProps = ({\n parameters,\n staticCodeMap,\n staticOptionsMap,\n options = {},\n}: formatFormPropsType):{[key:string]: any} => {\n const { children, column } = options;\n const res:{[key:string]: any} = {};\n const formItems: { [key: string]: any }[] = [];\n const initValues: { [key: string]: any } = {};\n if (Array.isArray(children) && children.length > 0) {\n children.forEach((attrItem) => {\n const {\n compProps: attrCompProps,\n formProps: attrFormProps,\n } = attrItem || {};\n const {\n required,\n extend,\n display: attrFormPropsDisplay,\n ...otherAttrFormProps\n } = attrFormProps || {};\n const {\n dataOptions,\n ...otherAttrCompProps\n } = attrCompProps || {};\n const formItem:{[key:string]: any} = {\n key: attrItem?.id,\n label: attrFormProps?.label,\n name: attrFormProps?.name,\n type: attrItem?.compType,\n props: otherAttrCompProps || {},\n formProps: otherAttrFormProps || {},\n originModule: attrItem, // 以下是组件配置属性,用于属性编辑\n };\n if (extend?.type === 'text' && extend?.text && typeof extend?.text === 'string') {\n formItem.formProps = {\n ...formItem.formProps,\n extend: {\n ...extend,\n text: replaceParamsValue(extend?.text, parameters),\n },\n };\n } else if (extend?.type === 'controlBtns' && Array.isArray(extend?.controlBtns) && extend?.controlBtns?.length > 0) {\n formItem.formProps = {\n ...formItem.formProps,\n extend: {\n ...extend,\n controlBtns: extend?.controlBtns,\n },\n };\n } else {\n delete formItem.formProps.extend;\n }\n if (attrItem?.compType === 'table') {\n const {\n columns,\n dataSource,\n } = formatTableProps({\n options: {\n attrs: attrItem?.compProps?.attrs,\n dataSource: attrItem?.compProps?.dataSource,\n },\n staticCodeMap,\n parameters,\n });\n const rowKeys = getDataArr(attrItem?.compProps?.rowKey);\n formItem.props = {\n ...formItem.props,\n columns,\n dataSource,\n rowKey: rowKeys?.length > 0 ? rowKeys?.[rowKeys?.length - 1] : 'key',\n hasSelectAll: (attrItem?.compProps?.rowSelection && attrItem?.compProps?.hasSelectAll) ? attrItem?.compProps?.hasSelectAll : null,\n rowSelection: attrItem?.compProps?.rowSelection || { type: 'radio' },\n };\n }\n if (['list', 'card'].includes(attrItem?.compType)) {\n const resProps = formatListProps({\n options: attrItem?.compProps,\n staticCodeMap,\n parameters,\n urlPrefix,\n });\n formItem.props = {\n ...resProps,\n rowSelection: attrItem?.compProps?.rowSelection || { type: 'radio' },\n };\n }\n if (attrItem?.compType === 'upload') {\n if (\n attrItem?.compProps?.data &&\n Object.keys(attrItem?.compProps?.data)?.length > 0\n ) {\n const uploadDataParams:{[key:string]: any} = {};\n Object.keys(attrItem?.compProps?.data).forEach(paramsName => {\n if (/\\$\\{(.+?)\\}/g.test(attrItem?.compProps?.data?.[paramsName])) {\n // const valParamArr = getDataArr(attrItem?.compProps?.data?.[paramsName]);\n uploadDataParams[paramsName] = getParamsContentByParamKeys(attrItem?.compProps?.data?.[paramsName], parameters);\n } else {\n uploadDataParams[paramsName] = attrItem?.compProps?.data?.[paramsName];\n }\n });\n formItem.props = {\n ...formItem.props,\n data: uploadDataParams,\n };\n }\n if (\n attrItem?.compProps?.action?.url &&\n typeof attrItem?.compProps?.action?.url === 'string'\n ) {\n formItem.props = {\n ...formItem.props,\n action: attrItem?.compProps?.action?.url,\n };\n }\n }\n let otherRules = Array.isArray(otherAttrFormProps?.rules) ? otherAttrFormProps?.rules?.filter((item: any) => !item?.required) : [];\n if (attrItem?.formProps?.defaultValue) {\n let attrDefVal:any = '';\n if (attrItem?.compType === 'upload') {\n formItem.formProps = {\n ...formItem.formProps,\n valuePropName: 'fileList',\n };\n attrDefVal = getParamsContentByParamKeys(attrItem?.formProps?.defaultValue, parameters) || [];\n } else {\n delete formItem.formProps.valuePropName;\n attrDefVal = replaceParamsValue(attrItem?.formProps?.defaultValue, parameters) || '';\n }\n initValues[otherAttrFormProps?.name] = attrDefVal;\n }\n otherRules = otherRules.map((item: {[key:string]: any}) => ({\n pattern: item?.type === 'custom' ? patternTransitionRegExp(item?.pattern) : (\n formRulsRegMap?.[item?.type] || ''\n ),\n message: item?.message,\n }));\n if (typeof attrFormPropsDisplay === 'boolean' || typeof attrFormPropsDisplay === 'string') {\n let formItemDisplay:boolean = true;\n if (typeof attrFormPropsDisplay === 'boolean') {\n formItemDisplay = attrFormPropsDisplay;\n } else if (typeof attrFormPropsDisplay === 'string' && attrFormPropsDisplay) {\n // const scriptCodeStr = stringPramarsValTransition(attrFormPropsDisplay, parameters);\n const codeExtendVal = stringScriptExecution(\n attrFormPropsDisplay,\n parameters,\n );\n formItemDisplay = codeExtendVal;\n }\n formItem.display = formItemDisplay;\n }\n if (typeof required === 'boolean' || typeof required === 'string') {\n let formItemRequired:boolean = false;\n if (typeof required === 'boolean') {\n formItemRequired = required;\n } else if (typeof required === 'string' && required) {\n // const scriptCodeStr = stringPramarsValTransition(required, parameters);\n const codeExtendVal = stringScriptExecution(required, parameters);\n formItemRequired = typeof codeExtendVal === 'boolean' ? codeExtendVal : false;\n }\n formItem.formProps = {\n ...formItem.formProps,\n rules: formItemRequired ? [{ required: formItemRequired }, ...otherRules] : otherRules,\n };\n } else {\n formItem.formProps = {\n ...formItem.formProps,\n rules: otherRules,\n };\n }\n if (dataOptions) {\n const attrItemDataOptions = dataOptions || {};\n if (attrItemDataOptions?.staticCode) {\n if (\n attrItem?.defaultValue &&\n staticCodeMap?.[attrItemDataOptions?.staticCode] &&\n staticCodeMap?.[attrItemDataOptions?.staticCode]?.[attrItem?.defaultValue]\n ) {\n initValues[attrItem?.attrCode] = staticCodeMap?.[attrItemDataOptions?.staticCode]?.[attrItem?.defaultValue];\n }\n const formatToTreeData = (optionsItems: {[key:string]: any}[]):{[key:string]: any}[] => {\n if (Array.isArray(optionsItems)) {\n return optionsItems.map(optItem => ({\n title: optItem?.label,\n value: optItem?.value,\n children: formatToTreeData(optItem?.children),\n }));\n }\n return [];\n };\n if (attrItem?.compType === 'treeSelect') {\n formItem.props = {\n ...formItem.props,\n treeData: formatToTreeData(staticOptionsMap?.[attrItemDataOptions?.staticCode]),\n };\n } else {\n formItem.props = {\n ...formItem.props,\n options: Array.isArray(staticOptionsMap?.[attrItemDataOptions?.staticCode]) ?\n staticOptionsMap?.[attrItemDataOptions?.staticCode] : [],\n };\n }\n } else if (attrItemDataOptions?.contextOptions && parameters) {\n const optLabelStr = attrItemDataOptions?.contextOptions?.label;\n const optValueStr = attrItemDataOptions?.contextOptions?.value;\n const splitParamsPath = (paramsPathStr: string) => {\n if (typeof paramsPathStr === 'string') {\n const paramsPathArr = paramsPathStr.replace(/\\$\\{|\\}/g, '').split('.');\n return paramsPathArr?.filter((item:string, idx:number) => !(idx === 0 && item === 'root'));\n }\n return [];\n };\n if (optValueStr) {\n const optValArr = splitParamsPath(optValueStr);\n const optLabelArr = splitParamsPath(optLabelStr);\n const optData: any[] = Array.isArray(parameters?.[optValArr?.[0]]) ? parameters?.[optValArr?.[0]] : [];\n const labelApiPath: string[] = optLabelArr?.slice(2);\n const valApiPath: string[] = optValArr?.slice(2);\n \n formItem.props = {\n ...formItem.props,\n options: formatOptionsRecursively(optData, labelApiPath, valApiPath),\n };\n }\n }\n }\n formItems.push(formItem);\n });\n }\n if (typeof column === 'number' && column > 1) {\n res.formMode = 'grid';\n res.span = 24 / column;\n } else {\n res.formMode = 'default';\n delete res.span;\n }\n res.formItems = formItems;\n res.initialValues = initValues;\n return res;\n};\n\nexport default formatFormProps;\n"],
5
- "mappings": "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",
4
+ "sourcesContent": ["import { get } from 'lodash';\nimport { stringScriptExecution } from './stringScriptExecution';\nimport { getDataArr, getParamsContentByParamKeys, replaceParamsValue } from '../../treeUtils';\nimport formatTableProps from './formatTableProps';\nimport formatListProps from './formatListProps';\nimport formRulsRegMap from './formRulsRegMap';\nimport urlPrefix from './urlPrefix';\nimport patternTransitionRegExp from './patternTransitionRegExp';\n\nexport type formatFormPropsType = {\n options?: {\n column?: number;\n children?: {[key:string]: any}[]\n }\n parameters: {[key:string]: any};\n staticCodeMap: {[key:string]: any};\n staticOptionsMap: {[key:string]: any};\n}\n\nconst formatOptionsRecursively = (data: any[], labelApiPath: string[], valApiPath: string[]): any[] => {\n return data.map((item) => {\n const option: any = {\n label: get(item, labelApiPath),\n value: get(item, valApiPath),\n };\n \n // 如果存在children属性,递归处理\n if (item.children && Array.isArray(item.children)) {\n option.children = formatOptionsRecursively(item.children, labelApiPath, valApiPath);\n }\n \n return option;\n });\n};\n\nconst formatFormProps = ({\n parameters,\n staticCodeMap,\n staticOptionsMap,\n options = {},\n}: formatFormPropsType):{[key:string]: any} => {\n const { children, column } = options;\n const res:{[key:string]: any} = {};\n const formItems: { [key: string]: any }[] = [];\n const initValues: { [key: string]: any } = {};\n if (Array.isArray(children) && children.length > 0) {\n children.forEach((attrItem) => {\n const {\n compProps: attrCompProps,\n formProps: attrFormProps,\n } = attrItem || {};\n const {\n required,\n extend,\n display: attrFormPropsDisplay,\n ...otherAttrFormProps\n } = attrFormProps || {};\n const {\n dataOptions,\n ...otherAttrCompProps\n } = attrCompProps || {};\n const formItem:{[key:string]: any} = {\n key: attrItem?.id,\n label: attrFormProps?.label,\n name: attrFormProps?.name,\n type: attrItem?.compType,\n props: otherAttrCompProps || {},\n formProps: otherAttrFormProps || {},\n originModule: attrItem, // 以下是组件配置属性,用于属性编辑\n };\n if (extend?.type === 'text' && extend?.text && typeof extend?.text === 'string') {\n formItem.formProps = {\n ...formItem.formProps,\n extend: {\n ...extend,\n text: replaceParamsValue(extend?.text, parameters),\n },\n };\n } else if (extend?.type === 'controlBtns' && Array.isArray(extend?.controlBtns) && extend?.controlBtns?.length > 0) {\n formItem.formProps = {\n ...formItem.formProps,\n extend: {\n ...extend,\n controlBtns: extend?.controlBtns,\n },\n };\n } else {\n delete formItem.formProps.extend;\n }\n if (attrItem?.compType === 'table') {\n const tableProps = formatTableProps({\n options: attrItem?.compProps,\n staticCodeMap,\n parameters,\n });\n const rowKeys = getDataArr(attrItem?.compProps?.rowKey);\n formItem.props = {\n ...formItem.props,\n ...tableProps,\n rowKey: rowKeys?.length > 0 ? rowKeys?.[rowKeys?.length - 1] : 'key',\n hasSelectAll: (attrItem?.compProps?.rowSelection && attrItem?.compProps?.hasSelectAll) ? attrItem?.compProps?.hasSelectAll : null,\n rowSelection: attrItem?.compProps?.rowSelection || { type: 'radio' },\n };\n }\n if (['list', 'card'].includes(attrItem?.compType)) {\n const resProps = formatListProps({\n options: attrItem?.compProps,\n staticCodeMap,\n parameters,\n urlPrefix,\n });\n formItem.props = {\n ...resProps,\n rowSelection: attrItem?.compProps?.rowSelection || { type: 'radio' },\n };\n }\n if (attrItem?.compType === 'upload') {\n if (\n attrItem?.compProps?.data &&\n Object.keys(attrItem?.compProps?.data)?.length > 0\n ) {\n const uploadDataParams:{[key:string]: any} = {};\n Object.keys(attrItem?.compProps?.data).forEach(paramsName => {\n if (/\\$\\{(.+?)\\}/g.test(attrItem?.compProps?.data?.[paramsName])) {\n // const valParamArr = getDataArr(attrItem?.compProps?.data?.[paramsName]);\n uploadDataParams[paramsName] = getParamsContentByParamKeys(attrItem?.compProps?.data?.[paramsName], parameters);\n } else {\n uploadDataParams[paramsName] = attrItem?.compProps?.data?.[paramsName];\n }\n });\n formItem.props = {\n ...formItem.props,\n data: uploadDataParams,\n };\n }\n if (\n attrItem?.compProps?.action?.url &&\n typeof attrItem?.compProps?.action?.url === 'string'\n ) {\n formItem.props = {\n ...formItem.props,\n action: attrItem?.compProps?.action?.url,\n };\n }\n }\n let otherRules = Array.isArray(otherAttrFormProps?.rules) ? otherAttrFormProps?.rules?.filter((item: any) => !item?.required) : [];\n if (attrItem?.formProps?.defaultValue) {\n let attrDefVal:any = '';\n if (attrItem?.compType === 'upload') {\n formItem.formProps = {\n ...formItem.formProps,\n valuePropName: 'fileList',\n };\n attrDefVal = getParamsContentByParamKeys(attrItem?.formProps?.defaultValue, parameters) || [];\n } else {\n delete formItem.formProps.valuePropName;\n attrDefVal = replaceParamsValue(attrItem?.formProps?.defaultValue, parameters) || '';\n }\n initValues[otherAttrFormProps?.name] = attrDefVal;\n }\n otherRules = otherRules.map((item: {[key:string]: any}) => ({\n pattern: item?.type === 'custom' ? patternTransitionRegExp(item?.pattern) : (\n formRulsRegMap?.[item?.type] || ''\n ),\n message: item?.message,\n }));\n if (typeof attrFormPropsDisplay === 'boolean' || typeof attrFormPropsDisplay === 'string') {\n let formItemDisplay:boolean = true;\n if (typeof attrFormPropsDisplay === 'boolean') {\n formItemDisplay = attrFormPropsDisplay;\n } else if (typeof attrFormPropsDisplay === 'string' && attrFormPropsDisplay) {\n // const scriptCodeStr = stringPramarsValTransition(attrFormPropsDisplay, parameters);\n const codeExtendVal = stringScriptExecution(\n attrFormPropsDisplay,\n parameters,\n );\n formItemDisplay = codeExtendVal;\n }\n formItem.display = formItemDisplay;\n }\n if (typeof required === 'boolean' || typeof required === 'string') {\n let formItemRequired:boolean = false;\n if (typeof required === 'boolean') {\n formItemRequired = required;\n } else if (typeof required === 'string' && required) {\n // const scriptCodeStr = stringPramarsValTransition(required, parameters);\n const codeExtendVal = stringScriptExecution(required, parameters);\n formItemRequired = typeof codeExtendVal === 'boolean' ? codeExtendVal : false;\n }\n formItem.formProps = {\n ...formItem.formProps,\n rules: formItemRequired ? [{ required: formItemRequired }, ...otherRules] : otherRules,\n };\n } else {\n formItem.formProps = {\n ...formItem.formProps,\n rules: otherRules,\n };\n }\n if (dataOptions) {\n const attrItemDataOptions = dataOptions || {};\n if (attrItemDataOptions?.staticCode) {\n if (\n attrItem?.defaultValue &&\n staticCodeMap?.[attrItemDataOptions?.staticCode] &&\n staticCodeMap?.[attrItemDataOptions?.staticCode]?.[attrItem?.defaultValue]\n ) {\n initValues[attrItem?.attrCode] = staticCodeMap?.[attrItemDataOptions?.staticCode]?.[attrItem?.defaultValue];\n }\n const formatToTreeData = (optionsItems: {[key:string]: any}[]):{[key:string]: any}[] => {\n if (Array.isArray(optionsItems)) {\n return optionsItems.map(optItem => ({\n title: optItem?.label,\n value: optItem?.value,\n children: formatToTreeData(optItem?.children),\n }));\n }\n return [];\n };\n if (attrItem?.compType === 'treeSelect') {\n formItem.props = {\n ...formItem.props,\n treeData: formatToTreeData(staticOptionsMap?.[attrItemDataOptions?.staticCode]),\n };\n } else {\n formItem.props = {\n ...formItem.props,\n options: Array.isArray(staticOptionsMap?.[attrItemDataOptions?.staticCode]) ?\n staticOptionsMap?.[attrItemDataOptions?.staticCode] : [],\n };\n }\n } else if (attrItemDataOptions?.contextOptions && parameters) {\n const optLabelStr = attrItemDataOptions?.contextOptions?.label;\n const optValueStr = attrItemDataOptions?.contextOptions?.value;\n const splitParamsPath = (paramsPathStr: string) => {\n if (typeof paramsPathStr === 'string') {\n const paramsPathArr = paramsPathStr.replace(/\\$\\{|\\}/g, '').split('.');\n return paramsPathArr?.filter((item:string, idx:number) => !(idx === 0 && item === 'root'));\n }\n return [];\n };\n if (optValueStr) {\n const optValArr = splitParamsPath(optValueStr);\n const optLabelArr = splitParamsPath(optLabelStr);\n const optData: any[] = Array.isArray(parameters?.[optValArr?.[0]]) ? parameters?.[optValArr?.[0]] : [];\n const labelApiPath: string[] = optLabelArr?.slice(2);\n const valApiPath: string[] = optValArr?.slice(2);\n \n formItem.props = {\n ...formItem.props,\n options: formatOptionsRecursively(optData, labelApiPath, valApiPath),\n };\n }\n }\n }\n formItems.push(formItem);\n });\n }\n if (typeof column === 'number' && column > 1) {\n res.formMode = 'grid';\n res.span = 24 / column;\n } else {\n res.formMode = 'default';\n delete res.span;\n }\n res.formItems = formItems;\n res.initialValues = initValues;\n return res;\n};\n\nexport default formatFormProps;\n"],
5
+ "mappings": "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",
6
6
  "names": ["formatTableProps", "formatListProps", "urlPrefix", "_a", "_b", "_c", "_d", "_e", "_f", "patternTransitionRegExp", "formRulsRegMap"]
7
7
  }
@@ -0,0 +1,23 @@
1
+ export type formatImagePropsType = {
2
+ options?: {
3
+ dataSource?: string;
4
+ title?: string;
5
+ description?: string;
6
+ status?: string;
7
+ size?: string;
8
+ direction?: string;
9
+ statusMap?: {
10
+ wait?: string;
11
+ process?: string;
12
+ finish?: string;
13
+ error?: string;
14
+ };
15
+ };
16
+ parameters?: {
17
+ [key: string]: any;
18
+ };
19
+ };
20
+ declare const formatStepsProps: ({ parameters, options, }: formatImagePropsType) => {
21
+ [key: string]: any;
22
+ };
23
+ export default formatStepsProps;
@@ -0,0 +1,88 @@
1
+ var __defProp = Object.defineProperty;
2
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
3
+ var __getOwnPropNames = Object.getOwnPropertyNames;
4
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
5
+ var __export = (target, all) => {
6
+ for (var name in all)
7
+ __defProp(target, name, { get: all[name], enumerable: true });
8
+ };
9
+ var __copyProps = (to, from, except, desc) => {
10
+ if (from && typeof from === "object" || typeof from === "function") {
11
+ for (let key of __getOwnPropNames(from))
12
+ if (!__hasOwnProp.call(to, key) && key !== except)
13
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
14
+ }
15
+ return to;
16
+ };
17
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
18
+
19
+ // src/formatModule/helpers/formatStepsProps.ts
20
+ var formatStepsProps_exports = {};
21
+ __export(formatStepsProps_exports, {
22
+ default: () => formatStepsProps_default
23
+ });
24
+ module.exports = __toCommonJS(formatStepsProps_exports);
25
+ var import_treeUtils = require("../../treeUtils");
26
+ var import_lodash = require("lodash");
27
+ var formatStepsProps = ({
28
+ parameters,
29
+ options = {}
30
+ }) => {
31
+ const {
32
+ dataSource,
33
+ title,
34
+ description,
35
+ status,
36
+ direction,
37
+ statusMap
38
+ } = options;
39
+ const res = {
40
+ size: "small"
41
+ };
42
+ if (dataSource) {
43
+ const dataSourceArr = (0, import_treeUtils.getDataArr)(dataSource);
44
+ if (parameters) {
45
+ const dataSourceList = (0, import_lodash.get)(
46
+ parameters,
47
+ dataSourceArr
48
+ );
49
+ const replaceParamsValue = (contentStr, item) => {
50
+ return (0, import_treeUtils.replaceLoopBodyParamsValue)(
51
+ contentStr,
52
+ {
53
+ parameters,
54
+ loopParams: item,
55
+ loopData: dataSourceList,
56
+ loopSourceArr: dataSourceArr
57
+ }
58
+ );
59
+ };
60
+ if (Array.isArray(dataSourceList)) {
61
+ res.items = dataSourceList.map((item) => {
62
+ let recordStatus = status && replaceParamsValue(status, item) ? replaceParamsValue(status, item) : "";
63
+ if (statusMap && Object.keys(statusMap).length > 0) {
64
+ Object.keys(statusMap).forEach((key) => {
65
+ const statusValue = `${statusMap == null ? void 0 : statusMap[key]}` || "";
66
+ if (recordStatus && statusValue && `${recordStatus}` === statusValue) {
67
+ recordStatus = key;
68
+ }
69
+ });
70
+ }
71
+ return {
72
+ title: title ? replaceParamsValue(title, item) : "",
73
+ description: description ? replaceParamsValue(description, item) : "",
74
+ status: recordStatus || "default"
75
+ };
76
+ });
77
+ }
78
+ }
79
+ if (direction === "horizontal") {
80
+ res.labelPlacement = "vertical";
81
+ } else if (res == null ? void 0 : res.labelPlacement) {
82
+ delete res.labelPlacement;
83
+ }
84
+ }
85
+ return res;
86
+ };
87
+ var formatStepsProps_default = formatStepsProps;
88
+ //# sourceMappingURL=formatStepsProps.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../../../src/formatModule/helpers/formatStepsProps.ts"],
4
+ "sourcesContent": ["import { getDataArr, replaceLoopBodyParamsValue } from '../../treeUtils';\nimport { get } from 'lodash';\n\nexport type formatImagePropsType = {\n options?: {\n dataSource?: string,\n title?: string,\n description?: string,\n status?: string,\n size?: string,\n direction?: string,\n statusMap?: {\n wait?: string,\n process?: string,\n finish?: string,\n error?: string,\n }\n }\n parameters?: {[key:string]: any};\n}\n\nconst formatStepsProps = ({\n parameters,\n options = {},\n}: formatImagePropsType):{[key:string]: any} => {\n const {\n dataSource,\n title,\n description,\n status,\n direction,\n statusMap,\n } = options;\n const res:{[key:string]: any} = {\n size: 'small',\n };\n\n if (dataSource) {\n const dataSourceArr = getDataArr(dataSource);\n if (parameters) {\n const dataSourceList = get(\n parameters,\n dataSourceArr,\n );\n\n const replaceParamsValue = (\n contentStr: string,\n item: { [key: string]: any },\n ) => {\n return replaceLoopBodyParamsValue(\n contentStr, {\n parameters,\n loopParams: item,\n loopData: dataSourceList,\n loopSourceArr: dataSourceArr,\n });\n };\n if (Array.isArray(dataSourceList)) {\n res.items = dataSourceList.map(item => {\n // 获取状态值\n let recordStatus = status && replaceParamsValue(status, item) ? replaceParamsValue(status, item) : '';\n // 根据状态映射,转换状态值为步骤状态\n if (statusMap && Object.keys(statusMap).length > 0) {\n Object.keys(statusMap).forEach(key => {\n const statusValue = `${statusMap?.[key as keyof typeof statusMap]}` || '';\n if (recordStatus && statusValue && `${recordStatus}` === statusValue) {\n recordStatus = key;\n }\n });\n }\n return ({\n title: title ? replaceParamsValue(title, item) : '',\n description: description ? replaceParamsValue(description, item) : '',\n status: recordStatus || 'default',\n });\n });\n }\n }\n if (direction === 'horizontal') {\n res.labelPlacement = 'vertical';\n } else if (res?.labelPlacement) {\n delete res.labelPlacement;\n }\n }\n return res;\n};\n\nexport default formatStepsProps;\n"],
5
+ "mappings": ";;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,uBAAuD;AACvD,oBAAoB;AAoBpB,IAAM,mBAAmB,CAAC;AAAA,EACxB;AAAA,EACA,UAAU,CAAC;AACb,MAAgD;AAC9C,QAAM;AAAA,IACJ;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,EACF,IAAI;AACJ,QAAM,MAA0B;AAAA,IAC9B,MAAM;AAAA,EACR;AAEA,MAAI,YAAY;AACd,UAAM,oBAAgB,6BAAW,UAAU;AAC3C,QAAI,YAAY;AACd,YAAM,qBAAiB;AAAA,QACrB;AAAA,QACA;AAAA,MACF;AAEA,YAAM,qBAAqB,CACzB,YACA,SACG;AACH,mBAAO;AAAA,UACL;AAAA,UAAY;AAAA,YACV;AAAA,YACA,YAAY;AAAA,YACZ,UAAU;AAAA,YACV,eAAe;AAAA,UACjB;AAAA,QAAC;AAAA,MACL;AACA,UAAI,MAAM,QAAQ,cAAc,GAAG;AACjC,YAAI,QAAQ,eAAe,IAAI,UAAQ;AAErC,cAAI,eAAe,UAAU,mBAAmB,QAAQ,IAAI,IAAI,mBAAmB,QAAQ,IAAI,IAAI;AAEnG,cAAI,aAAa,OAAO,KAAK,SAAS,EAAE,SAAS,GAAG;AAClD,mBAAO,KAAK,SAAS,EAAE,QAAQ,SAAO;AACpC,oBAAM,cAAc,GAAG,uCAAY,UAAoC;AACvE,kBAAI,gBAAgB,eAAe,GAAG,mBAAmB,aAAa;AACpE,+BAAe;AAAA,cACjB;AAAA,YACF,CAAC;AAAA,UACH;AACA,iBAAQ;AAAA,YACN,OAAO,QAAQ,mBAAmB,OAAO,IAAI,IAAI;AAAA,YACjD,aAAa,cAAc,mBAAmB,aAAa,IAAI,IAAI;AAAA,YACnE,QAAQ,gBAAgB;AAAA,UAC1B;AAAA,QACF,CAAC;AAAA,MACH;AAAA,IACF;AACA,QAAI,cAAc,cAAc;AAC9B,UAAI,iBAAiB;AAAA,IACvB,WAAW,2BAAK,gBAAgB;AAC9B,aAAO,IAAI;AAAA,IACb;AAAA,EACF;AACA,SAAO;AACT;AAEA,IAAO,2BAAQ;",
6
+ "names": []
7
+ }
@@ -3,7 +3,14 @@ export type formatTablePropsType = {
3
3
  attrs?: {
4
4
  [key: string]: any;
5
5
  }[];
6
+ columns?: {
7
+ [key: string]: any;
8
+ }[];
6
9
  dataSource?: string;
10
+ columnWidth?: string;
11
+ columnMinWidth?: string;
12
+ columnMaxWidth?: string;
13
+ tableBodyHeight?: string;
7
14
  };
8
15
  staticCodeMap?: {
9
16
  [key: string]: any;
@@ -19,6 +26,10 @@ export type formatTablePropsExportType = {
19
26
  dataSource: {
20
27
  [key: string]: any;
21
28
  }[];
29
+ scroll?: {
30
+ y?: string;
31
+ x?: string;
32
+ };
22
33
  };
23
34
  declare const formatTableProps: ({ staticCodeMap, parameters, options, }: formatTablePropsType) => formatTablePropsExportType;
24
35
  export default formatTableProps;
@@ -32,11 +32,54 @@ var formatTableProps = ({
32
32
  }) => {
33
33
  const {
34
34
  attrs,
35
- dataSource
35
+ dataSource,
36
+ columns,
37
+ columnWidth,
38
+ columnMinWidth,
39
+ columnMaxWidth,
40
+ tableBodyHeight
36
41
  } = options;
37
- const columns = [];
42
+ const _columns = [];
38
43
  let dataList = [];
39
- if (Array.isArray(attrs) && attrs.length > 0) {
44
+ let scroll = {};
45
+ if (typeof columns === "string" && columns) {
46
+ const columnsArr = (0, import_treeUtils.getDataArr)(columns);
47
+ const columnsList = (0, import_lodash.get)(
48
+ parameters,
49
+ columnsArr
50
+ );
51
+ if (Array.isArray(columnsList)) {
52
+ columnsList.forEach((colItem) => {
53
+ const colObj = {
54
+ key: colItem == null ? void 0 : colItem.dataIndex,
55
+ title: colItem == null ? void 0 : colItem.title,
56
+ dataIndex: colItem == null ? void 0 : colItem.dataIndex
57
+ };
58
+ const colWidth = (colItem == null ? void 0 : colItem.width) || columnWidth;
59
+ const colMinWidth = (colItem == null ? void 0 : colItem.minWidth) || columnMinWidth;
60
+ const colMaxWidth = (colItem == null ? void 0 : colItem.maxWidth) || columnMaxWidth;
61
+ if (colWidth) {
62
+ colObj.style = {
63
+ ...colObj.style || {},
64
+ width: colWidth
65
+ };
66
+ }
67
+ if (colMinWidth) {
68
+ colObj.style = {
69
+ ...colObj.style || {},
70
+ minWidth: colMinWidth
71
+ };
72
+ }
73
+ if (colMaxWidth) {
74
+ colObj.style = {
75
+ ...colObj.style || {},
76
+ maxWidth: colMaxWidth
77
+ };
78
+ }
79
+ _columns.push(colObj);
80
+ });
81
+ }
82
+ } else if (Array.isArray(attrs) && attrs.length > 0) {
40
83
  attrs.forEach((attrItem) => {
41
84
  var _a;
42
85
  let attrsDisplay = true;
@@ -56,9 +99,30 @@ var formatTableProps = ({
56
99
  key: attrItem == null ? void 0 : attrItem.attrCode,
57
100
  title: attrItem == null ? void 0 : attrItem.attrName
58
101
  };
102
+ const colWidth = (attrItem == null ? void 0 : attrItem.attrWidth) || columnWidth;
103
+ const colMinWidth = (attrItem == null ? void 0 : attrItem.attrMinWidth) || columnMinWidth;
104
+ const colMaxWidth = (attrItem == null ? void 0 : attrItem.attrMaxWidth) || columnMaxWidth;
59
105
  if (typeof (attrItem == null ? void 0 : attrItem.attrWidth) === "string") {
60
106
  colObj.width = attrItem == null ? void 0 : attrItem.attrWidth;
61
107
  }
108
+ if (colWidth) {
109
+ colObj.style = {
110
+ ...colObj.style || {},
111
+ width: colWidth
112
+ };
113
+ }
114
+ if (colMinWidth) {
115
+ colObj.style = {
116
+ ...colObj.style || {},
117
+ minWidth: colMinWidth
118
+ };
119
+ }
120
+ if (colMaxWidth) {
121
+ colObj.style = {
122
+ ...colObj.style || {},
123
+ maxWidth: colMaxWidth
124
+ };
125
+ }
62
126
  const dataIndexArr = (0, import_treeUtils.getDataArr)(attrItem == null ? void 0 : attrItem.defaultValue);
63
127
  if (Array.isArray(dataIndexArr) && dataIndexArr.length > 0) {
64
128
  colObj.dataIndex = (_a = dataIndexArr.slice(-1)) == null ? void 0 : _a[0];
@@ -69,7 +133,7 @@ var formatTableProps = ({
69
133
  return ((_a2 = staticCodeMap == null ? void 0 : staticCodeMap[attrItem == null ? void 0 : attrItem.staticCode]) == null ? void 0 : _a2[val]) || val;
70
134
  };
71
135
  }
72
- columns.push(colObj);
136
+ _columns.push(colObj);
73
137
  }
74
138
  });
75
139
  }
@@ -85,9 +149,15 @@ var formatTableProps = ({
85
149
  }
86
150
  }
87
151
  }
152
+ if (typeof tableBodyHeight === "string" && tableBodyHeight) {
153
+ scroll = {
154
+ y: tableBodyHeight
155
+ };
156
+ }
88
157
  return {
89
- columns,
90
- dataSource: dataList
158
+ columns: _columns,
159
+ dataSource: dataList,
160
+ scroll
91
161
  };
92
162
  };
93
163
  var formatTableProps_default = formatTableProps;