@teamix/pro 1.2.21 → 1.2.26

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (105) hide show
  1. package/dist/pro.css +1 -1
  2. package/dist/pro.js +4849 -2339
  3. package/dist/pro.min.css +1 -1
  4. package/dist/pro.min.js +1 -1
  5. package/es/actions/dialog.js +14 -24
  6. package/es/actions/index.d.ts +22 -8
  7. package/es/actions/index.js +69 -29
  8. package/es/actions/index.scss +12 -1
  9. package/es/form/Components/SelectTable/index.d.ts +24 -0
  10. package/es/form/Components/SelectTable/index.js +135 -0
  11. package/es/form/Components/SelectTable/index.scss +28 -0
  12. package/es/form/Components/SelectTable/table.d.ts +6 -0
  13. package/es/form/Components/SelectTable/table.js +64 -0
  14. package/es/form/Filter/AdvancedFilter.js +1 -0
  15. package/es/form/ProForm/index.scss +37 -6
  16. package/es/form/SchemaForm/index.js +8 -6
  17. package/es/form/SchemaForm/initializeDataSource.d.ts +1 -1
  18. package/es/form/SchemaForm/initializeDataSource.js +2 -2
  19. package/es/form/SchemaForm/initializeRequest.d.ts +1 -1
  20. package/es/form/SchemaForm/initializeRequest.js +2 -2
  21. package/es/form/SchemaForm/initializeRules.d.ts +1 -1
  22. package/es/form/SchemaForm/initializeRules.js +3 -3
  23. package/es/form/global.scss +1 -0
  24. package/es/form/utils.d.ts +2 -2
  25. package/es/form/utils.js +2 -2
  26. package/es/index.d.ts +5 -2
  27. package/es/index.js +6 -3
  28. package/es/step/ProStepItem/components/HozStepItem/index.d.ts +5 -0
  29. package/es/step/ProStepItem/components/HozStepItem/index.js +235 -0
  30. package/es/step/ProStepItem/components/HozStepItem/index.scss +279 -0
  31. package/es/step/ProStepItem/components/VerStepItem/index.d.ts +5 -0
  32. package/es/step/ProStepItem/components/VerStepItem/index.js +295 -0
  33. package/es/step/ProStepItem/components/VerStepItem/index.scss +287 -0
  34. package/es/step/ProStepItem/index.d.ts +4 -0
  35. package/es/step/ProStepItem/index.js +57 -0
  36. package/es/step/index.d.ts +9 -0
  37. package/es/step/index.js +101 -0
  38. package/es/step/typing.d.ts +96 -0
  39. package/es/step/typing.js +1 -0
  40. package/es/table/components/Filter/index.js +2 -17
  41. package/es/table/components/Layout/index.js +22 -12
  42. package/es/table/components/Pagination/index.d.ts +5 -1
  43. package/es/table/components/Pagination/index.js +179 -17
  44. package/es/table/components/Pagination/index.scss +55 -0
  45. package/es/table/components/ToolBar/FilterColumnIcon.js +24 -3
  46. package/es/table/components/ToolBar/index.scss +9 -4
  47. package/es/table/index.js +84 -27
  48. package/es/table/index.scss +5 -5
  49. package/es/table/typing.d.ts +11 -2
  50. package/es/table/utils/columnRender.js +2 -1
  51. package/es/table/utils/index.d.ts +14 -0
  52. package/es/table/utils/index.js +74 -4
  53. package/es/utils/index.d.ts +1 -0
  54. package/es/utils/index.js +1 -0
  55. package/lib/actions/dialog.js +13 -23
  56. package/lib/actions/index.d.ts +22 -8
  57. package/lib/actions/index.js +69 -29
  58. package/lib/actions/index.scss +12 -1
  59. package/lib/form/Components/SelectTable/index.d.ts +24 -0
  60. package/lib/form/Components/SelectTable/index.js +157 -0
  61. package/lib/form/Components/SelectTable/index.scss +28 -0
  62. package/lib/form/Components/SelectTable/table.d.ts +6 -0
  63. package/lib/form/Components/SelectTable/table.js +76 -0
  64. package/lib/form/Filter/AdvancedFilter.js +1 -0
  65. package/lib/form/ProForm/index.scss +37 -6
  66. package/lib/form/SchemaForm/index.js +8 -6
  67. package/lib/form/SchemaForm/initializeDataSource.d.ts +1 -1
  68. package/lib/form/SchemaForm/initializeDataSource.js +2 -2
  69. package/lib/form/SchemaForm/initializeRequest.d.ts +1 -1
  70. package/lib/form/SchemaForm/initializeRequest.js +2 -2
  71. package/lib/form/SchemaForm/initializeRules.d.ts +1 -1
  72. package/lib/form/SchemaForm/initializeRules.js +3 -3
  73. package/lib/form/global.scss +1 -0
  74. package/lib/form/utils.d.ts +2 -2
  75. package/lib/form/utils.js +2 -2
  76. package/lib/index.d.ts +5 -2
  77. package/lib/index.js +35 -3
  78. package/lib/step/ProStepItem/components/HozStepItem/index.d.ts +5 -0
  79. package/lib/step/ProStepItem/components/HozStepItem/index.js +258 -0
  80. package/lib/step/ProStepItem/components/HozStepItem/index.scss +279 -0
  81. package/lib/step/ProStepItem/components/VerStepItem/index.d.ts +5 -0
  82. package/lib/step/ProStepItem/components/VerStepItem/index.js +315 -0
  83. package/lib/step/ProStepItem/components/VerStepItem/index.scss +287 -0
  84. package/lib/step/ProStepItem/index.d.ts +4 -0
  85. package/lib/step/ProStepItem/index.js +69 -0
  86. package/lib/step/index.d.ts +9 -0
  87. package/lib/step/index.js +124 -0
  88. package/lib/step/typing.d.ts +96 -0
  89. package/lib/step/typing.js +5 -0
  90. package/lib/table/components/Filter/index.js +2 -17
  91. package/lib/table/components/Layout/index.js +21 -11
  92. package/lib/table/components/Pagination/index.d.ts +5 -1
  93. package/lib/table/components/Pagination/index.js +186 -17
  94. package/lib/table/components/Pagination/index.scss +55 -0
  95. package/lib/table/components/ToolBar/FilterColumnIcon.js +23 -2
  96. package/lib/table/components/ToolBar/index.scss +9 -4
  97. package/lib/table/index.js +84 -25
  98. package/lib/table/index.scss +5 -5
  99. package/lib/table/typing.d.ts +11 -2
  100. package/lib/table/utils/columnRender.js +2 -1
  101. package/lib/table/utils/index.d.ts +14 -0
  102. package/lib/table/utils/index.js +84 -4
  103. package/lib/utils/index.d.ts +1 -0
  104. package/lib/utils/index.js +13 -0
  105. package/package.json +1 -1
