84 lines
2.1 KiB
TypeScript
84 lines
2.1 KiB
TypeScript
import { ChangeEvent, FC, useEffect, useState } from "react";
|
|
import styled from "styled-components";
|
|
import toast from "react-hot-toast";
|
|
import Modal from "../../common/component/Modal";
|
|
import StyledModal from "../../common/component/styled/Modal";
|
|
import Button from "../../common/component/styled/Button";
|
|
import Checkbox from "../../common/component/styled/Checkbox";
|
|
import useLogout from "../../common/hook/useLogout";
|
|
|
|
const StyledConfirm = styled(StyledModal)`
|
|
.clear {
|
|
font-weight: normal;
|
|
font-size: 14px;
|
|
line-height: 20px;
|
|
color: #6b7280;
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
align-items: center;
|
|
.txt {
|
|
cursor: pointer;
|
|
color: orange;
|
|
margin-right: 12px;
|
|
}
|
|
input {
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
`;
|
|
|
|
interface Props {
|
|
closeModal: () => void;
|
|
}
|
|
|
|
const LogoutConfirmModal: FC<Props> = ({ closeModal }) => {
|
|
const [clearLocal, setClearLocal] = useState(false);
|
|
const { logout, exited, exiting, clearLocalData } = useLogout();
|
|
const handleLogout = () => {
|
|
logout();
|
|
};
|
|
|
|
const handleCheck = (evt: ChangeEvent<HTMLInputElement>) => {
|
|
setClearLocal(evt.target.checked);
|
|
};
|
|
|
|
useEffect(() => {
|
|
if (exited) {
|
|
if (clearLocal) {
|
|
clearLocalData();
|
|
}
|
|
toast.success("Logout Successfully");
|
|
setTimeout(() => {
|
|
location.href = `${location.origin}#/login`;
|
|
}, 500);
|
|
// location.reload();
|
|
}
|
|
}, [exited, clearLocal]);
|
|
|
|
return (
|
|
<Modal id="modal-modal">
|
|
<StyledConfirm
|
|
title="Log Out"
|
|
description="Are you sure want to log out this account?"
|
|
buttons={
|
|
<>
|
|
<Button onClick={closeModal}>Cancel</Button>
|
|
<Button onClick={handleLogout} className="danger">
|
|
{exiting ? "Logging out" : "Log Out"}
|
|
</Button>
|
|
</>
|
|
}
|
|
>
|
|
<div className="clear">
|
|
<label htmlFor="clear_cb" className="txt">
|
|
Clear local data
|
|
</label>
|
|
<Checkbox name="clear_cb" checked={clearLocal} onChange={handleCheck} />
|
|
</div>
|
|
</StyledConfirm>
|
|
</Modal>
|
|
);
|
|
};
|
|
|
|
export default LogoutConfirmModal;
|