@oceanbase/ui 1.0.0-alpha.1 → 1.0.0-alpha.3
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/ui.min.css +1 -1
- package/dist/ui.min.js +1 -1
- package/es/Action/style/index.d.ts +2 -2
- package/es/DateRanger/Ranger.d.ts +4 -0
- package/es/DateRanger/Ranger.js +158 -14
- package/es/DateRanger/constant/index.js +1 -1
- package/es/DateRanger/index.less +23 -0
- package/es/FooterToolbar/style/index.d.ts +0 -2
- package/es/FooterToolbar/style/index.js +0 -12
- package/es/PageContainer/index.js +14 -4
- package/es/PageContainer/style/index.js +5 -7
- package/es/ProCard/index.js +11 -3
- package/es/ProCard/style/index.d.ts +2 -2
- package/es/ProCard/style/index.js +6 -3
- package/es/ProTable/index.d.ts +1 -1
- package/es/ProTable/index.js +11 -5
- package/es/ProTable/style/index.d.ts +2 -2
- package/es/ProTable/style/index.js +6 -3
- package/lib/Action/Group.js +57 -46
- package/lib/Action/Item.js +14 -9
- package/lib/Action/style/index.d.ts +2 -2
- package/lib/BackgroundTaskManager/RefreshMan.js +3 -12
- package/lib/BackgroundTaskManager/index.js +3 -12
- package/lib/BasicLayout/Header.js +120 -62
- package/lib/BasicLayout/index.js +166 -143
- package/lib/BatchOperationBar/index.js +59 -44
- package/lib/Boundary/Components/Code.js +11 -5
- package/lib/Boundary/Components/Exception.js +33 -23
- package/lib/Boundary/Components/Function.js +11 -5
- package/lib/ContentWithIcon/index.js +30 -22
- package/lib/ContentWithQuestion/index.js +8 -3
- package/lib/DateRanger/PickerPanel.js +235 -217
- package/lib/DateRanger/Ranger.d.ts +4 -0
- package/lib/DateRanger/Ranger.js +396 -227
- package/lib/DateRanger/constant/index.js +1 -1
- package/lib/DateRanger/index.less +23 -0
- package/lib/Dialog/Anchor.js +8 -5
- package/lib/Dialog/EventProxy.js +3 -12
- package/lib/Dialog/index.js +132 -108
- package/lib/DocDialog/index.js +3 -2
- package/lib/FooterToolbar/index.js +3 -2
- package/lib/FooterToolbar/style/index.d.ts +0 -2
- package/lib/FooterToolbar/style/index.js +0 -17
- package/lib/FullscreenBox/index.js +16 -7
- package/lib/GraphToolbar/index.js +70 -58
- package/lib/Highlight/DiffView/DiffCells.js +17 -10
- package/lib/Highlight/DiffView/index.js +35 -31
- package/lib/Highlight/HighlightCell.js +13 -10
- package/lib/Highlight/JsonView.js +15 -14
- package/lib/Highlight/index.js +50 -45
- package/lib/IconFont/index.js +2 -12
- package/lib/LightFilter/index.js +3 -2
- package/lib/LocaleDropdown/index.js +13 -20
- package/lib/Login/ActivateForm.js +53 -60
- package/lib/Login/LoginForm.js +118 -109
- package/lib/Login/RegisterForm.js +79 -86
- package/lib/Login/index.js +92 -64
- package/lib/NavMenu/index.js +9 -8
- package/lib/PageContainer/ItemRender.js +5 -5
- package/lib/PageContainer/index.js +17 -6
- package/lib/PageContainer/style/index.js +5 -6
- package/lib/PageLoading/index.js +6 -16
- package/lib/Password/Content.js +38 -42
- package/lib/Password/index.js +83 -68
- package/lib/ProCard/index.js +6 -3
- package/lib/ProCard/style/index.d.ts +2 -2
- package/lib/ProCard/style/index.js +6 -2
- package/lib/ProTable/index.d.ts +1 -1
- package/lib/ProTable/index.js +19 -8
- package/lib/ProTable/style/index.d.ts +2 -2
- package/lib/ProTable/style/index.js +7 -1
- package/lib/Ranger/QuickPicker.js +24 -15
- package/lib/Ranger/Ranger.js +37 -34
- package/lib/SideTip/Dragger.js +5 -4
- package/lib/SideTip/IconLoading.js +25 -25
- package/lib/SideTip/index.js +19 -10
- package/lib/TagSelect/Group.js +9 -5
- package/lib/TagSelect/Item.js +22 -18
- package/lib/TaskGraph/Graph.js +29 -24
- package/lib/TaskGraph/index.js +56 -50
- package/lib/TreeSearch/index.js +30 -35
- package/lib/Welcome/index.js +64 -37
- package/lib/Welcome/step.js +11 -4
- package/lib/locale/LocaleWrapper.js +15 -14
- package/package.json +4 -4
|
@@ -33,20 +33,26 @@ __export(Function_exports, {
|
|
|
33
33
|
});
|
|
34
34
|
module.exports = __toCommonJS(Function_exports);
|
|
35
35
|
var import_design = require("@oceanbase/design");
|
|
36
|
-
var import_react =
|
|
36
|
+
var import_react = require("react");
|
|
37
37
|
var import_classnames = __toESM(require("classnames"));
|
|
38
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
38
39
|
var BoundaryFunction = (props) => {
|
|
39
40
|
const { children, state, config, onClick, className, ...restProps } = props;
|
|
40
41
|
const info = (0, import_react.useMemo)(() => {
|
|
41
42
|
return state ? config[state] : config[Object.keys(config)[0]];
|
|
42
43
|
}, [config, state]);
|
|
43
|
-
return /* @__PURE__ */
|
|
44
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
44
45
|
"div",
|
|
45
46
|
{
|
|
46
47
|
className: (0, import_classnames.default)("boundary-container", "ob-boundary-function", className),
|
|
47
|
-
...restProps
|
|
48
|
-
|
|
49
|
-
|
|
48
|
+
...restProps,
|
|
49
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("div", { className: "empty", children: [
|
|
50
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("img", { src: info.imageUrl }),
|
|
51
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("h4", { children: info.title }),
|
|
52
|
+
children,
|
|
53
|
+
info.buttonText && /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_design.Button, { type: "primary", onClick: onClick || info.onClick, children: info.buttonText })
|
|
54
|
+
] })
|
|
55
|
+
}
|
|
50
56
|
);
|
|
51
57
|
};
|
|
52
58
|
// Annotate the CommonJS export names for ESM import in node:
|
|
@@ -32,12 +32,13 @@ __export(ContentWithIcon_exports, {
|
|
|
32
32
|
default: () => ContentWithIcon_default
|
|
33
33
|
});
|
|
34
34
|
module.exports = __toCommonJS(ContentWithIcon_exports);
|
|
35
|
-
var import_react =
|
|
35
|
+
var import_react = require("react");
|
|
36
36
|
var import_antd = require("antd");
|
|
37
37
|
var import_icons = require("@oceanbase/icons");
|
|
38
38
|
var import_classnames = __toESM(require("classnames"));
|
|
39
39
|
var import_util = require("../_util");
|
|
40
40
|
var import_index = require("./index.less");
|
|
41
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
41
42
|
var prefix = (0, import_util.getPrefix)("content-with-question");
|
|
42
43
|
var ContentWithIcon = ({
|
|
43
44
|
content,
|
|
@@ -58,7 +59,7 @@ var ContentWithIcon = ({
|
|
|
58
59
|
}) => {
|
|
59
60
|
const defaultIconType = () => {
|
|
60
61
|
if (iconType === "question") {
|
|
61
|
-
return /* @__PURE__ */
|
|
62
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
62
63
|
import_icons.QuestionCircleOutlined,
|
|
63
64
|
{
|
|
64
65
|
style: { color: color === "default" ? "#132039" : color, fontSize: size },
|
|
@@ -68,7 +69,7 @@ var ContentWithIcon = ({
|
|
|
68
69
|
}
|
|
69
70
|
if (iconType === "info") {
|
|
70
71
|
if (infoColor) {
|
|
71
|
-
return /* @__PURE__ */
|
|
72
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
72
73
|
import_icons.InfoCircleFilled,
|
|
73
74
|
{
|
|
74
75
|
style: { color: infoColor, fontSize: size },
|
|
@@ -76,7 +77,7 @@ var ContentWithIcon = ({
|
|
|
76
77
|
}
|
|
77
78
|
);
|
|
78
79
|
} else {
|
|
79
|
-
return /* @__PURE__ */
|
|
80
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
80
81
|
import_icons.InfoCircleOutlined,
|
|
81
82
|
{
|
|
82
83
|
style: { color: "3333333", fontSize: size },
|
|
@@ -86,7 +87,7 @@ var ContentWithIcon = ({
|
|
|
86
87
|
}
|
|
87
88
|
}
|
|
88
89
|
if (iconType === "exclamation") {
|
|
89
|
-
return /* @__PURE__ */
|
|
90
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
90
91
|
import_icons.ExclamationCircleFilled,
|
|
91
92
|
{
|
|
92
93
|
style: { color: exclamationColor, fontSize: size },
|
|
@@ -99,32 +100,39 @@ var ContentWithIcon = ({
|
|
|
99
100
|
const getIcon = (iconConfig) => {
|
|
100
101
|
return iconConfig ? !textHidden && iconType === "info" ? (
|
|
101
102
|
// 文本描述直接展示且只在 info 类型下生效
|
|
102
|
-
/* @__PURE__ */
|
|
103
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_antd.Space, { size: 4, children: [
|
|
104
|
+
iconConfig,
|
|
105
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("span", { style: { color: "#5C6B8A" }, children: "文本示意不超过二十字文本示意不超过二十字" })
|
|
106
|
+
] })
|
|
103
107
|
) : (
|
|
104
108
|
// 提示文案描述带有链接
|
|
105
|
-
tooltipWithLink ? /* @__PURE__ */
|
|
109
|
+
tooltipWithLink ? /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_antd.Popover, { ...popOver, children: (0, import_react.isValidElement)(iconConfig) ? iconConfig : defaultIconType() }) : /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_antd.Tooltip, { ...tooltip, children: (0, import_react.isValidElement)(iconConfig) ? iconConfig : defaultIconType() })
|
|
106
110
|
) : null;
|
|
107
111
|
};
|
|
108
|
-
return /* @__PURE__ */
|
|
112
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_jsx_runtime.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
109
113
|
"span",
|
|
110
114
|
{
|
|
111
115
|
className: (0, import_classnames.default)({
|
|
112
116
|
[`${prefix}-item`]: true,
|
|
113
117
|
[className]: !!className
|
|
114
118
|
}),
|
|
115
|
-
...restProps
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
119
|
+
...restProps,
|
|
120
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_antd.Space, { size: 4, children: [
|
|
121
|
+
getIcon(
|
|
122
|
+
// 图标在文字前
|
|
123
|
+
prefixIcon === true ? defaultIconType() : prefixIcon
|
|
124
|
+
),
|
|
125
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
126
|
+
"span",
|
|
127
|
+
{
|
|
128
|
+
"data-testid": "content",
|
|
129
|
+
style: { color: color === "default" ? "#5C6B8A" : color, fontSize: size },
|
|
130
|
+
children: content ?? children
|
|
131
|
+
}
|
|
132
|
+
),
|
|
133
|
+
getIcon(suffixIcon)
|
|
134
|
+
] })
|
|
135
|
+
}
|
|
136
|
+
) });
|
|
129
137
|
};
|
|
130
138
|
var ContentWithIcon_default = ContentWithIcon;
|
|
@@ -35,8 +35,9 @@ module.exports = __toCommonJS(ContentWithQuestion_exports);
|
|
|
35
35
|
var import_icons = require("@oceanbase/icons");
|
|
36
36
|
var import_design = require("@oceanbase/design");
|
|
37
37
|
var import_classnames = __toESM(require("classnames"));
|
|
38
|
-
var import_react =
|
|
38
|
+
var import_react = require("react");
|
|
39
39
|
var import_style = __toESM(require("./style"));
|
|
40
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
40
41
|
var ContentWithQuestion = ({
|
|
41
42
|
content,
|
|
42
43
|
tooltip,
|
|
@@ -51,10 +52,14 @@ var ContentWithQuestion = ({
|
|
|
51
52
|
const prefixCls = getPrefixCls("content-with-question", customizePrefixCls);
|
|
52
53
|
const { wrapSSR } = (0, import_style.default)(prefixCls);
|
|
53
54
|
const getIcon = (iconConfig) => {
|
|
54
|
-
return iconConfig ? /* @__PURE__ */
|
|
55
|
+
return iconConfig ? /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_design.Tooltip, { ...tooltip, children: (0, import_react.isValidElement)(iconConfig) ? iconConfig : /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_icons.QuestionCircleOutlined, { className: `${prefixCls}-help` }) }) : null;
|
|
55
56
|
};
|
|
56
57
|
return wrapSSR(
|
|
57
|
-
/* @__PURE__ */
|
|
58
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("span", { className: (0, import_classnames.default)(`${prefixCls}-item`, className), ...restProps, children: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_design.Space, { children: [
|
|
59
|
+
getIcon(prefixIcon),
|
|
60
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("span", { "data-testid": "content", children: content ?? children }),
|
|
61
|
+
getIcon(suffixIcon)
|
|
62
|
+
] }) })
|
|
58
63
|
);
|
|
59
64
|
};
|
|
60
65
|
var ContentWithQuestion_default = ContentWithQuestion;
|
|
@@ -45,6 +45,7 @@ var import_moment2 = __toESM(require("moment"));
|
|
|
45
45
|
var import_dayjs2 = __toESM(require("dayjs"));
|
|
46
46
|
var import_util = require("../_util");
|
|
47
47
|
var import_constant = require("./constant");
|
|
48
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
48
49
|
var ALL_ERROR_TYPE_LIST = ["endDate", "startDate", "endTime", "startTime"];
|
|
49
50
|
var CLICK_STATE = {
|
|
50
51
|
START: "START",
|
|
@@ -140,233 +141,250 @@ var InternalPickerPanel = (props) => {
|
|
|
140
141
|
const v = e.target.value;
|
|
141
142
|
return formatDate(v);
|
|
142
143
|
};
|
|
143
|
-
return /* @__PURE__ */
|
|
144
|
-
import_design.
|
|
145
|
-
|
|
146
|
-
layout: "vertical",
|
|
147
|
-
autoComplete: "off",
|
|
148
|
-
requiredMark: false,
|
|
149
|
-
style: { width: 280 },
|
|
150
|
-
form
|
|
151
|
-
},
|
|
152
|
-
/* @__PURE__ */ import_react.default.createElement(import_design.Row, { gutter: 12, style: { marginBottom: 4 } }, /* @__PURE__ */ import_react.default.createElement(import_design.Col, { span: 12, style: { paddingLeft: 12 } }, /* @__PURE__ */ import_react.default.createElement(
|
|
153
|
-
import_design.Form.Item,
|
|
154
|
-
{
|
|
155
|
-
name: "startDate",
|
|
156
|
-
label: locale.startDate,
|
|
157
|
-
validateStatus: errorTypeMap["startDate"],
|
|
158
|
-
style: { marginBottom: 8 },
|
|
159
|
-
rules: [{ required: true }]
|
|
160
|
-
},
|
|
161
|
-
/* @__PURE__ */ import_react.default.createElement(
|
|
162
|
-
import_design.DatePicker,
|
|
163
|
-
{
|
|
164
|
-
format: {
|
|
165
|
-
format: "YYYY-MM-DD",
|
|
166
|
-
type: "mask"
|
|
167
|
-
},
|
|
168
|
-
style: { width: 128 },
|
|
169
|
-
open: false,
|
|
170
|
-
suffixIcon: null,
|
|
171
|
-
allowClear: false,
|
|
172
|
-
onBlur: (e) => {
|
|
173
|
-
const v = validateInputDate(e);
|
|
174
|
-
if (v) {
|
|
175
|
-
form.setFieldValue("startDate", getDateInstance(v));
|
|
176
|
-
setCalendarValue(([, eDate]) => {
|
|
177
|
-
return [getDateInstance(v), eDate];
|
|
178
|
-
});
|
|
179
|
-
} else {
|
|
180
|
-
setFormatDateToForm();
|
|
181
|
-
}
|
|
182
|
-
}
|
|
183
|
-
}
|
|
184
|
-
)
|
|
185
|
-
)), /* @__PURE__ */ import_react.default.createElement(import_design.Col, { span: 12, style: { paddingRight: 8 } }, /* @__PURE__ */ import_react.default.createElement(
|
|
186
|
-
import_design.Form.Item,
|
|
187
|
-
{
|
|
188
|
-
name: "startTime",
|
|
189
|
-
label: locale.startTime,
|
|
190
|
-
style: { marginBottom: 8 },
|
|
191
|
-
validateStatus: errorTypeMap["startTime"],
|
|
192
|
-
initialValue: defaultS || defaultTime,
|
|
193
|
-
rules: [{ required: true }]
|
|
194
|
-
},
|
|
195
|
-
/* @__PURE__ */ import_react.default.createElement(
|
|
196
|
-
import_design.TimePicker,
|
|
197
|
-
{
|
|
198
|
-
allowClear: false,
|
|
199
|
-
suffixIcon: null,
|
|
200
|
-
needConfirm: false,
|
|
201
|
-
getPopupContainer: (triggerNode) => triggerNode.parentNode,
|
|
202
|
-
style: { width: "100%" },
|
|
203
|
-
format: {
|
|
204
|
-
format: hideSecond ? "HH:mm" : "HH:mm:ss",
|
|
205
|
-
type: "mask"
|
|
206
|
-
}
|
|
207
|
-
}
|
|
208
|
-
)
|
|
209
|
-
))),
|
|
210
|
-
/* @__PURE__ */ import_react.default.createElement(import_design.Row, { gutter: 12 }, /* @__PURE__ */ import_react.default.createElement(import_design.Col, { span: 12, style: { paddingLeft: 12 } }, /* @__PURE__ */ import_react.default.createElement(
|
|
211
|
-
import_design.Form.Item,
|
|
144
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("div", { className: (0, import_classnames.default)(prefix), children: [
|
|
145
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_design.Space, { direction: "vertical", size: 12, style: { margin: "12px 0" }, children: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(
|
|
146
|
+
import_design.Form,
|
|
212
147
|
{
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
148
|
+
layout: "vertical",
|
|
149
|
+
autoComplete: "off",
|
|
150
|
+
requiredMark: false,
|
|
151
|
+
style: { width: 280 },
|
|
152
|
+
form,
|
|
153
|
+
children: [
|
|
154
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_design.Row, { gutter: 12, style: { marginBottom: 4 }, children: [
|
|
155
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_design.Col, { span: 12, style: { paddingLeft: 12 }, children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
156
|
+
import_design.Form.Item,
|
|
157
|
+
{
|
|
158
|
+
name: "startDate",
|
|
159
|
+
label: locale.startDate,
|
|
160
|
+
validateStatus: errorTypeMap["startDate"],
|
|
161
|
+
style: { marginBottom: 8 },
|
|
162
|
+
rules: [{ required: true }],
|
|
163
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
164
|
+
import_design.DatePicker,
|
|
165
|
+
{
|
|
166
|
+
format: {
|
|
167
|
+
format: "YYYY-MM-DD",
|
|
168
|
+
type: "mask"
|
|
169
|
+
},
|
|
170
|
+
style: { width: 128 },
|
|
171
|
+
open: false,
|
|
172
|
+
suffixIcon: null,
|
|
173
|
+
allowClear: false,
|
|
174
|
+
onBlur: (e) => {
|
|
175
|
+
const v = validateInputDate(e);
|
|
176
|
+
if (v) {
|
|
177
|
+
form.setFieldValue("startDate", getDateInstance(v));
|
|
178
|
+
setCalendarValue(([, eDate]) => {
|
|
179
|
+
return [getDateInstance(v), eDate];
|
|
180
|
+
});
|
|
181
|
+
} else {
|
|
182
|
+
setFormatDateToForm();
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
}
|
|
186
|
+
)
|
|
187
|
+
}
|
|
188
|
+
) }),
|
|
189
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_design.Col, { span: 12, style: { paddingRight: 8 }, children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
190
|
+
import_design.Form.Item,
|
|
191
|
+
{
|
|
192
|
+
name: "startTime",
|
|
193
|
+
label: locale.startTime,
|
|
194
|
+
style: { marginBottom: 8 },
|
|
195
|
+
validateStatus: errorTypeMap["startTime"],
|
|
196
|
+
initialValue: defaultS || defaultTime,
|
|
197
|
+
rules: [{ required: true }],
|
|
198
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
199
|
+
import_design.TimePicker,
|
|
200
|
+
{
|
|
201
|
+
allowClear: false,
|
|
202
|
+
suffixIcon: null,
|
|
203
|
+
needConfirm: false,
|
|
204
|
+
getPopupContainer: (triggerNode) => triggerNode.parentNode,
|
|
205
|
+
style: { width: "100%" },
|
|
206
|
+
format: {
|
|
207
|
+
format: hideSecond ? "HH:mm" : "HH:mm:ss",
|
|
208
|
+
type: "mask"
|
|
209
|
+
}
|
|
210
|
+
}
|
|
211
|
+
)
|
|
212
|
+
}
|
|
213
|
+
) })
|
|
214
|
+
] }),
|
|
215
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_design.Row, { gutter: 12, children: [
|
|
216
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_design.Col, { span: 12, style: { paddingLeft: 12 }, children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
217
|
+
import_design.Form.Item,
|
|
218
|
+
{
|
|
219
|
+
name: "endDate",
|
|
220
|
+
label: locale.endDate,
|
|
221
|
+
style: { marginBottom: 0 },
|
|
222
|
+
validateStatus: errorTypeMap["endDate"],
|
|
223
|
+
rules: [{ required: true }],
|
|
224
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
225
|
+
import_design.DatePicker,
|
|
226
|
+
{
|
|
227
|
+
format: {
|
|
228
|
+
format: "YYYY-MM-DD",
|
|
229
|
+
type: "mask"
|
|
230
|
+
},
|
|
231
|
+
style: { width: 128 },
|
|
232
|
+
open: false,
|
|
233
|
+
suffixIcon: null,
|
|
234
|
+
allowClear: false,
|
|
235
|
+
onBlur: (e) => {
|
|
236
|
+
const v = validateInputDate(e);
|
|
237
|
+
if (v) {
|
|
238
|
+
form.setFieldValue("endDate", getDateInstance(v));
|
|
239
|
+
setCalendarValue(([sDate]) => {
|
|
240
|
+
return [sDate, getDateInstance(v)];
|
|
241
|
+
});
|
|
242
|
+
} else {
|
|
243
|
+
setFormatDateToForm();
|
|
244
|
+
}
|
|
245
|
+
}
|
|
246
|
+
}
|
|
247
|
+
)
|
|
248
|
+
}
|
|
249
|
+
) }),
|
|
250
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_design.Col, { span: 12, style: { paddingRight: 8 }, children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
251
|
+
import_design.Form.Item,
|
|
252
|
+
{
|
|
253
|
+
name: "endTime",
|
|
254
|
+
label: locale.endTime,
|
|
255
|
+
style: { marginBottom: 0 },
|
|
256
|
+
validateStatus: errorTypeMap["endTime"],
|
|
257
|
+
initialValue: defaultE || defaultTime,
|
|
258
|
+
rules: [{ required: true }],
|
|
259
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
260
|
+
import_design.TimePicker,
|
|
261
|
+
{
|
|
262
|
+
allowClear: false,
|
|
263
|
+
suffixIcon: null,
|
|
264
|
+
needConfirm: false,
|
|
265
|
+
getPopupContainer: (triggerNode) => triggerNode.parentNode,
|
|
266
|
+
style: { width: "100%" },
|
|
267
|
+
format: {
|
|
268
|
+
format: hideSecond ? "HH:mm" : "HH:mm:ss",
|
|
269
|
+
type: "mask"
|
|
270
|
+
}
|
|
271
|
+
}
|
|
272
|
+
)
|
|
273
|
+
}
|
|
274
|
+
) })
|
|
275
|
+
] })
|
|
276
|
+
]
|
|
277
|
+
}
|
|
278
|
+
) }),
|
|
279
|
+
wrapCSSVar(
|
|
280
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
281
|
+
"div",
|
|
221
282
|
{
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
283
|
+
className: (0, import_classnames.default)("ant-picker-dropdown", hashId, cssVarCls, rootCls),
|
|
284
|
+
style: {
|
|
285
|
+
position: "initial",
|
|
286
|
+
pointerEvents: "auto"
|
|
225
287
|
},
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
288
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
289
|
+
import_rc_picker.PickerPanel,
|
|
290
|
+
{
|
|
291
|
+
prefixCls,
|
|
292
|
+
generateConfig: isMoment ? import_moment.default : import_dayjs.default,
|
|
293
|
+
value: calendarValue,
|
|
294
|
+
disabledDate,
|
|
295
|
+
onHover: (...res) => {
|
|
296
|
+
onPanelHover(res[0]);
|
|
297
|
+
},
|
|
298
|
+
onSelect: (...res) => {
|
|
299
|
+
clickFSANext();
|
|
300
|
+
if (clickFSA === CLICK_STATE.END) {
|
|
301
|
+
setCalendarValue([res[0], res[0]]);
|
|
302
|
+
} else {
|
|
303
|
+
setCalendarValue(fillCalendarValue(res[0], activeIndex));
|
|
304
|
+
}
|
|
305
|
+
setActiveIndex((index) => {
|
|
306
|
+
return index + 1 === 2 ? 0 : index + 1;
|
|
307
|
+
});
|
|
308
|
+
},
|
|
309
|
+
hoverRangeValue: hoverValues,
|
|
310
|
+
activeOffset: 0,
|
|
311
|
+
allowEmpty: [false, false],
|
|
312
|
+
mode: "date",
|
|
313
|
+
internalMode: "date",
|
|
314
|
+
picker: "date",
|
|
315
|
+
locale,
|
|
316
|
+
showNow: false,
|
|
317
|
+
range: true,
|
|
318
|
+
needConfirm: false
|
|
239
319
|
}
|
|
240
|
-
|
|
320
|
+
)
|
|
241
321
|
}
|
|
242
322
|
)
|
|
243
|
-
)
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
validateStatus: errorTypeMap["endTime"],
|
|
250
|
-
initialValue: defaultE || defaultTime,
|
|
251
|
-
rules: [{ required: true }]
|
|
252
|
-
},
|
|
253
|
-
/* @__PURE__ */ import_react.default.createElement(
|
|
254
|
-
import_design.TimePicker,
|
|
255
|
-
{
|
|
256
|
-
allowClear: false,
|
|
257
|
-
suffixIcon: null,
|
|
258
|
-
needConfirm: false,
|
|
259
|
-
getPopupContainer: (triggerNode) => triggerNode.parentNode,
|
|
260
|
-
style: { width: "100%" },
|
|
261
|
-
format: {
|
|
262
|
-
format: hideSecond ? "HH:mm" : "HH:mm:ss",
|
|
263
|
-
type: "mask"
|
|
264
|
-
}
|
|
265
|
-
}
|
|
266
|
-
)
|
|
267
|
-
)))
|
|
268
|
-
)), wrapCSSVar(
|
|
269
|
-
/* @__PURE__ */ import_react.default.createElement(
|
|
270
|
-
"div",
|
|
323
|
+
),
|
|
324
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_design.Divider, { style: { margin: "8px 0" } }),
|
|
325
|
+
tip && !errorMessage && /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_design.Alert, { message: tip, type: "info", style: { marginBottom: 8 }, showIcon: true }),
|
|
326
|
+
errorMessage && /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_design.Alert, { message: errorMessage, type: "error", style: { marginBottom: 8 }, showIcon: true }),
|
|
327
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsxs)(
|
|
328
|
+
import_design.Space,
|
|
271
329
|
{
|
|
272
|
-
className: (0, import_classnames.default)("ant-picker-dropdown", hashId, cssVarCls, rootCls),
|
|
273
330
|
style: {
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
},
|
|
288
|
-
onSelect: (...res) => {
|
|
289
|
-
clickFSANext();
|
|
290
|
-
if (clickFSA === CLICK_STATE.END) {
|
|
291
|
-
setCalendarValue([res[0], res[0]]);
|
|
292
|
-
} else {
|
|
293
|
-
setCalendarValue(fillCalendarValue(res[0], activeIndex));
|
|
331
|
+
width: "100%",
|
|
332
|
+
justifyContent: "flex-end",
|
|
333
|
+
padding: "0 12px 4px 0"
|
|
334
|
+
},
|
|
335
|
+
children: [
|
|
336
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
337
|
+
import_design.Button,
|
|
338
|
+
{
|
|
339
|
+
size: "small",
|
|
340
|
+
onClick: () => {
|
|
341
|
+
onCancel();
|
|
342
|
+
},
|
|
343
|
+
children: locale.cancel
|
|
294
344
|
}
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
{
|
|
334
|
-
size: "small",
|
|
335
|
-
type: "primary",
|
|
336
|
-
onClick: () => {
|
|
337
|
-
form.validateFields().then((values) => {
|
|
338
|
-
const { startDate, startTime, endDate, endTime } = values;
|
|
339
|
-
const [sTime, eTime] = startDate.isSame(endDate) ? [startTime, endTime].sort((a, b) => {
|
|
340
|
-
return (a == null ? void 0 : a.valueOf()) - (b == null ? void 0 : b.valueOf());
|
|
341
|
-
}) : [startTime, endTime];
|
|
342
|
-
const start = `${formatDate(startDate)} ${sTime.format(TIME_FORMAT)}`;
|
|
343
|
-
const end = `${formatDate(endDate)} ${eTime.format(TIME_FORMAT)}`;
|
|
344
|
-
let errorList = [];
|
|
345
|
-
let message = "";
|
|
346
|
-
rules == null ? void 0 : rules.some((item) => {
|
|
347
|
-
if (typeof (item == null ? void 0 : item.validator) === "function") {
|
|
348
|
-
const errorType = item.validator([start, end]);
|
|
349
|
-
if (errorType) {
|
|
350
|
-
errorList = Array.isArray(errorType) ? errorType : [errorType];
|
|
351
|
-
message = item.message;
|
|
352
|
-
return true;
|
|
353
|
-
}
|
|
354
|
-
}
|
|
355
|
-
return false;
|
|
356
|
-
});
|
|
357
|
-
if (errorList.length > 0) {
|
|
358
|
-
setErrorTypeList(errorList.includes("all") ? ALL_ERROR_TYPE_LIST : errorList);
|
|
359
|
-
setErrorMessage(message);
|
|
360
|
-
} else {
|
|
361
|
-
setErrorMessage("");
|
|
362
|
-
setErrorTypeList([]);
|
|
363
|
-
onOk([start, end]);
|
|
345
|
+
),
|
|
346
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
347
|
+
import_design.Button,
|
|
348
|
+
{
|
|
349
|
+
size: "small",
|
|
350
|
+
type: "primary",
|
|
351
|
+
onClick: () => {
|
|
352
|
+
form.validateFields().then((values) => {
|
|
353
|
+
const { startDate, startTime, endDate, endTime } = values;
|
|
354
|
+
const [sTime, eTime] = startDate.isSame(endDate) ? [startTime, endTime].sort((a, b) => {
|
|
355
|
+
return (a == null ? void 0 : a.valueOf()) - (b == null ? void 0 : b.valueOf());
|
|
356
|
+
}) : [startTime, endTime];
|
|
357
|
+
const start = `${formatDate(startDate)} ${sTime.format(TIME_FORMAT)}`;
|
|
358
|
+
const end = `${formatDate(endDate)} ${eTime.format(TIME_FORMAT)}`;
|
|
359
|
+
let errorList = [];
|
|
360
|
+
let message = "";
|
|
361
|
+
rules == null ? void 0 : rules.some((item) => {
|
|
362
|
+
if (typeof (item == null ? void 0 : item.validator) === "function") {
|
|
363
|
+
const errorType = item.validator([start, end]);
|
|
364
|
+
if (errorType) {
|
|
365
|
+
errorList = Array.isArray(errorType) ? errorType : [errorType];
|
|
366
|
+
message = item.message;
|
|
367
|
+
return true;
|
|
368
|
+
}
|
|
369
|
+
}
|
|
370
|
+
return false;
|
|
371
|
+
});
|
|
372
|
+
if (errorList.length > 0) {
|
|
373
|
+
setErrorTypeList(errorList.includes("all") ? ALL_ERROR_TYPE_LIST : errorList);
|
|
374
|
+
setErrorMessage(message);
|
|
375
|
+
} else {
|
|
376
|
+
setErrorMessage("");
|
|
377
|
+
setErrorTypeList([]);
|
|
378
|
+
onOk([start, end]);
|
|
379
|
+
}
|
|
380
|
+
});
|
|
381
|
+
},
|
|
382
|
+
children: locale.confirm
|
|
364
383
|
}
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
}
|
|
368
|
-
locale.confirm
|
|
384
|
+
)
|
|
385
|
+
]
|
|
386
|
+
}
|
|
369
387
|
)
|
|
370
|
-
)
|
|
388
|
+
] });
|
|
371
389
|
};
|
|
372
390
|
var PickerPanel_default = InternalPickerPanel;
|