Modify print center so that it will/wont display email option if technician is set and production board detail so that it wont display the remove from production / add to scoreboard if technician is set
120 lines
4.0 KiB
JavaScript
120 lines
4.0 KiB
JavaScript
import { BackTop, Layout } from "antd";
|
|
import React, { Suspense, lazy, useEffect } from "react";
|
|
import { useTranslation } from "react-i18next";
|
|
import { connect } from "react-redux";
|
|
import { Redirect, Route, Switch } from "react-router-dom";
|
|
import { createStructuredSelector } from "reselect";
|
|
import ErrorBoundary from "../../components/error-boundary/error-boundary.component";
|
|
|
|
import FeatureWrapper from "../../components/feature-wrapper/feature-wrapper.component";
|
|
import LoadingSpinner from "../../components/loading-spinner/loading-spinner.component";
|
|
import TechHeader from "../../components/tech-header/tech-header.component";
|
|
import TechSider from "../../components/tech-sider/tech-sider.component";
|
|
import UpdateAlert from "../../components/update-alert/update-alert.component";
|
|
import { selectTechnician } from "../../redux/tech/tech.selectors";
|
|
import "./tech.page.styles.scss";
|
|
const TimeTicketModalContainer = lazy(() =>
|
|
import("../../components/time-ticket-modal/time-ticket-modal.container")
|
|
);
|
|
const EmailOverlayContainer = lazy(() =>
|
|
import("../../components/email-overlay/email-overlay.container.jsx")
|
|
);
|
|
const PrintCenterModalContainer = lazy(() =>
|
|
import("../../components/print-center-modal/print-center-modal.container")
|
|
);
|
|
const TechLogin = lazy(() =>
|
|
import("../../components/tech-login/tech-login.component")
|
|
);
|
|
const TechLookup = lazy(() => import("../tech-lookup/tech-lookup.container"));
|
|
const ProductionListPage = lazy(() =>
|
|
import("../production-list/production-list.container")
|
|
);
|
|
const ProductionBoardPage = lazy(() =>
|
|
import("../production-board/production-board.container")
|
|
);
|
|
const TechJobClock = lazy(() =>
|
|
import("../tech-job-clock/tech-job-clock.component")
|
|
);
|
|
const TechShiftClock = lazy(() =>
|
|
import("../tech-shift-clock/tech-shift-clock.component")
|
|
);
|
|
|
|
const { Content } = Layout;
|
|
|
|
const mapStateToProps = createStructuredSelector({
|
|
technician: selectTechnician,
|
|
});
|
|
const mapDispatchToProps = (dispatch) => ({
|
|
//setUserLanguage: language => dispatch(setUserLanguage(language))
|
|
});
|
|
|
|
export function TechPage({ technician, match }) {
|
|
const { t } = useTranslation();
|
|
|
|
useEffect(() => {
|
|
document.title = t("titles.app");
|
|
}, [t]);
|
|
|
|
return (
|
|
<Layout className="tech-layout-container">
|
|
<TechSider />
|
|
<Layout>
|
|
{technician ? null : <Redirect to={`${match.path}/login`} />}
|
|
<UpdateAlert />
|
|
<TechHeader />
|
|
|
|
<Content className="tech-content-container">
|
|
<ErrorBoundary>
|
|
<Suspense
|
|
fallback={
|
|
<LoadingSpinner message={t("general.labels.loadingapp")} />
|
|
}
|
|
>
|
|
<FeatureWrapper featureName="tech-console">
|
|
<TimeTicketModalContainer />
|
|
<EmailOverlayContainer />
|
|
<PrintCenterModalContainer />
|
|
<Switch>
|
|
<Route
|
|
exact
|
|
path={`${match.path}/login`}
|
|
component={TechLogin}
|
|
/>
|
|
<Route
|
|
exact
|
|
path={`${match.path}/joblookup`}
|
|
component={TechLookup}
|
|
/>
|
|
<Route
|
|
exact
|
|
path={`${match.path}/list`}
|
|
component={ProductionListPage}
|
|
/>
|
|
<Route
|
|
exact
|
|
path={`${match.path}/jobclock`}
|
|
component={TechJobClock}
|
|
/>
|
|
<Route
|
|
exact
|
|
path={`${match.path}/shiftclock`}
|
|
component={TechShiftClock}
|
|
/>
|
|
<Route
|
|
exact
|
|
path={`${match.path}/board`}
|
|
component={ProductionBoardPage}
|
|
/>
|
|
</Switch>
|
|
</FeatureWrapper>
|
|
</Suspense>
|
|
</ErrorBoundary>
|
|
|
|
<BackTop />
|
|
</Content>
|
|
</Layout>
|
|
</Layout>
|
|
);
|
|
}
|
|
export default connect(mapStateToProps, mapDispatchToProps)(TechPage);
|