mirror of
https://git.mirrors.martin98.com/https://github.com/infiniflow/ragflow.git
synced 2025-06-30 08:25:13 +08:00

### What problem does this PR solve? Feat: Translate the begin operator #3221 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
171 lines
4.7 KiB
TypeScript
171 lines
4.7 KiB
TypeScript
import { Collapse } from '@/components/collapse';
|
|
import { Button } from '@/components/ui/button';
|
|
import {
|
|
Form,
|
|
FormControl,
|
|
FormField,
|
|
FormItem,
|
|
FormLabel,
|
|
FormMessage,
|
|
} from '@/components/ui/form';
|
|
import { RAGFlowSelect } from '@/components/ui/select';
|
|
import { Switch } from '@/components/ui/switch';
|
|
import { Textarea } from '@/components/ui/textarea';
|
|
import { FormTooltip } from '@/components/ui/tooltip';
|
|
import { buildSelectOptions } from '@/utils/common-util';
|
|
import { Plus } from 'lucide-react';
|
|
import { useCallback } from 'react';
|
|
import { useWatch } from 'react-hook-form';
|
|
import { useTranslation } from 'react-i18next';
|
|
import { AgentDialogueMode } from '../../constant';
|
|
import { INextOperatorForm } from '../../interface';
|
|
import { ParameterDialog } from './parameter-dialog';
|
|
import { QueryTable } from './query-table';
|
|
import { useEditQueryRecord } from './use-edit-query';
|
|
|
|
const ModeOptions = buildSelectOptions([
|
|
AgentDialogueMode.Conversational,
|
|
AgentDialogueMode.Task,
|
|
]);
|
|
|
|
const BeginForm = ({ form, node }: INextOperatorForm) => {
|
|
const { t } = useTranslation();
|
|
|
|
const query = useWatch({ control: form.control, name: 'query' });
|
|
const mode = useWatch({ control: form.control, name: 'mode' });
|
|
|
|
const enablePrologue = useWatch({
|
|
control: form.control,
|
|
name: 'enablePrologue',
|
|
});
|
|
|
|
const {
|
|
ok,
|
|
currentRecord,
|
|
visible,
|
|
hideModal,
|
|
showModal,
|
|
otherThanCurrentQuery,
|
|
handleDeleteRecord,
|
|
} = useEditQueryRecord({
|
|
form,
|
|
node,
|
|
});
|
|
|
|
const handleParameterDialogSubmit = useCallback(
|
|
(values: any) => {
|
|
ok(values);
|
|
},
|
|
[ok],
|
|
);
|
|
|
|
return (
|
|
<section className="px-5 space-y-5">
|
|
<Form {...form}>
|
|
<FormField
|
|
control={form.control}
|
|
name={'mode'}
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel tooltip={t('flow.modeTip')}>Mode</FormLabel>
|
|
<FormControl>
|
|
<RAGFlowSelect
|
|
placeholder={t('common.pleaseSelect')}
|
|
options={ModeOptions}
|
|
{...field}
|
|
></RAGFlowSelect>
|
|
</FormControl>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
{mode === AgentDialogueMode.Conversational && (
|
|
<FormField
|
|
control={form.control}
|
|
name={'enablePrologue'}
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel tooltip={t('flow.openingSwitchTip')}>
|
|
{t('flow.openingSwitch')}
|
|
</FormLabel>
|
|
<FormControl>
|
|
<Switch
|
|
checked={field.value}
|
|
onCheckedChange={field.onChange}
|
|
/>
|
|
</FormControl>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
)}
|
|
{enablePrologue && (
|
|
<FormField
|
|
control={form.control}
|
|
name={'prologue'}
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel tooltip={t('chat.setAnOpenerTip')}>
|
|
{t('flow.openingCopy')}
|
|
</FormLabel>
|
|
<FormControl>
|
|
<Textarea
|
|
rows={5}
|
|
{...field}
|
|
placeholder={t('common.pleaseInput')}
|
|
></Textarea>
|
|
</FormControl>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
)}
|
|
{/* Create a hidden field to make Form instance record this */}
|
|
<FormField
|
|
control={form.control}
|
|
name={'query'}
|
|
render={() => <div></div>}
|
|
/>
|
|
<Collapse
|
|
title={
|
|
<div>
|
|
{t('flow.input')}
|
|
<FormTooltip tooltip={t('flow.beginInputTip')}></FormTooltip>
|
|
</div>
|
|
}
|
|
rightContent={
|
|
<Button
|
|
variant={'ghost'}
|
|
onClick={(e) => {
|
|
e.preventDefault();
|
|
showModal();
|
|
}}
|
|
>
|
|
<Plus />
|
|
</Button>
|
|
}
|
|
>
|
|
<QueryTable
|
|
data={query}
|
|
showModal={showModal}
|
|
deleteRecord={handleDeleteRecord}
|
|
></QueryTable>
|
|
</Collapse>
|
|
|
|
{visible && (
|
|
<ParameterDialog
|
|
visible={visible}
|
|
hideModal={hideModal}
|
|
initialValue={currentRecord}
|
|
onOk={ok}
|
|
otherThanCurrentQuery={otherThanCurrentQuery}
|
|
submit={handleParameterDialogSubmit}
|
|
></ParameterDialog>
|
|
)}
|
|
</Form>
|
|
</section>
|
|
);
|
|
};
|
|
|
|
export default BeginForm;
|