@@ -186,13 +186,13 @@
186
186
  }
187
187
 
188
188
  // 数组类组件添加按钮
189
- .#{$css-prefix}formily-array-base-addition {
189
+ .#{$form-array}-base-addition {
190
190
  .#{$css-prefix}formily-icon {
191
191
  margin-right: 4px;
192
192
  }
193
193
  }
194
194
  // 数组类ArrayItem Icon 居中
195
- .#{$css-prefix}formily-array-items-item-inner {
195
+ .#{$form-array}-items-item-inner {
196
196
  > .#{$css-prefix}box {
197
197
  > .#{$css-prefix}space-item {
198
198
  > .#{$css-prefix}formily-icon {
@@ -209,7 +209,7 @@
209
209
 
210
210
  // 折叠面板
211
211
  .#{$css-prefix}formily-collapse,
212
- .#{$css-prefix}formily-array-collapse-item {
212
+ .#{$form-array}-collapse-item {
213
213
  .#{$css-prefix}collapse-panel-hidden {
214
214
  .#{$css-prefix}collapse-panel-content {
215
215
  padding-top: 4px;
@@ -261,7 +261,7 @@
261
261
  }
262
262
 
263
263
  // ArrayItems
264
- .#{$css-prefix}formily-array-items {
264
+ .#{$form-array}-items {
265
265
  .#{$css-prefix}formily-grid-layout {
