mirror of
https://github.com/tale/headplane.git
synced 2026-08-05 19:57:42 +00:00
40 lines
1.4 KiB
TypeScript
40 lines
1.4 KiB
TypeScript
import Dialog from "~/components/Dialog";
|
|
import type { Machine, User } from "~/types";
|
|
|
|
interface DeleteProps {
|
|
user: User;
|
|
machines: Machine[];
|
|
isOpen: boolean;
|
|
setIsOpen: (isOpen: boolean) => void;
|
|
}
|
|
|
|
export default function DeleteUser({ user, machines, isOpen, setIsOpen }: DeleteProps) {
|
|
const name = user.name || user.displayName;
|
|
|
|
return (
|
|
<Dialog isOpen={isOpen} onOpenChange={setIsOpen}>
|
|
<Dialog.Panel variant={machines.length > 0 ? "unactionable" : "normal"}>
|
|
<Dialog.Title>Delete {name}?</Dialog.Title>
|
|
{machines.length > 0 ? (
|
|
<Dialog.Text className="mb-6">
|
|
Users cannot be deleted if they have machines. Please delete or re-assign their machines
|
|
to other users before proceeding.
|
|
</Dialog.Text>
|
|
) : (
|
|
<Dialog.Text className="mb-6">
|
|
Deleted users cannot be recovered.
|
|
{user.provider === "oidc" && (
|
|
<p className="mt-4 text-sm text-mist-600 dark:text-mist-300">
|
|
Since this user is authenticated via an external provider, they will be recreated if
|
|
they sign in again.
|
|
</p>
|
|
)}
|
|
</Dialog.Text>
|
|
)}
|
|
<input name="action_id" type="hidden" value="delete_user" />
|
|
<input name="user_id" type="hidden" value={user.id} />
|
|
</Dialog.Panel>
|
|
</Dialog>
|
|
);
|
|
}
|