Merge branch 'feature/dsf-tab-deep-linking' of Cadoles/daddy into develop
This commit is contained in:
commit
54e8cf23f7
|
@ -45,7 +45,7 @@ export const App: FunctionComponent<AppProps> = () => {
|
||||||
<Route path="/unauthorized" exact component={UnauthorizedPage} />
|
<Route path="/unauthorized" exact component={UnauthorizedPage} />
|
||||||
<PrivateRoute path="/profile" exact component={ProfilePage} />
|
<PrivateRoute path="/profile" exact component={ProfilePage} />
|
||||||
<PrivateRoute path="/workgroups/:id" exact component={WorkgroupPage} />
|
<PrivateRoute path="/workgroups/:id" exact component={WorkgroupPage} />
|
||||||
<PrivateRoute path="/decisions/:id" exact component={DecisionSupportFilePage} />
|
<PrivateRoute path="/decisions/:id" component={DecisionSupportFilePage} />
|
||||||
<PrivateRoute path="/dashboard" exact component={DashboardPage} />
|
<PrivateRoute path="/dashboard" exact component={DashboardPage} />
|
||||||
<PrivateRoute path="/logout" exact component={LogoutPage} />
|
<PrivateRoute path="/logout" exact component={LogoutPage} />
|
||||||
<Route component={() => <Redirect to="/" />} />
|
<Route component={() => <Redirect to="/" />} />
|
||||||
|
|
|
@ -49,7 +49,6 @@ export const ClarificationSection: FunctionComponent<ClarificationSectionProps>
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<section>
|
<section>
|
||||||
<div className="box">
|
|
||||||
<div className="field">
|
<div className="field">
|
||||||
<label className="label is-medium">Intitulé du dossier</label>
|
<label className="label is-medium">Intitulé du dossier</label>
|
||||||
<div className="control">
|
<div className="control">
|
||||||
|
@ -136,7 +135,6 @@ export const ClarificationSection: FunctionComponent<ClarificationSectionProps>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
</section>
|
</section>
|
||||||
);
|
);
|
||||||
};
|
};
|
|
@ -32,7 +32,6 @@ export const DecisionReportSection: FunctionComponent<DecisionReportSectionProps
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<section>
|
<section>
|
||||||
<div className="box">
|
|
||||||
<div className="field">
|
<div className="field">
|
||||||
<label className="label is-medium">Compte rendu du vote</label>
|
<label className="label is-medium">Compte rendu du vote</label>
|
||||||
<div className="control">
|
<div className="control">
|
||||||
|
@ -45,7 +44,6 @@ export const DecisionReportSection: FunctionComponent<DecisionReportSectionProps
|
||||||
</div>
|
</div>
|
||||||
<p className="help is-info"><i className="fa fa-info-circle"></i> Penser à indiquer le résultat du vote et les éléments de contexte liés à la prise de décision.</p>
|
<p className="help is-info"><i className="fa fa-info-circle"></i> Penser à indiquer le résultat du vote et les éléments de contexte liés à la prise de décision.</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
</section>
|
</section>
|
||||||
);
|
);
|
||||||
};
|
};
|
|
@ -11,6 +11,7 @@ import { OptionsSection } from './OptionsSection';
|
||||||
import { useIsAuthorized } from '../../gql/queries/authorization';
|
import { useIsAuthorized } from '../../gql/queries/authorization';
|
||||||
import { TimelinePanel } from './TimelinePanel';
|
import { TimelinePanel } from './TimelinePanel';
|
||||||
import { DecisionReportSection } from './DecisionReportSection';
|
import { DecisionReportSection } from './DecisionReportSection';
|
||||||
|
import { RoutedTabs } from '../RoutedTabs';
|
||||||
|
|
||||||
export interface DecisionSupportFilePageProps {
|
export interface DecisionSupportFilePageProps {
|
||||||
|
|
||||||
|
@ -30,10 +31,8 @@ export const DecisionSupportFilePage: FunctionComponent<DecisionSupportFilePageP
|
||||||
const [ state, setState ] = useState({
|
const [ state, setState ] = useState({
|
||||||
dsf: newDecisionSupportFile(),
|
dsf: newDecisionSupportFile(),
|
||||||
saved: true,
|
saved: true,
|
||||||
selectedTabIndex: 0,
|
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
const { isAuthorized } = useIsAuthorized({
|
const { isAuthorized } = useIsAuthorized({
|
||||||
variables: {
|
variables: {
|
||||||
action: 'update',
|
action: 'update',
|
||||||
|
@ -48,9 +47,26 @@ export const DecisionSupportFilePage: FunctionComponent<DecisionSupportFilePageP
|
||||||
setState(state => ({ ...state, dsf: { ...state.dsf, ...dsf }}))
|
setState(state => ({ ...state, dsf: { ...state.dsf, ...dsf }}))
|
||||||
}, [ decisionSupportFiles ]);
|
}, [ decisionSupportFiles ]);
|
||||||
|
|
||||||
const selectTab = (tabIndex: number) => {
|
const tabs = [
|
||||||
setState(state => ({ ...state, selectedTabIndex: tabIndex }));
|
{
|
||||||
};
|
name: "Clarifier la proposition",
|
||||||
|
icon: "fas fa-pen",
|
||||||
|
route: '/info',
|
||||||
|
render: () => (<ClarificationSection readOnly={!isAuthorized} dsf={state.dsf} updateDSF={updateDSF} />)
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "Explorer les options",
|
||||||
|
icon: "fas fa-search",
|
||||||
|
route: '/options',
|
||||||
|
render: () => (<OptionsSection readOnly={!isAuthorized} dsf={state.dsf} updateDSF={updateDSF} />)
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "Prendre la décision",
|
||||||
|
icon: "fas fa-person-booth",
|
||||||
|
route: '/vote',
|
||||||
|
render: () => (<DecisionReportSection readOnly={!isAuthorized} dsf={state.dsf} updateDSF={updateDSF} />)
|
||||||
|
}
|
||||||
|
];
|
||||||
|
|
||||||
const updateDSF = (dsf: DecisionSupportFile) => {
|
const updateDSF = (dsf: DecisionSupportFile) => {
|
||||||
setState(state => {
|
setState(state => {
|
||||||
|
@ -130,46 +146,9 @@ export const DecisionSupportFilePage: FunctionComponent<DecisionSupportFilePageP
|
||||||
</section>
|
</section>
|
||||||
<div className="columns mt-3">
|
<div className="columns mt-3">
|
||||||
<div className="column is-8">
|
<div className="column is-8">
|
||||||
<div className="tabs is-medium is-toggle">
|
<div className="box">
|
||||||
<ul>
|
<RoutedTabs baseRoute={`/decisions/${id}`} tabs={tabs} />
|
||||||
<li className={`has-background-white ${state.selectedTabIndex === 0 ? 'is-active': ''}`}
|
|
||||||
onClick={selectTab.bind(null, 0)}>
|
|
||||||
<a>
|
|
||||||
<span className="icon is-small"><i className="fas fa-pen" aria-hidden="true"></i></span>
|
|
||||||
<span>Clarifier la proposition</span>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
<li className={`has-background-white ${state.selectedTabIndex === 1 ? 'is-active': ''}`}
|
|
||||||
onClick={selectTab.bind(null, 1)}>
|
|
||||||
<a>
|
|
||||||
<span className="icon is-small"><i className="fas fa-search" aria-hidden="true"></i></span>
|
|
||||||
<span>Explorer les options</span>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
<li className={`has-background-white ${state.selectedTabIndex === 2 ? 'is-active': ''}`}
|
|
||||||
onClick={selectTab.bind(null, 2)}>
|
|
||||||
<a>
|
|
||||||
<span className="icon is-small"><i className="fas fa-person-booth" aria-hidden="true"></i></span>
|
|
||||||
<span>Prendre la décision</span>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
</div>
|
||||||
{
|
|
||||||
state.selectedTabIndex === 0 ?
|
|
||||||
<ClarificationSection readOnly={!isAuthorized} dsf={state.dsf} updateDSF={updateDSF} /> :
|
|
||||||
null
|
|
||||||
}
|
|
||||||
{
|
|
||||||
state.selectedTabIndex === 1 ?
|
|
||||||
<OptionsSection readOnly={!isAuthorized} dsf={state.dsf} updateDSF={updateDSF} /> :
|
|
||||||
null
|
|
||||||
}
|
|
||||||
{
|
|
||||||
state.selectedTabIndex === 2 ?
|
|
||||||
<DecisionReportSection readOnly={!isAuthorized} dsf={state.dsf} updateDSF={updateDSF} /> :
|
|
||||||
null
|
|
||||||
}
|
|
||||||
</div>
|
</div>
|
||||||
<div className="column is-4">
|
<div className="column is-4">
|
||||||
<MetadataPanel readOnly={!isAuthorized} dsf={state.dsf} updateDSF={updateDSF} />
|
<MetadataPanel readOnly={!isAuthorized} dsf={state.dsf} updateDSF={updateDSF} />
|
||||||
|
|
|
@ -75,8 +75,7 @@ export const OptionsSection: FunctionComponent<OptionsSectionProps> = ({ dsf, up
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<section>
|
<section>
|
||||||
<h4 id="options-section" className="is-size-4 title is-spaced"><a href="#options-section">Explorer les options</a></h4>
|
<h4 id="options-section" className="is-size-4 title is-spaced">Explorer les options</h4>
|
||||||
<div className="box">
|
|
||||||
<div className="table-container">
|
<div className="table-container">
|
||||||
<table className={`table is-bordered is-striped is-hoverable is-fullwidth`}>
|
<table className={`table is-bordered is-striped is-hoverable is-fullwidth`}>
|
||||||
<thead>
|
<thead>
|
||||||
|
@ -154,7 +153,6 @@ export const OptionsSection: FunctionComponent<OptionsSectionProps> = ({ dsf, up
|
||||||
</tfoot>
|
</tfoot>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
</section>
|
</section>
|
||||||
);
|
);
|
||||||
};
|
};
|
|
@ -0,0 +1,79 @@
|
||||||
|
import React, { FunctionComponent, ReactNode, useEffect, useState } from 'react';
|
||||||
|
import { useHistory, useLocation, useRouteMatch } from 'react-router';
|
||||||
|
import { Link } from 'react-router-dom';
|
||||||
|
|
||||||
|
export interface Tab {
|
||||||
|
route: string
|
||||||
|
name: string
|
||||||
|
icon ?: string
|
||||||
|
render: (tab: Tab) => ReactNode
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface RoutedTabsProps {
|
||||||
|
tabs: Tab[]
|
||||||
|
baseRoute?: string
|
||||||
|
defaultTabIndex?: number
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
export const RoutedTabs: FunctionComponent<RoutedTabsProps> = ({ tabs, baseRoute, defaultTabIndex }) => {
|
||||||
|
const history = useHistory();
|
||||||
|
const location = useLocation();
|
||||||
|
|
||||||
|
const tabRoute = (route: string): string => {
|
||||||
|
return `${baseRoute}${route}`;
|
||||||
|
};
|
||||||
|
|
||||||
|
const [ selectedTabIndex, setSelectedTabIndex ] = useState(defaultTabIndex || 0);
|
||||||
|
const expectedTab = tabs[selectedTabIndex];
|
||||||
|
const expectedTabRoute = tabRoute(expectedTab.route);
|
||||||
|
|
||||||
|
let matchExpectedTabRoute = useRouteMatch(expectedTabRoute);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (matchExpectedTabRoute) return;
|
||||||
|
|
||||||
|
const newTabIndex = tabs.findIndex(t => location.pathname === tabRoute(t.route));
|
||||||
|
|
||||||
|
if (newTabIndex !== -1) {
|
||||||
|
selectTab(newTabIndex);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
history.push(expectedTabRoute);
|
||||||
|
}, [matchExpectedTabRoute]);
|
||||||
|
|
||||||
|
const selectTab = (tabIndex: number) => {
|
||||||
|
setSelectedTabIndex(tabIndex);
|
||||||
|
const newTab = tabs[tabIndex];
|
||||||
|
history.push(tabRoute(newTab.route));
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<React.Fragment>
|
||||||
|
<div className="tabs is-medium is-boxed">
|
||||||
|
<ul>
|
||||||
|
{
|
||||||
|
tabs.map((t: Tab, i: number) => {
|
||||||
|
return (
|
||||||
|
<li key={`tab-${i}`} className={`has-background-white ${selectedTabIndex === i ? 'is-active': ''}`}
|
||||||
|
onClick={selectTab.bind(null, i)}>
|
||||||
|
<a>
|
||||||
|
{
|
||||||
|
t.icon ?
|
||||||
|
<span className="icon is-small"><i className={t.icon} aria-hidden="true"></i></span> :
|
||||||
|
null
|
||||||
|
}
|
||||||
|
<span>{t.name}</span>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
);
|
||||||
|
})
|
||||||
|
}
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
{ expectedTab.render(expectedTab) }
|
||||||
|
</React.Fragment>
|
||||||
|
);
|
||||||
|
}
|
Loading…
Reference in New Issue