mirror of
https://github.com/LukeHagar/dokploy.git
synced 2025-12-06 04:19:37 +00:00
47 lines
1.1 KiB
TypeScript
47 lines
1.1 KiB
TypeScript
import { Badge } from "@/components/ui/badge";
|
|
import {
|
|
Card,
|
|
CardContent,
|
|
CardDescription,
|
|
CardHeader,
|
|
CardTitle,
|
|
} from "@/components/ui/card";
|
|
import { api } from "@/utils/api";
|
|
import { ComposeActions } from "./actions";
|
|
import { ShowProviderFormCompose } from "./generic/show";
|
|
interface Props {
|
|
composeId: string;
|
|
}
|
|
|
|
export const ShowGeneralCompose = ({ composeId }: Props) => {
|
|
const { data } = api.compose.one.useQuery(
|
|
{ composeId },
|
|
{
|
|
enabled: !!composeId,
|
|
},
|
|
);
|
|
|
|
return (
|
|
<>
|
|
<Card className="bg-background">
|
|
<CardHeader>
|
|
<div className="flex flex-row gap-2 justify-between flex-wrap">
|
|
<CardTitle className="text-xl">Deploy Settings</CardTitle>
|
|
<Badge>
|
|
{data?.composeType === "docker-compose" ? "Compose" : "Stack"}
|
|
</Badge>
|
|
</div>
|
|
|
|
<CardDescription>
|
|
Create a compose file to deploy your compose
|
|
</CardDescription>
|
|
</CardHeader>
|
|
<CardContent className="flex flex-col gap-4 flex-wrap">
|
|
<ComposeActions composeId={composeId} />
|
|
</CardContent>
|
|
</Card>
|
|
<ShowProviderFormCompose composeId={composeId} />
|
|
</>
|
|
);
|
|
};
|