-
-
Notifications
You must be signed in to change notification settings - Fork 141
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
feat: virtual list #546
base: master
Are you sure you want to change the base?
feat: virtual list #546
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -5,6 +5,8 @@ | |||||||||||||||||||||||||||||
import { SEARCH_MARK } from '../hooks/useSearchOptions'; | ||||||||||||||||||||||||||||||
import { isLeaf, toPathKey } from '../utils/commonUtil'; | ||||||||||||||||||||||||||||||
import Checkbox from './Checkbox'; | ||||||||||||||||||||||||||||||
import List from 'rc-virtual-list'; | ||||||||||||||||||||||||||||||
import type { ListRef } from 'rc-virtual-list'; | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
export const FIX_LABEL = '__cascader_fix_label__'; | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
|
@@ -41,6 +43,7 @@ | |||||||||||||||||||||||||||||
isSelectable, | ||||||||||||||||||||||||||||||
disabled: propsDisabled, | ||||||||||||||||||||||||||||||
}: ColumnProps<OptionType>) { | ||||||||||||||||||||||||||||||
const ref = React.useRef<ListRef>(null); | ||||||||||||||||||||||||||||||
const menuPrefixCls = `${prefixCls}-menu`; | ||||||||||||||||||||||||||||||
const menuItemPrefixCls = `${prefixCls}-menu-item`; | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
|
@@ -52,6 +55,9 @@ | |||||||||||||||||||||||||||||
loadingIcon, | ||||||||||||||||||||||||||||||
dropdownMenuColumnStyle, | ||||||||||||||||||||||||||||||
optionRender, | ||||||||||||||||||||||||||||||
virtual, | ||||||||||||||||||||||||||||||
listItemHeight, | ||||||||||||||||||||||||||||||
listHeight, | ||||||||||||||||||||||||||||||
} = React.useContext(CascaderContext); | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
const hoverOpen = expandTrigger === 'hover'; | ||||||||||||||||||||||||||||||
|
@@ -101,117 +107,140 @@ | |||||||||||||||||||||||||||||
); | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
// ============================ Render ============================ | ||||||||||||||||||||||||||||||
return ( | ||||||||||||||||||||||||||||||
<ul className={menuPrefixCls} role="menu"> | ||||||||||||||||||||||||||||||
{optionInfoList.map( | ||||||||||||||||||||||||||||||
({ | ||||||||||||||||||||||||||||||
disabled, | ||||||||||||||||||||||||||||||
label, | ||||||||||||||||||||||||||||||
value, | ||||||||||||||||||||||||||||||
isLeaf: isMergedLeaf, | ||||||||||||||||||||||||||||||
isLoading, | ||||||||||||||||||||||||||||||
checked, | ||||||||||||||||||||||||||||||
halfChecked, | ||||||||||||||||||||||||||||||
option, | ||||||||||||||||||||||||||||||
fullPath, | ||||||||||||||||||||||||||||||
fullPathKey, | ||||||||||||||||||||||||||||||
disableCheckbox, | ||||||||||||||||||||||||||||||
}) => { | ||||||||||||||||||||||||||||||
// >>>>> Open | ||||||||||||||||||||||||||||||
const triggerOpenPath = () => { | ||||||||||||||||||||||||||||||
if (isOptionDisabled(disabled)) { | ||||||||||||||||||||||||||||||
return; | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
const nextValueCells = [...fullPath]; | ||||||||||||||||||||||||||||||
if (hoverOpen && isMergedLeaf) { | ||||||||||||||||||||||||||||||
nextValueCells.pop(); | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
onActive(nextValueCells); | ||||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
// >>>>> Selection | ||||||||||||||||||||||||||||||
const triggerSelect = () => { | ||||||||||||||||||||||||||||||
if (isSelectable(option) && !isOptionDisabled(disabled)) { | ||||||||||||||||||||||||||||||
onSelect(fullPath, isMergedLeaf); | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
// >>>>> Title | ||||||||||||||||||||||||||||||
let title: string | undefined; | ||||||||||||||||||||||||||||||
if (typeof option.title === 'string') { | ||||||||||||||||||||||||||||||
title = option.title; | ||||||||||||||||||||||||||||||
} else if (typeof label === 'string') { | ||||||||||||||||||||||||||||||
title = label; | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
// scrollIntoView effect in virtual list | ||||||||||||||||||||||||||||||
React.useEffect(() => { | ||||||||||||||||||||||||||||||
if (virtual && ref.current && activeValue) { | ||||||||||||||||||||||||||||||
const startIndex = optionInfoList.findIndex(({ value }) => value === activeValue); | ||||||||||||||||||||||||||||||
ref.current.scrollTo({ index: startIndex, align: 'auto' }); | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
}, [optionInfoList, virtual, activeValue]) | ||||||||||||||||||||||||||||||
Comment on lines
+112
to
+117
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 检查 activeValue 不存在时的处理 在 建议修改如下: React.useEffect(() => {
if (virtual && ref.current && activeValue) {
const startIndex = optionInfoList.findIndex(({ value }) => value === activeValue);
+ if (startIndex >= 0) {
ref.current.scrollTo({ index: startIndex, align: 'auto' });
+ }
}
}, [optionInfoList, virtual, activeValue]); 📝 Committable suggestion
Suggested change
|
||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
const renderLi = (item: typeof optionInfoList[0]) => { | ||||||||||||||||||||||||||||||
const { | ||||||||||||||||||||||||||||||
disabled, | ||||||||||||||||||||||||||||||
label, | ||||||||||||||||||||||||||||||
value, | ||||||||||||||||||||||||||||||
isLeaf: isMergedLeaf, | ||||||||||||||||||||||||||||||
isLoading, | ||||||||||||||||||||||||||||||
checked, | ||||||||||||||||||||||||||||||
halfChecked, | ||||||||||||||||||||||||||||||
option, | ||||||||||||||||||||||||||||||
fullPath, | ||||||||||||||||||||||||||||||
fullPathKey, | ||||||||||||||||||||||||||||||
disableCheckbox | ||||||||||||||||||||||||||||||
} = item; | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
const triggerOpenPath = () => { | ||||||||||||||||||||||||||||||
if (isOptionDisabled(disabled)) { | ||||||||||||||||||||||||||||||
return; | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
const nextValueCells = [...fullPath]; | ||||||||||||||||||||||||||||||
if (hoverOpen && isMergedLeaf) { | ||||||||||||||||||||||||||||||
nextValueCells.pop(); | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
onActive(nextValueCells); | ||||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
// >>>>> Selection | ||||||||||||||||||||||||||||||
const triggerSelect = () => { | ||||||||||||||||||||||||||||||
if (isSelectable(option) && !isOptionDisabled(disabled)) { | ||||||||||||||||||||||||||||||
onSelect(fullPath, isMergedLeaf); | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
// >>>>> Title | ||||||||||||||||||||||||||||||
let title: string | undefined; | ||||||||||||||||||||||||||||||
if (typeof option.title === 'string') { | ||||||||||||||||||||||||||||||
title = option.title; | ||||||||||||||||||||||||||||||
} else if (typeof label === 'string') { | ||||||||||||||||||||||||||||||
title = label; | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
// >>>>> Render | ||||||||||||||||||||||||||||||
return ( | ||||||||||||||||||||||||||||||
<li | ||||||||||||||||||||||||||||||
key={fullPathKey} | ||||||||||||||||||||||||||||||
className={classNames(menuItemPrefixCls, { | ||||||||||||||||||||||||||||||
[`${menuItemPrefixCls}-expand`]: !isMergedLeaf, | ||||||||||||||||||||||||||||||
[`${menuItemPrefixCls}-active`]: | ||||||||||||||||||||||||||||||
activeValue === value || activeValue === fullPathKey, | ||||||||||||||||||||||||||||||
[`${menuItemPrefixCls}-disabled`]: isOptionDisabled(disabled), | ||||||||||||||||||||||||||||||
[`${menuItemPrefixCls}-loading`]: isLoading, | ||||||||||||||||||||||||||||||
})} | ||||||||||||||||||||||||||||||
style={dropdownMenuColumnStyle} | ||||||||||||||||||||||||||||||
role="menuitemcheckbox" | ||||||||||||||||||||||||||||||
title={title} | ||||||||||||||||||||||||||||||
aria-checked={checked} | ||||||||||||||||||||||||||||||
data-path-key={fullPathKey} | ||||||||||||||||||||||||||||||
onClick={() => { | ||||||||||||||||||||||||||||||
triggerOpenPath(); | ||||||||||||||||||||||||||||||
if (disableCheckbox) { | ||||||||||||||||||||||||||||||
return; | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
if (!multiple || isMergedLeaf) { | ||||||||||||||||||||||||||||||
triggerSelect(); | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
}} | ||||||||||||||||||||||||||||||
onDoubleClick={() => { | ||||||||||||||||||||||||||||||
if (changeOnSelect) { | ||||||||||||||||||||||||||||||
onToggleOpen(false); | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
}} | ||||||||||||||||||||||||||||||
onMouseEnter={() => { | ||||||||||||||||||||||||||||||
if (hoverOpen) { | ||||||||||||||||||||||||||||||
triggerOpenPath(); | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
}} | ||||||||||||||||||||||||||||||
onMouseDown={e => { | ||||||||||||||||||||||||||||||
// Prevent selector from blurring | ||||||||||||||||||||||||||||||
e.preventDefault(); | ||||||||||||||||||||||||||||||
}} | ||||||||||||||||||||||||||||||
> | ||||||||||||||||||||||||||||||
{multiple && ( | ||||||||||||||||||||||||||||||
<Checkbox | ||||||||||||||||||||||||||||||
prefixCls={`${prefixCls}-checkbox`} | ||||||||||||||||||||||||||||||
checked={checked} | ||||||||||||||||||||||||||||||
halfChecked={halfChecked} | ||||||||||||||||||||||||||||||
disabled={isOptionDisabled(disabled) || disableCheckbox} | ||||||||||||||||||||||||||||||
disableCheckbox={disableCheckbox} | ||||||||||||||||||||||||||||||
onClick={(e: React.MouseEvent<HTMLSpanElement>) => { | ||||||||||||||||||||||||||||||
if (disableCheckbox) { | ||||||||||||||||||||||||||||||
return; | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
e.stopPropagation(); | ||||||||||||||||||||||||||||||
triggerSelect(); | ||||||||||||||||||||||||||||||
}} | ||||||||||||||||||||||||||||||
/> | ||||||||||||||||||||||||||||||
)} | ||||||||||||||||||||||||||||||
<div className={`${menuItemPrefixCls}-content`}> | ||||||||||||||||||||||||||||||
{optionRender ? optionRender(option) : label} | ||||||||||||||||||||||||||||||
</div> | ||||||||||||||||||||||||||||||
{!isLoading && expandIcon && !isMergedLeaf && ( | ||||||||||||||||||||||||||||||
<div className={`${menuItemPrefixCls}-expand-icon`}>{expandIcon}</div> | ||||||||||||||||||||||||||||||
)} | ||||||||||||||||||||||||||||||
{isLoading && loadingIcon && ( | ||||||||||||||||||||||||||||||
<div className={`${menuItemPrefixCls}-loading-icon`}>{loadingIcon}</div> | ||||||||||||||||||||||||||||||
)} | ||||||||||||||||||||||||||||||
</li> | ||||||||||||||||||||||||||||||
); | ||||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
// >>>>> Render | ||||||||||||||||||||||||||||||
return ( | ||||||||||||||||||||||||||||||
<li | ||||||||||||||||||||||||||||||
key={fullPathKey} | ||||||||||||||||||||||||||||||
className={classNames(menuItemPrefixCls, { | ||||||||||||||||||||||||||||||
[`${menuItemPrefixCls}-expand`]: !isMergedLeaf, | ||||||||||||||||||||||||||||||
[`${menuItemPrefixCls}-active`]: | ||||||||||||||||||||||||||||||
activeValue === value || activeValue === fullPathKey, | ||||||||||||||||||||||||||||||
[`${menuItemPrefixCls}-disabled`]: isOptionDisabled(disabled), | ||||||||||||||||||||||||||||||
[`${menuItemPrefixCls}-loading`]: isLoading, | ||||||||||||||||||||||||||||||
})} | ||||||||||||||||||||||||||||||
style={dropdownMenuColumnStyle} | ||||||||||||||||||||||||||||||
role="menuitemcheckbox" | ||||||||||||||||||||||||||||||
title={title} | ||||||||||||||||||||||||||||||
aria-checked={checked} | ||||||||||||||||||||||||||||||
data-path-key={fullPathKey} | ||||||||||||||||||||||||||||||
onClick={() => { | ||||||||||||||||||||||||||||||
triggerOpenPath(); | ||||||||||||||||||||||||||||||
if (disableCheckbox) { | ||||||||||||||||||||||||||||||
return; | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
if (!multiple || isMergedLeaf) { | ||||||||||||||||||||||||||||||
triggerSelect(); | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
}} | ||||||||||||||||||||||||||||||
onDoubleClick={() => { | ||||||||||||||||||||||||||||||
if (changeOnSelect) { | ||||||||||||||||||||||||||||||
onToggleOpen(false); | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
}} | ||||||||||||||||||||||||||||||
onMouseEnter={() => { | ||||||||||||||||||||||||||||||
if (hoverOpen) { | ||||||||||||||||||||||||||||||
triggerOpenPath(); | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
}} | ||||||||||||||||||||||||||||||
onMouseDown={e => { | ||||||||||||||||||||||||||||||
// Prevent selector from blurring | ||||||||||||||||||||||||||||||
e.preventDefault(); | ||||||||||||||||||||||||||||||
}} | ||||||||||||||||||||||||||||||
> | ||||||||||||||||||||||||||||||
{multiple && ( | ||||||||||||||||||||||||||||||
<Checkbox | ||||||||||||||||||||||||||||||
prefixCls={`${prefixCls}-checkbox`} | ||||||||||||||||||||||||||||||
checked={checked} | ||||||||||||||||||||||||||||||
halfChecked={halfChecked} | ||||||||||||||||||||||||||||||
disabled={isOptionDisabled(disabled) || disableCheckbox} | ||||||||||||||||||||||||||||||
disableCheckbox={disableCheckbox} | ||||||||||||||||||||||||||||||
onClick={(e: React.MouseEvent<HTMLSpanElement>) => { | ||||||||||||||||||||||||||||||
if (disableCheckbox) { | ||||||||||||||||||||||||||||||
return; | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
e.stopPropagation(); | ||||||||||||||||||||||||||||||
triggerSelect(); | ||||||||||||||||||||||||||||||
}} | ||||||||||||||||||||||||||||||
/> | ||||||||||||||||||||||||||||||
)} | ||||||||||||||||||||||||||||||
<div className={`${menuItemPrefixCls}-content`}> | ||||||||||||||||||||||||||||||
{optionRender ? optionRender(option) : label} | ||||||||||||||||||||||||||||||
</div> | ||||||||||||||||||||||||||||||
{!isLoading && expandIcon && !isMergedLeaf && ( | ||||||||||||||||||||||||||||||
<div className={`${menuItemPrefixCls}-expand-icon`}>{expandIcon}</div> | ||||||||||||||||||||||||||||||
)} | ||||||||||||||||||||||||||||||
{isLoading && loadingIcon && ( | ||||||||||||||||||||||||||||||
<div className={`${menuItemPrefixCls}-loading-icon`}>{loadingIcon}</div> | ||||||||||||||||||||||||||||||
)} | ||||||||||||||||||||||||||||||
</li> | ||||||||||||||||||||||||||||||
); | ||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||
return ( | ||||||||||||||||||||||||||||||
<ul className={menuPrefixCls} role="menu"> | ||||||||||||||||||||||||||||||
{virtual ? ( | ||||||||||||||||||||||||||||||
<List | ||||||||||||||||||||||||||||||
ref={ref} | ||||||||||||||||||||||||||||||
itemKey="fullPathKey" | ||||||||||||||||||||||||||||||
height={listHeight} | ||||||||||||||||||||||||||||||
itemHeight={listItemHeight} | ||||||||||||||||||||||||||||||
virtual={virtual} | ||||||||||||||||||||||||||||||
data={optionInfoList} | ||||||||||||||||||||||||||||||
> | ||||||||||||||||||||||||||||||
{renderLi} | ||||||||||||||||||||||||||||||
</List> | ||||||||||||||||||||||||||||||
) : ( | ||||||||||||||||||||||||||||||
optionInfoList.map(renderLi) | ||||||||||||||||||||||||||||||
)} | ||||||||||||||||||||||||||||||
</ul> | ||||||||||||||||||||||||||||||
); | ||||||||||||||||||||||||||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🛠️ Refactor suggestion
建议为虚拟列表配置提供默认值
为了确保组件在未提供这些配置时也能正常工作,建议:
virtual
提供默认值false
listHeight
和listItemHeight
提供合理的默认值