mirror of
https://github.com/tale/headplane.git
synced 2026-08-26 04:16:49 +00:00
37 lines
1.2 KiB
TypeScript
37 lines
1.2 KiB
TypeScript
import Dialog, { DialogPanel } from "~/components/dialog";
|
|
import Notice from "~/components/notice";
|
|
import Text from "~/components/text";
|
|
import Title from "~/components/title";
|
|
|
|
interface TransferOwnershipProps {
|
|
targetHeadplaneUserId: string;
|
|
targetDisplayName: string;
|
|
isOpen: boolean;
|
|
setIsOpen: (isOpen: boolean) => void;
|
|
}
|
|
|
|
export default function TransferOwnership({
|
|
targetHeadplaneUserId,
|
|
targetDisplayName,
|
|
isOpen,
|
|
setIsOpen,
|
|
}: TransferOwnershipProps) {
|
|
return (
|
|
<Dialog isOpen={isOpen} onOpenChange={setIsOpen}>
|
|
<DialogPanel variant="destructive">
|
|
<Title>Transfer ownership to {targetDisplayName}?</Title>
|
|
<Text className="mb-6">
|
|
This will make {targetDisplayName} the new owner of this Headplane instance. You will be
|
|
demoted to an Admin. This action cannot be easily undone.
|
|
</Text>
|
|
<Notice variant="warning">
|
|
Only the owner can transfer ownership. After this, you will no longer be able to manage
|
|
ownership.
|
|
</Notice>
|
|
<input name="action_id" type="hidden" value="transfer_ownership" />
|
|
<input name="headplane_user_id" type="hidden" value={targetHeadplaneUserId} />
|
|
</DialogPanel>
|
|
</Dialog>
|
|
);
|
|
}
|