index.tsx
14.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
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
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
import { QxBaseIcon } from '@qx/common';
import type { ModalProps } from 'antd';
import { Modal, Radio, Select, Typography } from 'antd';
import React, { useEffect, useMemo, useState } from 'react';
import {
getAggreList,
getAppList,
getDatasetListByAppid,
getFunList,
} from './service';
import '../style/reset.less';
import './styles.less';
// import {cloneDeep} from "lodash-es";
import {request} from "@qx/common";
const { Title, Text } = Typography;
/**
* 应用选择器
* @constructor
*/
type QxAppSelectProps = {
item?: Record<string, unknown>;
modalProps: ModalProps;
title?: string;
code?: string;
name?: string;
onChange?: any;
getConfig?: (appCode: string, funCode: string) => any;
flow_add?: boolean;
from?: string;
flag?: string;
clearData?: boolean;
haveChildren?: boolean;
clearDataSourceNode?: boolean;
/**
* 控制表单类型是否显示.
*
* 默认值 true
*/
showTableTypeTab?: boolean;
/**
* 默认表单类型
*
* 默认值 single
*/
defaultTableType?: 'single' | 'join';
chartCustom?: boolean;
nodeFrom?: 'flow_query_single';
};
/* 表单组件 */
const RelItemOption: React.FC<any> = (riProps) => {
// const [visible, setVisible] = useState<boolean>(false);
const [list, setList] = useState<any>(riProps.list);
const [item, setItem] = useState<any>();
useEffect(() => {
if (riProps.item) {
setItem(riProps.item);
}
if (riProps.list) {
setList(riProps.list);
}
}, [riProps]);
//搜索
const filterOption = (input: string, option: any) =>
(option?.name ?? '').toLowerCase().includes(input.toLowerCase());
return (
<>
<Title level={5} style={{ margin: '16px 0 8px' }}>
{riProps.title}
</Title>
<div style={{ width: '100%' }}>
<Select
showSearch
style={{ width: '100%', height: '36px' }}
placeholder={riProps.placeholder || '请选择数据源'}
options={list}
value={item?.code}
onChange={(val) => {
const _list = list.filter((el: any) => el.code === val);
if (_list?.length) {
riProps.onChange(_list[0]);
}
}}
dropdownStyle={{ maxHeight: 400, overflow: 'auto' }}
getPopupContainer={() => document.body}
filterOption={filterOption}
fieldNames={{
label: 'name',
value: 'code',
}}
/>
</div>
</>
);
};
/* 聚合表组件 */
const AggreOption: React.FC<any> = (_props: any) => {
//搜索
const filterOption = (input: string, option: any) =>
(option?.label ?? '').toLowerCase().includes(input.toLowerCase());
return (
<>
<Title level={5} style={{ margin: '16px 0 8px' }}>
{_props.title}
</Title>
<Select
showSearch
filterOption={filterOption}
style={{ width: '100%', height: '36px' }}
placeholder={_props.placeholder || '请选择数据源'}
options={_props.aggreList}
value={_props.aggreValue}
onChange={_props.onChange}
dropdownStyle={{ maxHeight: 400, overflow: 'auto' }}
getPopupContainer={() => document.body}
/>
</>
);
};
/**
* 表单类型选择
*/
const TableTypeNode: React.FC<any> = (_typeProps: any) => {
const { showTableTypeTab, flag } = _typeProps;
return (
<>
{showTableTypeTab && (
<Radio.Group
onChange={(e: any) => _typeProps.radioChange(e, _typeProps.appData)}
value={_typeProps.radioType}
defaultValue={_typeProps.defaultRadioType}
optionType="button"
style={{
width: '100%',
textAlign: 'center',
display: flag === 'join' ? '' : 'none',
height: '36px',
}}
>
<Radio.Button
value="single"
style={{
width: '50%',
height: '36px',
}}
>
表单
</Radio.Button>
<Radio.Button
value="join"
style={{
width: '50%',
height: '36px',
}}
>
聚合表
</Radio.Button>
</Radio.Group>
)}
</>
);
};
export const QxAppSelector: React.FC<QxAppSelectProps> = ({
showTableTypeTab = true,
defaultTableType = 'single',
chartCustom = false,
...props
}) => {
const [appList, setAppList] = useState<any[]>([]); //应用列表
const [formList, setFormList] = useState<any[]>([]); //表单列表
const [appItem, setAppItem] = useState<any>({}); //选择的应用
const [formItem, setFormItem] = useState<any>({}); //选择的表单
const [tableType, setTableType] = useState<string>(defaultTableType); //单个表单or聚合表
const [aggreList, setAggreList] = useState<any[]>([]); //聚合表数据源
const [aggreValue, setAggreValue] = useState<string>(); //聚合表选择的值
const isDeveloperMode =
window.sessionStorage.getItem('DEVELOPER_MODE') === '1';
useEffect(() => {
const _item = props.item || {};
let targetItem: any = {};
getAppList(request, { from: props.from }).then((res: any) => {
if (!res?.length) {
return;
}
// eslint-disable-next-line array-callback-return
res.map((item: any) => {
if (item.code === _item.currentId) {
item.name = item.name + '(本应用)';
}
if (item.code === _item['appId']) {
targetItem = { ...item };
}
});
setAppList(res);
setAppItem(targetItem);
if (!targetItem || !targetItem.code) {
return;
}
if (props?.haveChildren) {
getFunList(request, targetItem.code, { hasChild: true }).then(
(re: any) => {
setFormList(re);
},
);
} else {
getFunList(request, targetItem.code).then((re: any) => {
setFormList(re);
});
}
if (_item.flag === 'JOIN') {
setFormItem({});
//聚合表
setTableType('join'); // 单选按钮切到'聚合表'
if (!aggreList.length) {
// 如果聚合表没有加载数据源
const datasetApi = chartCustom
? getDatasetListByAppid(request, targetItem.code)
: getAggreList(request);
datasetApi.then((datasetRes: any) => {
// eslint-disable-next-line array-callback-return
datasetRes.map((item: any) => {
item.label = item.name;
item.value = item.code;
});
setAggreList(datasetRes);
// console.log('聚合表数据源',res);
const index = datasetRes.findIndex(
(o: any) => o.code === String(_item['code']),
); //判断聚合表是否已被删除
setAggreValue(index === -1 ? undefined : String(_item['code']));
});
} else {
const index = aggreList.findIndex(
(o: any) => o.code === String(_item['code']),
);
setAggreValue(index === -1 ? undefined : String(_item['code']));
}
} else {
setTableType('single');
setFormItem(_item);
setAggreValue(undefined);
}
});
}, [props.item]);
const formChange = (item: any) => {
setFormItem(item);
};
const appChange = (item: any) => {
setAppItem(item);
setFormItem({});
if (props?.haveChildren) {
getFunList(request, item.code, { hasChild: true }).then((re: any) => {
setFormList(re);
});
} else {
getFunList(request, item.code).then((res: any) => {
setFormList(res);
});
const datasetApi = chartCustom
? getDatasetListByAppid(request, item.code)
: getAggreList(request);
datasetApi.then((datasetRes: any) => {
// eslint-disable-next-line array-callback-return
datasetRes.map((_item: any) => {
_item.label = _item.name;
_item.value = _item.code;
});
setAggreList(datasetRes);
setAggreValue(undefined);
});
}
};
const radioChange = (e: any, data: any) => {
setTableType(e.target.value);
if (chartCustom) {
if (e.target.value === 'join' && !aggreList.length) {
const datasetApi = chartCustom
? getDatasetListByAppid(request, data?.code || '')
: getAggreList(request);
datasetApi.then((res: any) => {
if (res && !!res.length) {
// eslint-disable-next-line array-callback-return
res.map((item: any) => {
item.label = item.name;
item.value = item.code;
});
setAggreList(res);
} else {
setAggreList([]);
}
});
}
} else {
if (e.target.value === 'join' && !aggreList.length) {
getAggreList(request).then((res: any) => {
if (!res?.length) {
return;
}
// eslint-disable-next-line array-callback-return
res.map((item: any) => {
item.label = item.name;
item.value = item.code;
});
setAggreList(res);
});
}
}
};
const aggreValueChange = (e: any) => {
setAggreValue(e);
};
const handleGetConfig = () => {
const appCode = appItem.extract;
const funCode = formItem.extract?.code;
if (!appCode || !funCode) return;
//props.getConfig 当前为undefined--布尔判断为false
if (props.getConfig) props.getConfig(appCode, funCode);
};
// 只要选的是用户中心 都过滤掉 用户与部门管理
const workFormList = useMemo(() => {
if (appItem?.extract === 'uc') {
return formList?.filter(
(o: any) => !['org', 'user'].includes(o.extract?.code),
);
}
return formList;
}, [appItem?.extract, formList, props.nodeFrom]);
return (
<>
<Modal
bodyStyle={{ padding: 0 }}
className={'qx-query-designer'}
wrapClassName={'qx-common__modal qx-app-selector__modal'}
closeIcon={
<QxBaseIcon
className={'qx-common__modal--close'}
type={'qx-icon-close'}
/>
}
keyboard={false}
maskClosable={false}
{...props.modalProps}
onOk={
tableType === 'single'
? (e) => {
// eslint-disable-next-line @typescript-eslint/no-unused-expressions
props?.modalProps.onOk && props.modalProps.onOk(e);
// 把应用id传出来
props.onChange({
...formItem,
appId: appItem.code,
flag: 'SINGLE',
appCode: appItem.extract,
});
handleGetConfig();
}
: (e) => {
// eslint-disable-next-line @typescript-eslint/no-unused-expressions
props?.modalProps.onOk && props.modalProps.onOk(e);
// 把选择的聚合表的id传出来
const aggreItem = aggreList.filter(
(ex: any) => ex.value === aggreValue,
)[0];
props.onChange({
...aggreItem,
appId: appItem.code,
flag: 'JOIN',
appCode: appItem.extract,
});
// handleGetConfig()
}
}
title={props.title || '选择关联表单'}
>
{chartCustom ? (
<div style={{ width: '90%', margin: '10px auto' }}>
<div style={{ margin: '20px auto' }}>
<RelItemOption
title={'应用'}
list={appList}
onChange={appChange}
item={appItem}
placeholder={'请选择应用'}
/>
<>
<Title level={5} style={{ margin: '20px 0 8px' }}>
数据类型
</Title>
<TableTypeNode
radioType={tableType}
defaultRadioType={defaultTableType}
appData={appItem}
radioChange={radioChange}
showTableTypeTab={showTableTypeTab}
flag={props.flag}
/>
</>
{tableType === 'single' ? (
<div style={{ margin: '20px auto' }}>
<RelItemOption
title={'表单'}
list={formList}
onChange={formChange}
item={formItem}
placeholder={'请选择表单'}
/>
</div>
) : (
<div style={{ margin: '20px auto' }}>
<AggreOption
aggreList={aggreList}
aggreValue={aggreValue}
onChange={aggreValueChange}
title={'聚合表'}
placeholder={'请选择聚合表'}
/>
</div>
)}
</div>
</div>
) : (
<div style={{ width: '90%', margin: '10px auto' }}>
{props.title === '选择数据源' ? null : (
<Text type="secondary">
在表单中显示关联的记录。如:订单关联客户
</Text>
)}
<TableTypeNode
radioType={tableType}
defaultRadioType={defaultTableType}
appData={appItem}
radioChange={radioChange}
showTableTypeTab={showTableTypeTab}
flag={props.flag}
/>
{tableType === 'single' ? (
<div style={{ margin: '20px auto' }}>
<RelItemOption
title={'应用'}
// 非开发者模式下 过滤掉用户中心选项--钉钉2022.10.11
list={
isDeveloperMode
? appList
: appList?.filter((o) => o?.extract !== 'uc')
}
onChange={appChange}
item={appItem}
placeholder={'请选择应用'}
/>
<RelItemOption
title={'工作表'}
list={workFormList}
onChange={formChange}
item={formItem}
placeholder={'请选择工作表'}
/>
</div>
) : (
<div style={{ margin: '20px auto' }}>
<AggreOption
aggreList={aggreList}
aggreValue={aggreValue}
onChange={aggreValueChange}
title={'数据表'}
/>
</div>
)}
</div>
)}
</Modal>
</>
);
};