mirror of
https://github.com/LukeHagar/dokploy.git
synced 2025-12-09 20:37:45 +00:00
121 lines
3.7 KiB
TypeScript
121 lines
3.7 KiB
TypeScript
import { DialogAction } from "@/components/shared/dialog-action";
|
|
import { Button } from "@/components/ui/button";
|
|
import {
|
|
Card,
|
|
CardContent,
|
|
CardDescription,
|
|
CardHeader,
|
|
CardTitle,
|
|
} from "@/components/ui/card";
|
|
import { api } from "@/utils/api";
|
|
import { LockKeyhole, Trash2 } from "lucide-react";
|
|
import { toast } from "sonner";
|
|
import { HandleSecurity } from "./handle-security";
|
|
|
|
interface Props {
|
|
applicationId: string;
|
|
}
|
|
|
|
export const ShowSecurity = ({ applicationId }: Props) => {
|
|
const { data, refetch } = api.application.one.useQuery(
|
|
{
|
|
applicationId,
|
|
},
|
|
{ enabled: !!applicationId },
|
|
);
|
|
|
|
const { mutateAsync: deleteSecurity, isLoading: isRemoving } =
|
|
api.security.delete.useMutation();
|
|
|
|
const utils = api.useUtils();
|
|
return (
|
|
<Card className="bg-background">
|
|
<CardHeader className="flex flex-row justify-between flex-wrap gap-4">
|
|
<div>
|
|
<CardTitle className="text-xl">Security</CardTitle>
|
|
<CardDescription>Add basic auth to your application</CardDescription>
|
|
</div>
|
|
|
|
{data && data?.security.length > 0 && (
|
|
<HandleSecurity applicationId={applicationId}>
|
|
Add Security
|
|
</HandleSecurity>
|
|
)}
|
|
</CardHeader>
|
|
<CardContent className="flex flex-col gap-4">
|
|
{data?.security.length === 0 ? (
|
|
<div className="flex w-full flex-col items-center justify-center gap-3 pt-10">
|
|
<LockKeyhole className="size-8 text-muted-foreground" />
|
|
<span className="text-base text-muted-foreground">
|
|
No security configured
|
|
</span>
|
|
<HandleSecurity applicationId={applicationId}>
|
|
Add Security
|
|
</HandleSecurity>
|
|
</div>
|
|
) : (
|
|
<div className="flex flex-col pt-2">
|
|
<div className="flex flex-col gap-6 ">
|
|
{data?.security.map((security) => (
|
|
<div key={security.securityId}>
|
|
<div className="flex w-full flex-col sm:flex-row justify-between sm:items-center gap-4 sm:gap-10 border rounded-lg p-4">
|
|
<div className="grid grid-cols-1 sm:grid-cols-2 flex-col gap-4 sm:gap-8">
|
|
<div className="flex flex-col gap-1">
|
|
<span className="font-medium">Username</span>
|
|
<span className="text-sm text-muted-foreground">
|
|
{security.username}
|
|
</span>
|
|
</div>
|
|
<div className="flex flex-col gap-1">
|
|
<span className="font-medium">Password</span>
|
|
<span className="text-sm text-muted-foreground">
|
|
{security.password}
|
|
</span>
|
|
</div>
|
|
</div>
|
|
<div className="flex flex-row gap-2">
|
|
<HandleSecurity
|
|
securityId={security.securityId}
|
|
applicationId={applicationId}
|
|
/>
|
|
<DialogAction
|
|
title="Delete Security"
|
|
description="Are you sure you want to delete this security?"
|
|
type="destructive"
|
|
onClick={async () => {
|
|
await deleteSecurity({
|
|
securityId: security.securityId,
|
|
})
|
|
.then(() => {
|
|
refetch();
|
|
utils.application.readTraefikConfig.invalidate({
|
|
applicationId,
|
|
});
|
|
toast.success("Security deleted successfully");
|
|
})
|
|
.catch(() => {
|
|
toast.error("Error deleting security");
|
|
});
|
|
}}
|
|
>
|
|
<Button
|
|
variant="ghost"
|
|
size="icon"
|
|
className="group hover:bg-red-500/10"
|
|
isLoading={isRemoving}
|
|
>
|
|
<Trash2 className="size-4 text-primary group-hover:text-red-500" />
|
|
</Button>
|
|
</DialogAction>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
))}
|
|
</div>
|
|
</div>
|
|
)}
|
|
</CardContent>
|
|
</Card>
|
|
);
|
|
};
|