mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 17:05:18 +00:00
41 lines
1.0 KiB
TypeScript
41 lines
1.0 KiB
TypeScript
import { useContext, useEffect } from "react";
|
|
import { InjectedRouter } from "react-router";
|
|
|
|
import { AppContext } from "context/app";
|
|
import { NotificationContext } from "context/notification";
|
|
import sessionsAPI from "services/entities/sessions";
|
|
import { clearToken } from "utilities/local";
|
|
|
|
interface ILogoutPageProps {
|
|
router: InjectedRouter;
|
|
}
|
|
|
|
const LogoutPage = ({ router }: ILogoutPageProps) => {
|
|
const { isSandboxMode } = useContext(AppContext);
|
|
const { renderFlash } = useContext(NotificationContext);
|
|
|
|
useEffect(() => {
|
|
const logoutUser = async () => {
|
|
try {
|
|
await sessionsAPI.destroy();
|
|
clearToken();
|
|
setTimeout(() => {
|
|
window.location.href = isSandboxMode
|
|
? "https://www.fleetdm.com/logout"
|
|
: "/";
|
|
}, 500);
|
|
} catch (response) {
|
|
console.error(response);
|
|
router.goBack();
|
|
return renderFlash("error", "Unable to log out of your account");
|
|
}
|
|
};
|
|
|
|
logoutUser();
|
|
}, []);
|
|
|
|
return null;
|
|
};
|
|
|
|
export default LogoutPage;
|