eb8fc50ff1
* Add plugin * Run plugin
53 lines
998 B
TypeScript
53 lines
998 B
TypeScript
import { useEffect } from 'react';
|
|
import { useNavigate } from 'react-router-dom';
|
|
import { keyframes } from '@emotion/react';
|
|
import styled from '@emotion/styled';
|
|
|
|
import { hasAccessToken } from '../services/AuthService';
|
|
|
|
const EmptyContainer = styled.div`
|
|
align-items: center;
|
|
display: flex;
|
|
height: 100%;
|
|
justify-content: center;
|
|
width: 100%;
|
|
`;
|
|
|
|
const fadeIn = keyframes`
|
|
from {
|
|
opacity: 0;
|
|
}
|
|
to {
|
|
opacity: 1;
|
|
}
|
|
`;
|
|
|
|
const FadeInStyle = styled.div`
|
|
animation: ${fadeIn} 1s forwards;
|
|
opacity: 0;
|
|
`;
|
|
|
|
export function RequireAuth({
|
|
children,
|
|
}: {
|
|
children: JSX.Element;
|
|
}): JSX.Element {
|
|
const navigate = useNavigate();
|
|
|
|
useEffect(() => {
|
|
if (!hasAccessToken()) {
|
|
navigate('/auth/login');
|
|
}
|
|
}, [navigate]);
|
|
|
|
if (!hasAccessToken())
|
|
return (
|
|
<EmptyContainer>
|
|
<FadeInStyle>
|
|
Please hold on a moment, we're directing you to our login page...
|
|
</FadeInStyle>
|
|
</EmptyContainer>
|
|
);
|
|
return children;
|
|
}
|