68 lines
3.4 KiB
JavaScript
68 lines
3.4 KiB
JavaScript
import { Route, Routes } from 'react-router-dom';
|
|
|
|
// components
|
|
import PageNotFound from './pages/PageNotFound';
|
|
import Login from './pages/Login';
|
|
import ProtectedRoute from './components/ProtectedRoute';
|
|
import Dashboard from './pages/Dashboard';
|
|
import DashboardBeneficiario from './pages/DashboardBeneficiario';
|
|
import BandoViewBeneficiario from './pages/BandoViewBeneficiario';
|
|
import DefaultLayout from './layouts/DefaultLayout';
|
|
import Bandi from './pages/Bandi';
|
|
import BandoEdit from './pages/BandoEdit';
|
|
import BandoView from './pages/BandoView';
|
|
import BandoFormsEdit from './pages/BandoFormsEdit';
|
|
import BandoForms from './pages/BandoForms';
|
|
import BandoFormsPreview from './pages/BandoFormsPreview';
|
|
import BandoFlowEdit from './pages/BandoFlowEdit';
|
|
import Applications from './pages/Applications';
|
|
import BandoApplication from './pages/BandoApplication';
|
|
|
|
const routes = ({ role }) => {
|
|
return (
|
|
<Routes>
|
|
<Route element={<ProtectedRoute/>}>
|
|
<Route path="/" element={<DefaultLayout>
|
|
{'ROLE_SUPER_ADMIN' === role ? <Dashboard/> : null}
|
|
{'ROLE_BENEFICIARY' === role ? <DashboardBeneficiario/> : null}
|
|
</DefaultLayout>}/>
|
|
<Route path="/tenders" element={<DefaultLayout>
|
|
{'ROLE_SUPER_ADMIN' === role ? <Bandi/> : null}
|
|
</DefaultLayout>}/>
|
|
<Route path="/tenders/:id" element={<DefaultLayout>
|
|
{'ROLE_SUPER_ADMIN' === role ? <BandoEdit/> : null}
|
|
</DefaultLayout>}/>
|
|
<Route path="/tenders/:id/preview" element={<DefaultLayout>
|
|
{'ROLE_SUPER_ADMIN' === role ? <BandoView/> : null}
|
|
{'ROLE_BENEFICIARY' === role ? <BandoViewBeneficiario/> : null}
|
|
</DefaultLayout>}/>
|
|
<Route path="/tenders/:id/preview-evaluation" element={<DefaultLayout>
|
|
{'ROLE_SUPER_ADMIN' === role ? <BandoView/> : null}
|
|
</DefaultLayout>}/>
|
|
<Route path="/tenders/:id/forms" element={<DefaultLayout>
|
|
{'ROLE_SUPER_ADMIN' === role ? <BandoForms/> : null}
|
|
</DefaultLayout>}/>
|
|
<Route path="/tenders/:id/forms/:formId" element={<DefaultLayout>
|
|
{'ROLE_SUPER_ADMIN' === role ? <BandoFormsEdit/> : null}
|
|
</DefaultLayout>}/>
|
|
<Route path="/tenders/:id/forms/:formId/preview" element={<DefaultLayout>
|
|
{'ROLE_SUPER_ADMIN' === role ? <BandoFormsPreview/> : null}
|
|
</DefaultLayout>}/>
|
|
<Route path="/tenders/:id/flow" element={<DefaultLayout>
|
|
{'ROLE_SUPER_ADMIN' === role ? <BandoFlowEdit/> : null}
|
|
</DefaultLayout>}/>
|
|
<Route path="/tenders/:id/application/" element={<DefaultLayout>
|
|
{'ROLE_BENEFICIARY' === role ? <BandoApplication/> : null}
|
|
</DefaultLayout>}/>
|
|
<Route path="/applications" element={<DefaultLayout>
|
|
{'ROLE_BENEFICIARY' === role ? <Applications/> : null}
|
|
</DefaultLayout>}/>
|
|
</Route>
|
|
<Route exact path="/login" element={<Login/>}/>
|
|
{/*<Route exact path="/forgot-password" element={<ForgotPassword/>}/>*/}
|
|
<Route path="*" element={<PageNotFound/>}/>
|
|
</Routes>)
|
|
};
|
|
|
|
export default routes;
|