asb_cloud_front/src/pages/Well.jsx

119 lines
4.7 KiB
React
Raw Normal View History

import {Layout, Menu} from "antd";
import {FolderOutlined, FundViewOutlined} from "@ant-design/icons";
import {Link, Redirect, Route, Switch, useParams} from "react-router-dom";
import Archive from "../pages/Archive";
import Messages from "../pages/Messages";
import Report from "../pages/Report";
import Analysis from "../pages/Analysis";
import WellAnalysis from "../pages/WellAnalysis";
import TelemetryView from "../pages/TelemetryView";
import MenuDocuments from "../components/MenuDocuments";
2021-07-28 17:44:44 +05:00
import WellStat from "./WellStat";
import MenuDocuments from "../components/MenuDocuments";
2021-04-16 15:50:01 +05:00
const { Content } = Layout
2021-04-16 15:50:01 +05:00
export default function Well() {
let { id } = useParams()
const rootPath = `/well/${id}`
const {SubMenu} = Menu
return (<>
<Layout>
<Menu
mode="horizontal"
selectable={true}
className="well_menu"
>
<Menu.Item key="1" icon={<FundViewOutlined/>}>
<Link to={{pathname: `${rootPath}/telemetry`}}>Мониторинг</Link>
</Menu.Item>
<Menu.Item key="2" icon={<FolderOutlined/>}>
<Link to={{pathname: `${rootPath}/message`}}>Сообщения</Link>
</Menu.Item>
<Menu.Item key="3" icon={<FolderOutlined/>}>
<Link to={{pathname: `${rootPath}/report`}}>Рапорт</Link>
</Menu.Item>
<Menu.Item key="4" icon={<FolderOutlined/>}>
<Link to={{pathname: `${rootPath}/analysis`}}>Анализ</Link>
</Menu.Item>
<Menu.Item key="5" icon={<FolderOutlined/>}>
<Link to={{pathname: `${rootPath}/wellAnalysis`}}>Операции по скважине</Link>
</Menu.Item>
<Menu.Item key="6" icon={<FolderOutlined/>}>
2021-07-28 17:44:44 +05:00
<Link to='stat'>Статистика</Link>
</Menu.Item>
<Menu.Item key="7" icon={<FolderOutlined/>}>
<Link to={{pathname: `${rootPath}/archive`}}>Архив</Link>
</Menu.Item>
<SubMenu
key="documentsSub"
2021-07-28 17:59:16 +05:00
title={<Link to={{pathname: `${rootPath}/documents/fluidService`}} className="linkDocuments">Документы</Link>}
icon={<FolderOutlined/>}
selectable={true}
>
<Menu.Item key="documentsSub1" icon={<FolderOutlined/>}>
<Link to={{pathname: `${rootPath}/documents/fluidService`}}>Растворный сервис</Link>
</Menu.Item>
<Menu.Item key="documentsSub1.1" icon={<FolderOutlined/>}>
<Link to={{pathname: `${rootPath}/documents/cementing`}}>Цементирование</Link>
</Menu.Item>
<Menu.Item key="documentsSub1.2" icon={<FolderOutlined/>}>
<Link to={{pathname: `${rootPath}/documents/nnb`}}>ННБ</Link>
</Menu.Item>
<Menu.Item key="documentsSub1.3" icon={<FolderOutlined/>}>
<Link to={{pathname: `${rootPath}/documents/gti`}}>ГТИ</Link>
</Menu.Item>
<Menu.Item key="documentsSub1.4" icon={<FolderOutlined/>}>
<Link to={{pathname: `${rootPath}/documents/documentsForWell`}}>Документы по скважине</Link>
</Menu.Item>
<Menu.Item key="documentsSub1.5" icon={<FolderOutlined/>}>
<Link to={{pathname: `${rootPath}/documents/supervisor`}}>Супервайзер</Link>
</Menu.Item>
<Menu.Item key="documentsSub1.6" icon={<FolderOutlined/>}>
<Link to={{pathname: `${rootPath}/documents/master`}}>Мастер</Link>
</Menu.Item>
<Menu.Item key="documentsSub1.7" icon={<FolderOutlined/>}>
<Link to={{pathname: `${rootPath}/documents/lastData`}}>Последние данные</Link>
</Menu.Item>
</SubMenu>
</Menu>
<Layout>
<Content className="site-layout-background">
<Switch>
2021-07-28 17:44:44 +05:00
<Route path="/well/:id/stat">
<WellStat/>
</Route>
<Route path="/well/:id/archive">
<Archive/>
</Route>
<Route path="/well/:id/message">
<Messages/>
</Route>
<Route path="/well/:id/report">
<Report/>
</Route>
<Route path="/well/:id/analysis">
<Analysis idWell={id}/>
</Route>
<Route path="/well/:id/wellAnalysis">
<WellAnalysis/>
</Route>
<Route path="/well/:id/telemetry">
<TelemetryView/>
</Route>
<Route path="/well/:id/documents">
<MenuDocuments/>
</Route>
<Route path="/">
<Redirect to={{pathname: `${rootPath}/telemetry`}}/>
</Route>
</Switch>
</Content>
</Layout>
</Layout>
</>)
}