mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-08 20:42:30 +08:00
### What problem does this PR solve? Modify the style of your personal center Add resizable component ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue)
246 lines
7.2 KiB
TypeScript
246 lines
7.2 KiB
TypeScript
'use client';
|
|
|
|
import { CheckIcon, ChevronDownIcon, XIcon } from 'lucide-react';
|
|
import {
|
|
Fragment,
|
|
MouseEventHandler,
|
|
ReactNode,
|
|
forwardRef,
|
|
useCallback,
|
|
useEffect,
|
|
useId,
|
|
useMemo,
|
|
useState,
|
|
} from 'react';
|
|
|
|
import { Button } from '@/components/ui/button';
|
|
import {
|
|
Command,
|
|
CommandEmpty,
|
|
CommandGroup,
|
|
CommandInput,
|
|
CommandItem,
|
|
CommandList,
|
|
} from '@/components/ui/command';
|
|
import {
|
|
Popover,
|
|
PopoverContent,
|
|
PopoverTrigger,
|
|
} from '@/components/ui/popover';
|
|
import { cn } from '@/lib/utils';
|
|
import { t } from 'i18next';
|
|
import { RAGFlowSelectOptionType } from '../ui/select';
|
|
import { Separator } from '../ui/separator';
|
|
|
|
export type SelectWithSearchFlagOptionType = {
|
|
label: ReactNode;
|
|
value?: string;
|
|
disabled?: boolean;
|
|
options?: RAGFlowSelectOptionType[];
|
|
};
|
|
|
|
export type SelectWithSearchFlagProps = {
|
|
options?: SelectWithSearchFlagOptionType[];
|
|
value?: string;
|
|
onChange?(value: string): void;
|
|
triggerClassName?: string;
|
|
allowClear?: boolean;
|
|
disabled?: boolean;
|
|
placeholder?: string;
|
|
emptyData?: string;
|
|
};
|
|
|
|
function findLabelWithoutOptions(
|
|
options: SelectWithSearchFlagOptionType[],
|
|
value: string,
|
|
) {
|
|
return options.find((opt) => opt.value === value)?.label || '';
|
|
}
|
|
|
|
function findLabelWithOptions(
|
|
options: SelectWithSearchFlagOptionType[],
|
|
value: string,
|
|
) {
|
|
return options
|
|
.map((group) => group?.options?.find((item) => item.value === value))
|
|
.filter(Boolean)[0]?.label;
|
|
}
|
|
|
|
export const SelectWithSearch = forwardRef<
|
|
React.ElementRef<typeof Button>,
|
|
SelectWithSearchFlagProps
|
|
>(
|
|
(
|
|
{
|
|
value: val = '',
|
|
onChange,
|
|
options = [],
|
|
triggerClassName,
|
|
allowClear = false,
|
|
disabled = false,
|
|
placeholder = t('common.selectPlaceholder'),
|
|
emptyData = t('common.noDataFound'),
|
|
},
|
|
ref,
|
|
) => {
|
|
const id = useId();
|
|
const [open, setOpen] = useState<boolean>(false);
|
|
const [value, setValue] = useState<string>('');
|
|
|
|
const selectLabel = useMemo(() => {
|
|
if (options.every((x) => x.options === undefined)) {
|
|
return findLabelWithoutOptions(options, value);
|
|
} else if (options.every((x) => Array.isArray(x.options))) {
|
|
return findLabelWithOptions(options, value);
|
|
} else {
|
|
// Some have options, some don't
|
|
const optionsWithOptions = options.filter((x) =>
|
|
Array.isArray(x.options),
|
|
);
|
|
const optionsWithoutOptions = options.filter(
|
|
(x) => x.options === undefined,
|
|
);
|
|
|
|
const label = findLabelWithOptions(optionsWithOptions, value);
|
|
if (label) {
|
|
return label;
|
|
}
|
|
return findLabelWithoutOptions(optionsWithoutOptions, value);
|
|
}
|
|
}, [options, value]);
|
|
|
|
const handleSelect = useCallback(
|
|
(val: string) => {
|
|
setValue(val);
|
|
setOpen(false);
|
|
onChange?.(val);
|
|
},
|
|
[onChange],
|
|
);
|
|
|
|
const handleClear: MouseEventHandler<SVGElement> = useCallback(
|
|
(e) => {
|
|
e.stopPropagation();
|
|
setValue('');
|
|
onChange?.('');
|
|
},
|
|
[onChange],
|
|
);
|
|
|
|
useEffect(() => {
|
|
setValue(val);
|
|
}, [val]);
|
|
|
|
return (
|
|
<Popover open={open} onOpenChange={setOpen}>
|
|
<PopoverTrigger asChild>
|
|
<Button
|
|
id={id}
|
|
variant="outline"
|
|
role="combobox"
|
|
aria-expanded={open}
|
|
ref={ref}
|
|
disabled={disabled}
|
|
className={cn(
|
|
'!bg-bg-input hover:bg-background border-border-button w-full justify-between px-3 font-normal outline-offset-0 outline-none focus-visible:outline-[3px] [&_svg]:pointer-events-auto group',
|
|
triggerClassName,
|
|
)}
|
|
>
|
|
{value ? (
|
|
<span className="flex min-w-0 options-center gap-2">
|
|
<span className="leading-none truncate">{selectLabel}</span>
|
|
</span>
|
|
) : (
|
|
<span className="text-text-disabled">{placeholder}</span>
|
|
)}
|
|
<div className="flex items-center justify-between">
|
|
{value && allowClear && (
|
|
<>
|
|
<XIcon
|
|
className="h-4 mx-2 cursor-pointer text-text-disabled hidden group-hover:block"
|
|
onClick={handleClear}
|
|
/>
|
|
<Separator
|
|
orientation="vertical"
|
|
className=" min-h-6 h-full hidden group-hover:flex"
|
|
/>
|
|
</>
|
|
)}
|
|
<ChevronDownIcon
|
|
size={16}
|
|
className="text-text-disabled shrink-0 ml-2"
|
|
aria-hidden="true"
|
|
/>
|
|
</div>
|
|
</Button>
|
|
</PopoverTrigger>
|
|
<PopoverContent
|
|
className="border-border-button w-full min-w-[var(--radix-popper-anchor-width)] p-0"
|
|
align="start"
|
|
>
|
|
<Command className="p-5">
|
|
{options && options.length > 0 && (
|
|
<CommandInput
|
|
placeholder={t('common.search') + '...'}
|
|
className=" placeholder:text-text-disabled"
|
|
/>
|
|
)}
|
|
<CommandList className="mt-2 outline-none">
|
|
<CommandEmpty>{emptyData}</CommandEmpty>
|
|
{options.map((group, idx) => {
|
|
if (group.options) {
|
|
return (
|
|
<Fragment key={idx}>
|
|
<CommandGroup heading={group.label}>
|
|
{group.options.map((option) => (
|
|
<CommandItem
|
|
key={option.value}
|
|
value={option.value}
|
|
disabled={option.disabled}
|
|
onSelect={handleSelect}
|
|
className={
|
|
value === option.value ? 'bg-bg-card' : ''
|
|
}
|
|
>
|
|
<span className="leading-none">{option.label}</span>
|
|
|
|
{value === option.value && (
|
|
<CheckIcon size={16} className="ml-auto" />
|
|
)}
|
|
</CommandItem>
|
|
))}
|
|
</CommandGroup>
|
|
</Fragment>
|
|
);
|
|
} else {
|
|
return (
|
|
<CommandItem
|
|
key={group.value}
|
|
value={group.value}
|
|
disabled={group.disabled}
|
|
onSelect={handleSelect}
|
|
className={
|
|
value === group.value
|
|
? 'bg-bg-card min-h-10'
|
|
: 'min-h-10'
|
|
}
|
|
>
|
|
<span className="leading-none">{group.label}</span>
|
|
|
|
{value === group.value && (
|
|
<CheckIcon size={16} className="ml-auto" />
|
|
)}
|
|
</CommandItem>
|
|
);
|
|
}
|
|
})}
|
|
</CommandList>
|
|
</Command>
|
|
</PopoverContent>
|
|
</Popover>
|
|
);
|
|
},
|
|
);
|
|
|
|
SelectWithSearch.displayName = 'SelectWithSearch';
|