266
266
  > div:last-child {
267
267
  display: flex;
@@ -269,8 +269,39 @@
269
269
  align-items: center;
270
270
  }
271
271
  }
272
- .#{$css-prefix}formily-array-base-remove {
273
- cursor: pointer;
272
+ }
273
+ .#{$form-array}-base-remove,
274
+ .#{$form-array}-base-addition,
275
+ .#{$form-array}-base-move-down,
276
+ .#{$form-array}-base-move-up,
277
+ .#{$form-array}-base-sort-handle,
278
+ .form-array-base-icon {
279
+ color: var(--color-fill1-6, #848484);
280
+ &:hover {
281
+ color: var(--color-brand1-6, #0064c8);
282
+ }
283
+ }
284
+ .form-array-base-icon {
285
+ cursor: pointer;
286
+ }
287
+
288
+ // ArrayCard
289
+ .#{$form-array}-cards-item {
290
+ .#{$css-prefix}card-head {
291
+ padding: 16px 20px;
292
+ background-color: var(--color-fill1-2, #f7f7f7);
293
+ .#{$css-prefix}card-head-main {
294
+ margin-top: 0;
295
+ border-bottom: 0;
296
+ height: 22px;
297
+ line-height: 22px;
298
+ .#{$css-prefix}card-title {
299
+ padding-left: 0;
300
+ &::before {
301
+ display: none;
302
+ }
303
+ }
304
+ }
274
305
  }
275
306
  }
276
307
 
@@ -106,8 +106,10 @@ export default /*#__PURE__*/memo(function (_ref) {
106
106
  }, [scope]); // 格式化 schema
107
107
 
