mirror of
https://github.com/langgenius/dify.git
synced 2026-09-05 08:48:10 +08:00
206 lines
6.6 KiB
TypeScript
206 lines
6.6 KiB
TypeScript
'use client'
|
|
import type { AgentAppUpdatePayload } from '@dify/contracts/api/console/agent/types.gen'
|
|
import type { ChangeEventHandler, Ref } from 'react'
|
|
import type { AgentFormSource, AgentFormValues, AgentIconSelection } from './agent-form'
|
|
import { Button } from '@langgenius/dify-ui/button'
|
|
import {
|
|
Dialog,
|
|
DialogClose,
|
|
DialogContent,
|
|
DialogDescription,
|
|
DialogTitle,
|
|
} from '@langgenius/dify-ui/dialog'
|
|
import { Form } from '@langgenius/dify-ui/form'
|
|
import { IconButton } from '@langgenius/dify-ui/icon-button'
|
|
import { useMutation } from '@tanstack/react-query'
|
|
import { useRef, useState } from 'react'
|
|
import { useTranslation } from 'react-i18next'
|
|
import AppIconPicker from '@/app/components/base/app-icon-picker'
|
|
import { consoleQuery } from '@/service/client'
|
|
import { createAgentIconSelection, getAgentIconKey } from './agent-form'
|
|
import { AgentFormFields } from './agent-form-fields'
|
|
|
|
type EditAgentDialogProps = {
|
|
agent: AgentFormSource
|
|
open: boolean
|
|
onOpenChange: (open: boolean) => void
|
|
}
|
|
|
|
type EditAgentFormSessionProps = {
|
|
agent: AgentFormSource
|
|
nameInputRef: Ref<HTMLInputElement>
|
|
pending: boolean
|
|
onCancel: () => void
|
|
onSubmit: (formValues: AgentFormValues, agentIcon: AgentIconSelection) => void
|
|
}
|
|
|
|
const applyIconPayload = (body: AgentAppUpdatePayload, icon: AgentIconSelection) => {
|
|
if (icon.type === 'emoji') {
|
|
body.icon_type = icon.type
|
|
body.icon = icon.icon
|
|
body.icon_background = icon.background
|
|
return
|
|
}
|
|
|
|
body.icon_type = icon.type
|
|
body.icon = icon.type === 'image' ? icon.fileId : icon.icon
|
|
body.icon_background = undefined
|
|
}
|
|
|
|
function EditAgentFormSession({
|
|
agent,
|
|
nameInputRef,
|
|
pending,
|
|
onCancel,
|
|
onSubmit,
|
|
}: EditAgentFormSessionProps) {
|
|
const { t } = useTranslation('agentV2')
|
|
const { t: tCommon } = useTranslation('common')
|
|
const [initialValues] = useState(() => ({
|
|
fields: {
|
|
description: agent.description ?? '',
|
|
name: agent.name,
|
|
role: agent.role ?? '',
|
|
} satisfies AgentFormValues,
|
|
icon: createAgentIconSelection(agent),
|
|
}))
|
|
const [agentIcon, setAgentIcon] = useState(initialValues.icon)
|
|
const [iconPickerOpen, setIconPickerOpen] = useState(false)
|
|
const [hasTextChanges, setHasTextChanges] = useState(false)
|
|
const hasIconChanges = getAgentIconKey(agentIcon) !== getAgentIconKey(initialValues.icon)
|
|
const hasChanges = hasTextChanges || hasIconChanges
|
|
|
|
const handleFormChange: ChangeEventHandler<HTMLFormElement> = (event) => {
|
|
const formValues = new FormData(event.currentTarget)
|
|
setHasTextChanges(
|
|
String(formValues.get('name') ?? '').trim() !== initialValues.fields.name.trim() ||
|
|
String(formValues.get('description') ?? '').trim() !==
|
|
initialValues.fields.description.trim() ||
|
|
String(formValues.get('role') ?? '').trim() !== initialValues.fields.role.trim(),
|
|
)
|
|
}
|
|
|
|
return (
|
|
<>
|
|
<div className="shrink-0 ps-6 pe-14 pt-6 pb-3">
|
|
<DialogTitle className="title-2xl-semi-bold text-text-primary">
|
|
{t(($) => $['roster.editDialog.title'])}
|
|
</DialogTitle>
|
|
<DialogDescription className="sr-only">
|
|
{t(($) => $['roster.editDialog.description'])}
|
|
</DialogDescription>
|
|
</div>
|
|
<Form<AgentFormValues>
|
|
className="flex min-h-0 flex-1 flex-col"
|
|
onChange={handleFormChange}
|
|
onFormSubmit={(formValues) => {
|
|
if (hasChanges) onSubmit(formValues, agentIcon)
|
|
}}
|
|
>
|
|
<AgentFormFields
|
|
ref={nameInputRef}
|
|
defaultValues={initialValues.fields}
|
|
icon={agentIcon}
|
|
iconAriaLabel={t(($) => $['roster.createForm.changeIcon'])}
|
|
onIconClick={() => setIconPickerOpen(true)}
|
|
/>
|
|
<div className="flex shrink-0 justify-end gap-2 px-6 pt-5 pb-6">
|
|
<Button type="button" className="min-w-18" onClick={onCancel} disabled={pending}>
|
|
{tCommon(($) => $['operation.cancel'])}
|
|
</Button>
|
|
<Button
|
|
type="submit"
|
|
variant="primary"
|
|
className="min-w-18"
|
|
disabled={!hasChanges}
|
|
loading={pending}
|
|
>
|
|
{tCommon(($) => $['operation.save'])}
|
|
</Button>
|
|
</div>
|
|
</Form>
|
|
<AppIconPicker
|
|
open={iconPickerOpen}
|
|
initialEmoji={
|
|
agentIcon.type === 'emoji'
|
|
? { icon: agentIcon.icon, background: agentIcon.background }
|
|
: undefined
|
|
}
|
|
onOpenChange={setIconPickerOpen}
|
|
onSelect={setAgentIcon}
|
|
/>
|
|
</>
|
|
)
|
|
}
|
|
|
|
export function EditAgentDialog({ agent, open, onOpenChange }: EditAgentDialogProps) {
|
|
const { t } = useTranslation('agentV2')
|
|
const nameInputRef = useRef<HTMLInputElement>(null)
|
|
const updateAgentMutation = useMutation(consoleQuery.agent.byAgentId.put.mutationOptions())
|
|
|
|
const handleOpenChange = (nextOpen: boolean) => {
|
|
if (!nextOpen && updateAgentMutation.isPending) return
|
|
onOpenChange(nextOpen)
|
|
}
|
|
|
|
const handleSubmit = (formValues: AgentFormValues, agentIcon: AgentIconSelection) => {
|
|
if (updateAgentMutation.isPending) return
|
|
|
|
const body: AgentAppUpdatePayload = {
|
|
name: formValues.name.trim(),
|
|
description: formValues.description.trim(),
|
|
// Keep sending the trimmed role even when empty: omitting the field
|
|
// preserves the current backing-agent role, while "" intentionally clears it.
|
|
role: formValues.role.trim(),
|
|
}
|
|
|
|
applyIconPayload(body, agentIcon)
|
|
|
|
updateAgentMutation.mutate(
|
|
{
|
|
params: {
|
|
agent_id: agent.id,
|
|
},
|
|
body,
|
|
},
|
|
{
|
|
onSuccess: () => {
|
|
onOpenChange(false)
|
|
},
|
|
},
|
|
)
|
|
}
|
|
|
|
return (
|
|
<>
|
|
<Dialog open={open} onOpenChange={handleOpenChange} disablePointerDismissal>
|
|
<DialogContent
|
|
initialFocus={nameInputRef}
|
|
className="flex max-h-[calc(100dvh-2rem)] w-130 flex-col overflow-hidden! p-0!"
|
|
>
|
|
<DialogClose
|
|
disabled={updateAgentMutation.isPending}
|
|
render={
|
|
<IconButton
|
|
aria-label={t(($) => $['operation.close'], { ns: 'common' })}
|
|
size="lg"
|
|
className="absolute inset-e-5 top-5"
|
|
>
|
|
<span aria-hidden className="i-ri-close-line size-4" />
|
|
</IconButton>
|
|
}
|
|
/>
|
|
<EditAgentFormSession
|
|
key={agent.id}
|
|
agent={agent}
|
|
nameInputRef={nameInputRef}
|
|
pending={updateAgentMutation.isPending}
|
|
onCancel={() => onOpenChange(false)}
|
|
onSubmit={handleSubmit}
|
|
/>
|
|
</DialogContent>
|
|
</Dialog>
|
|
</>
|
|
)
|
|
}
|