-
-
Notifications
You must be signed in to change notification settings - Fork 142
/
Copy pathCascader.tsx
410 lines (344 loc) · 11.4 KB
/
Cascader.tsx
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
import * as React from 'react';
import warning from 'rc-util/lib/warning';
import useMergedState from 'rc-util/lib/hooks/useMergedState';
import type { TreeSelectProps } from 'rc-tree-select';
import generate from 'rc-tree-select/lib/generate';
import type { FlattenDataNode } from 'rc-tree-select/lib/interface';
import type { RefSelectProps, Placement } from 'rc-select/lib/generate';
import OptionList from './OptionList';
import type { CascaderValueType, DataNode, FieldNames, ShowSearchType } from './interface';
import CascaderContext from './context';
import {
connectValue,
convertOptions,
fillFieldNames,
restoreCompatibleValue,
splitValue,
} from './util';
import useUpdateEffect from './hooks/useUpdateEffect';
import useSearchConfig from './hooks/useSearchConfig';
const INTERNAL_VALUE_FIELD = '__rc_cascader_value__';
/**
* `rc-cascader` is much like `rc-tree-select` but API is very different.
* It's caused that component developer is not same person
* and we do not rice the API naming standard at that time.
*
* To avoid breaking change, wrap the `rc-tree-select` to compatible with `rc-cascader` API.
* This should be better to merge to same API like `rc-tree-select` or `rc-select` in next major version.
*
* Update:
* - dropdown class change to `rc-cascader-dropdown`
* - direction rtl keyboard
*
* Deprecated:
* - popupVisible
* - hidePopupOnSelect
*
* Removed:
* - builtinPlacements: Handle by select
*/
const RefCascader = generate({
prefixCls: 'rc-cascader',
optionList: OptionList,
});
function defaultDisplayRender(labels: React.ReactNode[]) {
return labels.join(' / ');
}
// ====================================== Wrap ======================================
interface BaseCascaderProps
extends Omit<
TreeSelectProps,
| 'value'
| 'defaultValue'
| 'filterTreeNode'
| 'labelInValue'
| 'loadData'
| 'multiple'
| 'showCheckedStrategy'
| 'showSearch'
| 'treeCheckable'
| 'treeCheckStrictly'
| 'treeDataSimpleMode'
| 'treeNodeFilterProp'
| 'treeNodeLabelProp'
| 'treeDefaultExpandAll'
| 'treeDefaultExpandedKeys'
| 'treeExpandedKeys'
| 'treeIcon'
| 'onChange'
> {
options?: DataNode[];
children?: React.ReactElement;
// Value
value?: CascaderValueType | CascaderValueType[];
defaultValue?: CascaderValueType | CascaderValueType[];
changeOnSelect?: boolean;
allowClear?: boolean;
disabled?: boolean;
fieldNames?: FieldNames;
// Display
displayRender?: (label: React.ReactNode[], selectedOptions: DataNode[]) => React.ReactNode;
// Search
showSearch?: boolean | ShowSearchType;
searchValue?: string;
onSearch?: (search: string) => void;
// Open
/** @deprecated Use `open` instead */
popupVisible?: boolean;
/** @deprecated Use `dropdownClassName` instead */
popupClassName?: string;
dropdownClassName?: string;
/** @deprecated Use `placement` instead */
popupPlacement?: Placement;
placement?: Placement;
/** @deprecated Use `onDropdownVisibleChange` instead */
onPopupVisibleChange?: (open: boolean) => void;
onDropdownVisibleChange?: (open: boolean) => void;
// Trigger
expandTrigger?: 'hover' | 'click';
autoAdjustOverflow?: boolean;
dropdownMenuColumnStyle?: React.CSSProperties;
/** @private Internal usage. Do not use in your production. */
dropdownPrefixCls?: string;
loadData?: (selectOptions: DataNode[]) => void;
expandIcon?: React.ReactNode;
loadingIcon?: React.ReactNode;
}
type OnSingleChange = (value: CascaderValueType, selectOptions: DataNode[]) => void;
type OnMultipleChange = (value: CascaderValueType[], selectOptions: DataNode[][]) => void;
export interface SingleCascaderProps extends BaseCascaderProps {
checkable?: false;
onChange?: OnSingleChange;
}
export interface MultipleCascaderProps extends BaseCascaderProps {
checkable: true | React.ReactNode;
onChange?: OnMultipleChange;
}
export type CascaderProps = SingleCascaderProps | MultipleCascaderProps;
interface CascaderRef {
focus: () => void;
blur: () => void;
}
const Cascader = React.forwardRef((props: CascaderProps, ref: React.Ref<CascaderRef>) => {
const {
checkable,
changeOnSelect,
children,
options,
onChange,
value,
defaultValue,
popupVisible,
open,
dropdownClassName,
popupClassName,
onDropdownVisibleChange,
onPopupVisibleChange,
popupPlacement,
placement,
autoAdjustOverflow = true,
searchValue,
onSearch,
showSearch,
expandTrigger,
expandIcon = '>',
loadingIcon,
displayRender = defaultDisplayRender,
loadData,
dropdownMenuColumnStyle,
dropdownPrefixCls,
...restProps
} = props;
const { fieldNames } = restProps;
// ============================ Ref =============================
const cascaderRef = React.useRef<RefSelectProps>();
React.useImperativeHandle(ref, () => ({
focus: () => {
cascaderRef.current.focus();
},
blur: () => {
cascaderRef.current.blur();
},
}));
const getEntityByValue = (val: React.Key): FlattenDataNode =>
(cascaderRef.current as any).getEntityByValue(val);
// =========================== Search ===========================
const [mergedSearch, setMergedSearch] = useMergedState(undefined, {
value: searchValue,
onChange: onSearch,
});
const [mergedShowSearch, searchConfig] = useSearchConfig(showSearch);
// ========================== Options ===========================
const outerFieldNames = React.useMemo(() => fillFieldNames(fieldNames), [fieldNames]);
const mergedFieldNames = React.useMemo(
() => ({
...outerFieldNames,
value: INTERNAL_VALUE_FIELD,
}),
[outerFieldNames],
);
const mergedOptions = React.useMemo(() => {
return convertOptions(options, outerFieldNames, INTERNAL_VALUE_FIELD);
}, [options, outerFieldNames]);
// =========================== Value ============================
/**
* Always pass props value to last value unit:
* - single: ['light', 'little'] => ['light__little']
* - multiple: [['light', 'little'], ['bamboo']] => ['light__little', 'bamboo']
*/
const parseToInternalValue = (
propValue?: CascaderValueType | CascaderValueType[],
): React.Key[] => {
let propValueList: CascaderValueType[] = [];
if (propValue) {
propValueList = (checkable ? propValue : [propValue]) as CascaderValueType[];
}
return propValueList.map(connectValue);
};
const [internalValue, setInternalValue] = React.useState(() =>
parseToInternalValue(value || defaultValue),
);
useUpdateEffect(() => {
setInternalValue(parseToInternalValue(value));
}, [value]);
// =========================== Label ============================
const labelRender = (entity: FlattenDataNode, val: string) => {
const { label: fieldLabel } = mergedFieldNames;
if (!entity) {
const valPath = splitValue(val);
return displayRender(valPath, []);
}
if (checkable) {
return entity.data.node[fieldLabel];
}
const { options: selectedOptions } = restoreCompatibleValue(entity, mergedFieldNames);
const rawOptions = selectedOptions.map(opt => opt.node);
const labelList = rawOptions.map(opt => opt[fieldLabel]);
return displayRender(labelList, rawOptions);
};
// =========================== Change ===========================
const onInternalChange = (newValue: any /** Not care current type */) => {
// TODO: Need improve motion experience
setMergedSearch('');
const valueList = (checkable ? newValue : [newValue]) as React.Key[];
const pathList: CascaderValueType[] = [];
const optionsList: DataNode[][] = [];
const valueEntities = valueList.map(getEntityByValue).filter(entity => entity);
valueEntities.forEach(entity => {
const { options: valueOptions } = restoreCompatibleValue(entity, mergedFieldNames);
const originOptions = valueOptions.map(option => option.node);
pathList.push(
originOptions.map(
opt =>
// Here we should use original FieldNames value mapping
opt[outerFieldNames.value],
),
);
optionsList.push(originOptions);
});
// Fill state
if (value === undefined) {
setInternalValue(valueList);
}
if (onChange) {
if (checkable) {
(onChange as OnMultipleChange)(pathList, optionsList);
} else {
// TODO: This should return null as other component.
// But its a breaking change and we should keep the logic.
(onChange as OnSingleChange)(pathList[0] || [], optionsList[0] || []);
}
}
};
// ============================ Open ============================
if (process.env.NODE_ENV !== 'production') {
warning(
!onPopupVisibleChange,
'`onPopupVisibleChange` is deprecated. Please use `onDropdownVisibleChange` instead.',
);
warning(popupVisible === undefined, '`popupVisible` is deprecated. Please use `open` instead.');
warning(
popupClassName === undefined,
'`popupClassName` is deprecated. Please use `dropdownClassName` instead.',
);
warning(
popupPlacement === undefined,
'`popupPlacement` is deprecated. Please use `placement` instead.',
);
}
const mergedOpen = open !== undefined ? open : popupVisible;
const mergedDropdownClassName = dropdownClassName || popupClassName;
const mergedPlacement = placement || popupPlacement;
const onInternalDropdownVisibleChange = (nextVisible: boolean) => {
onDropdownVisibleChange?.(nextVisible);
onPopupVisibleChange?.(nextVisible);
};
// ========================== Context ===========================
const context = React.useMemo(
() => ({
changeOnSelect,
expandTrigger,
fieldNames: mergedFieldNames,
expandIcon,
loadingIcon,
loadData,
dropdownMenuColumnStyle,
search: searchConfig,
dropdownPrefixCls,
}),
[
changeOnSelect,
expandTrigger,
mergedFieldNames,
expandIcon,
loadingIcon,
loadData,
dropdownMenuColumnStyle,
searchConfig,
dropdownPrefixCls,
],
);
// =========================== Render ===========================
const dropdownStyle: React.CSSProperties =
// Search to match width
(mergedSearch && searchConfig.matchInputWidth) ||
// Empty keep the width
!mergedOptions.length
? {}
: {
minWidth: 'auto',
};
return (
<CascaderContext.Provider value={context}>
<RefCascader
ref={cascaderRef}
{...restProps}
fieldNames={mergedFieldNames}
value={checkable ? internalValue : internalValue[0]}
placement={mergedPlacement}
dropdownMatchSelectWidth={false}
autoAdjustOverflow={autoAdjustOverflow}
dropdownStyle={dropdownStyle}
dropdownClassName={mergedDropdownClassName}
treeData={mergedOptions}
treeCheckable={checkable}
treeNodeFilterProp="label"
onChange={onInternalChange}
showCheckedStrategy={RefCascader.SHOW_PARENT}
open={mergedOpen}
onDropdownVisibleChange={onInternalDropdownVisibleChange}
searchValue={mergedSearch}
// Customize filter logic in OptionList
filterTreeNode={() => true}
showSearch={mergedShowSearch}
onSearch={setMergedSearch}
labelRender={labelRender}
{...{
getRawInputElement: () => children,
}}
/>
</CascaderContext.Provider>
);
});
Cascader.displayName = 'Cascader';
export default Cascader;