2020-04-12 12:40:56 +02:00
|
|
|
import Link from 'next/link';
|
2020-04-15 22:50:40 +02:00
|
|
|
import { Fragment, useState } from 'react';
|
2020-04-11 21:07:13 +02:00
|
|
|
import Cookies from "universal-cookie";
|
|
|
|
import HeadTag from '../../components/HeadTag';
|
2020-04-11 23:29:22 +02:00
|
|
|
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
|
|
|
|
import { faTimes } from '@fortawesome/free-solid-svg-icons';
|
|
|
|
import Modal from '../../components/Modal';
|
2020-04-15 22:50:40 +02:00
|
|
|
import FunctionsList from '../../components/FunctionsList/FunctionsList';
|
2020-04-23 17:31:36 +02:00
|
|
|
import AddEditFunction from '../../components/FunctionAdmin/AddEditFunction';
|
2020-04-11 21:07:13 +02:00
|
|
|
import redirect from '../../utils/redirect';
|
2020-04-12 12:40:56 +02:00
|
|
|
import '../../public/css/pages/admin.css';
|
2020-04-11 21:07:13 +02:00
|
|
|
|
|
|
|
const Admin = (props) => {
|
|
|
|
|
2020-04-11 23:29:22 +02:00
|
|
|
const [isOpen, setIsOpen] = useState(false);
|
|
|
|
|
|
|
|
const toggleModal = () => setIsOpen(!isOpen);
|
|
|
|
|
2020-04-11 21:07:13 +02:00
|
|
|
return (
|
|
|
|
<Fragment>
|
|
|
|
<HeadTag title="Admin - FunctionProject" description="Page d'administration de FunctionProject." />
|
|
|
|
|
2020-04-11 23:29:22 +02:00
|
|
|
{/* Création d'une fonction */}
|
|
|
|
{(isOpen) ?
|
|
|
|
<Modal toggleModal={toggleModal}>
|
|
|
|
<div className="Admin__Modal__container container-fluid">
|
|
|
|
<div className="Admin__Modal__row row">
|
|
|
|
<div className="col-24">
|
|
|
|
<div className="Admin__Modal-top-container row">
|
|
|
|
<div className="col-24">
|
|
|
|
<span onClick={toggleModal} style={{ cursor: 'pointer', position: 'absolute', left: 0 }}>
|
|
|
|
<FontAwesomeIcon icon={faTimes} style={{ width: '1.5rem', color: 'red' }} />
|
|
|
|
</span>
|
|
|
|
<h2 className="text-center">Crée une nouvelle fonction</h2>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div className="col-24">
|
2020-04-15 22:50:40 +02:00
|
|
|
<AddEditFunction defaultInputState={{ type: 'form' }} { ...props } />
|
2020-04-11 23:29:22 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</Modal>
|
|
|
|
|
|
|
|
:
|
|
|
|
|
|
|
|
<FunctionsList isAdmin token={props.user.token}>
|
|
|
|
<div className="col-24">
|
|
|
|
<h1 className="Functions__title">Administration</h1>
|
|
|
|
<button onClick={toggleModal} style={{ margin: '0 0 40px 0' }} className="btn btn-dark">Crée une nouvelle fonction</button>
|
2020-04-12 12:40:56 +02:00
|
|
|
<Link href={"/admin/manageCategories"}>
|
|
|
|
<button style={{ margin: '0 0 0 20px' }} className="btn btn-dark">Gérer les catégories</button>
|
|
|
|
</Link>
|
2020-04-22 20:44:06 +02:00
|
|
|
<Link href={"/admin/manageQuotes"}>
|
|
|
|
<button style={{ margin: '0 0 0 20px' }} className="btn btn-dark">Gérer les citations</button>
|
|
|
|
</Link>
|
2020-04-11 23:29:22 +02:00
|
|
|
</div>
|
|
|
|
</FunctionsList>
|
|
|
|
}
|
2020-04-11 21:07:13 +02:00
|
|
|
</Fragment>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-04-27 18:24:30 +02:00
|
|
|
export async function getServerSideProps(context) {
|
|
|
|
const cookies = new Cookies(context.req.headers.cookie);
|
|
|
|
const user = { ...cookies.get('user') };
|
|
|
|
if (!user.isAdmin) {
|
|
|
|
return redirect(context, '/404');
|
|
|
|
}
|
2020-04-11 21:07:13 +02:00
|
|
|
return {
|
2020-04-27 18:24:30 +02:00
|
|
|
props: { user }
|
2020-04-11 21:07:13 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
export default Admin;
|