mirror of
https://github.com/Buriburizaem0n/admin-frontend-domain.git
synced 2026-05-06 05:38:51 +00:00
f93d266810
* improve: add missing try-catch cases * i18n: support german * chore: auto-fix linting and formatting issues --------- Co-authored-by: uubulb <uubulb@users.noreply.github.com>
155 lines
6.0 KiB
TypeScript
155 lines
6.0 KiB
TypeScript
import { createServerGroup, updateServerGroup } from "@/api/server-group"
|
|
import { Button } from "@/components/ui/button"
|
|
import {
|
|
Dialog,
|
|
DialogClose,
|
|
DialogContent,
|
|
DialogDescription,
|
|
DialogFooter,
|
|
DialogHeader,
|
|
DialogTitle,
|
|
DialogTrigger,
|
|
} from "@/components/ui/dialog"
|
|
import {
|
|
Form,
|
|
FormControl,
|
|
FormField,
|
|
FormItem,
|
|
FormLabel,
|
|
FormMessage,
|
|
} from "@/components/ui/form"
|
|
import { Input } from "@/components/ui/input"
|
|
import { ScrollArea } from "@/components/ui/scroll-area"
|
|
import { IconButton } from "@/components/xui/icon-button"
|
|
import { MultiSelect } from "@/components/xui/multi-select"
|
|
import { useServer } from "@/hooks/useServer"
|
|
import { ModelServerGroupResponseItem } from "@/types"
|
|
import { zodResolver } from "@hookform/resolvers/zod"
|
|
import { useState } from "react"
|
|
import { useForm } from "react-hook-form"
|
|
import { useTranslation } from "react-i18next"
|
|
import { toast } from "sonner"
|
|
import { KeyedMutator } from "swr"
|
|
import { z } from "zod"
|
|
|
|
interface ServerGroupCardProps {
|
|
data?: ModelServerGroupResponseItem
|
|
mutate: KeyedMutator<ModelServerGroupResponseItem[]>
|
|
}
|
|
|
|
const serverGroupFormSchema = z.object({
|
|
name: z.string().min(1),
|
|
servers: z.array(z.number()),
|
|
})
|
|
|
|
export const ServerGroupCard: React.FC<ServerGroupCardProps> = ({ data, mutate }) => {
|
|
const { t } = useTranslation()
|
|
const form = useForm<z.infer<typeof serverGroupFormSchema>>({
|
|
resolver: zodResolver(serverGroupFormSchema),
|
|
defaultValues: data
|
|
? {
|
|
name: data.group.name,
|
|
servers: data.servers,
|
|
}
|
|
: {
|
|
name: "",
|
|
servers: [],
|
|
},
|
|
resetOptions: {
|
|
keepDefaultValues: false,
|
|
},
|
|
})
|
|
|
|
const [open, setOpen] = useState(false)
|
|
|
|
const onSubmit = async (values: z.infer<typeof serverGroupFormSchema>) => {
|
|
try {
|
|
data?.group.id
|
|
? await updateServerGroup(data.group.id, values)
|
|
: await createServerGroup(values)
|
|
} catch (e) {
|
|
console.error(e)
|
|
toast(t("Error"), {
|
|
description: t("Results.UnExpectedError"),
|
|
})
|
|
return
|
|
}
|
|
setOpen(false)
|
|
await mutate()
|
|
form.reset()
|
|
}
|
|
|
|
const { servers } = useServer()
|
|
const serverList = servers?.map((s) => ({
|
|
value: `${s.id}`,
|
|
label: s.name,
|
|
})) || [{ value: "", label: "" }]
|
|
|
|
return (
|
|
<Dialog open={open} onOpenChange={setOpen}>
|
|
<DialogTrigger asChild>
|
|
{data ? <IconButton variant="outline" icon="edit" /> : <IconButton icon="plus" />}
|
|
</DialogTrigger>
|
|
<DialogContent className="sm:max-w-xl">
|
|
<ScrollArea className="max-h-[calc(100dvh-5rem)] p-3">
|
|
<div className="items-center mx-1">
|
|
<DialogHeader>
|
|
<DialogTitle>
|
|
{data ? t("EditServerGroup") : t("CreateServerGroup")}
|
|
</DialogTitle>
|
|
<DialogDescription />
|
|
</DialogHeader>
|
|
<Form {...form}>
|
|
<form onSubmit={form.handleSubmit(onSubmit)} className="space-y-2 my-2">
|
|
<FormField
|
|
control={form.control}
|
|
name="name"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>{t("Name")}</FormLabel>
|
|
<FormControl>
|
|
<Input placeholder="Group Name" {...field} />
|
|
</FormControl>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
<FormField
|
|
control={form.control}
|
|
name="servers"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>{t("Server")}</FormLabel>
|
|
<FormControl>
|
|
<MultiSelect
|
|
options={serverList}
|
|
onValueChange={(e) => {
|
|
const arr = e.map(Number)
|
|
field.onChange(arr)
|
|
}}
|
|
defaultValue={field.value?.map(String)}
|
|
/>
|
|
</FormControl>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
<DialogFooter className="justify-end">
|
|
<DialogClose asChild>
|
|
<Button type="button" className="my-2" variant="secondary">
|
|
{t("Close")}
|
|
</Button>
|
|
</DialogClose>
|
|
<Button type="submit" className="my-2">
|
|
{t("Confirm")}
|
|
</Button>
|
|
</DialogFooter>
|
|
</form>
|
|
</Form>
|
|
</div>
|
|
</ScrollArea>
|
|
</DialogContent>
|
|
</Dialog>
|
|
)
|
|
}
|