108
108
  var formatSchema = useCallback(function (schema) {
109
+ var suffix = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : '';
109
110
  var schemaProperties = {};
110
111
  schema === null || schema === void 0 ? void 0 : schema.forEach(function (item, index) {
112
+ suffix = "".concat(suffix).concat(index);
111
113
  var newItem = warning(item);
112
114
  var _newItem = newItem,
113
115
  originalComponent = _newItem.component; // 根据component的不同,初始化为内置的item
@@ -171,7 +173,7 @@ export default /*#__PURE__*/memo(function (_ref) {
171
173
  component = _newItem2.component,
172
174
  type = _newItem2.type,
173
175
  _newItem2$name = _newItem2.name,
174
- name = _newItem2$name === void 0 ? getFieldName(component === null || component === void 0 ? void 0 : component.replace(/\./g, ''), index) : _newItem2$name,
176
+ name = _newItem2$name === void 0 ? getFieldName(component === null || component === void 0 ? void 0 : component.replace(/\./g, ''), suffix) : _newItem2$name,
175
177
  decorator = _newItem2.decorator,
176
178
  decoratorProps = _newItem2.decoratorProps,
177
179
  dataSource = _newItem2.dataSource,
@@ -196,18 +198,18 @@ export default /*#__PURE__*/memo(function (_ref) {
196
198
  var defaultDecoratorProps = _objectSpread(_objectSpread({}, tooltipProps), decoratorProps); // 初始化request
197
199
 
198
200
 
199
- var _initializeRequest = initializeRequest(request, index),
201
+ var _initializeRequest = initializeRequest(request, suffix),
200
202
  requestReactions = _initializeRequest.reactions,
201
203
  requestScope = _initializeRequest.scope; // 初始化dataSource
202
204
 
203
205
 
204
- var _initializeDataSource = initializeDataSource(dataSource, index),
206
+ var _initializeDataSource = initializeDataSource(dataSource, suffix),
205
207
  defaultDataSource = _initializeDataSource.dataSource,
206
208
  dataSourceReactions = _initializeDataSource.reactions,
207
209
  dataSourceScope = _initializeDataSource.scope; // 初始化rules
208
210
 
209
211
 
210
- var _initializeRules = initializeRules(rules, index),
212
+ var _initializeRules = initializeRules(rules, suffix),
211
213
  defaultRules = _initializeRules.rules,
212
214
  rulesScope = _initializeRules.scope; // 合并reactions,初始化reactions
213
215
 
@@ -235,11 +237,11 @@ export default /*#__PURE__*/memo(function (_ref) {
235
237
  })); // 递归子组件
236
238
 
237
239
  var recursiveProperties = (children === null || children === void 0 ? void 0 : children.length) ? {
238
- properties: formatSchema(children)
240
+ properties: formatSchema(children, suffix)
239
241
  } : {}; // 递归items(类似子组件,会先由各initialize方法格式化为固定形式,type不同不统一处理)
240
242
  // 例如:[{ name: 'items', type: 'object', children: items }]
241
243
 
242
- var recursiveItems = items ? formatSchema([items]) : {}; // 配置组件属性
244
+ var recursiveItems = items ? formatSchema([items], suffix) : {}; // 配置组件属性
243
245
 
244
246
  schemaProperties[name] = _objectSpread(_objectSpread(_objectSpread({}, formatParam), recursiveProperties), recursiveItems);
245
247
  });
@@ -1,6 +1,6 @@
1
1
  import type { ProFormRequestConfig } from '../typing';
2
2
  interface IInitializeDataSource {
3
- (requestConfig?: ProFormRequestConfig | any, index?: number): {
3
+ (requestConfig?: ProFormRequestConfig | any, suffix?: string): {
4
4
  dataSource?: any[];
5
5
  reactions: any[];
6
6
  scope: {
@@ -2,10 +2,10 @@ function _defineProperty(obj, key, value) { if (key in obj) { Object.definePrope
2
2
 
3
3
  import { isPlainObj } from '@teamix/utils';
4
4
 
5
- var initializeDataSource = function initializeDataSource(dataSource, index) {
5
+ var initializeDataSource = function initializeDataSource(dataSource, suffix) {
6
6
  if (isPlainObj(dataSource)) {
7
7
  var requestConfig = dataSource;
8
- var requestConfigName = "$requestConfig_".concat(index);
8
+ var requestConfigName = "$requestConfig_".concat(suffix);
9
9
  return {
10
10
  reactions: ["{{$dataSource($request,".concat(requestConfigName, ",context)}}")],
11
11
  scope: _defineProperty({}, requestConfigName, requestConfig)
@@ -1,6 +1,6 @@
1
1
  import type { ProFormRequestConfig } from '../typing';
2
2
  interface IInitializeRequest {
3
- (requestConfig?: ProFormRequestConfig, index?: number): {
3
+ (requestConfig?: ProFormRequestConfig, suffix?: string): {
4
4
  reactions: any[];
5
5
  scope: {
6
6
  [x: string]: any;
@@ -1,8 +1,8 @@
1
1
  function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
2
2
 
3
- var initializeRequest = function initializeRequest(requestConfig, index) {
3
+ var initializeRequest = function initializeRequest(requestConfig, suffix) {
4
4
  if (requestConfig) {
5
- var requestConfigName = "$requestConfig_".concat(index);
5
+ var requestConfigName = "$requestConfig_".concat(suffix);
6
6
  return {
7
7
  reactions: ["{{$common($request,".concat(requestConfigName, ",context)}}")],
8
8
  scope: _defineProperty({}, requestConfigName, requestConfig)
@@ -1,5 +1,5 @@
1
1
  interface IInitializeRules {
2
- (rules?: any, index?: number): {
2
+ (rules?: any, suffix?: string): {
3
3
  rules?: any;
4
4
  reactions: any[];
5
5
  scope: {
@@ -18,13 +18,13 @@ function _defineProperty(obj, key, value) { if (key in obj) { Object.definePrope
18
18
 
19
19
  import { isArr, isPlainObj } from '@teamix/utils';
20
20
 
21
- var initializeRules = function initializeRules(rules, index) {
21
+ var initializeRules = function initializeRules(rules, suffix) {
22
22
  var initializeValidator = function initializeValidator(rule) {
23
- var subIndex = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 0;
23
+ var index = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 0;
24
24
 
25
25
  if (isPlainObj(rule === null || rule === void 0 ? void 0 : rule.validator)) {
26
26
  var requestConfig = rule.validator;
27
- var requestConfigName = "$requestConfig_".concat(index, "_").concat(subIndex);
27
+ var requestConfigName = "$requestConfig_".concat(suffix).concat(index);
28
28
  return {
29
29
  rules: _objectSpread(_objectSpread({}, rule), {}, {
30
30
  validator: "{{$validator($request,".concat(requestConfigName, ",context)}}")
@@ -1,6 +1,7 @@
1
1
  @import '~@alicloudfe/components/lib/common-var.scss';
2
2
 
3
3
  $form-item-cls: #{$css-prefix}formily-item;
4
+ $form-array: #{$css-prefix}formily-array;
4
5
  $teamix-pro-form: teamix-pro-form;
5
6
  $teamix-pro-field: teamix-pro-field;
6
7
 
@@ -17,11 +17,11 @@ declare const mapMode: (props: any, field: any) => any;
17
17
  /**
18
18
  * 创建字段名称
19
19
  * @param prefix 字段名称前缀,接收字段component名称,默认为FieldName
20
- * @param index 字段索引
20
+ * @param suffix 字段后缀,唯一标识
21
21
  * @returns 字段唯一名称
22
22
  */
23
23
  interface IGetFieldName {
24
- (prefix: string, index?: number): string;
24
+ (prefix: string, suffix?: string): string;
25
25
  }
26
26
  declare const getFieldName: IGetFieldName;
27
27
  /**
package/es/form/utils.js CHANGED
@@ -115,8 +115,8 @@ var mapMode = function mapMode(props, field) {
115
115
 
116
116
  var getFieldName = function getFieldName() {
117
117
  var prefix = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 'FieldName';
118
- var index = arguments.length > 1 ? arguments[1] : undefined;
119
- return "".concat(prefix, "-").concat(index);
118
+ var suffix = arguments.length > 1 ? arguments[1] : undefined;
119
+ return "".concat(prefix, "-").concat(suffix);
120
120
  };
121
121
  /**
122
122
  * 将ProForm的key映射为formily的key,然后筛除掉无效的key/value
package/es/index.d.ts CHANGED
@@ -9,6 +9,7 @@ import ProPageHeader from './page-header';
9
9
  import ProTable from './table';
10
10
  import ProSkeleton from './skeleton';
11
11
  import utils from './utils';
12
+ import { ProStep } from './step';
12
13
  import * as nocode from './nocode';
13
14
  import * as templates from './templates';
14
15
  export * from './actions';
@@ -21,5 +22,7 @@ export * from './page-container';
21
22
  export * from './page-header';
22
23
  export * from './skeleton';
23
24
  export * from './table';
24
- declare const version = "1.2.20";
25
- export { version, ProAction, ProCard, ProField, ProForm, ProInfo, ProPageContainer, ProPageHeader, ProSkeleton, ProTable, hooks, nocode, templates, utils, };
25
+ export * from './utils';
26
+ export * from './step';
27
+ declare const version = "1.2.26";
28
+ export { version, ProAction, ProCard, ProField, ProForm, ProInfo, ProPageContainer, ProPageHeader, ProSkeleton, ProTable, ProStep, hooks, nocode, templates, utils, };
package/es/index.js CHANGED
@@ -11,6 +11,7 @@ import ProTable from './table';
11
11
  import ProSkeleton from './skeleton';
12
12
  import utils from './utils'; // import ProSidebar from './sidebar'
13
13
 
14
+ import { ProStep } from './step';
14
15
  import * as nocode from './nocode';
15
16
  import * as templates from './templates';
16
17
  import TeamixIcon from '@teamix/icon'; // 设置图标源
@@ -25,9 +26,11 @@ export * from './nocode';
25
26
  export * from './page-container';
26
27
  export * from './page-header';
27
28
  export * from './skeleton';
28
- export * from './table'; // export * from './sidebar';
29
+ export * from './table';
30
+ export * from './utils'; // export * from './sidebar';
29
31
 
30
- var version = '1.2.20';
32
+ export * from './step';
33
+ var version = '1.2.26';
31
34
  export { version, ProAction, ProCard, ProField, ProForm, ProInfo, // ProLayout,
32
35
  ProPageContainer, ProPageHeader, ProSkeleton, ProTable, // ProSidebar,
33
- hooks, nocode, templates, utils };
36
+ ProStep, hooks, nocode, templates, utils };
@@ -0,0 +1,5 @@
1
+ import React from 'react';
2
+ import { HozStepItemProps } from '../../../typing';
3
+ import './index.scss';
4
+ declare const _default: React.NamedExoticComponent<HozStepItemProps>;
5
+ export default _default;
@@ -0,0 +1,235 @@
1
+ var _excluded = ["_size", "_index", "_shape", "_current", "status", "icon", "title", "content", "percent", "disabled", "dotRender", "onClick"];
2
+
3
+ function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
4
+
5
+ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
6
+
7
+ function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
8
+
9
+ function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
10
+
11
+ function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
12
+
13
+ import React, { memo, useCallback, useMemo } from 'react';
14
+ import { Icon, Step } from '@alicloudfe/components';
15
+ import classnames from 'classnames';
16
+ import TeamixIcon from '@teamix/icon';
17
+ import { baseClass } from '@teamix/utils';
18
+ import './index.scss';
19
+ var StepItem = Step.Item;
20
+ var cls = baseClass('teamix-pro-step');
21
+
22
+ var HozStepItem = function HozStepItem(props) {
23
+ var _size = props._size,
24
+ _index = props._index,
25
+ _shape = props._shape,
26
+ _current = props._current,
27
+ status = props.status,
28
+ icon = props.icon,
29
+ title = props.title,
30
+ content = props.content,
31
+ percent = props.percent,
32
+ disabled = props.disabled,
33
+ dotRender = props.dotRender,
34
+ onClick = props.onClick,
35
+ others = _objectWithoutProperties(props, _excluded);
36
+ /** 对枚举类型进行处理 */
37
+
38
+
39
+ var formatShape = function formatShape() {
40
+ if (['dot', 'icon', 'arrow', 'number'].includes(_shape)) return _shape;
41
+ return 'dot';
42
+ };
43
+
44
+ var formatStatus = function formatStatus() {
45
+ if (['success', 'fail', 'process', 'warning', 'wait'].includes(status)) return status;
46
+ return 'wait';
47
+ };
48
+
49
+ var formatSize = function formatSize() {
50
+ if (['normal', 'small'].includes(_size)) return _size;
51
+ return 'normal';
52
+ };
53
+ /** 计算当前节点的状态 */
54
+
55
+
56
+ var getStatus = useMemo(function () {
57
+ // 默认 status 取传递进来的 status 参数
58
+ var process = formatStatus() === 'process' && !disabled;
59
+ var success = formatStatus() === 'success' && !disabled;
60
+ var error = formatStatus() === 'fail' && !disabled;
61
+ var warning = formatStatus() === 'warning' && !disabled;
62
+ var wait = formatStatus() === 'wait' && !disabled; // 如果传递了 current 参数,则重新计算当前节点的状态
63
+
64
+ if (_current) {
65
+ process = _index === _current && !disabled;
66
+ wait = _index > _current && wait;
67
+ success = _index < _current && !error && !warning;
68
+ }
69
+
70
+ return {
71
+ process: process,
72
+ success: success,
73
+ error: error,
74
+ warning: warning,
75
+ wait: wait
76
+ };
77
+ }, [_index, _current, status]); // 获取一些常量
78
+
79
+ var process = getStatus.process,
80
+ success = getStatus.success,
81
+ error = getStatus.error,
82
+ warning = getStatus.warning,
83
+ wait = getStatus.wait;
84
+ var dot = formatShape() === 'dot';
85
+ var arrow = formatShape() === 'arrow';
86
+ var circle_icon = formatShape() === 'icon';
87
+ var circle_number = formatShape() === 'number';
88
+ var normal_size = formatSize() === 'normal';
89
+ var small_size = formatSize() === 'small';
90
+ /** 重新渲染 node 节点 */
91
+
92
+ var renderNode = useCallback(function () {
93
+ // 渲染dot 节点
94
+ var renderDot = function renderDot() {
95
+ return !icon ? /*#__PURE__*/React.createElement("div", {
96
+ className: classnames(cls({
97
+ 'hoz-step-item-render-wrapper-dot-normal': normal_size,
98
+ 'hoz-step-item-render-wrapper-dot-small': small_size,
99
+ 'hoz-step-item-render-wrapper-dot-disabled': disabled,
100
+ 'hoz-step-item-render-wrapper-dot-process': process,
101
+ 'hoz-step-item-render-wrapper-dot-success': success,
102
+ 'hoz-step-item-render-wrapper-dot-error': error,
103
+ 'hoz-step-item-render-wrapper-dot-warning': warning,
104
+ 'hoz-step-item-render-wrapper-dot-wait': wait
105
+ }))
106
+ }) : /*#__PURE__*/React.createElement("div", {
107
+ className: classnames(cls({
108
+ 'hoz-step-item-render-wrapper-icon-disabled': disabled,
109
+ 'hoz-step-item-render-wrapper-icon-process': process,
110
+ 'hoz-step-item-render-wrapper-icon-success': success,
111
+ 'hoz-step-item-render-wrapper-icon-error': error,
112
+ 'hoz-step-item-render-wrapper-icon-warning': warning,
113
+ 'hoz-step-item-render-wrapper-icon-wait': wait
114
+ }))
115
+ }, /*#__PURE__*/React.createElement(Icon, {
116
+ type: icon,
117
+ size: "small"
118
+ }));
119
+ }; // 渲染 circle 节点
120
+
121
+
122
+ var renderCircle = function renderCircle() {
123
+ if (dotRender) return /*#__PURE__*/React.createElement("div", {
124
+ className: classnames(cls('hoz-step-item-render-wrapper'))
125
+ }, dotRender());
126
+
127
+ var renderIconOrNumber = function renderIconOrNumber() {
128
+ if (percent) return /*#__PURE__*/React.createElement("div", {
129
+ className: classnames(cls('ver-step-item-render-wrapper-circle-percent'))
130
+ }, percent, "%");
131
+ if (icon) return /*#__PURE__*/React.createElement(Icon, {
132
+ type: icon,
133
+ size: "medium"
134
+ });
135
+ if (success) return /*#__PURE__*/React.createElement(TeamixIcon, {
136
+ type: "check-line",
137
+ size: "small"
138
+ });
139
+ if (error) return /*#__PURE__*/React.createElement(TeamixIcon, {
140
+ type: "close-line",
141
+ size: "small"
142
+ });
143
+ if (warning) return /*#__PURE__*/React.createElement(TeamixIcon, {
144
+ type: "exclamation-line",
145
+ size: "small"
146
+ });
147
+ if (process && circle_icon) return /*#__PURE__*/React.createElement(TeamixIcon, {
148
+ type: "loading-line",
149
+ size: "small"
150
+ });
151
+ if (wait && circle_icon) return /*#__PURE__*/React.createElement(TeamixIcon, {
152
+ type: "more-line",
153
+ size: "small"
154
+ });
155
+ return _index + 1;
156
+ };
157
+
158
+ return /*#__PURE__*/React.createElement("div", {
159
+ className: classnames(cls({
160
+ 'hoz-step-item-render-wrapper-circle': true,
161
+ 'hoz-step-item-render-wrapper-circle-disabled': disabled,
162
+ 'hoz-step-item-render-wrapper-circle-process': process,
163
+ 'hoz-step-item-render-wrapper-circle-success': success,
164
+ 'hoz-step-item-render-wrapper-circle-error': error,
165
+ 'hoz-step-item-render-wrapper-circle-warning': warning,
166
+ 'hoz-step-item-render-wrapper-circle-wait': wait,
167
+ 'hoz-step-item-render-wrapper-percent-color': percent
168
+ }))
169
+ }, renderIconOrNumber());
170
+ };
171
+
172
+ var renderStateNode = function renderStateNode() {
173
+ if (circle_icon || circle_number) {
174
+ return renderCircle();
175
+ }
176
+
177
+ return renderDot();
178
+ };
179
+
180
+ return /*#__PURE__*/React.createElement("div", {
181
+ className: classnames(cls('hoz-step-item'))
182
+ }, /*#__PURE__*/React.createElement("div", {
183
+ className: classnames(cls({
184
+ 'hoz-step-item-render-wrapper': true,
185
+ 'hoz-step-item-render-wrapper-disabled': disabled,
186
+ 'hoz-step-item-render-wrapper-tail-process': process,
187
+ 'hoz-step-item-render-wrapper-tail-success': success,
188
+ 'hoz-step-item-render-wrapper-tail-error': error,
189
+ 'hoz-step-item-render-wrapper-tail-warning': warning,
190
+ 'hoz-step-item-render-wrapper-tail-wait': wait
191
+ }))
192
+ }, renderStateNode()));
193
+ }, [_index, _shape, _size, disabled, icon, percent, status, dotRender]); // 轴连接线添加color
194
+
195
+ var renderColor = useMemo(function () {
196
+ if (_current) {
197
+ if (_current > _index) return true;
198
+ }
199
+
200
+ return false;
201
+ }, [_index, _current]); // 重新渲染 title
202
+
203
+ var renderTitle = useCallback(function () {
204
+ return /*#__PURE__*/React.createElement("div", {
205
+ className: classnames(cls({
206
+ 'hoz-step-item-render-title-normal': normal_size && dot,
207
+ 'hoz-step-item-render-title-small': small_size && dot
208
+ }))
209
+ }, title);
210
+ }, [_size, title]);
211
+ return /*#__PURE__*/React.createElement(StepItem, _objectSpread(_objectSpread({
212
+ className: classnames(cls({
213
+ 'hoz-step-item-render-tail-process': process && renderColor,
214
+ 'hoz-step-item-render-tail-success': success && renderColor,
215
+ 'hoz-step-item-render-tail-error': error && renderColor,
216
+ 'hoz-step-item-render-tail-warning': warning && renderColor,
217
+ 'hoz-step-item-render-tail-wait': wait || !renderColor && !disabled,
218
+ 'hoz-step-item-render-arrow-process': arrow && process,
219
+ 'hoz-step-item-render-arrow-success': arrow && success,
220
+ 'hoz-step-item-render-arrow-error': arrow && error,
221
+ 'hoz-step-item-render-arrow-warning': arrow && warning,
222
+ 'hoz-step-item-render-arrow-wait': arrow && wait
223
+ }))
224
+ }, others), {}, {
225
+ status: 'wait',
226
+ icon: icon,
227
+ title: renderTitle(),
228
+ content: content,
229
+ disabled: disabled,
230
+ itemRender: renderNode,
231
+ onClick: onClick
232
+ }));
233
+ };
234
+
235
+ export default /*#__PURE__*/memo(HozStepItem);