63 lines
1.2 KiB
TypeScript
63 lines
1.2 KiB
TypeScript
import { FC } from "react";
|
|
import styled, { keyframes } from "styled-components";
|
|
import { Ring } from "@uiball/loaders";
|
|
import Button from "./styled/Button";
|
|
import useLogout from "../hook/useLogout";
|
|
|
|
const DelayVisible = keyframes`
|
|
from {
|
|
opacity: 0;
|
|
}
|
|
to {
|
|
opacity: 1;
|
|
}
|
|
`;
|
|
|
|
const StyledWrapper = styled.div`
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 15px;
|
|
align-items: center;
|
|
justify-content: center;
|
|
|
|
&.fullscreen {
|
|
width: 100vw;
|
|
height: 100vh;
|
|
}
|
|
|
|
.reload {
|
|
opacity: 0;
|
|
|
|
&.visible {
|
|
animation: ${DelayVisible} 1s forwards;
|
|
animation-delay: 30s;
|
|
}
|
|
}
|
|
`;
|
|
|
|
interface Props {
|
|
reload?: boolean;
|
|
fullscreen?: boolean;
|
|
}
|
|
|
|
const Loading: FC<Props> = ({ reload = false, fullscreen = false }) => {
|
|
const { clearLocalData } = useLogout();
|
|
const handleReload = () => {
|
|
clearLocalData();
|
|
location.reload();
|
|
};
|
|
|
|
return (
|
|
<StyledWrapper className={fullscreen ? "fullscreen" : ""}>
|
|
<Ring size={40} lineWeight={5} speed={2} color="black" />
|
|
<Button className={`reload danger ${reload ? "visible" : ""}`} onClick={handleReload}>
|
|
Reload
|
|
</Button>
|
|
</StyledWrapper>
|
|
);
|
|
};
|
|
|
|
export default Loading;
|