Projekt

Obecné

Profil

Stáhnout (1.13 KB) Statistiky
| Větev: | Tag: | Revize:
1
import 'antd/dist/antd.css';
2
import React, { useContext, useEffect } from 'react';
3

    
4
import { useUnauthRedirect } from '../../hooks';
5
import { useRouter } from 'next/router';
6
import { Typography } from 'antd';
7
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
8
import { faBookmark } from '@fortawesome/free-solid-svg-icons';
9
import { LoggedUserContext } from '../../contexts/LoggedUserContext';
10
import { MainLayout } from '../../layouts/mainLayout';
11

    
12
function ClassesPage() {
13
    const redirecting = useUnauthRedirect('/login');
14
    const { logout, role } = useContext(LoggedUserContext);
15
    const router = useRouter();
16

    
17
    useEffect(() => {
18
        if (role !== 'ADMINISTRATOR') {
19
            logout();
20
            router.push('/login');
21
        }
22

    
23
        if (!redirecting) {
24
            // TODO load classes
25
        }
26
    }, [redirecting, role, router]);
27

    
28
    return redirecting || role !== 'ADMINISTRATOR' ? null : (
29
        <MainLayout>
30
            <Typography.Title level={2}>
31
                <FontAwesomeIcon icon={faBookmark} /> Třídy
32
            </Typography.Title>
33
        </MainLayout>
34
    );
35
}
36

    
37
export default ClassesPage;
    (1-1/1)