2020-08-03 12:04:07 +02:00
|
|
|
import Link from 'next/link'
|
|
|
|
import { useState } from 'react'
|
|
|
|
import Cookies from 'universal-cookie'
|
|
|
|
import HeadTag from '../../components/HeadTag'
|
|
|
|
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
|
|
|
|
import { faTimes } from '@fortawesome/free-solid-svg-icons'
|
|
|
|
import Modal from '../../components/Modal'
|
|
|
|
import FunctionsList from '../../components/FunctionsList/FunctionsList'
|
|
|
|
import AddEditFunction from '../../components/FunctionAdmin/AddEditFunction'
|
|
|
|
import redirect from '../../utils/redirect'
|
|
|
|
import '../../public/css/pages/admin.css'
|
2020-04-11 21:07:13 +02:00
|
|
|
|
2020-08-03 14:37:05 +02:00
|
|
|
const Admin = props => {
|
2020-08-03 12:04:07 +02:00
|
|
|
const [isOpen, setIsOpen] = useState(false)
|
2020-04-11 21:07:13 +02:00
|
|
|
|
2020-08-03 12:04:07 +02:00
|
|
|
const toggleModal = () => setIsOpen(!isOpen)
|
2020-04-11 23:29:22 +02:00
|
|
|
|
2020-08-03 12:04:07 +02:00
|
|
|
return (
|
|
|
|
<>
|
2020-08-03 14:37:05 +02:00
|
|
|
<HeadTag
|
|
|
|
title='Admin - FunctionProject'
|
|
|
|
description="Page d'administration de FunctionProject."
|
|
|
|
/>
|
2020-04-11 23:29:22 +02:00
|
|
|
|
2020-08-03 12:04:07 +02:00
|
|
|
{/* Création d'une fonction */}
|
2020-08-03 14:37:05 +02:00
|
|
|
{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>
|
2020-08-03 12:04:07 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-04-11 23:29:22 +02:00
|
|
|
|
2020-08-03 14:37:05 +02:00
|
|
|
<div className='col-24'>
|
|
|
|
<AddEditFunction
|
|
|
|
defaultInputState={{ type: 'form' }}
|
|
|
|
{...props}
|
|
|
|
/>
|
|
|
|
</div>
|
2020-08-03 12:04:07 +02:00
|
|
|
</div>
|
2020-08-03 14:37:05 +02:00
|
|
|
</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>
|
|
|
|
<Link href='/admin/manageCategories'>
|
|
|
|
<button style={{ margin: '0 0 0 20px' }} className='btn btn-dark'>
|
|
|
|
Gérer les catégories
|
|
|
|
</button>
|
|
|
|
</Link>
|
|
|
|
<Link href='/admin/manageQuotes'>
|
|
|
|
<button style={{ margin: '0 0 0 20px' }} className='btn btn-dark'>
|
|
|
|
Gérer les citations
|
|
|
|
</button>
|
|
|
|
</Link>
|
|
|
|
</div>
|
|
|
|
</FunctionsList>
|
|
|
|
)}
|
2020-08-03 12:04:07 +02:00
|
|
|
</>
|
|
|
|
)
|
2020-04-11 21:07:13 +02:00
|
|
|
}
|
|
|
|
|
2020-08-03 12:04:07 +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')
|
|
|
|
}
|
|
|
|
return {
|
|
|
|
props: { user }
|
|
|
|
}
|
2020-04-11 21:07:13 +02:00
|
|
|
}
|
|
|
|
|
2020-08-03 12:04:07 +02:00
|
|
|
export default Admin
|