Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(tree-select): prevent redundant onChange, it and valueDisplay parameters undefined #3456

Open
wants to merge 7 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 14 additions & 8 deletions packages/components/tree-select/TreeSelect.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -156,11 +156,15 @@ const TreeSelect = forwardRef<TreeSelectRefType, TreeSelectProps>((originalProps
return ({ onClose }) =>
isFunction(valueDisplay) ? valueDisplay({ value: normalizedValue, onClose }) : valueDisplay;
}

const displayNode = isFunction(valueDisplay)
? valueDisplay({ value: normalizedValue[0], onClose: noop })
? valueDisplay({
value: normalizedValue[0] || { [tKeys.label]: '', [tKeys.value]: undefined },
onClose: noop,
})
: valueDisplay;
return normalizedValue.length ? displayNode : '';
}, [valueDisplay, multiple, normalizedValue]);
}, [valueDisplay, multiple, normalizedValue, tKeys]);

const internalInputValueDisplay: SelectInputProps['valueDisplay'] = useMemo(() => {
// 只有单选且下拉展开时需要隐藏 valueDisplay
Expand Down Expand Up @@ -194,12 +198,14 @@ const TreeSelect = forwardRef<TreeSelectRefType, TreeSelectProps>((originalProps
);

const handleSingleChange = usePersistFn<TreeProps['onActive']>((value, context) => {
const $value = Array.isArray(value) && value.length ? value[0] : undefined;
onChange(formatValue($value, context.node.label), {
...context,
data: context.node.data,
trigger: 'check',
});
if (value.length > 0) {
const $value = Array.isArray(value) && value.length ? value[0] : undefined;
onChange(formatValue($value, context.node.label), {
...context,
data: context.node.data,
trigger: 'check',
});
}
// 单选选择后收起弹框
setPopupVisible(false, { ...context, trigger: 'trigger-element-click' });
});
Expand Down
3 changes: 2 additions & 1 deletion packages/components/tree-select/_example/valuedisplay.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { TreeOptionData } from '@tdesign/common-js/common';
import React, { useState } from 'react';
import { TreeSelect, Tag, Space } from 'tdesign-react';

Expand Down Expand Up @@ -45,7 +46,7 @@ export default function Example() {
placeholder="请选择"
value={value}
onChange={(val: string) => setValue(val)}
valueDisplay={({ value }: { value }) => `${value.label}(${value.value})`}
valueDisplay={({ value }: { value: TreeOptionData }) => `${value.label}(${value.value})`}
/>
<TreeSelect
data={options}
Expand Down