499 lines
16 KiB
TypeScript
499 lines
16 KiB
TypeScript
"use client"
|
|
|
|
import { useEffect, useRef, useState } from "react"
|
|
import { zodResolver } from "@hookform/resolvers/zod"
|
|
import {
|
|
Controller,
|
|
useFieldArray,
|
|
useForm,
|
|
type Resolver,
|
|
type UseFormReturn,
|
|
} from "react-hook-form"
|
|
import { PlusIcon, Trash2Icon } from "lucide-react"
|
|
import { z } from "zod/v4"
|
|
|
|
import { CompanyPicker } from "@/components/company-picker"
|
|
import { Button } from "@/components/ui/button"
|
|
import {
|
|
Field,
|
|
FieldContent,
|
|
FieldError,
|
|
FieldLabel,
|
|
} from "@/components/ui/field"
|
|
import { Input } from "@/components/ui/input"
|
|
import {
|
|
Select,
|
|
SelectContent,
|
|
SelectItem,
|
|
SelectTrigger,
|
|
SelectValue,
|
|
} from "@/components/ui/select"
|
|
import { Textarea } from "@/components/ui/textarea"
|
|
import { fetchCustomerContacts, type AdminCustomerContact } from "@/lib/api/customer-contact"
|
|
import {
|
|
fetchCustomer,
|
|
type AdminCustomer,
|
|
type SaveCustomerProfilePayload,
|
|
} from "@/lib/api/customer"
|
|
import { getEnumLabel, getEnumOptions } from "@/lib/enums"
|
|
import { ContactType, ContactTypeLabels, Gender, GenderLabels } from "@/lib/generated/enums"
|
|
|
|
const genderOptions = [
|
|
...getEnumOptions(GenderLabels).map((item) => ({
|
|
value: String(item.value),
|
|
label: item.label,
|
|
})),
|
|
] as const
|
|
|
|
const genderValueOptions = [
|
|
String(Gender.Unknown),
|
|
String(Gender.Male),
|
|
String(Gender.Female),
|
|
] as const
|
|
|
|
const contactTypeValues = [
|
|
ContactType.Mobile,
|
|
ContactType.Email,
|
|
ContactType.Other,
|
|
] as const
|
|
|
|
const contactRowSchema = z.object({
|
|
id: z.number().optional(),
|
|
contactType: z.enum(contactTypeValues),
|
|
contactValue: z.string(),
|
|
remark: z.string(),
|
|
isPrimary: z.boolean(),
|
|
})
|
|
|
|
const customerFormSchema = z.object({
|
|
name: z.string().trim().min(1, "客户名称不能为空"),
|
|
gender: z.enum(genderValueOptions, { message: "请选择性别" }),
|
|
companyId: z.string().trim().regex(/^\d+$/, "请选择所属公司"),
|
|
remark: z.string().trim(),
|
|
contacts: z.array(contactRowSchema),
|
|
})
|
|
|
|
export type CustomerFormValues = z.infer<typeof customerFormSchema>
|
|
|
|
export type CustomerContactFormRow = {
|
|
id?: number
|
|
contactType: (typeof contactTypeValues)[number]
|
|
contactValue: string
|
|
remark: string
|
|
isPrimary: boolean
|
|
}
|
|
|
|
const customerFormResolver = zodResolver(customerFormSchema as never) as Resolver<
|
|
z.input<typeof customerFormSchema>,
|
|
undefined,
|
|
z.output<typeof customerFormSchema>
|
|
>
|
|
|
|
function defaultContactRow(isPrimary: boolean): CustomerContactFormRow {
|
|
return {
|
|
contactType: ContactType.Mobile,
|
|
contactValue: "",
|
|
remark: "",
|
|
isPrimary,
|
|
}
|
|
}
|
|
|
|
const emptyCustomerForm: CustomerFormValues = {
|
|
name: "",
|
|
gender: "0",
|
|
companyId: "0",
|
|
remark: "",
|
|
contacts: [defaultContactRow(true)],
|
|
}
|
|
|
|
function buildCustomerMainFromAdmin(item: AdminCustomer | null): Omit<CustomerFormValues, "contacts"> {
|
|
if (!item) {
|
|
return {
|
|
name: "",
|
|
gender: "0",
|
|
companyId: "0",
|
|
remark: "",
|
|
}
|
|
}
|
|
return {
|
|
name: item.name,
|
|
gender: String(item.gender) as "0" | "1" | "2",
|
|
companyId: String(item.companyId ?? 0),
|
|
remark: item.remark ?? "",
|
|
}
|
|
}
|
|
|
|
function buildContactsFromApi(list: AdminCustomerContact[]): CustomerContactFormRow[] {
|
|
if (list.length === 0) {
|
|
return [defaultContactRow(true)]
|
|
}
|
|
return list.map((c) => ({
|
|
id: c.id,
|
|
contactType: c.contactType as CustomerContactFormRow["contactType"],
|
|
contactValue: c.contactValue ?? "",
|
|
remark: c.remark ?? "",
|
|
isPrimary: c.isPrimary,
|
|
}))
|
|
}
|
|
|
|
/** 过滤空行并保证至多一条主联系方式(有一条有值时至少一条主) */
|
|
export function normalizeContactsForSubmit(rows: CustomerContactFormRow[]): CustomerContactFormRow[] {
|
|
const withValue = rows.filter((r) => r.contactValue.trim() !== "")
|
|
if (withValue.length === 0) {
|
|
return []
|
|
}
|
|
const primaryIdx = withValue.findIndex((r) => r.isPrimary)
|
|
if (primaryIdx < 0) {
|
|
return withValue.map((r, i) => ({ ...r, isPrimary: i === 0 }))
|
|
}
|
|
return withValue.map((r, i) => ({
|
|
...r,
|
|
isPrimary: i === primaryIdx,
|
|
}))
|
|
}
|
|
|
|
export type CustomerFormSavePayload = SaveCustomerProfilePayload
|
|
|
|
function getGenderLabel(value: string) {
|
|
return getEnumLabel(GenderLabels, Number(value) as Gender)
|
|
}
|
|
|
|
function getContactTypeLabel(value: string) {
|
|
return ContactTypeLabels[value as ContactType] ?? value
|
|
}
|
|
|
|
type CustomerFormFieldsProps = {
|
|
form: UseFormReturn<CustomerFormValues>
|
|
fieldIdPrefix?: string
|
|
remarkRows?: number
|
|
}
|
|
|
|
function CustomerFormFields({
|
|
form,
|
|
fieldIdPrefix = "customer",
|
|
remarkRows = 4,
|
|
}: CustomerFormFieldsProps) {
|
|
const {
|
|
control,
|
|
register,
|
|
formState: { errors },
|
|
watch,
|
|
setValue,
|
|
getValues,
|
|
} = form
|
|
const { fields, append, remove } = useFieldArray({ control, name: "contacts" })
|
|
|
|
const id = (suffix: string) => `${fieldIdPrefix}-${suffix}`
|
|
|
|
function setPrimaryIndex(index: number) {
|
|
fields.forEach((_, i) => {
|
|
setValue(`contacts.${i}.isPrimary`, i === index)
|
|
})
|
|
}
|
|
|
|
function addContactRow() {
|
|
append(defaultContactRow(fields.length === 0))
|
|
}
|
|
|
|
function removeContactRow(index: number) {
|
|
const wasPrimary = watch(`contacts.${index}.isPrimary`)
|
|
remove(index)
|
|
if (wasPrimary) {
|
|
requestAnimationFrame(() => {
|
|
const list = getValues("contacts")
|
|
if (list.length > 0) {
|
|
list.forEach((_, i) => setValue(`contacts.${i}.isPrimary`, i === 0))
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
return (
|
|
<div className="space-y-8">
|
|
<div className="space-y-3">
|
|
<h3 className="text-sm font-semibold text-muted-foreground">客户信息</h3>
|
|
<div className="space-y-4">
|
|
<Field data-invalid={!!errors.name}>
|
|
<FieldLabel htmlFor={id("name")}>客户名称</FieldLabel>
|
|
<FieldContent>
|
|
<Input
|
|
id={id("name")}
|
|
placeholder="请输入客户名称"
|
|
aria-invalid={!!errors.name}
|
|
autoComplete="off"
|
|
{...register("name")}
|
|
/>
|
|
<FieldError errors={[errors.name]} />
|
|
</FieldContent>
|
|
</Field>
|
|
|
|
<div className="grid grid-cols-1 gap-4 sm:grid-cols-2">
|
|
<Field data-invalid={!!errors.gender}>
|
|
<FieldLabel htmlFor={id("gender")}>性别</FieldLabel>
|
|
<FieldContent>
|
|
<Controller
|
|
control={control}
|
|
name="gender"
|
|
render={({ field }) => (
|
|
<Select value={field.value} onValueChange={field.onChange} modal={false}>
|
|
<SelectTrigger id={id("gender")}>
|
|
<SelectValue>{getGenderLabel(field.value)}</SelectValue>
|
|
</SelectTrigger>
|
|
<SelectContent>
|
|
{genderOptions.map((option) => (
|
|
<SelectItem key={option.value} value={option.value}>
|
|
{option.label}
|
|
</SelectItem>
|
|
))}
|
|
</SelectContent>
|
|
</Select>
|
|
)}
|
|
/>
|
|
<FieldError errors={[errors.gender]} />
|
|
</FieldContent>
|
|
</Field>
|
|
|
|
<Field data-invalid={!!errors.companyId}>
|
|
<FieldLabel htmlFor={id("company")}>所属公司</FieldLabel>
|
|
<FieldContent>
|
|
<Controller
|
|
control={control}
|
|
name="companyId"
|
|
render={({ field }) => (
|
|
<CompanyPicker
|
|
value={field.value}
|
|
onChange={field.onChange}
|
|
/>
|
|
)}
|
|
/>
|
|
<FieldError errors={[errors.companyId]} />
|
|
</FieldContent>
|
|
</Field>
|
|
</div>
|
|
|
|
<Field data-invalid={!!errors.remark}>
|
|
<FieldLabel htmlFor={id("remark")}>备注</FieldLabel>
|
|
<FieldContent>
|
|
<Textarea
|
|
id={id("remark")}
|
|
placeholder="可选"
|
|
rows={remarkRows}
|
|
aria-invalid={!!errors.remark}
|
|
{...register("remark")}
|
|
/>
|
|
<FieldError errors={[errors.remark]} />
|
|
</FieldContent>
|
|
</Field>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="space-y-3">
|
|
<h3 className="text-sm font-semibold text-muted-foreground">联系方式</h3>
|
|
<div className="hidden gap-2 border-b border-border pb-2 text-xs font-medium text-muted-foreground sm:grid sm:grid-cols-[108px_minmax(0,1fr)_minmax(0,1fr)_5.5rem_2.25rem] sm:items-center sm:gap-x-2">
|
|
<span>类型</span>
|
|
<span>联系方式</span>
|
|
<span>备注</span>
|
|
<span className="text-center">主</span>
|
|
<span className="sr-only">操作</span>
|
|
</div>
|
|
|
|
<div className="space-y-1">
|
|
{fields.map((field, index) => {
|
|
const err = errors.contacts?.[index]
|
|
return (
|
|
<div
|
|
key={field.id}
|
|
className="grid grid-cols-1 gap-2 border-b border-border py-2 last:border-b-0 sm:grid-cols-[108px_minmax(0,1fr)_minmax(0,1fr)_5.5rem_2.25rem] sm:items-center sm:gap-x-2"
|
|
>
|
|
<div className="min-w-0 space-y-1 sm:space-y-0">
|
|
<span className="text-xs text-muted-foreground sm:hidden">类型</span>
|
|
<Controller
|
|
control={control}
|
|
name={`contacts.${index}.contactType`}
|
|
render={({ field: f }) => (
|
|
<Select value={f.value} onValueChange={f.onChange} modal={false}>
|
|
<SelectTrigger className="w-full" id={id(`ct-${index}`)}>
|
|
<SelectValue>{getContactTypeLabel(f.value)}</SelectValue>
|
|
</SelectTrigger>
|
|
<SelectContent>
|
|
{contactTypeValues.map((v) => (
|
|
<SelectItem key={v} value={v}>
|
|
{getContactTypeLabel(v)}
|
|
</SelectItem>
|
|
))}
|
|
</SelectContent>
|
|
</Select>
|
|
)}
|
|
/>
|
|
</div>
|
|
|
|
<Field data-invalid={!!err?.contactValue} className="min-w-0 gap-1 sm:gap-0">
|
|
<FieldLabel className="text-xs text-muted-foreground sm:sr-only">联系方式</FieldLabel>
|
|
<FieldContent>
|
|
<Input
|
|
placeholder={
|
|
watch(`contacts.${index}.contactType`) === ContactType.Email
|
|
? "邮箱"
|
|
: "号码 / 账号"
|
|
}
|
|
aria-invalid={!!err?.contactValue}
|
|
{...register(`contacts.${index}.contactValue`)}
|
|
/>
|
|
<FieldError errors={[err?.contactValue]} />
|
|
</FieldContent>
|
|
</Field>
|
|
|
|
<Field className="min-w-0 gap-1 sm:gap-0">
|
|
<FieldLabel htmlFor={id(`tag-${index}`)} className="text-xs text-muted-foreground sm:sr-only">
|
|
备注
|
|
</FieldLabel>
|
|
<FieldContent>
|
|
<Input
|
|
id={id(`tag-${index}`)}
|
|
placeholder="可选"
|
|
{...register(`contacts.${index}.remark`)}
|
|
/>
|
|
</FieldContent>
|
|
</Field>
|
|
|
|
<div className="flex items-center justify-start gap-2 sm:justify-center">
|
|
<span className="text-xs text-muted-foreground sm:hidden">主联系方式</span>
|
|
<input
|
|
type="radio"
|
|
className="size-4 shrink-0 accent-primary"
|
|
name={id("primary-group")}
|
|
checked={watch(`contacts.${index}.isPrimary`)}
|
|
onChange={() => setPrimaryIndex(index)}
|
|
id={id(`primary-${index}`)}
|
|
aria-label="设为主联系方式"
|
|
/>
|
|
<label htmlFor={id(`primary-${index}`)} className="hidden cursor-pointer text-sm sm:inline">
|
|
主
|
|
</label>
|
|
</div>
|
|
|
|
<div className="flex justify-end sm:justify-center">
|
|
<Button
|
|
type="button"
|
|
variant="ghost"
|
|
size="icon"
|
|
className="text-muted-foreground hover:text-destructive"
|
|
onClick={() => removeContactRow(index)}
|
|
aria-label="删除此条联系方式"
|
|
>
|
|
<Trash2Icon className="size-4" />
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
)
|
|
})}
|
|
</div>
|
|
|
|
<Button type="button" variant="outline" size="sm" className="gap-1" onClick={addContactRow}>
|
|
<PlusIcon className="size-4" />
|
|
添加联系方式
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export type CustomerFormProps = {
|
|
formId: string
|
|
onSave: (payload: CustomerFormSavePayload) => Promise<void> | void
|
|
itemId?: number | null
|
|
fieldIdPrefix?: string
|
|
remarkRows?: number
|
|
className?: string
|
|
onLoadingDetailChange?: (loading: boolean) => void
|
|
}
|
|
|
|
export function CustomerForm({
|
|
formId,
|
|
onSave,
|
|
itemId,
|
|
fieldIdPrefix = "customer",
|
|
remarkRows = 4,
|
|
className,
|
|
onLoadingDetailChange,
|
|
}: CustomerFormProps) {
|
|
const [loadingDetail, setLoadingDetail] = useState(() => Boolean(itemId))
|
|
|
|
const form = useForm<CustomerFormValues>({
|
|
resolver: customerFormResolver,
|
|
defaultValues: emptyCustomerForm,
|
|
})
|
|
const { handleSubmit, reset } = form
|
|
const onLoadingDetailChangeRef = useRef(onLoadingDetailChange)
|
|
onLoadingDetailChangeRef.current = onLoadingDetailChange
|
|
|
|
useEffect(() => {
|
|
async function loadDetail() {
|
|
const notify = (loading: boolean) => {
|
|
onLoadingDetailChangeRef.current?.(loading)
|
|
}
|
|
if (!itemId) {
|
|
setLoadingDetail(false)
|
|
notify(false)
|
|
reset(emptyCustomerForm)
|
|
return
|
|
}
|
|
setLoadingDetail(true)
|
|
notify(true)
|
|
try {
|
|
const [customer, contacts] = await Promise.all([
|
|
fetchCustomer(itemId),
|
|
fetchCustomerContacts(itemId),
|
|
])
|
|
reset({
|
|
...buildCustomerMainFromAdmin(customer),
|
|
contacts: buildContactsFromApi(contacts),
|
|
})
|
|
} finally {
|
|
setLoadingDetail(false)
|
|
notify(false)
|
|
}
|
|
}
|
|
void loadDetail()
|
|
}, [itemId, reset])
|
|
|
|
async function onFormSubmit(values: CustomerFormValues) {
|
|
const contacts = normalizeContactsForSubmit(values.contacts as CustomerContactFormRow[])
|
|
const body: SaveCustomerProfilePayload = {
|
|
name: values.name.trim(),
|
|
gender: Number(values.gender),
|
|
companyId: Number(values.companyId),
|
|
remark: values.remark.trim(),
|
|
contacts: contacts.map((c) => ({
|
|
id: c.id,
|
|
contactType: c.contactType,
|
|
contactValue: c.contactValue.trim(),
|
|
remark: c.remark.trim(),
|
|
isPrimary: c.isPrimary,
|
|
})),
|
|
}
|
|
if (itemId) {
|
|
body.id = itemId
|
|
}
|
|
await onSave(body)
|
|
}
|
|
|
|
if (loadingDetail) {
|
|
return (
|
|
<div className="flex items-center justify-center py-12">
|
|
<div className="text-muted-foreground">加载中...</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
return (
|
|
<form id={formId} onSubmit={handleSubmit(onFormSubmit)} className={className}>
|
|
<CustomerFormFields
|
|
form={form}
|
|
fieldIdPrefix={fieldIdPrefix}
|
|
remarkRows={remarkRows}
|
|
/>
|
|
</form>
|
|
)
|
|
}
|