mirror of
https://github.com/LukeHagar/dokploy.git
synced 2025-12-09 20:37:45 +00:00
* refactor: add sidebar * chore: add deps * refactor: update sidebar * refactor: another layout * refactor: update variant * refactor: change layout * refactor: change variant * refactor: enhance sidebar navigation with active state management * feat: add project button to dashboard * Merge branch 'canary' into feat/add-sidebar * refactor: add loader * refactor: update destinations and refactor * refactor: ui refactor certificates * refactor: delete unused files * refactor: remove unused files and duplicate registry * refactor: update style registry * refactor: add new design registry * refactor: enhance git providers * refactor: remove duplicate files * refactor: update * refactor: update users * refactor: delete unused files * refactor: update profile * refactor: apply changes * refactor: update UI * refactor: enhance Docker monitoring UI layout * refactor: add theme toggle and language selection to user navigation (#1083) * refactor: remove unused files * feat: add filter to services * refactor: add active items * refactor: remove tab prop * refactor: remove unused files * refactor: remove duplicated files * refactor: remove unused files * refactor: remove duplicate files * refactor: remove unused files * refactor: delete unused files * refactor: remove unsued files * refactor: delete unused files * refactor: lint * refactor: remove unused secuirty * refactor: delete unused files * refactor: delete unused files * remove imports * refactor: add update button * refactor: delete unused files * refactor: remove unused code * refactor: remove unused files * refactor: update login page * refactor: update login UI * refactor: update ui reset password * refactor: add justify end * feat: add suscriptions * feat: add sheet * feat: add logs for postgres * feat: add logs for all databases * feat: add server logs with drawer logs * refactor: remove unused files * refactor: add refetch when closing * refactor: fix linter * chore: bump node-20 * revert * refactor: fix conflicts * refactor: update * refactor: add missing deps * refactor: delete duplicate files * refactor: delete unsued files * chore: lint * refactor: remove unsued file * refactor: add refetch * refactor: remove duplicated files * refactor: delete unused files * refactor: update setup onboarding * refactor: add breadcrumb * refactor: apply updates * refactor: add faker * refactor: use 0 in validation * refactor: show correct state * refactor: update --------- Co-authored-by: vishalkadam47 <vishal@jeevops.com> Co-authored-by: Vishal kadam <107353260+vishalkadam47@users.noreply.github.com>
122 lines
3.7 KiB
TypeScript
122 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 React from "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>
|
|
);
|
|
};
|