Feat: Combine Select and LlmSettingFieldItems into LLMSelect. #3221 (#5548)

### What problem does this PR solve?

Feat: Combine Select and LlmSettingFieldItems into LLMSelect. #3221

### Type of change


- [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
balibabu 2025-03-03 15:44:37 +08:00 committed by GitHub
parent 03d1265cfd
commit 131f272e69
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 39 additions and 17 deletions

View File

@ -1,8 +1,10 @@
import { LlmModelType } from '@/constants/knowledge';
import { useComposeLlmOptionsByModelTypes } from '@/hooks/llm-hooks';
import * as SelectPrimitive from '@radix-ui/react-select';
import { Popover as AntPopover, Select as AntSelect } from 'antd';
import { useState } from 'react';
import { forwardRef, useState } from 'react';
import LlmSettingItems from '../llm-setting-items';
import { LlmSettingFieldItems } from '../llm-setting-items/next';
import { Popover, PopoverContent, PopoverTrigger } from '../ui/popover';
import { Select, SelectTrigger, SelectValue } from '../ui/select';
@ -50,11 +52,18 @@ const LLMSelect = ({ id, value, onChange, disabled }: IProps) => {
export default LLMSelect;
export function NextLLMSelect({ value, onChange, disabled }: IProps) {
export const NextLLMSelect = forwardRef<
React.ElementRef<typeof SelectPrimitive.Trigger>,
IProps
>(({ value, disabled }, ref) => {
const [isPopoverOpen, setIsPopoverOpen] = useState(false);
const modelOptions = useComposeLlmOptionsByModelTypes([
LlmModelType.Chat,
LlmModelType.Image2text,
]);
return (
<Select value={value} onValueChange={onChange} disabled={disabled}>
<Select disabled={disabled} value={value}>
<Popover open={isPopoverOpen} onOpenChange={setIsPopoverOpen}>
<PopoverTrigger asChild>
<SelectTrigger
@ -62,19 +71,23 @@ export function NextLLMSelect({ value, onChange, disabled }: IProps) {
e.preventDefault();
setIsPopoverOpen(true);
}}
ref={ref}
>
<SelectValue placeholder="xxx" />
<SelectValue>
{
modelOptions
.flatMap((x) => x.options)
.find((x) => x.value === value)?.label
}
</SelectValue>
</SelectTrigger>
</PopoverTrigger>
<PopoverContent side={'left'}>
<LlmSettingItems
formItemLayout={{
labelCol: { span: 10 },
wrapperCol: { span: 14 },
}}
></LlmSettingItems>
<LlmSettingFieldItems></LlmSettingFieldItems>
</PopoverContent>
</Popover>
</Select>
);
}
});
NextLLMSelect.displayName = 'LLMSelect';

View File

@ -1,5 +1,10 @@
import { Input } from '@/components/ui/input';
import { Sheet, SheetContent, SheetHeader } from '@/components/ui/sheet';
import {
Sheet,
SheetContent,
SheetHeader,
SheetTitle,
} from '@/components/ui/sheet';
import { useTranslate } from '@/hooks/common-hooks';
import { IModalProps } from '@/interfaces/common';
import { RAGFlowNodeType } from '@/interfaces/database/flow';
@ -88,6 +93,7 @@ const FormSheet = ({
return (
<Sheet open={visible} modal={false}>
<SheetTitle className="hidden"></SheetTitle>
<SheetContent className="bg-white top-20" closeIcon={false}>
<SheetHeader>
<section className="flex-col border-b pb-2">

View File

@ -49,14 +49,14 @@ export default function Agent() {
hideFileUploadModal,
} = useHandleExportOrImportJsonFile();
useFetchDataOnMount();
const { flowDetail } = useFetchDataOnMount();
return (
<section>
<PageHeader back={navigateToAgentList} title="Agent 01">
<PageHeader back={navigateToAgentList} title={flowDetail.title}>
<div className="flex items-center gap-2">
<DropdownMenu>
<DropdownMenuTrigger>
<DropdownMenuTrigger asChild>
<Button variant={'icon'} size={'icon'}>
<EllipsisVertical />
</Button>

View File

@ -1,4 +1,3 @@
import React from 'react';
import { Operator, operatorIconMap } from './constant';
interface IProps {
@ -8,8 +7,12 @@ interface IProps {
color?: string;
}
const Empty = () => {
return <div className="hidden"></div>;
};
const OperatorIcon = ({ name, fontSize, width, color }: IProps) => {
const Icon = operatorIconMap[name] || React.Fragment;
const Icon = operatorIconMap[name] || Empty;
return (
<Icon
className={'text-2xl max-h-6 max-w-6 text-[rgb(59, 118, 244)]'}