@zgfe/modules-interval 1.0.23-zhongyuan.2 → 1.0.23-zhongyuan.20

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 (32) hide show
  1. package/dist/esm/components/eventFilter/index.js +33 -19
  2. package/dist/esm/components/renderContent/index.js +6 -3
  3. package/dist/esm/components/renderContent/styles/index.css +32 -0
  4. package/dist/esm/components/renderContent/styles/index.less +1 -0
  5. package/dist/esm/components/renderContent/types.d.ts +9 -2
  6. package/dist/esm/components/searchPanel/index.js +14 -10
  7. package/dist/esm/components/searchPanel/types.d.ts +4 -1
  8. package/dist/esm/components/table/index.js +3 -2
  9. package/dist/esm/components/topBar/types.d.ts +4 -0
  10. package/dist/esm/constants/code.js +6 -6
  11. package/dist/esm/modules/chart/customTooltip.js +3 -3
  12. package/dist/esm/modules/chart/customTooltip1.d.ts +7 -0
  13. package/dist/esm/modules/chart/customTooltip1.js +46 -0
  14. package/dist/esm/modules/chart/index.css +52 -0
  15. package/dist/esm/modules/chart/index.js +26 -22
  16. package/dist/esm/modules/chart/index.less +1 -1
  17. package/dist/esm/modules/chart/intervalChart copy.d.ts +4 -0
  18. package/dist/esm/modules/chart/intervalChart copy.js +295 -0
  19. package/dist/esm/modules/chart/intervalChart.js +325 -36
  20. package/dist/esm/modules/chart/types.d.ts +2 -1
  21. package/dist/esm/modules/content/index.js +51 -20
  22. package/dist/esm/modules/content/types.d.ts +9 -1
  23. package/dist/esm/modules/content/utils.js +12 -12
  24. package/dist/esm/modules/home/index.js +8 -2
  25. package/dist/esm/modules/home/types.d.ts +4 -1
  26. package/dist/esm/modules/topPanel/index.js +8 -9
  27. package/dist/esm/modules/topPanel/styles/index.less +219 -219
  28. package/dist/esm/types.d.ts +8 -1
  29. package/dist/esm/types.js +6 -6
  30. package/dist/esm/utils/formData.d.ts +2 -2
  31. package/dist/esm/utils/formData.js +12 -9
  32. package/package.json +3 -3
@@ -73,13 +73,12 @@ var TopPanel = function TopPanel(props) {
73
73
  }, [formRef.current, propsDefaultValue]);
