@zat-design/sisyphus-react 4.5.9 → 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/dist/index.esm.css +1 -1
- package/dist/less.esm.css +1 -1
- 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.d.ts +2 -1
- package/es/ProDownload/index.js +74 -69
- package/es/ProDownload/propsType.js +0 -1
- package/es/ProDownload/utils.d.ts +10 -5
- package/es/ProDownload/utils.js +63 -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 +154 -235
- 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 +182 -212
- 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 -102
- package/es/ProForm/components/combination/FormList/components/Empty.js +28 -55
- 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/style/index.less +6 -0
- 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 +106 -213
- package/es/ProForm/components/combination/Group/hooks/index.js +69 -129
- 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 +72 -70
- package/es/ProForm/components/combination/ProModalSelect/index.js +309 -347
- 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 +62 -134
- 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 +160 -235
- 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 +113 -139
- 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 -24
- 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 -84
- 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 -63
- 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 +320 -350
- package/es/ProLayout/components/TabsManager/hooks/useTabsUrlSync.d.ts +19 -0
- package/es/ProLayout/components/TabsManager/hooks/useTabsUrlSync.js +332 -0
- package/es/ProLayout/components/TabsManager/index.js +407 -351
- package/es/ProLayout/components/TabsManager/propTypes.d.ts +4 -0
- package/es/ProLayout/components/TabsManager/propTypes.js +7 -15
- package/es/ProLayout/components/TabsManager/style/index.less +1 -1
- package/es/ProLayout/components/TabsManager/utils/historyObserver.d.ts +7 -0
- package/es/ProLayout/components/TabsManager/utils/historyObserver.js +65 -0
- package/es/ProLayout/components/TabsManager/utils/index.d.ts +15 -2
- package/es/ProLayout/components/TabsManager/utils/index.js +156 -159
- package/es/ProLayout/components/index.js +8 -3
- package/es/ProLayout/index.js +173 -228
- package/es/ProLayout/propTypes.d.ts +28 -1
- 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 +187 -223
- package/es/ProSelect/propsType.js +0 -1
- package/es/ProSelect/style/index.less +13 -0
- 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/style/index.less +1 -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 +191 -224
- 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 +41 -58
- 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 -168
- 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 +255 -459
- 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 -438
- 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 -148
- 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 -2
- package/es/ProConfigProvider/demo/locale.js +0 -58
|
@@ -1,20 +1,16 @@
|
|
|
1
|
-
import
|
|
2
|
-
import { useRef } from
|
|
3
|
-
import { Tooltip, Typography, Space } from
|
|
4
|
-
import { useSetState } from
|
|
5
|
-
import
|
|
6
|
-
import
|
|
7
|
-
import {
|
|
1
|
+
import { Fragment, jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { useRef } from "react";
|
|
3
|
+
import { Tooltip, Typography, Space } from "antd";
|
|
4
|
+
import { useSetState } from "ahooks";
|
|
5
|
+
import isBoolean from "lodash/isBoolean";
|
|
6
|
+
import classNames from "classnames";
|
|
7
|
+
import { CheckOutlined } from "@ant-design/icons";
|
|
8
|
+
import { ReactSVG } from "react-svg";
|
|
8
9
|
import { isEmpty, isEllipsisActive } from "../../../utils";
|
|
9
10
|
import copySvg from "../../../assets/copy.svg";
|
|
10
11
|
import locale from "../../../locale";
|
|
11
|
-
|
|
12
|
-
const {
|
|
13
|
-
Paragraph,
|
|
14
|
-
Text
|
|
15
|
-
} = Typography;
|
|
16
|
-
// @ts-ignore
|
|
17
|
-
const RenderColumn = props => {
|
|
12
|
+
const { Paragraph, Text } = Typography;
|
|
13
|
+
const RenderColumn = (props) => {
|
|
18
14
|
const {
|
|
19
15
|
valueType,
|
|
20
16
|
value,
|
|
@@ -30,219 +26,195 @@ const RenderColumn = props => {
|
|
|
30
26
|
scroll
|
|
31
27
|
} = props;
|
|
32
28
|
const textRef = useRef(null);
|
|
33
|
-
const [{
|
|
34
|
-
tooltip
|
|
35
|
-
}, setState] = useSetState({
|
|
29
|
+
const [{ tooltip }, setState] = useSetState({
|
|
36
30
|
tooltip: false
|
|
37
31
|
});
|
|
38
32
|
const cellDiffCls = classNames({
|
|
39
|
-
|
|
40
|
-
|
|
33
|
+
"varied-cell": props == null ? void 0 : props.isChanged,
|
|
34
|
+
"add-cell": props == null ? void 0 : props.isAddCell
|
|
41
35
|
});
|
|
42
|
-
const handleMouseOver = e => {
|
|
36
|
+
const handleMouseOver = (e) => {
|
|
43
37
|
setState({
|
|
44
38
|
tooltip: isEllipsisActive(e.target)
|
|
45
39
|
});
|
|
46
40
|
};
|
|
47
41
|
const tooltipProps = {
|
|
48
|
-
getPopupContainer: triggerNode => triggerNode.parentNode,
|
|
42
|
+
getPopupContainer: (triggerNode) => triggerNode.parentNode,
|
|
49
43
|
...toolTipProps
|
|
50
44
|
};
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
let renderNode = value ? node : '-';
|
|
55
|
-
const isXMaxContent = scroll?.x === 'max-content';
|
|
56
|
-
|
|
57
|
-
// 新增行场景:直接显示带样式的内容
|
|
45
|
+
if (isBoolean(props == null ? void 0 : props.isChanged) || isInNewRowFlag) {
|
|
46
|
+
let renderNode = value ? node : "-";
|
|
47
|
+
const isXMaxContent = (scroll == null ? void 0 : scroll.x) === "max-content";
|
|
58
48
|
if (isInNewRowFlag) {
|
|
59
49
|
if (ellipsis) {
|
|
60
|
-
renderNode = !isXMaxContent ?
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
minWidth
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
50
|
+
renderNode = !isXMaxContent ? /* @__PURE__ */ jsx(
|
|
51
|
+
Text,
|
|
52
|
+
{
|
|
53
|
+
style: { width: currentValue === "-" ? 32.5 : width, minWidth },
|
|
54
|
+
ellipsis: { tooltip: false },
|
|
55
|
+
children: node
|
|
56
|
+
}
|
|
57
|
+
) : /* @__PURE__ */ jsx(
|
|
58
|
+
"div",
|
|
59
|
+
{
|
|
60
|
+
style: {
|
|
61
|
+
minWidth,
|
|
62
|
+
width,
|
|
63
|
+
overflow: "hidden",
|
|
64
|
+
textOverflow: "ellipsis",
|
|
65
|
+
whiteSpace: "nowrap"
|
|
66
|
+
},
|
|
67
|
+
children: node
|
|
68
|
+
}
|
|
69
|
+
);
|
|
70
|
+
}
|
|
71
|
+
return /* @__PURE__ */ jsx("div", { className: "add-cell", style: { width, minWidth }, children: renderNode });
|
|
72
|
+
}
|
|
73
|
+
if (ellipsis || (props == null ? void 0 : props.isChanged)) {
|
|
74
|
+
renderNode = !isXMaxContent ? /* @__PURE__ */ jsx(
|
|
75
|
+
Text,
|
|
76
|
+
{
|
|
77
|
+
style: { width: currentValue === "-" ? 32.5 : width, minWidth },
|
|
78
|
+
ellipsis: { tooltip: false },
|
|
79
|
+
children: ellipsis ? node : renderNode
|
|
80
|
+
}
|
|
81
|
+
) : /* @__PURE__ */ jsx(
|
|
82
|
+
"div",
|
|
83
|
+
{
|
|
70
84
|
style: {
|
|
71
85
|
minWidth,
|
|
72
86
|
width,
|
|
73
|
-
overflow:
|
|
74
|
-
textOverflow:
|
|
75
|
-
whiteSpace:
|
|
87
|
+
overflow: "hidden",
|
|
88
|
+
textOverflow: "ellipsis",
|
|
89
|
+
whiteSpace: "nowrap"
|
|
76
90
|
},
|
|
77
|
-
children: node
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
className: "add-cell",
|
|
82
|
-
style: {
|
|
83
|
-
width,
|
|
84
|
-
minWidth
|
|
85
|
-
},
|
|
86
|
-
children: renderNode
|
|
87
|
-
});
|
|
88
|
-
}
|
|
89
|
-
if (ellipsis || props?.isChanged) {
|
|
90
|
-
renderNode = !isXMaxContent ? /*#__PURE__*/_jsx(Text, {
|
|
91
|
-
style: {
|
|
92
|
-
width: currentValue === '-' ? 32.5 : width,
|
|
93
|
-
minWidth
|
|
94
|
-
},
|
|
95
|
-
ellipsis: {
|
|
96
|
-
tooltip: false
|
|
97
|
-
},
|
|
98
|
-
children: ellipsis ? node : renderNode
|
|
99
|
-
}) : /*#__PURE__*/_jsx("div", {
|
|
100
|
-
style: {
|
|
101
|
-
minWidth,
|
|
102
|
-
width,
|
|
103
|
-
overflow: 'hidden',
|
|
104
|
-
textOverflow: 'ellipsis',
|
|
105
|
-
whiteSpace: 'nowrap'
|
|
106
|
-
},
|
|
107
|
-
children: ellipsis ? node : renderNode
|
|
108
|
-
});
|
|
109
|
-
if (props?.isChanged === false) {
|
|
91
|
+
children: ellipsis ? node : renderNode
|
|
92
|
+
}
|
|
93
|
+
);
|
|
94
|
+
if ((props == null ? void 0 : props.isChanged) === false) {
|
|
110
95
|
if (ellipsis) {
|
|
111
|
-
return
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
...tooltipProps,
|
|
120
|
-
children: /*#__PURE__*/_jsx(Text, {
|
|
121
|
-
style: {
|
|
122
|
-
width,
|
|
123
|
-
minWidth
|
|
96
|
+
return /* @__PURE__ */ jsx(
|
|
97
|
+
Tooltip,
|
|
98
|
+
{
|
|
99
|
+
title: currentValue,
|
|
100
|
+
onOpenChange: (open) => {
|
|
101
|
+
setState({
|
|
102
|
+
tooltip: false
|
|
103
|
+
});
|
|
124
104
|
},
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
105
|
+
open: tooltip,
|
|
106
|
+
...tooltipProps,
|
|
107
|
+
children: /* @__PURE__ */ jsx(
|
|
108
|
+
Text,
|
|
109
|
+
{
|
|
110
|
+
style: {
|
|
111
|
+
width,
|
|
112
|
+
minWidth
|
|
113
|
+
},
|
|
114
|
+
ellipsis: true,
|
|
115
|
+
onMouseOver: handleMouseOver,
|
|
116
|
+
onFocus: handleMouseOver,
|
|
117
|
+
children: renderNode
|
|
118
|
+
}
|
|
119
|
+
)
|
|
120
|
+
}
|
|
121
|
+
);
|
|
131
122
|
}
|
|
132
123
|
return renderNode;
|
|
133
124
|
}
|
|
134
125
|
if (Array.isArray(originalValue)) {
|
|
135
|
-
console.error(
|
|
126
|
+
console.error(
|
|
127
|
+
"Error: When enabled, dataIndex corresponds to an array, which needs to be converted using viewRender"
|
|
128
|
+
);
|
|
136
129
|
}
|
|
137
130
|
const originalValueCalc = () => {
|
|
138
131
|
if (Array.isArray(originalValue)) {
|
|
139
132
|
return null;
|
|
140
133
|
}
|
|
141
|
-
return !isEmpty(originalValue) ? originalValue :
|
|
134
|
+
return !isEmpty(originalValue) ? originalValue : "-";
|
|
142
135
|
};
|
|
143
|
-
return
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
minWidth
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
children:
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
})]
|
|
168
|
-
}) : node
|
|
169
|
-
}),
|
|
170
|
-
...toolTipProps,
|
|
171
|
-
children: /*#__PURE__*/_jsx("div", {
|
|
172
|
-
className: cellDiffCls,
|
|
173
|
-
children: renderNode
|
|
174
|
-
})
|
|
175
|
-
});
|
|
136
|
+
return /* @__PURE__ */ jsx(
|
|
137
|
+
Tooltip,
|
|
138
|
+
{
|
|
139
|
+
style: { width, minWidth },
|
|
140
|
+
classNames: {
|
|
141
|
+
root: "original-value-tooltip"
|
|
142
|
+
},
|
|
143
|
+
destroyOnHidden: true,
|
|
144
|
+
placement: "topLeft",
|
|
145
|
+
autoAdjustOverflow: false,
|
|
146
|
+
title: /* @__PURE__ */ jsx(Space, { orientation: "vertical", className: "changed-tooltip", children: (props == null ? void 0 : props.isChanged) && !(props == null ? void 0 : props.isAddCell) ? /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
147
|
+
/* @__PURE__ */ jsxs(Space, { align: "start", className: "original-value-container", children: [
|
|
148
|
+
"初始值:",
|
|
149
|
+
originalValueCalc()
|
|
150
|
+
] }),
|
|
151
|
+
/* @__PURE__ */ jsx(Space, { className: "current-value-container", children: ellipsis ? /* @__PURE__ */ jsxs(Space, { children: [
|
|
152
|
+
"当前值:",
|
|
153
|
+
currentValue
|
|
154
|
+
] }) : null })
|
|
155
|
+
] }) : node }),
|
|
156
|
+
...toolTipProps,
|
|
157
|
+
children: /* @__PURE__ */ jsx("div", { className: cellDiffCls, children: renderNode })
|
|
158
|
+
}
|
|
159
|
+
);
|
|
176
160
|
}
|
|
177
|
-
return
|
|
178
|
-
className: cellDiffCls,
|
|
179
|
-
style: {
|
|
180
|
-
width,
|
|
181
|
-
minWidth
|
|
182
|
-
},
|
|
183
|
-
children: renderNode
|
|
184
|
-
});
|
|
161
|
+
return /* @__PURE__ */ jsx("div", { className: cellDiffCls, style: { width, minWidth }, children: renderNode });
|
|
185
162
|
}
|
|
186
163
|
if (copyable) {
|
|
187
|
-
return
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
style: ellipsis ? {
|
|
191
|
-
|
|
192
|
-
} : undefined,
|
|
193
|
-
ellipsis: ellipsis ? {
|
|
194
|
-
tooltip: node
|
|
195
|
-
} : false,
|
|
164
|
+
return /* @__PURE__ */ jsx("span", { className: "copyable-table-cell", children: /* @__PURE__ */ jsx(
|
|
165
|
+
Paragraph,
|
|
166
|
+
{
|
|
167
|
+
style: ellipsis ? { width } : void 0,
|
|
168
|
+
ellipsis: ellipsis ? { tooltip: node } : false,
|
|
196
169
|
copyable: {
|
|
197
170
|
text: node,
|
|
198
|
-
icon: [
|
|
199
|
-
className: "drag-icon",
|
|
200
|
-
|
|
201
|
-
|
|
171
|
+
icon: [
|
|
172
|
+
/* @__PURE__ */ jsx(ReactSVG, { className: "drag-icon", src: copySvg }, "copy-icon"),
|
|
173
|
+
/* @__PURE__ */ jsx(CheckOutlined, {}, "copied-icon")
|
|
174
|
+
],
|
|
202
175
|
tooltips: locale.ProHeader.copyTooltips
|
|
203
176
|
},
|
|
204
177
|
children: node
|
|
205
|
-
}
|
|
206
|
-
});
|
|
178
|
+
}
|
|
179
|
+
) });
|
|
207
180
|
}
|
|
208
181
|
if (ellipsis) {
|
|
209
182
|
if (!value) {
|
|
210
|
-
return
|
|
211
|
-
style: {
|
|
212
|
-
minWidth
|
|
213
|
-
},
|
|
214
|
-
children: "-"
|
|
215
|
-
});
|
|
183
|
+
return /* @__PURE__ */ jsx("div", { style: { minWidth }, children: "-" });
|
|
216
184
|
}
|
|
217
|
-
return
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
...tooltipProps,
|
|
227
|
-
getPopupContainer: () => document.body,
|
|
228
|
-
children: /*#__PURE__*/_jsx(Text, {
|
|
229
|
-
ref: textRef,
|
|
230
|
-
style: {
|
|
231
|
-
width,
|
|
232
|
-
minWidth
|
|
185
|
+
return /* @__PURE__ */ jsx(
|
|
186
|
+
Tooltip,
|
|
187
|
+
{
|
|
188
|
+
title: value,
|
|
189
|
+
destroyOnHidden: true,
|
|
190
|
+
onOpenChange: () => {
|
|
191
|
+
setState({
|
|
192
|
+
tooltip: false
|
|
193
|
+
});
|
|
233
194
|
},
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
children:
|
|
238
|
-
|
|
239
|
-
|
|
195
|
+
open: tooltip,
|
|
196
|
+
...tooltipProps,
|
|
197
|
+
getPopupContainer: () => document.body,
|
|
198
|
+
children: /* @__PURE__ */ jsx(
|
|
199
|
+
Text,
|
|
200
|
+
{
|
|
201
|
+
ref: textRef,
|
|
202
|
+
style: {
|
|
203
|
+
width,
|
|
204
|
+
minWidth
|
|
205
|
+
},
|
|
206
|
+
ellipsis: true,
|
|
207
|
+
onMouseOver: handleMouseOver,
|
|
208
|
+
onFocus: handleMouseOver,
|
|
209
|
+
children: node
|
|
210
|
+
}
|
|
211
|
+
)
|
|
212
|
+
}
|
|
213
|
+
);
|
|
240
214
|
}
|
|
241
|
-
return
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
});
|
|
215
|
+
return /* @__PURE__ */ jsx("div", { style: { minWidth }, children: value || value === 0 ? node : "-" });
|
|
216
|
+
};
|
|
217
|
+
var RenderColumn_default = RenderColumn;
|
|
218
|
+
export {
|
|
219
|
+
RenderColumn_default as default
|
|
247
220
|
};
|
|
248
|
-
export default RenderColumn;
|
|
@@ -1,22 +1,13 @@
|
|
|
1
|
-
import { jsx
|
|
2
|
-
const RenderEmptyText = props => {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
src: empty,
|
|
14
|
-
alt: locale?.ProTable?.noData
|
|
15
|
-
})
|
|
16
|
-
}), /*#__PURE__*/_jsx("div", {
|
|
17
|
-
className: "empty-description",
|
|
18
|
-
children: typeof emptyText === 'function' ? emptyText() : emptyText
|
|
19
|
-
})]
|
|
20
|
-
});
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
const RenderEmptyText = (props) => {
|
|
3
|
+
var _a;
|
|
4
|
+
const { empty, locale, emptyText } = props || {};
|
|
5
|
+
return /* @__PURE__ */ jsxs("div", { className: "pro-table-empty", children: [
|
|
6
|
+
/* @__PURE__ */ jsx("div", { className: "empty-image", children: /* @__PURE__ */ jsx("img", { src: empty, alt: (_a = locale == null ? void 0 : locale.ProTable) == null ? void 0 : _a.noData }) }),
|
|
7
|
+
/* @__PURE__ */ jsx("div", { className: "empty-description", children: typeof emptyText === "function" ? emptyText() : emptyText })
|
|
8
|
+
] });
|
|
9
|
+
};
|
|
10
|
+
var RenderEmptyText_default = RenderEmptyText;
|
|
11
|
+
export {
|
|
12
|
+
RenderEmptyText_default as default
|
|
21
13
|
};
|
|
22
|
-
export default RenderEmptyText;
|
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
import { jsx
|
|
2
|
-
const RenderFooter = props => {
|
|
3
|
-
const {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
const RenderFooter = (props) => {
|
|
3
|
+
const { dataSource } = props || {};
|
|
4
|
+
const { footerRender, pagination, _dataSource } = dataSource || {};
|
|
5
|
+
return footerRender ? /* @__PURE__ */ jsx(
|
|
6
|
+
"div",
|
|
7
|
+
{
|
|
8
|
+
className: `pro-table-footer ${pagination && !!(_dataSource == null ? void 0 : _dataSource.length) ? "has-page" : "no-page"}`,
|
|
9
|
+
children: typeof footerRender === "function" ? footerRender() : footerRender
|
|
10
|
+
}
|
|
11
|
+
) : null;
|
|
12
|
+
};
|
|
13
|
+
var RenderFooter_default = RenderFooter;
|
|
14
|
+
export {
|
|
15
|
+
RenderFooter_default as default
|
|
15
16
|
};
|
|
16
|
-
export default RenderFooter;
|
|
@@ -1,55 +1,38 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
3
|
-
import
|
|
4
|
-
import
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { Table } from "antd";
|
|
3
|
+
import get from "lodash/get";
|
|
4
|
+
import isObject from "lodash/isObject";
|
|
5
|
+
import { tools } from "@zat-design/utils";
|
|
5
6
|
import { valueTypeRender } from "../../../ProUtils/utils";
|
|
6
|
-
|
|
7
|
-
const
|
|
8
|
-
const {
|
|
9
|
-
|
|
10
|
-
dataSource
|
|
11
|
-
} = props;
|
|
12
|
-
const {
|
|
13
|
-
columns,
|
|
14
|
-
total = true,
|
|
15
|
-
fixed = true
|
|
16
|
-
} = summary || {};
|
|
17
|
-
// 没有数据时,不展示合计栏
|
|
18
|
-
if (!dataSource?.length) {
|
|
7
|
+
const renderSummary = (props) => {
|
|
8
|
+
const { summary, dataSource } = props;
|
|
9
|
+
const { columns, total = true, fixed = true } = summary || {};
|
|
10
|
+
if (!(dataSource == null ? void 0 : dataSource.length)) {
|
|
19
11
|
return null;
|
|
20
12
|
}
|
|
21
|
-
return
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
13
|
+
return isObject(summary) ? /* @__PURE__ */ jsx(Table.Summary, { fixed, children: /* @__PURE__ */ jsx(Table.Summary.Row, { children: columns == null ? void 0 : columns.map(
|
|
14
|
+
({ key, dataIndex, index, colSpan, prefix, suffix, title, precision, valueType }) => {
|
|
15
|
+
var _a, _b;
|
|
16
|
+
const _key = key || dataIndex;
|
|
17
|
+
let text = null;
|
|
18
|
+
if (title) {
|
|
19
|
+
text = title;
|
|
20
|
+
} else if (total && _key) {
|
|
21
|
+
const format = (_a = valueTypeRender) == null ? void 0 : _a[valueType];
|
|
22
|
+
const sum = (_b = dataSource == null ? void 0 : dataSource.reduce) == null ? void 0 : _b.call(dataSource, (pre, cur) => {
|
|
23
|
+
return tools.calc(pre, "+", get(cur, _key) ?? 0);
|
|
24
|
+
}, 0);
|
|
25
|
+
text = format ? format(sum, precision ?? 2) : sum;
|
|
26
|
+
}
|
|
27
|
+
return /* @__PURE__ */ jsxs(Table.Summary.Cell, { index, colSpan, children: [
|
|
29
28
|
prefix,
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
} else if (total && _key) {
|
|
40
|
-
const format = valueTypeRender?.[valueType];
|
|
41
|
-
const sum = dataSource?.reduce?.((pre, cur) => {
|
|
42
|
-
return tools.calc(pre, '+', _get(cur, _key) ?? 0);
|
|
43
|
-
}, 0);
|
|
44
|
-
text = format ? format(sum, precision ?? 2) : sum;
|
|
45
|
-
}
|
|
46
|
-
return /*#__PURE__*/_jsxs(Table.Summary.Cell, {
|
|
47
|
-
index: index,
|
|
48
|
-
colSpan: colSpan,
|
|
49
|
-
children: [prefix, text, suffix]
|
|
50
|
-
}, _key);
|
|
51
|
-
})
|
|
52
|
-
})
|
|
53
|
-
}) : summary;
|
|
29
|
+
text,
|
|
30
|
+
suffix
|
|
31
|
+
] }, _key);
|
|
32
|
+
}
|
|
33
|
+
) }) }) : summary;
|
|
34
|
+
};
|
|
35
|
+
var RenderSummary_default = renderSummary;
|
|
36
|
+
export {
|
|
37
|
+
RenderSummary_default as default
|
|
54
38
|
};
|
|
55
|
-
export default renderSummary;
|
|
@@ -1,11 +1,10 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { Button } from "antd";
|
|
3
|
+
import { ReactSVG } from "react-svg";
|
|
3
4
|
import { ProTreeModal } from "../../../index";
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
const {
|
|
7
|
-
dataSource
|
|
8
|
-
} = props;
|
|
5
|
+
const RenderTableHeader = (props) => {
|
|
6
|
+
var _a, _b, _c;
|
|
7
|
+
const { dataSource } = props;
|
|
9
8
|
const {
|
|
10
9
|
headerRender,
|
|
11
10
|
columnConfig,
|
|
@@ -18,46 +17,45 @@ const RenderTableHeader = props => {
|
|
|
18
17
|
handleColumnConfig,
|
|
19
18
|
customColumnSvg
|
|
20
19
|
} = dataSource || {};
|
|
21
|
-
|
|
22
|
-
// 没有数据时,不展示tableHeader
|
|
23
20
|
if (!(headerRender || columnConfig || resizeColumn)) {
|
|
24
21
|
return null;
|
|
25
22
|
}
|
|
26
|
-
return
|
|
27
|
-
className: "
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
23
|
+
return /* @__PURE__ */ jsxs("div", { className: "column-config", children: [
|
|
24
|
+
/* @__PURE__ */ jsx("div", { className: "left-contain", children: headerRender ? typeof headerRender === "function" ? headerRender() : headerRender : null }),
|
|
25
|
+
/* @__PURE__ */ jsxs("div", { className: "right-actions", children: [
|
|
26
|
+
resizeColumn && /* @__PURE__ */ jsx(
|
|
27
|
+
Button,
|
|
28
|
+
{
|
|
29
|
+
icon: /* @__PURE__ */ jsx(ReactSVG, { className: "anticon", wrapper: "span", src: resetSvg }),
|
|
30
|
+
onClick: resetColumnWidth,
|
|
31
|
+
children: (_a = locale == null ? void 0 : locale.ProTable) == null ? void 0 : _a.resetColumnWidth
|
|
32
|
+
}
|
|
33
|
+
),
|
|
34
|
+
columnConfig && /* @__PURE__ */ jsx(
|
|
35
|
+
ProTreeModal,
|
|
36
|
+
{
|
|
37
|
+
title: (_b = locale == null ? void 0 : locale.ProTable) == null ? void 0 : _b.customColumns,
|
|
38
|
+
span: 8,
|
|
39
|
+
mode: "list",
|
|
40
|
+
draggable: true,
|
|
41
|
+
dataSource: customColumns,
|
|
42
|
+
value: checkColumns,
|
|
43
|
+
allValue: "all",
|
|
44
|
+
onChange: handleColumnConfig,
|
|
45
|
+
trigger: /* @__PURE__ */ jsx(
|
|
46
|
+
Button,
|
|
47
|
+
{
|
|
48
|
+
className: "custom-column-btn",
|
|
49
|
+
icon: /* @__PURE__ */ jsx(ReactSVG, { className: "anticon", wrapper: "span", src: customColumnSvg }),
|
|
50
|
+
children: (_c = locale == null ? void 0 : locale.ProTable) == null ? void 0 : _c.customColumns
|
|
51
|
+
}
|
|
52
|
+
)
|
|
53
|
+
}
|
|
54
|
+
)
|
|
55
|
+
] })
|
|
56
|
+
] });
|
|
57
|
+
};
|
|
58
|
+
var RenderTableHeader_default = RenderTableHeader;
|
|
59
|
+
export {
|
|
60
|
+
RenderTableHeader_default as default
|
|
62
61
|
};
|
|
63
|
-
export default RenderTableHeader;
|