mirror of
https://github.com/Dokploy/dokploy.git
synced 2026-07-12 01:15:23 +02:00
* feat: update dependencies and enhance UI components in Dokploy - Updated various package versions in pnpm-lock.yaml to improve compatibility and performance, including React and Tailwind CSS. - Modified components.json to change the styling to "radix-nova" and added new properties for icon library and menu color. - Refactored multiple components to use updated class names for better styling consistency and responsiveness. - Removed unused Radix UI components from package.json to streamline dependencies. - Adjusted layout and styling in several dashboard components for improved user experience and visual appeal. - Enhanced tooltip and form item components for better accessibility and usability. * refactor: enhance UI components in HandleCertificate and SidebarLogo - Updated the HandleCertificate component to improve dialog content height and textarea styling for better usability. - Adjusted the SidebarLogo component layout to enhance alignment and spacing, ensuring a more consistent appearance across the sidebar. - Implemented responsive design adjustments to textarea elements, preventing overflow and improving user experience. * refactor: improve UI consistency and styling across dashboard components - Updated Card components in ShowDeployments, ShowSchedules, and ShowVolumeBackups to remove unnecessary border styles for a cleaner look. - Enhanced TabsList components in ShowProviderForm and ShowProviderFormCompose by adding a variant for improved visual distinction. - Adjusted spacing in AdvancedEnvironmentSelector for better layout and readability. - Removed redundant border classes in Service component for a more streamlined design. * [autofix.ci] apply automated fixes * chore: update package dependencies and refactor email rendering - Upgraded React and React DOM to version 19.2.7 across multiple packages for improved performance and compatibility. - Updated TSX to version 4.22.4 in various package.json files. - Refactored email rendering from `renderAsync` to `render` in notification utilities and email templates for consistency. - Adjusted Tailwind configuration usage in email templates to utilize a centralized configuration file. These changes enhance the overall stability and maintainability of the codebase. * refactor: update badge variants across dashboard components - Changed badge variant from "outline-solid" to "outline" in multiple components including columns, show-domains, and various deployment tables for consistency in styling. - Updated button variants in billing and project templates to align with the new badge styling. - Enhanced input components to support password generation and error messaging, improving user experience. These changes streamline the UI and ensure a cohesive design across the application. * refactor: clean up calendar component imports and structure - Removed redundant imports of icons from lucide-react and streamlined the import statements for better readability. - Adjusted the placement of type imports to enhance code organization. These changes improve the maintainability and clarity of the calendar component. * [autofix.ci] apply automated fixes --------- Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
184 lines
4.6 KiB
TypeScript
184 lines
4.6 KiB
TypeScript
import { standardSchemaResolver as zodResolver } from "@hookform/resolvers/standard-schema";
|
|
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 { Button } from "@/components/ui/button";
|
|
import {
|
|
Form,
|
|
FormControl,
|
|
FormField,
|
|
FormItem,
|
|
FormMessage,
|
|
} from "@/components/ui/form";
|
|
import { api } from "@/utils/api";
|
|
import { validateAndFormatYAML } from "../../application/advanced/traefik/update-traefik-config";
|
|
|
|
interface Props {
|
|
composeId: string;
|
|
}
|
|
|
|
const AddComposeFile = z.object({
|
|
composeFile: z.string(),
|
|
});
|
|
|
|
type AddComposeFile = z.infer<typeof AddComposeFile>;
|
|
|
|
export const ComposeFileEditor = ({ composeId }: Props) => {
|
|
const { data: permissions } = api.user.getPermissions.useQuery();
|
|
const canUpdate = permissions?.service.create ?? false;
|
|
const utils = api.useUtils();
|
|
const { data, refetch } = api.compose.one.useQuery(
|
|
{
|
|
composeId,
|
|
},
|
|
{ enabled: !!composeId },
|
|
);
|
|
|
|
const { mutateAsync, isPending } = api.compose.update.useMutation();
|
|
const [hasUnsavedChanges, setHasUnsavedChanges] = useState(false);
|
|
|
|
const form = useForm<AddComposeFile>({
|
|
defaultValues: {
|
|
composeFile: "",
|
|
},
|
|
resolver: zodResolver(AddComposeFile),
|
|
});
|
|
|
|
const composeFile = form.watch("composeFile");
|
|
|
|
useEffect(() => {
|
|
if (data) {
|
|
form.reset({
|
|
composeFile: data.composeFile || "",
|
|
});
|
|
}
|
|
}, [form, data]);
|
|
|
|
useEffect(() => {
|
|
if (data?.composeFile !== undefined) {
|
|
setHasUnsavedChanges(composeFile !== data.composeFile);
|
|
}
|
|
}, [composeFile, data?.composeFile]);
|
|
|
|
const onSubmit = async (data: AddComposeFile) => {
|
|
const { valid, error } = validateAndFormatYAML(data.composeFile);
|
|
if (!valid) {
|
|
form.setError("composeFile", {
|
|
type: "manual",
|
|
message: error || "Invalid YAML",
|
|
});
|
|
return;
|
|
}
|
|
|
|
form.clearErrors("composeFile");
|
|
await mutateAsync({
|
|
composeId,
|
|
composeFile: data.composeFile,
|
|
composePath: "./docker-compose.yml",
|
|
sourceType: "raw",
|
|
})
|
|
.then(async () => {
|
|
toast.success("Compose config Updated");
|
|
setHasUnsavedChanges(false);
|
|
refetch();
|
|
await utils.compose.getConvertedCompose.invalidate({
|
|
composeId,
|
|
});
|
|
})
|
|
.catch(() => {
|
|
toast.error("Error updating the Compose config");
|
|
});
|
|
};
|
|
|
|
// Add keyboard shortcut for Ctrl+S/Cmd+S
|
|
useEffect(() => {
|
|
const handleKeyDown = (e: KeyboardEvent) => {
|
|
if ((e.ctrlKey || e.metaKey) && e.code === "KeyS" && !isPending) {
|
|
e.preventDefault();
|
|
form.handleSubmit(onSubmit)();
|
|
}
|
|
};
|
|
|
|
document.addEventListener("keydown", handleKeyDown);
|
|
return () => {
|
|
document.removeEventListener("keydown", handleKeyDown);
|
|
};
|
|
}, [form, onSubmit, isPending]);
|
|
|
|
return (
|
|
<>
|
|
<div className="w-full flex flex-col gap-4 ">
|
|
<div className="flex items-center justify-between">
|
|
<div>
|
|
<h3 className="text-lg font-medium">Compose File</h3>
|
|
<p className="text-sm text-muted-foreground">
|
|
Configure your Docker Compose file for this service.
|
|
{hasUnsavedChanges && (
|
|
<span className="text-yellow-500 ml-2">
|
|
(You have unsaved changes)
|
|
</span>
|
|
)}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
<Form {...form}>
|
|
<form
|
|
id="hook-form-save-compose-file"
|
|
onSubmit={form.handleSubmit(onSubmit)}
|
|
className="w-full relative space-y-4"
|
|
>
|
|
<FormField
|
|
control={form.control}
|
|
name="composeFile"
|
|
render={({ field }) => (
|
|
<FormItem className="overflow-auto">
|
|
<FormControl className="">
|
|
<div className="flex flex-col gap-4 w-full outline-hidden focus:outline-hidden overflow-auto">
|
|
<CodeEditor
|
|
// disabled
|
|
language="yaml"
|
|
value={field.value}
|
|
className="font-mono"
|
|
wrapperClassName="compose-file-editor"
|
|
placeholder={`version: '3'
|
|
services:
|
|
web:
|
|
image: nginx
|
|
ports:
|
|
- "80:80"
|
|
|
|
`}
|
|
onChange={(value) => {
|
|
field.onChange(value);
|
|
}}
|
|
/>
|
|
</div>
|
|
</FormControl>
|
|
<pre>
|
|
<FormMessage />
|
|
</pre>
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
</form>
|
|
</Form>
|
|
<div className="flex justify-between flex-col lg:flex-row gap-2">
|
|
<div className="w-full flex flex-col lg:flex-row gap-4 items-end" />
|
|
{canUpdate && (
|
|
<Button
|
|
type="submit"
|
|
form="hook-form-save-compose-file"
|
|
isLoading={isPending}
|
|
className="lg:w-fit w-full"
|
|
>
|
|
Save
|
|
</Button>
|
|
)}
|
|
</div>
|
|
</div>
|
|
</>
|
|
);
|
|
};
|