Files
ragflow/web/src/components/ui/async-tree-select.tsx
balibabu 1ed8a118cf Fix: The folder tree menu for moving folders cannot be scrolled. (#15037)
### What problem does this PR solve?

Fix: The folder tree menu for moving folders cannot be scrolled.

### Type of change

- [x] Bug Fix (non-breaking change which fixes an issue)
2026-05-20 14:59:36 +08:00

248 lines
6.7 KiB
TypeScript

import {
Popover,
PopoverContent,
PopoverTrigger,
} from '@/components/ui/popover';
import { cn } from '@/lib/utils';
import { isEmpty } from 'lodash';
import { ChevronDown, ChevronRight, Loader2 } from 'lucide-react';
import { ReactNode, useCallback, useEffect, useMemo, useState } from 'react';
import { useTranslation } from 'react-i18next';
import { Button } from './button';
import { SearchInput } from './input';
type TreeId = number | string;
export type TreeNodeType = {
id: TreeId;
title: ReactNode;
parentId: TreeId;
isLeaf?: boolean;
};
type AsyncTreeSelectProps = {
treeData: TreeNodeType[];
value?: TreeId;
onChange?(value: TreeId): void;
loadData?(node: TreeNodeType): Promise<any>;
};
function getNodeText(node: ReactNode): string {
if (typeof node === 'string') return node;
if (typeof node === 'number') return String(node);
if (Array.isArray(node)) return node.map(getNodeText).join('');
return '';
}
export function AsyncTreeSelect({
treeData,
value,
loadData,
onChange,
}: AsyncTreeSelectProps) {
const [open, setOpen] = useState(false);
const [searchText, setSearchText] = useState('');
const { t } = useTranslation();
const [expandedKeys, setExpandedKeys] = useState<TreeId[]>([]);
const [loadingId, setLoadingId] = useState<TreeId>('');
const selectedTitle = useMemo(() => {
return treeData.find((x) => x.id === value)?.title;
}, [treeData, value]);
const visibleNodeIds = useMemo(() => {
const trimmed = searchText.trim().toLowerCase();
if (!trimmed) {
return new Set(treeData.map((n) => n.id));
}
const matchedIds = new Set<TreeId>();
treeData.forEach((node) => {
if (getNodeText(node.title).toLowerCase().includes(trimmed)) {
matchedIds.add(node.id);
}
});
const visibleIds = new Set<TreeId>(matchedIds);
const addAncestors = (nodeId: TreeId) => {
const node = treeData.find((n) => n.id === nodeId);
if (node && node.parentId) {
visibleIds.add(node.parentId);
addAncestors(node.parentId);
}
};
matchedIds.forEach((id) => addAncestors(id));
const queue = Array.from(matchedIds);
let i = 0;
while (i < queue.length) {
const currentId = queue[i++];
treeData.forEach((node) => {
if (node.parentId === currentId) {
visibleIds.add(node.id);
queue.push(node.id);
}
});
}
return visibleIds;
}, [treeData, searchText]);
const isExpanded = useCallback(
(id: TreeId | undefined) => {
if (id === undefined) {
return true;
}
if (searchText.trim()) {
const hasVisibleChild = treeData.some(
(n) => n.parentId === id && visibleNodeIds.has(n.id),
);
if (hasVisibleChild) return true;
}
return expandedKeys.indexOf(id) !== -1;
},
[expandedKeys, searchText, treeData, visibleNodeIds],
);
const handleNodeClick = useCallback(
(id: TreeId) => (e: React.MouseEvent<HTMLLIElement>) => {
e.stopPropagation();
onChange?.(id);
setOpen(false);
setSearchText('');
},
[onChange],
);
const handleArrowClick = useCallback(
(node: TreeNodeType) => async (e: React.MouseEvent<HTMLButtonElement>) => {
e.stopPropagation();
const { id } = node;
if (isExpanded(id)) {
setExpandedKeys((keys) => {
return keys.filter((x) => x !== id);
});
} else {
const hasChild = treeData.some((x) => x.parentId === id);
setExpandedKeys((keys) => {
return [...keys, id];
});
if (!hasChild) {
setLoadingId(id);
await loadData?.(node);
setLoadingId('');
}
}
},
[isExpanded, loadData, treeData],
);
const handleOpenChange = useCallback((open: boolean) => {
setOpen(open);
if (!open) {
setSearchText('');
}
}, []);
const renderNodes = useCallback(
(parentId?: TreeId) => {
const currentLevelList = parentId
? treeData.filter(
(x) => x.parentId === parentId && visibleNodeIds.has(x.id),
)
: treeData.filter(
(x) =>
treeData.every((y) => x.parentId !== y.id) &&
visibleNodeIds.has(x.id),
);
if (currentLevelList.length === 0) return null;
return (
<ul className={cn('pl-2', { hidden: !isExpanded(parentId) })}>
{currentLevelList.map((x) => (
<li
key={x.id}
onClick={handleNodeClick(x.id)}
className="cursor-pointer"
>
<div
className={cn(
'flex justify-between items-center hover:bg-accent py-0.5 px-1 rounded-md',
{ 'bg-cyan-50': value === x.id },
)}
>
<span className="flex-1">{x.title}</span>
{x.isLeaf || (
<Button
variant={'ghost'}
className="size-7"
onClick={handleArrowClick(x)}
disabled={loadingId === x.id}
>
{loadingId === x.id ? (
<Loader2 className="animate-spin" />
) : isExpanded(x.id) ? (
<ChevronDown />
) : (
<ChevronRight />
)}
</Button>
)}
</div>
{renderNodes(x.id)}
</li>
))}
</ul>
);
},
[
handleArrowClick,
handleNodeClick,
isExpanded,
loadingId,
treeData,
value,
visibleNodeIds,
],
);
useEffect(() => {
if (isEmpty(treeData)) {
loadData?.({ id: '', parentId: '', title: '' });
}
}, [treeData, loadData]);
return (
<Popover open={open} onOpenChange={handleOpenChange}>
<PopoverTrigger asChild>
<div className="flex justify-between border px-2 py-1.5 rounded-md gap-2 items-center w-full">
{selectedTitle || (
<span className="text-slate-400">{t('common.pleaseSelect')}</span>
)}
<ChevronDown className="size-5" />
</div>
</PopoverTrigger>
<PopoverContent className="p-1 min-w-[var(--radix-popover-trigger-width)]">
<SearchInput
value={searchText}
onChange={(e) => setSearchText(e.target.value)}
></SearchInput>
<ul
className="max-h-[40vh] overflow-auto"
onWheel={(e) => e.stopPropagation()}
>
{renderNodes() || (
<div className="px-2 py-4 text-center text-sm text-text-disabled">
{t('common.noDataFound')}
</div>
)}
</ul>
</PopoverContent>
</Popover>
);
}