@zat-design/sisyphus-react 4.5.10-beta.1 → 4.5.10-beta.2
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.
- package/es/FormsProvider/index.js +14 -21
- package/es/ProAction/components/CheckModalContent/index.js +12 -26
- package/es/ProAction/index.js +79 -83
- package/es/ProAction/propsType.js +0 -1
- package/es/ProConfigProvider/index.js +63 -110
- package/es/ProConfigProvider/propsType.js +0 -1
- package/es/ProDownload/index.js +55 -65
- package/es/ProDownload/propsType.js +0 -1
- package/es/ProDownload/utils.js +61 -95
- package/es/ProDrawerForm/components/ProDrawer/index.js +83 -113
- package/es/ProDrawerForm/components/ProModal/index.js +77 -108
- package/es/ProDrawerForm/components/index.js +6 -2
- package/es/ProDrawerForm/hooks/useConfirmClose.js +20 -39
- package/es/ProDrawerForm/index.js +29 -38
- package/es/ProDrawerForm/propsType.js +0 -1
- package/es/ProDrawerForm/utils/index.js +18 -36
- package/es/ProEditLabel/components/RenderProForm.js +45 -49
- package/es/ProEditLabel/index.js +126 -163
- package/es/ProEditLabel/propsType.js +0 -1
- package/es/ProEditLabel/utils/index.js +5 -8
- package/es/ProEditTable/components/ActionButton/index.js +111 -119
- package/es/ProEditTable/components/RcTable/BaseTable.js +38 -51
- package/es/ProEditTable/components/RcTable/DraggableTable.js +97 -129
- package/es/ProEditTable/components/RcTable/index.js +6 -4
- package/es/ProEditTable/components/RenderField/ListChangedWrapper.js +77 -95
- package/es/ProEditTable/components/RenderField/index.js +490 -587
- package/es/ProEditTable/components/RenderField/propsType.js +0 -1
- package/es/ProEditTable/components/RenderField/tools.js +115 -112
- package/es/ProEditTable/components/RenderToolbar/index.js +47 -73
- package/es/ProEditTable/components/Summary/index.js +38 -64
- package/es/ProEditTable/components/Validator/index.js +46 -46
- package/es/ProEditTable/components/index.js +12 -5
- package/es/ProEditTable/index.js +456 -378
- package/es/ProEditTable/propsType.js +0 -1
- package/es/ProEditTable/utils/config.js +60 -122
- package/es/ProEditTable/utils/diffOriginal.js +45 -82
- package/es/ProEditTable/utils/getDefaultProps.js +19 -24
- package/es/ProEditTable/utils/index.js +150 -236
- package/es/ProEditTable/utils/tools.js +149 -286
- package/es/ProEditTable/utils/transform.js +25 -30
- package/es/ProEditTable/utils/useEditTableError.js +30 -43
- package/es/ProEditTable/utils/useShouldUpdateForTable.js +42 -72
- package/es/ProEditTable/utils/validateAll.js +87 -154
- package/es/ProEnum/components/Group.js +38 -30
- package/es/ProEnum/components/Tag.js +22 -26
- package/es/ProEnum/hooks/useEnum.js +48 -116
- package/es/ProEnum/hooks/useEnumRequest.js +128 -179
- package/es/ProEnum/hooks/useFrequentEnumRequest.js +40 -48
- package/es/ProEnum/index.js +162 -172
- package/es/ProEnum/propsType.js +0 -1
- package/es/ProEnum/utils/eventCenter.js +10 -12
- package/es/ProEnum/utils/frequentEnum.js +35 -92
- package/es/ProEnum/utils/getEnum.js +32 -90
- package/es/ProEnum/utils/getEnumLabel.js +44 -49
- package/es/ProEnum/utils/index.js +93 -207
- package/es/ProForm/components/Container.js +13 -28
- package/es/ProForm/components/FormFooter/index.js +36 -44
- package/es/ProForm/components/FormFooter/propsType.js +0 -1
- package/es/ProForm/components/base/Checkbox/index.js +32 -59
- package/es/ProForm/components/base/DatePicker/index.js +49 -71
- package/es/ProForm/components/base/Input/index.js +63 -97
- package/es/ProForm/components/base/Input/propsType.js +0 -1
- package/es/ProForm/components/base/InputNumber/index.js +118 -172
- package/es/ProForm/components/base/Radio/index.js +39 -52
- package/es/ProForm/components/base/RangePicker/index.js +109 -127
- package/es/ProForm/components/base/RangePicker/useDateRange.js +20 -17
- package/es/ProForm/components/base/Select/index.js +63 -89
- package/es/ProForm/components/base/Switch/index.js +27 -35
- package/es/ProForm/components/base/SwitchCheckbox/index.js +36 -54
- package/es/ProForm/components/base/TextArea/index.js +30 -41
- package/es/ProForm/components/base/TimePicker/index.js +27 -37
- package/es/ProForm/components/combination/Container/index.js +37 -47
- package/es/ProForm/components/combination/Container/propsType.js +0 -1
- package/es/ProForm/components/combination/FormList/components/ActionButton.js +165 -237
- package/es/ProForm/components/combination/FormList/components/BlockFields.js +98 -103
- package/es/ProForm/components/combination/FormList/components/Empty.js +27 -54
- package/es/ProForm/components/combination/FormList/components/LineFields.js +57 -54
- package/es/ProForm/components/combination/FormList/components/ToolbarButton.js +61 -109
- package/es/ProForm/components/combination/FormList/index.js +151 -161
- package/es/ProForm/components/combination/FormList/propsType.js +0 -1
- package/es/ProForm/components/combination/FormList/utils.js +22 -38
- package/es/ProForm/components/combination/Group/component/AddonWrapper/index.js +12 -28
- package/es/ProForm/components/combination/Group/component/ComRender.js +50 -111
- package/es/ProForm/components/combination/Group/component/FlexibleGroup.js +105 -206
- package/es/ProForm/components/combination/Group/hooks/index.js +68 -128
- package/es/ProForm/components/combination/Group/index.js +87 -126
- package/es/ProForm/components/combination/Group/propsType.js +0 -1
- package/es/ProForm/components/combination/Group/utils/index.js +124 -239
- package/es/ProForm/components/combination/ProCascader/index.js +156 -199
- package/es/ProForm/components/combination/ProCascader/propsType.js +0 -1
- package/es/ProForm/components/combination/ProCascader/utils/index.js +12 -21
- package/es/ProForm/components/combination/ProModalSelect/hooks/useRequestList.js +63 -75
- package/es/ProForm/components/combination/ProModalSelect/index.js +290 -348
- package/es/ProForm/components/combination/ProModalSelect/propsType.js +0 -1
- package/es/ProForm/components/combination/ProModalSelect/utils/index.js +32 -39
- package/es/ProForm/components/combination/ProNumberRange/index.js +100 -156
- package/es/ProForm/components/combination/ProNumberRange/propsType.js +0 -1
- package/es/ProForm/components/combination/ProRangeLimit/index.js +104 -115
- package/es/ProForm/components/combination/ProRangeLimit/propsType.js +0 -1
- package/es/ProForm/components/combination/ProTimeLimit/hooks/useControlled.js +16 -16
- package/es/ProForm/components/combination/ProTimeLimit/index.js +75 -109
- package/es/ProForm/components/index.js +56 -34
- package/es/ProForm/components/render/ChangedWrapper.js +85 -94
- package/es/ProForm/components/render/ConfirmWrapper.js +27 -39
- package/es/ProForm/components/render/CustomComponentViewWrapper.js +65 -82
- package/es/ProForm/components/render/Render.js +223 -329
- package/es/ProForm/components/render/RenderFields.js +76 -113
- package/es/ProForm/components/render/propsType.js +0 -1
- package/es/ProForm/hooks/useControlled.js +8 -10
- package/es/ProForm/hooks/useDeepCompareMemo.js +11 -11
- package/es/ProForm/hooks/useFieldProps.js +8 -4
- package/es/ProForm/hooks/useForm.js +50 -110
- package/es/ProForm/hooks/useRules.js +17 -33
- package/es/ProForm/hooks/useShouldUpdate.js +77 -152
- package/es/ProForm/hooks/useWatch.js +58 -129
- package/es/ProForm/index.js +157 -194
- package/es/ProForm/propsType.js +15 -7
- package/es/ProForm/utils/buildFormItemProps.js +51 -58
- package/es/ProForm/utils/diffOriginal.js +43 -73
- package/es/ProForm/utils/getDefaultProps.js +18 -24
- package/es/ProForm/utils/index.js +159 -234
- package/es/ProForm/utils/processDependencies.js +21 -60
- package/es/ProForm/utils/reactiveValues.js +20 -34
- package/es/ProForm/utils/rulesCreator.js +42 -40
- package/es/ProForm/utils/transformNames.js +10 -13
- package/es/ProForm/utils/transformValue.js +16 -29
- package/es/ProForm/utils/valueType.js +96 -178
- package/es/ProIcon/config/index.js +340 -274
- package/es/ProIcon/index.js +135 -209
- package/es/ProIcon/propsTypes.js +0 -1
- package/es/ProIcon/utils/index.js +24 -39
- package/es/ProLayout/components/Layout/Header/index.js +108 -141
- package/es/ProLayout/components/Layout/Menu/FoldMenu/index.js +134 -190
- package/es/ProLayout/components/Layout/Menu/OpenMenu/index.js +111 -137
- package/es/ProLayout/components/Layout/Menu/OpenMenu/propsType.js +0 -1
- package/es/ProLayout/components/Layout/Menu/SideMenu/index.js +23 -31
- package/es/ProLayout/components/Layout/Menu/index.js +92 -89
- package/es/ProLayout/components/Layout/Notice/index.js +13 -27
- package/es/ProLayout/components/Layout/index.js +8 -3
- package/es/ProLayout/components/ProCollapse/PropTypes.js +0 -1
- package/es/ProLayout/components/ProCollapse/index.js +89 -111
- package/es/ProLayout/components/ProFooter/PropTypes.js +0 -1
- package/es/ProLayout/components/ProFooter/index.js +27 -25
- package/es/ProLayout/components/ProHeader/PropTypes.js +0 -1
- package/es/ProLayout/components/ProHeader/components/Copy/index.js +23 -21
- package/es/ProLayout/components/ProHeader/components/Describe/index.js +67 -86
- package/es/ProLayout/components/ProHeader/components/ProBackBtn/index.js +18 -21
- package/es/ProLayout/components/ProHeader/components/ProBackBtn/propsType.js +0 -1
- package/es/ProLayout/components/ProHeader/components/index.js +6 -2
- package/es/ProLayout/components/ProHeader/index.js +216 -356
- package/es/ProLayout/components/ProHeader/utils/index.js +19 -26
- package/es/ProLayout/components/TabsManager/components/TabContextMenu.js +92 -85
- package/es/ProLayout/components/TabsManager/components/TabItem.js +53 -64
- package/es/ProLayout/components/TabsManager/components/TabsContext.js +5 -5
- package/es/ProLayout/components/TabsManager/components/TabsHeader.js +42 -52
- package/es/ProLayout/components/TabsManager/hooks/useActiveTab.js +8 -9
- package/es/ProLayout/components/TabsManager/hooks/useIframeRoute.js +19 -32
- package/es/ProLayout/components/TabsManager/hooks/useProLayoutTabs.js +6 -20
- package/es/ProLayout/components/TabsManager/hooks/useTabsCache.js +25 -42
- package/es/ProLayout/components/TabsManager/hooks/useTabsState.js +290 -408
- package/es/ProLayout/components/TabsManager/hooks/useTabsUrlSync.js +132 -95
- package/es/ProLayout/components/TabsManager/index.js +406 -390
- package/es/ProLayout/components/TabsManager/propTypes.js +7 -15
- package/es/ProLayout/components/TabsManager/utils/historyObserver.js +26 -23
- package/es/ProLayout/components/TabsManager/utils/index.js +127 -184
- package/es/ProLayout/components/index.js +8 -3
- package/es/ProLayout/index.js +171 -229
- package/es/ProLayout/propTypes.js +12 -52
- package/es/ProLayout/utils/index.js +48 -128
- package/es/ProSelect/components/AdaptiveTooltip.js +26 -25
- package/es/ProSelect/index.js +184 -229
- package/es/ProSelect/propsType.js +0 -1
- package/es/ProSelect/utils/index.js +100 -146
- package/es/ProStep/components/Anchor/index.js +71 -82
- package/es/ProStep/components/Item/index.js +49 -56
- package/es/ProStep/components/LazyLoad/index.js +23 -29
- package/es/ProStep/components/Listener/index.js +20 -33
- package/es/ProStep/components/Step/index.js +31 -38
- package/es/ProStep/constants.js +4 -1
- package/es/ProStep/index.js +166 -153
- package/es/ProStep/propsType.js +0 -1
- package/es/ProStep/utils/index.js +29 -55
- package/es/ProStepTab/index.js +83 -138
- package/es/ProStepTab/propsType.js +0 -1
- package/es/ProTable/components/EditableCell/EditIcon.js +10 -14
- package/es/ProTable/components/EditableCell/index.js +37 -71
- package/es/ProTable/components/EditableCell/propsType.js +0 -1
- package/es/ProTable/components/FormatColumn/index.js +209 -340
- package/es/ProTable/components/FormatColumn/propsType.js +0 -1
- package/es/ProTable/components/RcTable/components/BaseTable/index.js +35 -39
- package/es/ProTable/components/RcTable/components/DraggableTable/components/DndWrapper/index.js +80 -107
- package/es/ProTable/components/RcTable/components/DraggableTable/components/DndWrapper/utils/index.js +54 -48
- package/es/ProTable/components/RcTable/components/DraggableTable/components/DndWrapper/utils/propsType.js +0 -1
- package/es/ProTable/components/RcTable/components/DraggableTable/index.js +47 -54
- package/es/ProTable/components/RcTable/index.js +6 -4
- package/es/ProTable/components/RenderColumn/index.js +158 -186
- package/es/ProTable/components/RenderEmptyText/index.js +12 -21
- package/es/ProTable/components/RenderFooter/index.js +15 -15
- package/es/ProTable/components/RenderSummary/index.js +33 -50
- package/es/ProTable/components/RenderTableHeader/index.js +44 -46
- package/es/ProTable/components/RenderTabs/index.js +47 -51
- package/es/ProTable/components/TableResizable/index.js +56 -72
- package/es/ProTable/components/TooltipTitle/index.js +13 -21
- package/es/ProTable/components/index.js +16 -36
- package/es/ProTable/hooks/useAntdTable.js +185 -219
- package/es/ProTable/index.js +232 -249
- package/es/ProTable/propsType.js +0 -1
- package/es/ProTable/utils/columnStorage.js +63 -88
- package/es/ProTable/utils/index.js +57 -90
- package/es/ProTabs/components/Card/index.js +20 -48
- package/es/ProTabs/components/index.js +4 -1
- package/es/ProTabs/index.js +39 -56
- package/es/ProTabs/propType.js +0 -1
- package/es/ProThemeTools/component/ProTools/index.js +106 -158
- package/es/ProThemeTools/component/index.js +4 -1
- package/es/ProThemeTools/context/ThemeContext.js +67 -146
- package/es/ProThemeTools/index.js +103 -156
- package/es/ProThemeTools/propsType.js +0 -1
- package/es/ProThemeTools/utils/index.js +60 -109
- package/es/ProTooltip/index.js +132 -165
- package/es/ProTooltip/propsType.js +0 -1
- package/es/ProTree/components/AdaptiveTooltip.js +15 -17
- package/es/ProTree/components/CloseIcon.js +18 -26
- package/es/ProTree/components/List.js +28 -47
- package/es/ProTree/components/ProTree.js +152 -211
- package/es/ProTree/components/ProTreeSelect/index.js +254 -458
- package/es/ProTree/components/ProTreeSelect/propsType.js +0 -1
- package/es/ProTree/components/SearchTitle.js +23 -42
- package/es/ProTree/components/Tree.js +147 -195
- package/es/ProTree/components/index.js +10 -5
- package/es/ProTree/index.js +12 -16
- package/es/ProTree/propsType.js +0 -1
- package/es/ProTree/utils.js +46 -118
- package/es/ProTreeModal/components/Cascader.js +56 -64
- package/es/ProTreeModal/components/CloseIcon.js +18 -26
- package/es/ProTreeModal/components/List.js +114 -180
- package/es/ProTreeModal/components/SearchTitle.js +15 -18
- package/es/ProTreeModal/components/SortableItem.js +29 -58
- package/es/ProTreeModal/components/Tree.js +99 -113
- package/es/ProTreeModal/components/Trigger.js +87 -121
- package/es/ProTreeModal/components/index.js +14 -6
- package/es/ProTreeModal/index.js +397 -435
- package/es/ProTreeModal/propsType.js +0 -1
- package/es/ProTreeModal/utils.js +52 -95
- package/es/ProUpload/components/ButtonRender.js +44 -54
- package/es/ProUpload/components/DragRender.js +94 -134
- package/es/ProUpload/components/DraggableUploadListItem.js +12 -25
- package/es/ProUpload/components/Example.js +27 -31
- package/es/ProUpload/components/FileItem.js +69 -163
- package/es/ProUpload/components/ImageRender.js +134 -170
- package/es/ProUpload/index.js +68 -100
- package/es/ProUpload/propsType.js +0 -1
- package/es/ProUpload/uitls.js +8 -4
- package/es/ProUtils/utils/index.js +17 -13
- package/es/ProViewer/index.js +154 -175
- package/es/ProViewer/propsType.js +0 -5
- package/es/ProWaterMark/index.js +9 -16
- package/es/ProWaterMark/propsType.js +0 -1
- package/es/hooks/useDraggableRow.js +25 -53
- package/es/index.js +57 -77
- package/es/locale/en_US.js +153 -142
- package/es/locale/index.js +23 -36
- package/es/locale/zh_CN.js +145 -142
- package/es/tokens.js +84 -83
- package/es/utils/index.js +24 -51
- package/package.json +4 -3
|
@@ -1,34 +1,27 @@
|
|
|
1
|
-
import
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
/**
|
|
6
|
-
* @param formKey 表单实例key
|
|
7
|
-
* @param formIst form实例, 如果传了会把传入的实例存入全局
|
|
8
|
-
* @returns 没有入参: 返回表单实例但是不存入全局
|
|
9
|
-
* 有formKey: 取全局中的表单实例返回, 如果不存在则创建后返回
|
|
10
|
-
*/
|
|
11
|
-
export const useForms = () => {
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import React, { useContext, useEffect, useRef } from "react";
|
|
3
|
+
const FormsContext = React.createContext({});
|
|
4
|
+
const useForms = () => {
|
|
12
5
|
const forms = useContext(FormsContext);
|
|
13
6
|
return forms;
|
|
14
7
|
};
|
|
15
|
-
|
|
16
|
-
/** 获取所有表单实例 */
|
|
17
|
-
export const useContextForms = () => {
|
|
8
|
+
const useContextForms = () => {
|
|
18
9
|
const forms = useContext(FormsContext);
|
|
19
10
|
return forms;
|
|
20
11
|
};
|
|
21
|
-
const FormsProvider = props => {
|
|
12
|
+
const FormsProvider = (props) => {
|
|
22
13
|
const formsRef = useRef({});
|
|
23
14
|
useEffect(() => {
|
|
24
|
-
// 销毁
|
|
25
15
|
return () => {
|
|
26
16
|
formsRef.current = {};
|
|
27
17
|
};
|
|
28
18
|
}, []);
|
|
29
|
-
return
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
19
|
+
return /* @__PURE__ */ jsx(FormsContext.Provider, { value: formsRef.current, children: props.children });
|
|
20
|
+
};
|
|
21
|
+
var FormsProvider_default = FormsProvider;
|
|
22
|
+
export {
|
|
23
|
+
FormsContext,
|
|
24
|
+
FormsProvider_default as default,
|
|
25
|
+
useContextForms,
|
|
26
|
+
useForms
|
|
33
27
|
};
|
|
34
|
-
export default FormsProvider;
|
|
@@ -1,28 +1,14 @@
|
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
1
2
|
import "./index.less";
|
|
2
|
-
|
|
3
|
-
const
|
|
4
|
-
|
|
5
|
-
errorTitle,
|
|
6
|
-
list
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
className: "err-tip",
|
|
14
|
-
children: errorTitle
|
|
15
|
-
}), Array.isArray(list) && list.length === 1 ? /*#__PURE__*/_jsx("span", {
|
|
16
|
-
className: "err-item",
|
|
17
|
-
children: list[0]
|
|
18
|
-
}) : null, Array.isArray(list) && list.length > 1 ? /*#__PURE__*/_jsx("div", {
|
|
19
|
-
className: "list-wrap",
|
|
20
|
-
children: list.map((item, index) => /*#__PURE__*/_jsx("div", {
|
|
21
|
-
className: "err-item",
|
|
22
|
-
children: item
|
|
23
|
-
}, `${item}-${index}`))
|
|
24
|
-
}) : null]
|
|
25
|
-
})
|
|
26
|
-
});
|
|
3
|
+
const CheckModalContent = (props) => {
|
|
4
|
+
const { errorTitle, list = [] } = props ?? {};
|
|
5
|
+
return /* @__PURE__ */ jsx("div", { className: "pro-action-check-modal-box", children: /* @__PURE__ */ jsxs("div", { className: "res-err-list", children: [
|
|
6
|
+
/* @__PURE__ */ jsx("span", { className: "err-tip", children: errorTitle }),
|
|
7
|
+
Array.isArray(list) && list.length === 1 ? /* @__PURE__ */ jsx("span", { className: "err-item", children: list[0] }) : null,
|
|
8
|
+
Array.isArray(list) && list.length > 1 ? /* @__PURE__ */ jsx("div", { className: "list-wrap", children: list.map((item, index) => /* @__PURE__ */ jsx("div", { className: "err-item", children: item }, `${item}-${index}`)) }) : null
|
|
9
|
+
] }) });
|
|
10
|
+
};
|
|
11
|
+
var CheckModalContent_default = CheckModalContent;
|
|
12
|
+
export {
|
|
13
|
+
CheckModalContent_default as default
|
|
27
14
|
};
|
|
28
|
-
export default CheckModalContent;
|
package/es/ProAction/index.js
CHANGED
|
@@ -1,17 +1,15 @@
|
|
|
1
|
-
import
|
|
2
|
-
import React from
|
|
3
|
-
import { useSetState } from
|
|
4
|
-
import { Form, Popconfirm } from
|
|
1
|
+
import { Fragment, jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
import React from "react";
|
|
3
|
+
import { useSetState } from "ahooks";
|
|
4
|
+
import { Form, Popconfirm } from "antd";
|
|
5
|
+
import isFunction from "lodash/isFunction";
|
|
5
6
|
import CheckModalContent from "./components/CheckModalContent";
|
|
6
7
|
import { ProDrawerForm } from "../index";
|
|
7
8
|
import locale from "../locale";
|
|
8
9
|
import "./index.less";
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
const {
|
|
12
|
-
children,
|
|
13
|
-
config
|
|
14
|
-
} = props;
|
|
10
|
+
const ProAction = (props) => {
|
|
11
|
+
var _a, _b, _c, _d, _e, _f, _g;
|
|
12
|
+
const { children, config } = props;
|
|
15
13
|
const [form] = Form.useForm();
|
|
16
14
|
const [state, setState] = useSetState({
|
|
17
15
|
index: 0,
|
|
@@ -21,19 +19,13 @@ const ProAction = props => {
|
|
|
21
19
|
errorModalData: null
|
|
22
20
|
});
|
|
23
21
|
if (!config || !Array.isArray(config)) {
|
|
24
|
-
console.error(locale
|
|
25
|
-
return
|
|
26
|
-
children: children
|
|
27
|
-
});
|
|
22
|
+
console.error((_b = (_a = locale) == null ? void 0 : _a.ProAction) == null ? void 0 : _b.errorMessage);
|
|
23
|
+
return /* @__PURE__ */ jsx(Fragment, { children });
|
|
28
24
|
}
|
|
29
|
-
const {
|
|
30
|
-
|
|
31
|
-
errorModalData
|
|
32
|
-
} = state;
|
|
33
|
-
const {
|
|
34
|
-
length
|
|
35
|
-
} = config;
|
|
25
|
+
const { index, errorModalData } = state;
|
|
26
|
+
const { length } = config;
|
|
36
27
|
const onActionRun = async (currentIndex, array) => {
|
|
28
|
+
var _a2, _b2, _c2, _d2, _e2, _f2, _g2, _h, _i, _j;
|
|
37
29
|
if (currentIndex === 0) {
|
|
38
30
|
setState({
|
|
39
31
|
loading: true
|
|
@@ -41,32 +33,28 @@ const ProAction = props => {
|
|
|
41
33
|
}
|
|
42
34
|
const actionProps = config[currentIndex];
|
|
43
35
|
const newServicesArray = [...array];
|
|
44
|
-
const {
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
} = (await actionProps?.useRequest?.(newServicesArray[currentIndex - 1], newServicesArray)) || {};
|
|
49
|
-
const params = Array.isArray(options?.defaultParams) ? options?.defaultParams?.[0] : options?.defaultParams || {};
|
|
50
|
-
const res = (await service?.(params)) || {};
|
|
51
|
-
if (transformResponse && _isFunction(transformResponse)) {
|
|
36
|
+
const { service, options, transformResponse } = await ((_a2 = actionProps == null ? void 0 : actionProps.useRequest) == null ? void 0 : _a2.call(actionProps, newServicesArray[currentIndex - 1], newServicesArray)) || {};
|
|
37
|
+
const params = Array.isArray(options == null ? void 0 : options.defaultParams) ? (_b2 = options == null ? void 0 : options.defaultParams) == null ? void 0 : _b2[0] : (options == null ? void 0 : options.defaultParams) || {};
|
|
38
|
+
const res = await (service == null ? void 0 : service(params)) || {};
|
|
39
|
+
if (transformResponse && isFunction(transformResponse)) {
|
|
52
40
|
const data = await transformResponse(res);
|
|
53
41
|
newServicesArray[currentIndex] = data;
|
|
54
42
|
} else if (res.status === 200) {
|
|
55
43
|
newServicesArray[currentIndex] = res.data;
|
|
56
44
|
}
|
|
57
|
-
options
|
|
45
|
+
(_c2 = options == null ? void 0 : options.onSuccess) == null ? void 0 : _c2.call(options, newServicesArray[currentIndex], params);
|
|
58
46
|
if (!service) {
|
|
59
47
|
newServicesArray[currentIndex] = null;
|
|
60
48
|
}
|
|
61
|
-
const open = actionProps
|
|
49
|
+
const open = (actionProps == null ? void 0 : actionProps.mode) === "check" && (((_d2 = newServicesArray[currentIndex]) == null ? void 0 : _d2.errorTitle) || ((_f2 = (_e2 = newServicesArray[currentIndex]) == null ? void 0 : _e2.list) == null ? void 0 : _f2.length));
|
|
62
50
|
setState({
|
|
63
51
|
servicesArray: newServicesArray,
|
|
64
52
|
index: currentIndex,
|
|
65
53
|
open
|
|
66
54
|
});
|
|
67
55
|
if (open) {
|
|
68
|
-
const list = newServicesArray[currentIndex]
|
|
69
|
-
const errorTitle = newServicesArray[currentIndex]
|
|
56
|
+
const list = ((_g2 = newServicesArray[currentIndex]) == null ? void 0 : _g2.list) || [];
|
|
57
|
+
const errorTitle = (_h = newServicesArray[currentIndex]) == null ? void 0 : _h.errorTitle;
|
|
70
58
|
form.setFieldsValue({
|
|
71
59
|
errorTitle,
|
|
72
60
|
list
|
|
@@ -77,9 +65,17 @@ const ProAction = props => {
|
|
|
77
65
|
});
|
|
78
66
|
return;
|
|
79
67
|
}
|
|
80
|
-
await actionProps
|
|
81
|
-
|
|
82
|
-
|
|
68
|
+
await ((_i = actionProps == null ? void 0 : actionProps.onAction) == null ? void 0 : _i.call(
|
|
69
|
+
actionProps,
|
|
70
|
+
newServicesArray[currentIndex - 1],
|
|
71
|
+
newServicesArray,
|
|
72
|
+
currentIndex
|
|
73
|
+
));
|
|
74
|
+
const isContinue = await ((_j = actionProps == null ? void 0 : actionProps.continue) == null ? void 0 : _j.call(
|
|
75
|
+
actionProps,
|
|
76
|
+
newServicesArray[currentIndex - 1],
|
|
77
|
+
newServicesArray
|
|
78
|
+
));
|
|
83
79
|
if (isContinue === false) {
|
|
84
80
|
setState({
|
|
85
81
|
loading: false
|
|
@@ -94,7 +90,7 @@ const ProAction = props => {
|
|
|
94
90
|
});
|
|
95
91
|
}
|
|
96
92
|
};
|
|
97
|
-
const ChildContent =
|
|
93
|
+
const ChildContent = React.cloneElement(children, {
|
|
98
94
|
onClick: () => {
|
|
99
95
|
onActionRun(0, []);
|
|
100
96
|
},
|
|
@@ -105,55 +101,55 @@ const ProAction = props => {
|
|
|
105
101
|
open: false
|
|
106
102
|
});
|
|
107
103
|
};
|
|
108
|
-
const errorModalConfig = config
|
|
109
|
-
const {
|
|
110
|
-
contextRender
|
|
111
|
-
} = errorModalConfig || {};
|
|
104
|
+
const errorModalConfig = config == null ? void 0 : config[index];
|
|
105
|
+
const { contextRender } = errorModalConfig || {};
|
|
112
106
|
const renderContent = () => {
|
|
113
|
-
let TargetComponent =
|
|
114
|
-
if (typeof contextRender ===
|
|
107
|
+
let TargetComponent = /* @__PURE__ */ jsx(Fragment, {});
|
|
108
|
+
if (typeof contextRender === "function") {
|
|
115
109
|
const View = contextRender(errorModalData);
|
|
116
|
-
TargetComponent =
|
|
117
|
-
|
|
118
|
-
});
|
|
119
|
-
} else if (
|
|
120
|
-
TargetComponent =
|
|
121
|
-
children: contextRender
|
|
122
|
-
});
|
|
123
|
-
} else if ( /*#__PURE__*/React.isValidElement(contextRender)) {
|
|
124
|
-
TargetComponent = /*#__PURE__*/_jsx(_Fragment, {
|
|
125
|
-
children: contextRender
|
|
126
|
-
});
|
|
110
|
+
TargetComponent = /* @__PURE__ */ jsx(Fragment, { children: View });
|
|
111
|
+
} else if (typeof contextRender === "string" || typeof contextRender === "number") {
|
|
112
|
+
TargetComponent = /* @__PURE__ */ jsx(Fragment, { children: contextRender });
|
|
113
|
+
} else if (React.isValidElement(contextRender)) {
|
|
114
|
+
TargetComponent = /* @__PURE__ */ jsx(Fragment, { children: contextRender });
|
|
127
115
|
}
|
|
128
116
|
return TargetComponent;
|
|
129
117
|
};
|
|
130
|
-
return
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
118
|
+
return /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
119
|
+
((_c = config[0]) == null ? void 0 : _c.mode) === "confirm" ? /* @__PURE__ */ jsx(
|
|
120
|
+
Popconfirm,
|
|
121
|
+
{
|
|
122
|
+
onConfirm: () => onActionRun(0, []),
|
|
123
|
+
title: ((_d = config[0]) == null ? void 0 : _d.title) || ((_f = (_e = locale) == null ? void 0 : _e.ProAction) == null ? void 0 : _f.defaultTitle),
|
|
124
|
+
children
|
|
125
|
+
}
|
|
126
|
+
) : ChildContent,
|
|
127
|
+
state.open ? /* @__PURE__ */ jsx(
|
|
128
|
+
ProDrawerForm,
|
|
129
|
+
{
|
|
130
|
+
open: state.open,
|
|
131
|
+
mode: "Modal",
|
|
132
|
+
title: (_g = config == null ? void 0 : config[index]) == null ? void 0 : _g.title,
|
|
133
|
+
onCancel: () => {
|
|
134
|
+
form.resetFields();
|
|
135
|
+
setState({
|
|
136
|
+
open: false,
|
|
137
|
+
errorModalData: null
|
|
138
|
+
});
|
|
139
|
+
},
|
|
140
|
+
modalProps: {
|
|
141
|
+
width: 520
|
|
142
|
+
},
|
|
143
|
+
size: "small",
|
|
144
|
+
onOk,
|
|
145
|
+
form,
|
|
146
|
+
className: "pro-action-error-modal",
|
|
147
|
+
children: !contextRender ? /* @__PURE__ */ jsx(CheckModalContent, { ...errorModalData ?? {} }) : renderContent()
|
|
148
|
+
}
|
|
149
|
+
) : null
|
|
150
|
+
] });
|
|
151
|
+
};
|
|
152
|
+
var ProAction_default = ProAction;
|
|
153
|
+
export {
|
|
154
|
+
ProAction_default as default
|
|
158
155
|
};
|
|
159
|
-
export default ProAction;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1,97 +1,69 @@
|
|
|
1
|
-
import
|
|
2
|
-
import {
|
|
3
|
-
import
|
|
4
|
-
import
|
|
5
|
-
import
|
|
6
|
-
import
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import React, { useContext, useEffect, useReducer } from "react";
|
|
3
|
+
import { ConfigProvider } from "antd";
|
|
4
|
+
import zhCN from "antd/es/locale/zh_CN";
|
|
5
|
+
import enUS from "antd/es/locale/en_US";
|
|
6
|
+
import "dayjs/locale/zh-cn";
|
|
7
|
+
import merge from "lodash/merge";
|
|
7
8
|
import useEnumRequest from "../ProEnum/hooks/useEnumRequest";
|
|
8
9
|
import useFrequentEnumRequest from "../ProEnum/hooks/useFrequentEnumRequest";
|
|
9
10
|
import { setLanguage } from "../locale";
|
|
10
11
|
import { ThemeProvider, useTheme } from "../ProThemeTools/context/ThemeContext";
|
|
11
|
-
import { jsx as _jsx } from "react/jsx-runtime";
|
|
12
12
|
const initialState = {
|
|
13
|
-
ProEnum: {
|
|
14
|
-
|
|
15
|
-
},
|
|
16
|
-
ProForm: {
|
|
17
|
-
labelAlign: 'left'
|
|
18
|
-
},
|
|
13
|
+
ProEnum: { dics: {} },
|
|
14
|
+
ProForm: { labelAlign: "left" },
|
|
19
15
|
forms: {},
|
|
20
|
-
ProIcon: {
|
|
21
|
-
mode: 'icon',
|
|
22
|
-
mapList: [{
|
|
23
|
-
type: 'view',
|
|
24
|
-
'text-cn': '查看',
|
|
25
|
-
'text-en': 'view'
|
|
26
|
-
}]
|
|
27
|
-
}
|
|
16
|
+
ProIcon: { mode: "icon", mapList: [{ type: "view", "text-cn": "查看", "text-en": "view" }] }
|
|
28
17
|
};
|
|
29
18
|
const antdLangMap = {
|
|
30
|
-
|
|
31
|
-
|
|
19
|
+
"zh-CN": zhCN,
|
|
20
|
+
"en-US": enUS
|
|
32
21
|
};
|
|
33
|
-
|
|
22
|
+
const ProConfigContext = React.createContext({
|
|
34
23
|
state: initialState,
|
|
35
|
-
dispatch: () => {
|
|
24
|
+
dispatch: () => {
|
|
25
|
+
}
|
|
36
26
|
});
|
|
37
|
-
|
|
38
|
-
const {
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
if (name) return state[name];
|
|
43
|
-
return {
|
|
44
|
-
state,
|
|
45
|
-
dispatch
|
|
46
|
-
};
|
|
27
|
+
function useProConfig(name) {
|
|
28
|
+
const { state, dispatch } = useContext(ProConfigContext);
|
|
29
|
+
if (name)
|
|
30
|
+
return state[name];
|
|
31
|
+
return { state, dispatch };
|
|
47
32
|
}
|
|
48
33
|
function reducer(state, action) {
|
|
34
|
+
var _a;
|
|
49
35
|
switch (action.type) {
|
|
50
|
-
case
|
|
36
|
+
case "setFormRef":
|
|
51
37
|
return {
|
|
52
38
|
...state,
|
|
53
|
-
forms: {
|
|
54
|
-
...(state.forms ?? {}),
|
|
55
|
-
[action.name]: action.value
|
|
56
|
-
}
|
|
39
|
+
forms: { ...state.forms ?? {}, [action.name]: action.value }
|
|
57
40
|
};
|
|
58
|
-
case
|
|
41
|
+
case "deleteFormRef":
|
|
59
42
|
return {
|
|
60
43
|
...state,
|
|
61
|
-
forms: {
|
|
62
|
-
...(state.forms ?? {}),
|
|
63
|
-
[action.name]: undefined
|
|
64
|
-
}
|
|
44
|
+
forms: { ...state.forms ?? {}, [action.name]: void 0 }
|
|
65
45
|
};
|
|
66
|
-
case
|
|
46
|
+
case "set":
|
|
47
|
+
return { ...state, ...action.payload };
|
|
48
|
+
case "setProEnum":
|
|
67
49
|
return {
|
|
68
50
|
...state,
|
|
69
|
-
...action.payload
|
|
51
|
+
ProEnum: { ...state.ProEnum, ...action.payload }
|
|
70
52
|
};
|
|
71
|
-
case
|
|
72
|
-
return {
|
|
73
|
-
...state,
|
|
74
|
-
ProEnum: {
|
|
75
|
-
...state.ProEnum,
|
|
76
|
-
...action.payload
|
|
77
|
-
}
|
|
78
|
-
};
|
|
79
|
-
case 'setProEnumDic':
|
|
53
|
+
case "setProEnumDic":
|
|
80
54
|
return {
|
|
81
55
|
...state,
|
|
82
56
|
ProEnum: {
|
|
83
57
|
...state.ProEnum,
|
|
84
58
|
dics: {
|
|
85
|
-
...(state.ProEnum
|
|
59
|
+
...((_a = state.ProEnum) == null ? void 0 : _a.dics) ?? {},
|
|
86
60
|
...action.payload
|
|
87
61
|
}
|
|
88
62
|
}
|
|
89
63
|
};
|
|
90
|
-
case
|
|
91
|
-
localStorage.setItem(
|
|
92
|
-
return {
|
|
93
|
-
...state
|
|
94
|
-
};
|
|
64
|
+
case "setWithLocal":
|
|
65
|
+
localStorage.setItem("localConfig", JSON.stringify(action.payload));
|
|
66
|
+
return { ...state };
|
|
95
67
|
default:
|
|
96
68
|
return state;
|
|
97
69
|
}
|
|
@@ -101,70 +73,51 @@ const ThemeAwareConfigProvider = ({
|
|
|
101
73
|
theme,
|
|
102
74
|
children
|
|
103
75
|
}) => {
|
|
104
|
-
const {
|
|
105
|
-
state: themeState
|
|
106
|
-
} = useTheme();
|
|
107
|
-
// 外部传入的 theme 与 ThemeContext 的 antdConfig 深度合并,外部 theme 优先覆盖默认值
|
|
76
|
+
const { state: themeState } = useTheme();
|
|
108
77
|
const mergedTheme = merge({}, themeState.antdConfig, theme);
|
|
109
|
-
return
|
|
110
|
-
locale: locale,
|
|
111
|
-
theme: mergedTheme,
|
|
112
|
-
children: /*#__PURE__*/_jsx("div", {
|
|
113
|
-
children: children
|
|
114
|
-
})
|
|
115
|
-
});
|
|
78
|
+
return /* @__PURE__ */ jsx(ConfigProvider, { locale, theme: mergedTheme, children: /* @__PURE__ */ jsx("div", { children }) });
|
|
116
79
|
};
|
|
117
|
-
|
|
80
|
+
const ProConfigProvider = (props) => {
|
|
81
|
+
var _a, _b;
|
|
118
82
|
const [state, dispatch] = useReducer(reducer, initialState);
|
|
119
|
-
|
|
120
|
-
// globalConfig(含 storage)合并进 ProEnum 配置,useEnumRequest 内部对所有字段均有默认值
|
|
121
|
-
const enumEnv = {
|
|
122
|
-
...state.ProEnum,
|
|
123
|
-
...props?.value?.ProEnum,
|
|
124
|
-
...props?.value?.globalConfig
|
|
125
|
-
};
|
|
83
|
+
const enumEnv = { ...state.ProEnum, ...(_a = props == null ? void 0 : props.value) == null ? void 0 : _a.ProEnum, ...(_b = props == null ? void 0 : props.value) == null ? void 0 : _b.globalConfig };
|
|
126
84
|
const enumRes = useEnumRequest(enumEnv, dispatch);
|
|
127
85
|
const frequentEnumRes = useFrequentEnumRequest(enumEnv, dispatch);
|
|
128
|
-
const cacheLang = localStorage.getItem(
|
|
129
|
-
const lang = state
|
|
86
|
+
const cacheLang = localStorage.getItem("locale");
|
|
87
|
+
const lang = (state == null ? void 0 : state.locale) ?? cacheLang ?? (props == null ? void 0 : props.locale) ?? "zh-CN";
|
|
130
88
|
useEffect(() => {
|
|
131
|
-
const raw = localStorage.getItem(
|
|
89
|
+
const raw = localStorage.getItem("localConfig");
|
|
132
90
|
let localConfig;
|
|
133
91
|
try {
|
|
134
|
-
localConfig = JSON.parse(raw ||
|
|
92
|
+
localConfig = JSON.parse(raw || "{}");
|
|
135
93
|
} catch {
|
|
136
|
-
localStorage.removeItem(
|
|
137
|
-
if (
|
|
138
|
-
console.warn(
|
|
94
|
+
localStorage.removeItem("localConfig");
|
|
95
|
+
if (true) {
|
|
96
|
+
console.warn("ProConfigProvider: invalid localConfig cache has been removed.");
|
|
139
97
|
}
|
|
140
98
|
return;
|
|
141
99
|
}
|
|
142
|
-
dispatch({
|
|
143
|
-
type: 'set',
|
|
144
|
-
payload: merge({}, initialState, localConfig)
|
|
145
|
-
});
|
|
100
|
+
dispatch({ type: "set", payload: merge({}, initialState, localConfig) });
|
|
146
101
|
}, []);
|
|
147
102
|
useEffect(() => {
|
|
148
103
|
setLanguage(lang);
|
|
149
104
|
}, [lang]);
|
|
150
105
|
useEffect(() => {
|
|
151
|
-
|
|
152
|
-
|
|
106
|
+
var _a2;
|
|
107
|
+
if (enumRes == null ? void 0 : enumRes.data)
|
|
108
|
+
(_a2 = props == null ? void 0 : props.onSuccess) == null ? void 0 : _a2.call(props, enumRes.data, enumRes.params);
|
|
109
|
+
}, [enumRes == null ? void 0 : enumRes.loading]);
|
|
153
110
|
useEffect(() => {
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
})
|
|
167
|
-
})
|
|
168
|
-
});
|
|
111
|
+
var _a2;
|
|
112
|
+
if (frequentEnumRes == null ? void 0 : frequentEnumRes.data)
|
|
113
|
+
(_a2 = props == null ? void 0 : props.onSuccess) == null ? void 0 : _a2.call(props, frequentEnumRes.data, frequentEnumRes.params);
|
|
114
|
+
}, [frequentEnumRes == null ? void 0 : frequentEnumRes.loading]);
|
|
115
|
+
return /* @__PURE__ */ jsx(ThemeProvider, { children: /* @__PURE__ */ jsx(ProConfigContext.Provider, { value: { state: merge({}, state, props.value), dispatch }, children: /* @__PURE__ */ jsx(ThemeAwareConfigProvider, { locale: antdLangMap[lang] ?? zhCN, theme: props.theme, children: props.children }) }) });
|
|
116
|
+
};
|
|
117
|
+
var ProConfigProvider_default = ProConfigProvider;
|
|
118
|
+
export {
|
|
119
|
+
ProConfigContext,
|
|
120
|
+
ProConfigProvider,
|
|
121
|
+
ProConfigProvider_default as default,
|
|
122
|
+
useProConfig
|
|
169
123
|
};
|
|
170
|
-
export default ProConfigProvider;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|