Projekt

Obecné

Profil

Stáhnout (1.04 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 { faTags } from '@fortawesome/free-solid-svg-icons';
9
import { LoggedUserContext } from '../../contexts/LoggedUserContext';
10
import { MainLayout } from '../../layouts/MainLayout';
11

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

    
17
    useEffect(() => {
18
        if (!redirecting && role === 'ADMINISTRATOR') {
19
            // TODO load tags
20
        }
21
    }, [logout, redirecting, role, router]);
22

    
23
    return redirecting || role !== 'ADMINISTRATOR' ? null : (
24
        <MainLayout>
25
            <Typography.Title level={2}>
26
                <FontAwesomeIcon icon={faTags} /> Značky
27
            </Typography.Title>
28
        </MainLayout>
29
    );
30
}
31

    
32
export default TagsPage;
    (1-1/1)