mirror of
https://github.com/dokploy/dokploy.git
synced 2026-06-14 03:19:49 +00:00
747c2137c9
This reverts commit e6cb6454db.
179 lines
4.8 KiB
TypeScript
179 lines
4.8 KiB
TypeScript
import { DialogAction } from "@/components/shared/dialog-action";
|
|
import { DrawerLogs } from "@/components/shared/drawer-logs";
|
|
import { Button } from "@/components/ui/button";
|
|
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card";
|
|
import { api } from "@/utils/api";
|
|
import { Ban, CheckCircle2, RefreshCcw, Terminal } from "lucide-react";
|
|
import { useState } from "react";
|
|
import { toast } from "sonner";
|
|
import { type LogLine, parseLogs } from "../../docker/logs/utils";
|
|
import { DockerTerminalModal } from "../../settings/web-server/docker-terminal-modal";
|
|
interface Props {
|
|
mongoId: string;
|
|
}
|
|
|
|
export const ShowGeneralMongo = ({ mongoId }: Props) => {
|
|
const { data, refetch } = api.mongo.one.useQuery(
|
|
{
|
|
mongoId,
|
|
},
|
|
{ enabled: !!mongoId },
|
|
);
|
|
|
|
const { mutateAsync: reload, isLoading: isReloading } =
|
|
api.mongo.reload.useMutation();
|
|
|
|
const { mutateAsync: start, isLoading: isStarting } =
|
|
api.mongo.start.useMutation();
|
|
|
|
const { mutateAsync: stop, isLoading: isStopping } =
|
|
api.mongo.stop.useMutation();
|
|
|
|
const [isDrawerOpen, setIsDrawerOpen] = useState(false);
|
|
const [filteredLogs, setFilteredLogs] = useState<LogLine[]>([]);
|
|
const [isDeploying, setIsDeploying] = useState(false);
|
|
api.mongo.deployWithLogs.useSubscription(
|
|
{
|
|
mongoId: mongoId,
|
|
},
|
|
{
|
|
enabled: isDeploying,
|
|
onData(log) {
|
|
if (!isDrawerOpen) {
|
|
setIsDrawerOpen(true);
|
|
}
|
|
|
|
if (log === "Deployment completed successfully!") {
|
|
setIsDeploying(false);
|
|
}
|
|
|
|
const parsedLogs = parseLogs(log);
|
|
setFilteredLogs((prev) => [...prev, ...parsedLogs]);
|
|
},
|
|
onError(error) {
|
|
console.error("Deployment logs error:", error);
|
|
setIsDeploying(false);
|
|
},
|
|
},
|
|
);
|
|
return (
|
|
<>
|
|
<div className="flex w-full flex-col gap-5 ">
|
|
<Card className="bg-background">
|
|
<CardHeader>
|
|
<CardTitle className="text-xl">Deploy Settings</CardTitle>
|
|
</CardHeader>
|
|
<CardContent className="flex flex-row gap-4 flex-wrap">
|
|
<DialogAction
|
|
title="Deploy Mongo"
|
|
description="Are you sure you want to deploy this mongo?"
|
|
type="default"
|
|
onClick={async () => {
|
|
setIsDeploying(true);
|
|
await new Promise((resolve) => setTimeout(resolve, 1000));
|
|
refetch();
|
|
}}
|
|
>
|
|
<Button
|
|
variant="default"
|
|
isLoading={data?.applicationStatus === "running"}
|
|
>
|
|
Deploy
|
|
</Button>
|
|
</DialogAction>
|
|
<DialogAction
|
|
title="Reload Mongo"
|
|
description="Are you sure you want to reload this mongo?"
|
|
type="default"
|
|
onClick={async () => {
|
|
await reload({
|
|
mongoId: mongoId,
|
|
appName: data?.appName || "",
|
|
})
|
|
.then(() => {
|
|
toast.success("Mongo reloaded successfully");
|
|
refetch();
|
|
})
|
|
.catch(() => {
|
|
toast.error("Error reloading Mongo");
|
|
});
|
|
}}
|
|
>
|
|
<Button variant="secondary" isLoading={isReloading}>
|
|
Reload
|
|
<RefreshCcw className="size-4" />
|
|
</Button>
|
|
</DialogAction>
|
|
{data?.applicationStatus === "idle" ? (
|
|
<DialogAction
|
|
title="Start Mongo"
|
|
description="Are you sure you want to start this mongo?"
|
|
type="default"
|
|
onClick={async () => {
|
|
await start({
|
|
mongoId: mongoId,
|
|
})
|
|
.then(() => {
|
|
toast.success("Mongo started successfully");
|
|
refetch();
|
|
})
|
|
.catch(() => {
|
|
toast.error("Error starting Mongo");
|
|
});
|
|
}}
|
|
>
|
|
<Button variant="secondary" isLoading={isStarting}>
|
|
Start
|
|
<CheckCircle2 className="size-4" />
|
|
</Button>
|
|
</DialogAction>
|
|
) : (
|
|
<DialogAction
|
|
title="Stop Mongo"
|
|
description="Are you sure you want to stop this mongo?"
|
|
type="default"
|
|
onClick={async () => {
|
|
await stop({
|
|
mongoId: mongoId,
|
|
})
|
|
.then(() => {
|
|
toast.success("Mongo stopped successfully");
|
|
refetch();
|
|
})
|
|
.catch(() => {
|
|
toast.error("Error stopping Mongo");
|
|
});
|
|
}}
|
|
>
|
|
<Button variant="destructive" isLoading={isStopping}>
|
|
Stop
|
|
<Ban className="size-4" />
|
|
</Button>
|
|
</DialogAction>
|
|
)}
|
|
<DockerTerminalModal
|
|
appName={data?.appName || ""}
|
|
serverId={data?.serverId || ""}
|
|
>
|
|
<Button variant="outline">
|
|
<Terminal />
|
|
Open Terminal
|
|
</Button>
|
|
</DockerTerminalModal>
|
|
</CardContent>
|
|
</Card>
|
|
<DrawerLogs
|
|
isOpen={isDrawerOpen}
|
|
onClose={() => {
|
|
setIsDrawerOpen(false);
|
|
setFilteredLogs([]);
|
|
setIsDeploying(false);
|
|
refetch();
|
|
}}
|
|
filteredLogs={filteredLogs}
|
|
/>
|
|
</div>
|
|
</>
|
|
);
|
|
};
|