import { observer } from 'mobx-react-lite'; import React from 'react'; import { RouteComponentProps, withRouter } from 'react-router-dom'; import { useStore } from 'App/mstore'; import { assist as assistRoute, sessions as sessionsRoute, withSiteId, } from 'App/routes'; import { Button, Icon } from 'UI'; import stl from './NoSessionPermission.module.css'; const SESSIONS_ROUTE = sessionsRoute(); const ASSIST_ROUTE = assistRoute(); interface Props extends RouteComponentProps { history: any; isLive?: boolean; } function NoSessionPermission(props: Props) { const { projectsStore, sessionStore } = useStore(); const session = sessionStore.current; const sessionPath = sessionStore.sessionPath; const isAssist = window.location.pathname.includes('/assist/'); const siteId = projectsStore.siteId!; const { history } = props; const backHandler = () => { if ( sessionPath.pathname === history.location.pathname || sessionPath.pathname.includes('/session/') || isAssist ) { history.push( withSiteId(isAssist ? ASSIST_ROUTE : SESSIONS_ROUTE, siteId) ); } else { history.push( sessionPath ? sessionPath.pathname + sessionPath.search : withSiteId(SESSIONS_ROUTE, siteId) ); } }; return (
Not allowed
{session.isLive ? ( This session is still live, and you don’t have the necessary permissions to access this feature. Please check with your admin. ) : ( You don’t have the necessary permissions to access this feature. Please check with your admin. )} {/* */} {/* */}
); } export default withRouter( observer(NoSessionPermission) );