mirror of
https://github.com/Dokploy/dokploy
synced 2025-06-26 18:27:59 +00:00
* feat: support code editor * Update codeblock * refactor: remove unused class --------- Co-authored-by: Mauricio Siu <47042324+Siumauricio@users.noreply.github.com>
165 lines
4.1 KiB
TypeScript
165 lines
4.1 KiB
TypeScript
import { Button } from "@/components/ui/button";
|
|
import {
|
|
Dialog,
|
|
DialogContent,
|
|
DialogDescription,
|
|
DialogFooter,
|
|
DialogHeader,
|
|
DialogTitle,
|
|
DialogTrigger,
|
|
} from "@/components/ui/dialog";
|
|
import {
|
|
Form,
|
|
FormControl,
|
|
FormField,
|
|
FormItem,
|
|
FormLabel,
|
|
FormMessage,
|
|
} from "@/components/ui/form";
|
|
import { api } from "@/utils/api";
|
|
import { AlertBlock } from "@/components/shared/alert-block";
|
|
import { zodResolver } from "@hookform/resolvers/zod";
|
|
import { useEffect, useState } from "react";
|
|
import { useForm } from "react-hook-form";
|
|
import { toast } from "sonner";
|
|
import { z } from "zod";
|
|
import { CodeEditor } from "@/components/shared/code-editor";
|
|
import { validateAndFormatYAML } from "../../application/advanced/traefik/update-traefik-config";
|
|
|
|
const UpdateMainTraefikConfigSchema = z.object({
|
|
traefikConfig: z.string(),
|
|
});
|
|
|
|
type UpdateTraefikConfig = z.infer<typeof UpdateMainTraefikConfigSchema>;
|
|
|
|
interface Props {
|
|
children?: React.ReactNode;
|
|
}
|
|
|
|
export const ShowMainTraefikConfig = ({ children }: Props) => {
|
|
const { data, refetch } = api.settings.readTraefikConfig.useQuery();
|
|
const [canEdit, setCanEdit] = useState(true);
|
|
|
|
const { mutateAsync, isLoading, error, isError } =
|
|
api.settings.updateTraefikConfig.useMutation();
|
|
|
|
const form = useForm<UpdateTraefikConfig>({
|
|
defaultValues: {
|
|
traefikConfig: "",
|
|
},
|
|
disabled: canEdit,
|
|
resolver: zodResolver(UpdateMainTraefikConfigSchema),
|
|
});
|
|
|
|
useEffect(() => {
|
|
if (data) {
|
|
form.reset({
|
|
traefikConfig: data || "",
|
|
});
|
|
}
|
|
}, [form, form.reset, data]);
|
|
|
|
const onSubmit = async (data: UpdateTraefikConfig) => {
|
|
const { valid, error } = validateAndFormatYAML(data.traefikConfig);
|
|
if (!valid) {
|
|
form.setError("traefikConfig", {
|
|
type: "manual",
|
|
message: error || "Invalid YAML",
|
|
});
|
|
return;
|
|
}
|
|
form.clearErrors("traefikConfig");
|
|
await mutateAsync({
|
|
traefikConfig: data.traefikConfig,
|
|
})
|
|
.then(async () => {
|
|
toast.success("Traefik config Updated");
|
|
refetch();
|
|
})
|
|
.catch(() => {
|
|
toast.error("Error to update the traefik config");
|
|
});
|
|
};
|
|
|
|
return (
|
|
<Dialog>
|
|
<DialogTrigger asChild>{children}</DialogTrigger>
|
|
<DialogContent className="max-h-screen overflow-y-auto sm:max-w-4xl">
|
|
<DialogHeader>
|
|
<DialogTitle>Update traefik config</DialogTitle>
|
|
<DialogDescription>Update the traefik config</DialogDescription>
|
|
</DialogHeader>
|
|
{isError && <AlertBlock type="error">{error?.message}</AlertBlock>}
|
|
|
|
<Form {...form}>
|
|
<form
|
|
id="hook-form-update-main-traefik-config"
|
|
onSubmit={form.handleSubmit(onSubmit)}
|
|
className="grid w-full py-4 relative"
|
|
>
|
|
<div className="flex flex-col">
|
|
<FormField
|
|
control={form.control}
|
|
name="traefikConfig"
|
|
render={({ field }) => (
|
|
<FormItem className="relative">
|
|
<FormLabel>Traefik config</FormLabel>
|
|
<FormControl>
|
|
<CodeEditor
|
|
wrapperClassName="h-[35rem] font-mono"
|
|
placeholder={`providers:
|
|
docker:
|
|
defaultRule: 'Host('dokploy.com')'
|
|
file:
|
|
directory: /etc/dokploy/traefik
|
|
watch: true
|
|
entryPoints:
|
|
web:
|
|
address: ':80'
|
|
websecure:
|
|
address: ':443'
|
|
api:
|
|
insecure: true
|
|
|
|
`}
|
|
{...field}
|
|
/>
|
|
</FormControl>
|
|
|
|
<pre>
|
|
<FormMessage />
|
|
</pre>
|
|
<div className="flex justify-end absolute z-50 right-6 top-0">
|
|
<Button
|
|
className="shadow-sm"
|
|
variant="secondary"
|
|
type="button"
|
|
onClick={async () => {
|
|
setCanEdit(!canEdit);
|
|
}}
|
|
>
|
|
{canEdit ? "Unlock" : "Lock"}
|
|
</Button>
|
|
</div>
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
</div>
|
|
</form>
|
|
|
|
<DialogFooter>
|
|
<Button
|
|
isLoading={isLoading}
|
|
disabled={canEdit}
|
|
form="hook-form-update-main-traefik-config"
|
|
type="submit"
|
|
>
|
|
Update
|
|
</Button>
|
|
</DialogFooter>
|
|
</Form>
|
|
</DialogContent>
|
|
</Dialog>
|
|
);
|
|
};
|