forked from github/plane
ddc28d37d3
* chore: `switch account` modal revamp. * chore: workspace invitation page message display logic update. * chore: update `showDeleteAccountModal` state to `showSwitchAccountModal`.
111 lines
4.1 KiB
TypeScript
111 lines
4.1 KiB
TypeScript
import React, { useState } from "react";
|
|
import { useRouter } from "next/router";
|
|
import { useTheme } from "next-themes";
|
|
import { ArrowRightLeft } from "lucide-react";
|
|
import { Dialog, Transition } from "@headlessui/react";
|
|
// ui
|
|
import { Button, TOAST_TYPE, setToast } from "@plane/ui";
|
|
// hooks
|
|
import { useUser } from "@/hooks/store";
|
|
|
|
type Props = {
|
|
isOpen: boolean;
|
|
onClose: () => void;
|
|
};
|
|
|
|
export const SwitchAccountModal: React.FC<Props> = (props) => {
|
|
const { isOpen, onClose } = props;
|
|
// states
|
|
const [switchingAccount, setSwitchingAccount] = useState(false);
|
|
// router
|
|
const router = useRouter();
|
|
// store hooks
|
|
const { data: userData, signOut } = useUser();
|
|
|
|
const { setTheme } = useTheme();
|
|
|
|
const handleClose = () => {
|
|
setSwitchingAccount(false);
|
|
onClose();
|
|
};
|
|
|
|
const handleSwitchAccount = async () => {
|
|
setSwitchingAccount(true);
|
|
|
|
await signOut()
|
|
.then(() => {
|
|
setTheme("system");
|
|
router.push("/");
|
|
handleClose();
|
|
})
|
|
.catch(() =>
|
|
setToast({
|
|
type: TOAST_TYPE.ERROR,
|
|
title: "Error!",
|
|
message: "Failed to sign out. Please try again.",
|
|
})
|
|
)
|
|
.finally(() => setSwitchingAccount(false));
|
|
};
|
|
|
|
return (
|
|
<Transition.Root show={isOpen} as={React.Fragment}>
|
|
<Dialog as="div" className="relative z-20" onClose={handleClose}>
|
|
<Transition.Child
|
|
as={React.Fragment}
|
|
enter="ease-out duration-300"
|
|
enterFrom="opacity-0"
|
|
enterTo="opacity-100"
|
|
leave="ease-in duration-200"
|
|
leaveFrom="opacity-100"
|
|
leaveTo="opacity-0"
|
|
>
|
|
<div className="fixed inset-0 bg-custom-backdrop transition-opacity" />
|
|
</Transition.Child>
|
|
|
|
<div className="fixed inset-0 z-20 overflow-y-auto">
|
|
<div className="flex min-h-full items-end justify-center p-4 text-center sm:items-center sm:p-0">
|
|
<Transition.Child
|
|
as={React.Fragment}
|
|
enter="ease-out duration-300"
|
|
enterFrom="opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95"
|
|
enterTo="opacity-100 translate-y-0 sm:scale-100"
|
|
leave="ease-in duration-200"
|
|
leaveFrom="opacity-100 translate-y-0 sm:scale-100"
|
|
leaveTo="opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95"
|
|
>
|
|
<Dialog.Panel className="relative transform overflow-hidden rounded-lg bg-custom-background-100 text-left shadow-custom-shadow-md transition-all sm:my-8 sm:w-[40rem]">
|
|
<div className="p-6 pb-1">
|
|
<div className="flex gap-x-4">
|
|
<div className="flex items-start">
|
|
<div className="grid place-items-center rounded-full bg-custom-primary-100/20 p-4">
|
|
<ArrowRightLeft className="h-5 w-5 text-custom-primary-100" aria-hidden="true" />
|
|
</div>
|
|
</div>
|
|
<div className="flex flex-col py-3 gap-y-6">
|
|
<Dialog.Title as="h3" className="text-2xl font-medium leading-6 text-onboarding-text-100">
|
|
Switch account
|
|
</Dialog.Title>
|
|
{userData?.email && (
|
|
<div className="text-base font-normal text-onboarding-text-200">
|
|
If you have signed up via <span className="text-custom-primary-100">{userData.email}</span>{" "}
|
|
un-intentionally, you can switch your account to a different one from here.
|
|
</div>
|
|
)}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div className="mb-2 flex items-center justify-end gap-3 p-4 sm:px-6">
|
|
<Button variant="accent-primary" onClick={handleSwitchAccount} disabled={switchingAccount}>
|
|
{switchingAccount ? "Switching..." : "Switch account"}
|
|
</Button>
|
|
</div>
|
|
</Dialog.Panel>
|
|
</Transition.Child>
|
|
</div>
|
|
</div>
|
|
</Dialog>
|
|
</Transition.Root>
|
|
);
|
|
};
|