74
74
  function onSearch(values) {
75
75
  if (props.onChange) {
76
- var _values$analysisSubje, _values$analysisSubje2, _values$analysisSubje3, _values$analysisSubje4;
77
76
  props.onChange(_objectSpread(_objectSpread({}, values), {}, {
78
- analysisSubject: values !== null && values !== void 0 && values.analysisSubject ? {
79
- subjectId: values === null || values === void 0 ? void 0 : (_values$analysisSubje = values.analysisSubject) === null || _values$analysisSubje === void 0 ? void 0 : _values$analysisSubje.id,
80
- subjectName: values === null || values === void 0 ? void 0 : (_values$analysisSubje2 = values.analysisSubject) === null || _values$analysisSubje2 === void 0 ? void 0 : _values$analysisSubje2.subjectName,
81
- subjectAlias: values === null || values === void 0 ? void 0 : (_values$analysisSubje3 = values.analysisSubject) === null || _values$analysisSubje3 === void 0 ? void 0 : _values$analysisSubje3.subjectAlias,
82
- unit: values === null || values === void 0 ? void 0 : (_values$analysisSubje4 = values.analysisSubject) === null || _values$analysisSubje4 === void 0 ? void 0 : _values$analysisSubje4.unit
77
+ analysisSubject: values.analysisSubject ? {
78
+ subjectId: values.analysisSubject.id,
79
+ subjectName: values.analysisSubject.subjectName,
80
+ subjectAlias: values.analysisSubject.subjectAlias,
81
+ unit: values.analysisSubject.unit
83
82
  } : undefined
84
83
  }), true);
85
84
  }
@@ -116,12 +115,12 @@ var TopPanel = function TopPanel(props) {
116
115
  return;
117
116
  }
118
117
  setInited(false);
119
- if (defaultValue !== null && defaultValue !== void 0 && defaultValue.analysisSubject) {
118
+ if (defaultValue.analysisSubject) {
120
119
  setAnalysisType('eventProp');
121
120
  } else {
122
121
  setAnalysisType('user');
123
122
  }
124
- if (defaultValue !== null && defaultValue !== void 0 && defaultValue.analysisSubject) {
123
+ if (defaultValue.analysisSubject) {
125
124
  setCurrentSubject(subjectList.find(function (item) {
126
125
  var _defaultValue$analysi;
127
126
  return item.id === (defaultValue === null || defaultValue === void 0 ? void 0 : (_defaultValue$analysi = defaultValue.analysisSubject) === null || _defaultValue$analysi === void 0 ? void 0 : _defaultValue$analysi.subjectId);
@@ -175,7 +174,7 @@ var TopPanel = function TopPanel(props) {
175
174
  }, /*#__PURE__*/React.createElement(IconFont, {
176
175
  type: "bangzhu",
177
176
  onClick: function onClick() {
178
- return window.open('https://docs.zhugeio.com/datamanager/Statistical_caliber.html', '_blank');
177
+ return window.open("".concat(location.origin, "/webapp/app/help/intro"), '_blank');
179
178
  }
180
179
  }))),
181
180
  className: "panel-form-interval-item"
@@ -1,219 +1,219 @@
1
- @import '~@zgfe/business-lib/es/assets/styles/inner.less';
2
-
3
- .top-panel-interval {
4
- &-form-botton-box {
5
- display: flex;
6
- justify-content: flex-end;
7
- margin-top: 24px;
8
- margin-right: 24px;
9
-
10
- > :nth-child(1) {
11
- margin-right: 16px;
12
- color: #fff;
13
- background-color: #29bd52;
14
- border-color: #29bd52;
15
- }
16
- }
17
-
18
- &-label-hasIcon {
19
- .bsicon {
20
- cursor: pointer;
21
- }
22
- }
23
- }
24
-
25
- .panel-form-interval {
26
- .ant-form-item-explain-error {
27
- margin-left: 24px;
28
- }
29
- &-item {
30
- .ant-form-item-label {
31
- padding-left: 24px !important;
32
- font-weight: 500;
33
- }
34
- .ant-form-item-control-input-content {
35
- height: 40px;
36
- padding: 0 24px !important;
37
- line-height: 40px !important;
38
- .biz-select-handle {
39
- display: inline-block;
40
- width: 208px;
41
- }
42
- span.ant-radio + * {
43
- padding-right: 40px;
44
- padding-left: 12px;
45
- }
46
- &:hover {
47
- background-color: #e7f3fe;
48
- }
49
- }
50
- }
51
- .interval-item {
52
- margin-top: -2px;
53
- .ant-space-vertical {
54
- gap: 0px !important;
55
- width: 100%;
56
- .ant-space-item:nth-child(1) {
57
- padding: 0 12px;
58
- }
59
-
60
- .ant-space-item:nth-child(2) {
61
- display: flex;
62
- align-items: center;
63
- height: 42px;
64
- margin-top: 4px;
65
- padding: 0 12px;
66
- }
67
-
68
- .ant-space-item:nth-child(2):hover {
69
- background-color: #e7f3fe;
70
- }
71
- }
72
- }
73
-
74
- .biz-user-group-header {
75
- padding: 0;
76
- background-color: #fff;
77
- }
78
-
79
- .space-item {
80
- .ant-space-item {
81
- .biz-user-group {
82
- width: 100%;
83
- min-width: 208px;
84
- }
85
- }
86
-
87
- .ant-space-horizontal .ant-space-item:nth-child(2) .tianjia {
88
- display: none;
89
- }
90
- }
91
-
92
- .collapseRefs {
93
- .ant-form-item {
94
- margin-bottom: 16px;
95
- }
96
-
97
- .ant-form-item-control-input {
98
- display: flex;
99
- align-items: center;
100
- }
101
-
102
- .ant-form-item-label {
103
- padding-left: 24px;
104
- font-weight: 500;
105
- }
106
-
107
- .interval-box {
108
- > div:nth-child(1) {
109
- padding: 4px 24px;
110
- }
111
-
112
- > div:nth-child(1):hover {
113
- background-color: #e7f3fe;
114
- }
115
-
116
- .biz-attr-condition-group-handle {
117
- margin-right: 0;
118
- margin-left: 32px;
119
- }
120
-
121
- .biz-attr-condition-group-container {
122
- gap: 0px !important;
123
- }
124
-
125
- .biz-attr-condition-group-container-item {
126
- max-width: calc(100% + 32px) !important;
127
- margin-top: 4px;
128
- padding: 4px 56px;
129
- .ant-space-item {
130
- width: auto;
131
- max-width: auto;
132
- margin-left: 0px;
133
- padding: 0;
134
- }
135
- }
136
-
137
- .ant-space-item:hover {
138
- background-color: #e7f3fe;
139
- }
140
- }
141
-
142
- .dimension-interval {
143
- .ant-form-item-control-input {
144
- padding: 4px 24px;
145
- }
146
-
147
- .ant-form-item-control-input:hover {
148
- background-color: #e7f3fe;
149
- }
150
- }
151
- }
152
-
153
- .biz-event-select {
154
- width: 208px;
155
- }
156
-
157
- > .ant-form-item {
158
- margin-bottom: 16px;
159
- .biz-user-group-val {
160
- color: #021429;
161
- }
162
- }
163
-
164
- .associated {
165
- margin-top: -10px;
166
- margin-bottom: 12px;
167
-
168
- .qingchu {
169
- color: #9aa1a9;
170
- }
171
-
172
- .qingchu:hover {
173
- color: @error-color;
174
- }
175
-
176
- .ant-form-item-control-input {
177
- padding: 4px 24px;
178
-
179
- .ant-form-item-control-input {
180
- padding: 0;
181
- }
182
-
183
- .ant-form-item {
184
- margin-bottom: 0;
185
- }
186
- }
187
-
188
- .ant-form-item-control-input:hover {
189
- background-color: #e7f3fe;
190
- }
191
-
192
- .associated-link {
193
- display: block;
194
- line-height: 32px;
195
- }
196
-
197
- .ant-form-item-row {
198
- flex-direction: inherit;
199
- }
200
-
201
- .ant-form-item-control-input-content {
202
- display: flex;
203
- gap: 12px;
204
- }
205
-
206
- .associated-label {
207
- color: var(--3, #5f6085);
208
- font-weight: 400;
209
- font-size: 14px;
210
- font-family: PingFang SC;
211
- font-style: normal;
212
- line-height: 32px;
213
- text-align: right;
214
- }
215
- .ant-form-item-explain-error {
216
- margin-left: 0 !important;
217
- }
218
- }
219
- }
1
+ @import '~@zgfe/business-lib/es/assets/styles/inner.less';
2
+
3
+ .top-panel-interval {
4
+ &-form-botton-box {
5
+ display: flex;
6
+ justify-content: flex-end;
7
+ margin-top: 24px;
8
+ margin-right: 24px;
9
+
10
+ > :nth-child(1) {
11
+ margin-right: 16px;
12
+ color: #fff;
13
+ background-color: #29bd52;
14
+ border-color: #29bd52;
15
+ }
16
+ }
17
+
18
+ &-label-hasIcon {
19
+ .bsicon {
20
+ cursor: pointer;
21
+ }
22
+ }
23
+ }
24
+
25
+ .panel-form-interval {
26
+ .ant-form-item-explain-error {
27
+ margin-left: 24px;
28
+ }
29
+ &-item {
30
+ .ant-form-item-label {
31
+ padding-left: 24px !important;
32
+ font-weight: 500;
33
+ }
34
+ .ant-form-item-control-input-content {
35
+ height: 40px;
36
+ padding: 0 24px !important;
37
+ line-height: 40px !important;
38
+ .biz-select-handle {
39
+ display: inline-block;
40
+ width: 208px;
41
+ }
42
+ span.ant-radio + * {
43
+ padding-right: 40px;
44
+ padding-left: 12px;
45
+ }
46
+ &:hover {
47
+ background-color: #e7f3fe;
48
+ }
49
+ }
50
+ }
51
+ .interval-item {
52
+ margin-top: -2px;
53
+ .ant-space-vertical {
54
+ gap: 0px !important;
55
+ width: 100%;
56
+ .ant-space-item:nth-child(1) {
57
+ padding: 0 12px;
58
+ }
59
+
60
+ .ant-space-item:nth-child(2) {
61
+ display: flex;
62
+ align-items: center;
63
+ height: 42px;
64
+ margin-top: 4px;
65
+ padding: 0 12px;
66
+ }
67
+
68
+ .ant-space-item:nth-child(2):hover {
69
+ background-color: #e7f3fe;
70
+ }
71
+ }
72
+ }
73
+
74
+ .biz-user-group-header {
75
+ padding: 0;
76
+ background-color: #fff;
77
+ }
78
+
79
+ .space-item {
80
+ .ant-space-item {
81
+ .biz-user-group {
82
+ width: 100%;
83
+ min-width: 208px;
84
+ }
85
+ }
86
+
87
+ .ant-space-horizontal .ant-space-item:nth-child(2) .tianjia {
88
+ display: none;
89
+ }
90
+ }
91
+
92
+ .collapseRefs {
93
+ .ant-form-item {
94
+ margin-bottom: 16px;
95
+ }
96
+
97
+ .ant-form-item-control-input {
98
+ display: flex;
99
+ align-items: center;
100
+ }
101
+
102
+ .ant-form-item-label {
103
+ padding-left: 24px;
104
+ font-weight: 500;
105
+ }
106
+
107
+ .interval-box {
108
+ > div:nth-child(1) {
109
+ padding: 4px 24px;
110
+ }
111
+
112
+ > div:nth-child(1):hover {
113
+ background-color: #e7f3fe;
114
+ }
115
+
116
+ .biz-attr-condition-group-handle {
117
+ margin-right: 0;
118
+ margin-left: 32px;
119
+ }
120
+
121
+ .biz-attr-condition-group-container {
122
+ gap: 0px !important;
123
+ }
124
+
125
+ .biz-attr-condition-group-container-item {
126
+ max-width: calc(100% + 32px) !important;
127
+ margin-top: 4px;
128
+ padding: 4px 56px;
129
+ .ant-space-item {
130
+ width: auto;
131
+ max-width: auto;
132
+ margin-left: 0px;
133
+ padding: 0;
134
+ }
135
+ }
136
+
137
+ .ant-space-item:hover {
138
+ background-color: #e7f3fe;
139
+ }
140
+ }
141
+
142
+ .dimension-interval {
143
+ .ant-form-item-control-input {
144
+ padding: 4px 24px;
145
+ }
146
+
147
+ .ant-form-item-control-input:hover {
148
+ background-color: #e7f3fe;
149
+ }
150
+ }
151
+ }
152
+
153
+ .biz-event-select {
154
+ width: 208px;
155
+ }
156
+
157
+ > .ant-form-item {
158
+ margin-bottom: 16px;
159
+ .biz-user-group-val {
160
+ color: #021429;
161
+ }
162
+ }
163
+
164
+ .associated {
165
+ margin-top: -10px;
166
+ margin-bottom: 12px;
167
+
168
+ .qingchu {
169
+ color: #9aa1a9;
170
+ }
171
+
172
+ .qingchu:hover {
173
+ color: @error-color;
174
+ }
175
+
176
+ .ant-form-item-control-input {
177
+ padding: 4px 24px;
178
+
179
+ .ant-form-item-control-input {
180
+ padding: 0;
181
+ }
182
+
183
+ .ant-form-item {
184
+ margin-bottom: 0;
185
+ }
186
+ }
187
+
188
+ .ant-form-item-control-input:hover {
189
+ background-color: #e7f3fe;
190
+ }
191
+
192
+ .associated-link {
193
+ display: block;
194
+ line-height: 32px;
195
+ }
196
+
197
+ .ant-form-item-row {
198
+ flex-direction: inherit;
199
+ }
200
+
201
+ .ant-form-item-control-input-content {
202
+ display: flex;
203
+ gap: 12px;
204
+ }
205
+
206
+ .associated-label {
207
+ color: var(--3, #5f6085);
208
+ font-weight: 400;
209
+ font-size: 14px;
210
+ font-family: PingFang SC;
211
+ font-style: normal;
212
+ line-height: 32px;
213
+ text-align: right;
214
+ }
215
+ .ant-form-item-explain-error {
216
+ margin-left: 0 !important;
217
+ }
218
+ }
219
+ }
@@ -80,7 +80,10 @@ export interface SearchValue {
80
80
  /**
81
81
  * @description 显示设置
82
82
  */
83
- displaySetup?: string[];
83
+ displaySetup?: {
84
+ label: string;
85
+ value: number;
86
+ }[];
84
87
  /**
85
88
  * @description 日期
86
89
  * @default 最近一天
@@ -130,6 +133,10 @@ export interface SearchValue {
130
133
  subjectAlias?: string;
131
134
  unit: string;
132
135
  };
136
+ showList?: {
137
+ label: string;
138
+ value: number;
139
+ }[];
133
140
  }
134
141
  export type EventChartTypes = 'line' | 'bar' | 'pie' | 'map' | 'boxplot';
135
142
  /**
package/dist/esm/types.js CHANGED
@@ -1,15 +1,15 @@
1
1
  import { createContext } from 'react';
2
2
 
3
- /**
4
- * 属性选择器 默认值
3
+ /**
4
+ * 属性选择器 默认值
5
5
  */
6
6
 
7
- /**
8
- * 图表选择类型
7
+ /**
8
+ * 图表选择类型
9
9
  */
10
10
 
11
- /**
12
- * series value
11
+ /**
12
+ * series value
13
13
  */
14
14
 
15
15
  var defaultContext = {
@@ -65,7 +65,7 @@ export declare function formTableData(originalData: ChartData): {
65
65
  names: string[];
66
66
  originalNames: string[];
67
67
  }[];
68
- }[] | undefined;
68
+ }[];
69
69
  type ChartData = {
70
70
  appData: {
71
71
  series?: {
@@ -77,7 +77,7 @@ type ChartData = {
77
77
  xAxis?: string[];
78
78
  };
79
79
  };
80
- export declare function convertDateArray(params: SearchValue | undefined, dateArray: string[]): string[] | undefined;
80
+ export declare function convertDateArray(params: SearchValue | undefined, dateArray: string[]): (string | undefined)[] | undefined;
81
81
  /**
82
82
  * 获取查询结果
83
83
  * @param source 结果数据
@@ -232,8 +232,9 @@ export function formTableData(originalData) {
232
232
  function createNewArray(data) {
233
233
  var _series$, _series$$total;
234
234
  var _data$appData = data === null || data === void 0 ? void 0 : data.appData,
235
- series = _data$appData.series;
236
- if (series && ((_series$ = series[0]) === null || _series$ === void 0 ? void 0 : (_series$$total = _series$.total) === null || _series$$total === void 0 ? void 0 : _series$$total.length) === 0) {
235
+ _data$appData$series = _data$appData.series,
236
+ series = _data$appData$series === void 0 ? [] : _data$appData$series;
237
+ if (series && (series === null || series === void 0 ? void 0 : (_series$ = series[0]) === null || _series$ === void 0 ? void 0 : (_series$$total = _series$.total) === null || _series$$total === void 0 ? void 0 : _series$$total.length) === 0) {
237
238
  return getChildrenData(data, 0);
238
239
  } else {
239
240
  var newArray = series === null || series === void 0 ? void 0 : series.map(function (item, i) {
@@ -262,13 +263,15 @@ export function convertDateArray(params, dateArray) {
262
263
  case 'week':
263
264
  case 'month':
264
265
  var convertedArray = dateArray === null || dateArray === void 0 ? void 0 : dateArray.map(function (dateRange) {
265
- var _dateRange$split = dateRange.split('|'),
266
- _dateRange$split2 = _slicedToArray(_dateRange$split, 2),
267
- startDate = _dateRange$split2[0],
268
- endDate = _dateRange$split2[1];
269
- var formattedStartDate = startDate.split('-').slice(1).join('-');
270
- var formattedEndDate = endDate.split('-').slice(1).join('-');
271
- return "".concat(formattedStartDate, "\uFF5E").concat(formattedEndDate);
266
+ if (dateRange.includes('|')) {
267
+ var _dateRange$split = dateRange.split('|'),
268
+ _dateRange$split2 = _slicedToArray(_dateRange$split, 2),
269
+ startDate = _dateRange$split2[0],
270
+ endDate = _dateRange$split2[1];
271
+ var formattedStartDate = startDate.split('-').slice(1).join('-');
272
+ var formattedEndDate = endDate.split('-').slice(1).join('-');
273
+ return "".concat(formattedStartDate, "\uFF5E").concat(formattedEndDate);
274
+ }
272
275
  });
273
276
  return convertedArray;
274
277
  break;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zgfe/modules-interval",
3
- "version": "1.0.23-zhongyuan.2",
3
+ "version": "1.0.23-zhongyuan.20",
4
4
  "private": false,
5
5
  "module": "dist/esm/index.js",
6
6
  "typings": "dist/esm/index.d.ts",
@@ -42,7 +42,7 @@
42
42
  "@types/uuid": "^9.0.2",
43
43
  "@umijs/fabric": "^2.8.1",
44
44
  "@umijs/test": "^3.0.5",
45
- "@zgfe/business-lib": "1.2.70-hxd.10",
45
+ "@zgfe/business-lib": "1.2.71-hxd.31",
46
46
  "antd": "^4.22.6",
47
47
  "dumi": "^1.1.0",
48
48
  "echarts": "^5.3.2",
@@ -59,7 +59,7 @@
59
59
  "publishConfig": {
60
60
  "access": "public"
61
61
  },
62
- "gitHead": "e90168f1ab7052d0f46438adffc98ab9be1c8c6c",
62
+ "gitHead": "89128080db9fbac26cbff23dbe2188780f3d7e33",
63
63
  "gitHooks": {
64
64
  "pre-commit": "lint-staged"
65
65
  }