223 lines
5.7 KiB
TypeScript
223 lines
5.7 KiB
TypeScript
"use client"
|
|
|
|
import { useEffect, useRef, useState } from "react"
|
|
import { zodResolver } from "@hookform/resolvers/zod"
|
|
import { Controller, Resolver, useForm } from "react-hook-form"
|
|
import { toast } from "sonner"
|
|
import { z } from "zod/v4"
|
|
|
|
import { OptionCombobox } from "@/components/option-combobox"
|
|
import { Button } from "@/components/ui/button"
|
|
import {
|
|
Dialog,
|
|
DialogContent,
|
|
DialogFooter,
|
|
DialogHeader,
|
|
DialogTitle,
|
|
} from "@/components/ui/dialog"
|
|
import { Field, FieldContent, FieldError, FieldLabel } from "@/components/ui/field"
|
|
import { Textarea } from "@/components/ui/textarea"
|
|
import {
|
|
fetchAgentProfilesAll,
|
|
type AdminAgentProfile,
|
|
} from "@/lib/api/admin"
|
|
import { assignTicket } from "@/lib/api/ticket"
|
|
|
|
const schema = z.object({
|
|
toUserId: z.string().trim().min(1, "请选择处理人"),
|
|
reason: z.string().trim(),
|
|
})
|
|
|
|
type FormValues = z.infer<typeof schema>
|
|
|
|
const resolver = zodResolver(schema as never) as Resolver<
|
|
z.input<typeof schema>,
|
|
undefined,
|
|
z.output<typeof schema>
|
|
>
|
|
|
|
const emptyForm: FormValues = {
|
|
toUserId: "",
|
|
reason: "",
|
|
}
|
|
|
|
type TicketAssignDialogProps = {
|
|
open: boolean
|
|
ticketId: number | null
|
|
currentAssigneeId?: number
|
|
onOpenChange: (open: boolean) => void
|
|
onSuccess?: () => Promise<void> | void
|
|
}
|
|
|
|
export function TicketAssignDialog({
|
|
open,
|
|
ticketId,
|
|
currentAssigneeId,
|
|
onOpenChange,
|
|
onSuccess,
|
|
}: TicketAssignDialogProps) {
|
|
return (
|
|
<Dialog open={open} onOpenChange={onOpenChange}>
|
|
{open ? (
|
|
<TicketAssignDialogBody
|
|
key={ticketId ?? "ticket-assign"}
|
|
ticketId={ticketId}
|
|
currentAssigneeId={currentAssigneeId}
|
|
onOpenChange={onOpenChange}
|
|
onSuccess={onSuccess}
|
|
/>
|
|
) : null}
|
|
</Dialog>
|
|
)
|
|
}
|
|
|
|
function TicketAssignDialogBody({
|
|
ticketId,
|
|
currentAssigneeId,
|
|
onOpenChange,
|
|
onSuccess,
|
|
}: Omit<TicketAssignDialogProps, "open">) {
|
|
const [saving, setSaving] = useState(false)
|
|
const [loading, setLoading] = useState(false)
|
|
const [agents, setAgents] = useState<AdminAgentProfile[]>([])
|
|
const activeRef = useRef(false)
|
|
|
|
const form = useForm<
|
|
z.input<typeof schema>,
|
|
undefined,
|
|
z.output<typeof schema>
|
|
>({
|
|
resolver,
|
|
defaultValues: emptyForm,
|
|
})
|
|
|
|
const {
|
|
control,
|
|
handleSubmit,
|
|
register,
|
|
reset,
|
|
formState: { errors },
|
|
} = form
|
|
|
|
useEffect(() => {
|
|
activeRef.current = true
|
|
return () => {
|
|
activeRef.current = false
|
|
}
|
|
}, [])
|
|
|
|
useEffect(() => {
|
|
reset({
|
|
toUserId: currentAssigneeId ? String(currentAssigneeId) : "",
|
|
reason: "",
|
|
})
|
|
}, [currentAssigneeId, reset, ticketId])
|
|
|
|
useEffect(() => {
|
|
setLoading(true)
|
|
fetchAgentProfilesAll()
|
|
.then((agentData) => {
|
|
if (!activeRef.current) {
|
|
return
|
|
}
|
|
setAgents(Array.isArray(agentData) ? agentData : [])
|
|
})
|
|
.catch((error) => {
|
|
if (!activeRef.current) {
|
|
return
|
|
}
|
|
toast.error(error instanceof Error ? error.message : "加载处理人失败")
|
|
})
|
|
.finally(() => {
|
|
if (activeRef.current) {
|
|
setLoading(false)
|
|
}
|
|
})
|
|
}, [])
|
|
|
|
async function onFormSubmit(values: FormValues) {
|
|
if (!ticketId) {
|
|
toast.error("请选择工单")
|
|
return
|
|
}
|
|
setSaving(true)
|
|
try {
|
|
await assignTicket({
|
|
ticketId,
|
|
toUserId: Number(values.toUserId),
|
|
reason: values.reason.trim() || undefined,
|
|
})
|
|
if (!activeRef.current) {
|
|
return
|
|
}
|
|
toast.success("处理人已更新")
|
|
if (!activeRef.current) {
|
|
return
|
|
}
|
|
onOpenChange(false)
|
|
await onSuccess?.()
|
|
} catch (error) {
|
|
if (!activeRef.current) {
|
|
return
|
|
}
|
|
toast.error(error instanceof Error ? error.message : "指派工单失败")
|
|
} finally {
|
|
if (activeRef.current) {
|
|
setSaving(false)
|
|
}
|
|
}
|
|
}
|
|
|
|
return (
|
|
<DialogContent className="max-w-lg gap-0 p-0 sm:max-w-lg">
|
|
<DialogHeader className="px-6 pt-6">
|
|
<DialogTitle>指派工单</DialogTitle>
|
|
</DialogHeader>
|
|
<form onSubmit={handleSubmit(onFormSubmit)}>
|
|
<div className="space-y-4 p-6">
|
|
<Field data-invalid={!!errors.toUserId}>
|
|
<FieldLabel>处理人</FieldLabel>
|
|
<FieldContent>
|
|
<Controller
|
|
control={control}
|
|
name="toUserId"
|
|
render={({ field }) => (
|
|
<OptionCombobox
|
|
value={field.value}
|
|
onChange={field.onChange}
|
|
placeholder={loading ? "加载中..." : "选择处理人"}
|
|
options={agents.map((agent) => ({
|
|
value: String(agent.userId),
|
|
label:
|
|
agent.displayName ||
|
|
agent.nickname ||
|
|
agent.username ||
|
|
`客服#${agent.userId}`,
|
|
}))}
|
|
/>
|
|
)}
|
|
/>
|
|
<FieldError errors={[errors.toUserId]} />
|
|
</FieldContent>
|
|
</Field>
|
|
<Field data-invalid={!!errors.reason}>
|
|
<FieldLabel>说明</FieldLabel>
|
|
<FieldContent>
|
|
<Textarea rows={4} placeholder="填写指派说明" {...register("reason")} />
|
|
<FieldError errors={[errors.reason]} />
|
|
</FieldContent>
|
|
</Field>
|
|
</div>
|
|
<DialogFooter className="mx-0 mb-0 px-6 py-4">
|
|
<Button type="button" variant="outline" onClick={() => onOpenChange(false)}>
|
|
取消
|
|
</Button>
|
|
<Button type="submit" disabled={saving}>
|
|
{saving ? "提交中..." : "确认指派"}
|
|
</Button>
|
|
</DialogFooter>
|
|
</form>
|
|
</DialogContent>
|
|
)
|
|
}
|