mirror of
https://github.com/Dokploy/dokploy.git
synced 2026-07-16 03:15:22 +02:00
190 lines
4.5 KiB
TypeScript
190 lines
4.5 KiB
TypeScript
import { zodResolver } from "@hookform/resolvers/zod";
|
|
import { useEffect } from "react";
|
|
import { useForm } from "react-hook-form";
|
|
import { toast } from "sonner";
|
|
import { z } from "zod";
|
|
import { Button } from "@/components/ui/button";
|
|
import { Card } from "@/components/ui/card";
|
|
import { Form } from "@/components/ui/form";
|
|
import { Secrets } from "@/components/ui/secrets";
|
|
import { api } from "@/utils/api";
|
|
|
|
const addEnvironmentSchema = z.object({
|
|
env: z.string(),
|
|
buildArgs: z.string(),
|
|
buildSecrets: z.string(),
|
|
});
|
|
|
|
type EnvironmentSchema = z.infer<typeof addEnvironmentSchema>;
|
|
|
|
interface Props {
|
|
applicationId: string;
|
|
}
|
|
|
|
export const ShowEnvironment = ({ applicationId }: Props) => {
|
|
const { mutateAsync, isLoading } =
|
|
api.application.saveEnvironment.useMutation();
|
|
|
|
const { data, refetch } = api.application.one.useQuery(
|
|
{
|
|
applicationId,
|
|
},
|
|
{
|
|
enabled: !!applicationId,
|
|
},
|
|
);
|
|
|
|
const form = useForm<EnvironmentSchema>({
|
|
defaultValues: {
|
|
env: "",
|
|
buildArgs: "",
|
|
buildSecrets: "",
|
|
},
|
|
resolver: zodResolver(addEnvironmentSchema),
|
|
});
|
|
|
|
// Watch form values
|
|
const currentEnv = form.watch("env");
|
|
const currentBuildArgs = form.watch("buildArgs");
|
|
const currentBuildSecrets = form.watch("buildSecrets");
|
|
const hasChanges =
|
|
currentEnv !== (data?.env || "") ||
|
|
currentBuildArgs !== (data?.buildArgs || "") ||
|
|
currentBuildSecrets !== (data?.buildSecrets || "");
|
|
|
|
useEffect(() => {
|
|
if (data) {
|
|
form.reset({
|
|
env: data.env || "",
|
|
buildArgs: data.buildArgs || "",
|
|
buildSecrets: data.buildSecrets || "",
|
|
});
|
|
}
|
|
}, [data, form]);
|
|
|
|
const onSubmit = async (formData: EnvironmentSchema) => {
|
|
mutateAsync({
|
|
env: formData.env,
|
|
buildArgs: formData.buildArgs,
|
|
buildSecrets: formData.buildSecrets,
|
|
applicationId,
|
|
})
|
|
.then(async () => {
|
|
toast.success("Environments Added");
|
|
await refetch();
|
|
})
|
|
.catch(() => {
|
|
toast.error("Error adding environment");
|
|
});
|
|
};
|
|
|
|
const handleCancel = () => {
|
|
form.reset({
|
|
env: data?.env || "",
|
|
buildArgs: data?.buildArgs || "",
|
|
buildSecrets: data?.buildSecrets || "",
|
|
});
|
|
};
|
|
|
|
// Add keyboard shortcut for Ctrl+S/Cmd+S
|
|
useEffect(() => {
|
|
const handleKeyDown = (e: KeyboardEvent) => {
|
|
if ((e.ctrlKey || e.metaKey) && e.key === "s" && !isLoading) {
|
|
e.preventDefault();
|
|
form.handleSubmit(onSubmit)();
|
|
}
|
|
};
|
|
|
|
document.addEventListener("keydown", handleKeyDown);
|
|
return () => {
|
|
document.removeEventListener("keydown", handleKeyDown);
|
|
};
|
|
}, [form, onSubmit, isLoading]);
|
|
|
|
return (
|
|
<Card className="bg-background px-6 pb-6">
|
|
<Form {...form}>
|
|
<form
|
|
onSubmit={form.handleSubmit(onSubmit)}
|
|
className="flex w-full flex-col gap-4"
|
|
>
|
|
<Secrets
|
|
name="env"
|
|
title="Environment Settings"
|
|
description={
|
|
<span>
|
|
You can add environment variables to your resource.
|
|
{hasChanges && (
|
|
<span className="text-yellow-500 ml-2">
|
|
(You have unsaved changes)
|
|
</span>
|
|
)}
|
|
</span>
|
|
}
|
|
placeholder={["NODE_ENV=production", "PORT=3000"].join("\n")}
|
|
/>
|
|
{data?.buildType === "dockerfile" && (
|
|
<Secrets
|
|
name="buildArgs"
|
|
title="Build-time Arguments"
|
|
description={
|
|
<span>
|
|
Arguments are available only at build-time. See
|
|
documentation
|
|
<a
|
|
className="text-primary"
|
|
href="https://docs.docker.com/build/building/variables/"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
>
|
|
here
|
|
</a>
|
|
.
|
|
</span>
|
|
}
|
|
placeholder="NPM_TOKEN=xyz"
|
|
/>
|
|
)}
|
|
{data?.buildType === "dockerfile" && (
|
|
<Secrets
|
|
name="buildSecrets"
|
|
title="Build-time Secrets"
|
|
description={
|
|
<span>
|
|
Secrets are specially designed for sensitive information and
|
|
are only available at build-time. See documentation
|
|
<a
|
|
className="text-primary"
|
|
href="https://docs.docker.com/build/building/secrets/"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
>
|
|
here
|
|
</a>
|
|
.
|
|
</span>
|
|
}
|
|
placeholder="NPM_TOKEN=xyz"
|
|
/>
|
|
)}
|
|
<div className="flex flex-row justify-end gap-2">
|
|
{hasChanges && (
|
|
<Button type="button" variant="outline" onClick={handleCancel}>
|
|
Cancel
|
|
</Button>
|
|
)}
|
|
<Button
|
|
isLoading={isLoading}
|
|
className="w-fit"
|
|
type="submit"
|
|
disabled={!hasChanges}
|
|
>
|
|
Save
|
|
</Button>
|
|
</div>
|
|
</form>
|
|
</Form>
|
|
</Card>
|
|
);
|
|
};
|