fx-picker.tsx
8 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
import { DownOutlined, SearchOutlined } from '@ant-design/icons';
import { Empty, Input, Tree } from 'antd';
import _ from 'lodash-es';
import React, {
memo,
useEffect,
useLayoutEffect,
useMemo,
useRef,
useState,
} from 'react';
import { FunctionProps } from '../index';
import emptyImg from '../svg/custom_chart_null.png';
import { handleHighlight } from './var-picker';
type PickProps = {
dataSource: FunctionProps[];
onHover: (nodeData: FunctionProps | null) => void;
onPick: (funcData: FunctionProps) => void;
pickFunc: (funcData: FunctionProps) => void;
};
const FxPicker: React.FC<PickProps> = ({
onHover,
onPick,
pickFunc,
...props
}): JSX.Element => {
const [searchVal, setSearchVal] = useState('');
const [selectIndex, setSelectIndex] = useState(0);
const searchInputRef = useRef(null);
const [filterData, setFilterData] = useState<FunctionProps[]>([]);
// const selectFunc = useRef<string>('');
// const change
const dataSource: FunctionProps[] = useMemo(() => {
let cloneData = _.cloneDeep(props.dataSource || []);
cloneData.forEach((item) => {
(item.children || []).forEach((it: any) => {
// @ts-ignore
if (!it.titleCopy && typeof it.title === 'string') {
it.titleCopy = it.title;
}
// @ts-ignore
it.title = <span style={{ display: 'inline-block' }}>{it.title}</span>;
});
});
return cloneData;
}, [props.dataSource]);
useEffect(() => {
let cloneData = _.cloneDeep(dataSource);
cloneData.forEach((item: any) => {
if (item.title?.includes(searchVal)) {
item.title = handleHighlight(item.title, searchVal);
item._hidden = false;
} else {
if ((item.children || []).length === 0) {
item._hidden = true;
}
(item.children || []).forEach((it: any) => {
if (!it.funcNameEg.toLowerCase()?.includes(searchVal.toLowerCase())) {
it._hidden = true;
item.hiddenLen = (item.hiddenLen || 0) + 1;
if (item.hiddenLen === item.children?.length) {
item._hidden = true;
}
} else {
const title = handleHighlight(it.titleCopy, searchVal, 'fx');
it.title = <span style={{ display: 'inline-block' }}>{title}</span>;
}
});
}
});
cloneData = cloneData.filter((item: any) => item._hidden !== true);
cloneData.forEach((item) => {
item.children = (item.children || []).filter((it: any) => !it._hidden);
});
setFilterData(cloneData);
}, [searchVal]);
// 根据查询value过滤公式列表数据
// const dataSourceFilter: FunctionProps[] = useMemo(() => {
// // 扁平化dataSource
// const dataSourceFlatten: FunctionProps[] = [];
// flatten(dataSource, dataSourceFlatten);
// return dataSourceFlatten.filter((ds) => ds.title.includes(searchVal));
// }, [searchVal, dataSource]);
const handleSearch = _.debounce((val: string) => {
setSelectIndex(0);
setSearchVal(val);
}, 200);
// 搜索框值变化时触发
const onHandleSearchChange = (e: any) => {
const val = e.target.value;
handleSearch(val);
};
// 设置当前选中的函数公式
// const onHandlePickFunc = (funcData: FunctionProps) => {
// _.isFunction(onPick) && onPick(funcData);
// searchInputRef?.current?.blur();
// };
/**
* 设置键盘事件逻辑
* keyCode 38:ArrowUp 40:ArrowDown 13: Enter
*/
// const onHandleKeydown = (e: any) => {
// if (e.keyCode == 38 && selectIndex > 0) {
// setSelectIndex(selectIndex - 1);
// } else if (e.keyCode == 40 && selectIndex < dataSourceFilter.length - 1) {
// setSelectIndex(selectIndex + 1);
// } else if (e.keyCode == 13) {
// onHandlePickFunc(dataSourceFilter[selectIndex]);
// }
// _.isFunction(onHover) && onHover(dataSourceFilter[selectIndex]);
// };
// 设置popover-content内滚动条位置。DOM更新之后立即执行
useLayoutEffect(() => {
const dom = document.getElementsByClassName('fun-selected')[0];
if (dom) {
dom.scrollIntoView(Object.assign({ block: 'center', inline: 'nearest' }));
}
}, [selectIndex]);
// const onHandleUpload = () => {
// message.info('功能暂未开发');
// };
// const onHandleCustomFunc = () => {
// message.info('功能暂未开发');
// };
const onHandleMouseEnter = (event: any, nodeData: FunctionProps) => {
if (nodeData.children && nodeData.children.length > 0) return;
if (_.isFunction(onHover)) {
onHover(nodeData);
}
};
const onHandleSelectTNode = (key: any, event: any) => {
if (event.node.children && event.node.children.length > 0) return;
if (_.isFunction(onPick)) {
onPick(event.node);
}
if (_.isFunction(onHover)) {
onHover(event.node);
}
pickFunc(event.node);
// selectFunc.current = event.node.funcNameEg;
};
// 设置popover-content
// const searchContent = useMemo(() => {
// return (
// <div className="search-content">
// {dataSourceFilter.map((ds, index) => {
// return (
// <div
// className={index === selectIndex ? 'fun-selected' : ''}
// key={ds.key}
// onClick={() => onHandlePickFunc(ds)}
// >
// {ds.title}
// </div>
// );
// })}
// </div>
// );
// }, [dataSourceFilter, selectIndex]);
const treeRender = useMemo(() => {
return searchVal.length && !filterData?.length ? (
<Empty
image={emptyImg}
style={{
height: '100%',
width: '100%',
display: 'flex',
flexDirection: 'column',
justifyContent: 'center',
color: '#999',
}}
/>
) : (
<Tree
key={Math.random()}
rootClassName={'custom-tree'}
blockNode={true}
selectable={true}
defaultExpandAll={!!searchVal.length}
switcherIcon={<DownOutlined />}
titleRender={(nodeData) => {
const { title, titleDesc } = nodeData;
return (
<div
className="custom-title"
onMouseEnter={(event) => {
onHandleMouseEnter(event, nodeData);
}}
onMouseLeave={() => {
// if (nodeData.funcNameEg === selectFunc.current) {
// selectFunc.current = '';
// return;
// }
if (_.isFunction(onHover)) {
onHover(null);
}
}}
>
<span>{title}</span>
<span>{titleDesc}</span>
</div>
);
}}
treeData={searchVal.length ? filterData : dataSource}
defaultExpandedKeys={['COMMON']}
onSelect={onHandleSelectTNode}
/>
);
}, [dataSource, filterData]);
return (
<div className="function-box">
<div className="search-bar">
{/*<Popover*/}
{/* overlayClassName={'custom-search-popover'}*/}
{/* placement="bottom"*/}
{/* content={searchContent}*/}
{/* trigger={'focus'}*/}
{/* autoAdjustOverflow={false}*/}
{/* getPopupContainer={(HTMLElement) => HTMLElement.parentNode}*/}
{/*>*/}
<Input
bordered={false}
ref={searchInputRef}
onChange={onHandleSearchChange}
prefix={<SearchOutlined className="search" />}
// addonAfter={
// <>
// <UploadOutlined className="upload" onClick={onHandleUpload} />
// <PlusOutlined className="plus" onClick={onHandleCustomFunc} />
// </>
// }
placeholder="搜索函数"
/>
{/*</Popover>*/}
</div>
{dataSource?.length ? (
treeRender
) : (
<div className={'qx-empty-center'}>(暂无数据)</div>
)}
{/*{_.size(dataSource) === 0 && (*/}
{/* <div className={'qx-empty-center'}>(暂无数据)</div>*/}
{/*)}*/}
</div>
);
};
export default memo(FxPicker);