mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-03-24 07:57:37 +08:00
### What problem does this PR solve? Feat: Delete the operator node and hide the corresponding sheet #3221 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
104 lines
3.0 KiB
TypeScript
104 lines
3.0 KiB
TypeScript
import { NodeProps, NodeResizeControl } from '@xyflow/react';
|
|
|
|
import {
|
|
Form,
|
|
FormControl,
|
|
FormField,
|
|
FormItem,
|
|
FormMessage,
|
|
} from '@/components/ui/form';
|
|
import { Input } from '@/components/ui/input';
|
|
import { Textarea } from '@/components/ui/textarea';
|
|
import { INoteNode } from '@/interfaces/database/flow';
|
|
import { zodResolver } from '@hookform/resolvers/zod';
|
|
import { NotebookPen } from 'lucide-react';
|
|
import { memo } from 'react';
|
|
import { useForm } from 'react-hook-form';
|
|
import { useTranslation } from 'react-i18next';
|
|
import { z } from 'zod';
|
|
import { NodeWrapper } from '../node-wrapper';
|
|
import { ResizeIcon, controlStyle } from '../resize-icon';
|
|
import { useWatchFormChange, useWatchNameFormChange } from './use-watch-change';
|
|
|
|
const FormSchema = z.object({
|
|
text: z.string(),
|
|
});
|
|
|
|
const NameFormSchema = z.object({
|
|
name: z.string(),
|
|
});
|
|
|
|
function NoteNode({ data, id, selected }: NodeProps<INoteNode>) {
|
|
const { t } = useTranslation();
|
|
|
|
const form = useForm<z.infer<typeof FormSchema>>({
|
|
resolver: zodResolver(FormSchema),
|
|
defaultValues: data.form,
|
|
});
|
|
|
|
const nameForm = useForm<z.infer<typeof NameFormSchema>>({
|
|
resolver: zodResolver(NameFormSchema),
|
|
defaultValues: { name: data.name },
|
|
});
|
|
|
|
useWatchFormChange(id, form);
|
|
|
|
useWatchNameFormChange(id, nameForm);
|
|
|
|
return (
|
|
<NodeWrapper
|
|
className="p-0 w-full h-full flex flex-col rounded-md "
|
|
selected={selected}
|
|
>
|
|
<NodeResizeControl minWidth={190} minHeight={128} style={controlStyle}>
|
|
<ResizeIcon />
|
|
</NodeResizeControl>
|
|
<section className="px-1 py-2 flex gap-2 bg-background-highlight items-center note-drag-handle rounded-s-md">
|
|
<NotebookPen className="size-4" />
|
|
<Form {...nameForm}>
|
|
<form className="flex-1">
|
|
<FormField
|
|
control={nameForm.control}
|
|
name="name"
|
|
render={({ field }) => (
|
|
<FormItem className="h-full">
|
|
<FormControl>
|
|
<Input
|
|
placeholder={t('flow.notePlaceholder')}
|
|
{...field}
|
|
type="text"
|
|
/>
|
|
</FormControl>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
</form>
|
|
</Form>
|
|
</section>
|
|
<Form {...form}>
|
|
<form className="flex-1 p-1">
|
|
<FormField
|
|
control={form.control}
|
|
name="text"
|
|
render={({ field }) => (
|
|
<FormItem className="h-full">
|
|
<FormControl>
|
|
<Textarea
|
|
placeholder={t('flow.notePlaceholder')}
|
|
className="resize-none rounded-none p-1 h-full overflow-auto bg-background-header-bar focus-visible:ring-0 border-none"
|
|
{...field}
|
|
/>
|
|
</FormControl>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
</form>
|
|
</Form>
|
|
</NodeWrapper>
|
|
);
|
|
}
|
|
|
|
export default memo(NoteNode);
|