mirror of
https://github.com/tale/headplane.git
synced 2026-08-17 08:37:49 +00:00
31 lines
1000 B
TypeScript
31 lines
1000 B
TypeScript
import { useNavigate } from "react-router";
|
|
|
|
import Dialog, { DialogPanel } from "~/components/dialog";
|
|
import Text from "~/components/text";
|
|
import Title from "~/components/title";
|
|
import type { Machine } from "~/types";
|
|
|
|
interface DeleteProps {
|
|
machine: Machine;
|
|
isOpen: boolean;
|
|
setIsOpen: (isOpen: boolean) => void;
|
|
}
|
|
|
|
export default function Delete({ machine, isOpen, setIsOpen }: DeleteProps) {
|
|
const navigate = useNavigate();
|
|
|
|
return (
|
|
<Dialog isOpen={isOpen} onOpenChange={setIsOpen}>
|
|
<DialogPanel onSubmit={() => navigate("/machines")} variant="destructive">
|
|
<Title>Remove {machine.givenName}</Title>
|
|
<Text>
|
|
This machine will be permanently removed from your network. To re-add it, you will need to
|
|
reauthenticate to your tailnet from the device.
|
|
</Text>
|
|
<input name="action_id" type="hidden" value="delete" />
|
|
<input name="node_id" type="hidden" value={machine.id} />
|
|
</DialogPanel>
|
|
</Dialog>
|
|
);
|
|
}
|