2021-05-25 12:02:39 +05:00
|
|
|
import {Layout, Menu} from "antd";
|
|
|
|
import {FolderOutlined, FundViewOutlined} from "@ant-design/icons";
|
|
|
|
import {Link, Redirect, Route, Switch, useParams} from "react-router-dom";
|
|
|
|
import Files from "../pages/Files";
|
|
|
|
import Archive from "../pages/Archive";
|
|
|
|
import Messages from "../pages/Messages";
|
|
|
|
import Report from "../pages/Report";
|
|
|
|
import Analysis from "../pages/Analysis";
|
2021-07-21 16:53:33 +05:00
|
|
|
import WellAnalysis from "../pages/WellAnalysis";
|
2021-07-22 14:53:30 +05:00
|
|
|
import FluidService from "../components/Documents";
|
|
|
|
import Cementing from "../pages/Cementing";
|
|
|
|
import Nnb from "../pages/Nnb";
|
|
|
|
import Gti from "../pages/Gti";
|
|
|
|
import DocumentForWell from "../pages/DocumentForWell";
|
|
|
|
import Supervisor from "../pages/Supervisor";
|
|
|
|
import Master from "../pages/Master";
|
|
|
|
import LastData from '../pages/LastData'
|
2021-05-25 12:02:39 +05:00
|
|
|
import TelemetryView from "../pages/TelemetryView";
|
2021-04-16 15:50:01 +05:00
|
|
|
|
2021-05-25 12:02:39 +05:00
|
|
|
const { Content } = Layout
|
2021-04-16 15:50:01 +05:00
|
|
|
|
2021-05-25 12:02:39 +05:00
|
|
|
export default function Well() {
|
|
|
|
let { id } = useParams()
|
|
|
|
|
2021-07-22 14:53:30 +05:00
|
|
|
const {SubMenu} = Menu
|
|
|
|
|
2021-05-25 12:02:39 +05:00
|
|
|
return (<>
|
|
|
|
<Layout>
|
|
|
|
<Menu
|
|
|
|
mode="horizontal"
|
2021-06-01 14:32:36 +05:00
|
|
|
selectable={true}
|
2021-05-27 12:53:42 +05:00
|
|
|
className="well_menu"
|
2021-05-25 12:02:39 +05:00
|
|
|
>
|
|
|
|
<Menu.Item key="1" icon={<FundViewOutlined/>}>
|
|
|
|
<Link to='telemetry'>Мониторинг</Link>
|
|
|
|
</Menu.Item>
|
|
|
|
<Menu.Item key="2" icon={<FolderOutlined/>}>
|
|
|
|
<Link to='message'>Сообщения</Link>
|
|
|
|
</Menu.Item>
|
|
|
|
<Menu.Item key="3" icon={<FolderOutlined/>}>
|
|
|
|
<Link to='report'>Рапорт</Link>
|
|
|
|
</Menu.Item>
|
|
|
|
<Menu.Item key="4" icon={<FolderOutlined/>}>
|
|
|
|
<Link to='analysis'>Анализ</Link>
|
|
|
|
</Menu.Item>
|
|
|
|
<Menu.Item key="5" icon={<FolderOutlined/>}>
|
2021-07-21 16:53:33 +05:00
|
|
|
<Link to='wellAnalysis'>Операции по скважине</Link>
|
2021-05-25 12:02:39 +05:00
|
|
|
</Menu.Item>
|
|
|
|
<Menu.Item key="6" icon={<FolderOutlined/>}>
|
2021-07-21 16:53:33 +05:00
|
|
|
<Link to='file'>Файлы</Link>
|
|
|
|
</Menu.Item>
|
|
|
|
<Menu.Item key="7" icon={<FolderOutlined/>}>
|
2021-05-25 12:02:39 +05:00
|
|
|
<Link to='archive'>Архив</Link>
|
|
|
|
</Menu.Item>
|
2021-07-22 14:53:30 +05:00
|
|
|
<SubMenu
|
|
|
|
key="documentsSub"
|
|
|
|
title={<Link to='fluidService' className="linkDocuments">Документы</Link>}
|
|
|
|
icon={<FolderOutlined/>}
|
|
|
|
selectable={true}
|
|
|
|
>
|
|
|
|
<Menu.Item key="documentsSub1" icon={<FolderOutlined/>}>
|
|
|
|
<Link to='fluidService'>Растворный сервис</Link>
|
|
|
|
</Menu.Item>
|
|
|
|
<Menu.Item key="documentsSub1.1" icon={<FolderOutlined/>}>
|
|
|
|
<Link to='cementing'>Цементирование</Link>
|
|
|
|
</Menu.Item>
|
|
|
|
<Menu.Item key="documentsSub1.2" icon={<FolderOutlined/>}>
|
|
|
|
<Link to='nnb'>ННБ</Link>
|
|
|
|
</Menu.Item>
|
|
|
|
<Menu.Item key="documentsSub1.3" icon={<FolderOutlined/>}>
|
|
|
|
<Link to='gti'>ГТИ</Link>
|
|
|
|
</Menu.Item>
|
|
|
|
<Menu.Item key="documentsSub1.4" icon={<FolderOutlined/>}>
|
|
|
|
<Link to='documentsForWell'>Документы по скважине</Link>
|
|
|
|
</Menu.Item>
|
|
|
|
<Menu.Item key="documentsSub1.5" icon={<FolderOutlined/>}>
|
|
|
|
<Link to='supervisor'>Супервайзер</Link>
|
|
|
|
</Menu.Item>
|
|
|
|
<Menu.Item key="documentsSub1.6" icon={<FolderOutlined/>}>
|
|
|
|
<Link to='master'>Мастер</Link>
|
|
|
|
</Menu.Item>
|
|
|
|
<Menu.Item key="documentsSub1.7" icon={<FolderOutlined/>}>
|
|
|
|
<Link to='lastData'>Последние данные</Link>
|
|
|
|
</Menu.Item>
|
|
|
|
</SubMenu>
|
2021-05-25 12:02:39 +05:00
|
|
|
</Menu>
|
|
|
|
|
|
|
|
<Layout>
|
2021-05-27 13:46:46 +05:00
|
|
|
<Content className="site-layout-background">
|
2021-05-25 12:02:39 +05:00
|
|
|
<Switch>
|
|
|
|
<Route path="/well/:id/file">
|
|
|
|
<Files/>
|
|
|
|
</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/>
|
|
|
|
</Route>
|
2021-07-21 16:53:33 +05:00
|
|
|
<Route path="/well/:id/wellAnalysis">
|
|
|
|
<WellAnalysis/>
|
|
|
|
</Route>
|
2021-05-25 12:02:39 +05:00
|
|
|
<Route path="/well/:id/telemetry">
|
|
|
|
<TelemetryView/>
|
|
|
|
</Route>
|
2021-07-22 14:53:30 +05:00
|
|
|
<Route path="/well/:id/fluidService">
|
2021-07-26 11:12:20 +05:00
|
|
|
<FluidService selectedFileCategory={1}/>
|
2021-07-22 14:53:30 +05:00
|
|
|
</Route>
|
|
|
|
<Route path="/well/:id/cementing">
|
2021-07-26 11:12:20 +05:00
|
|
|
<Cementing id={2}/>
|
2021-07-22 14:53:30 +05:00
|
|
|
</Route>
|
|
|
|
<Route path="/well/:id/nnb">
|
2021-07-26 11:12:20 +05:00
|
|
|
<Nnb id={3}/>
|
2021-07-22 14:53:30 +05:00
|
|
|
</Route>
|
|
|
|
<Route path="/well/:id/gti">
|
2021-07-26 11:12:20 +05:00
|
|
|
<Gti id={4}/>
|
2021-07-22 14:53:30 +05:00
|
|
|
</Route>
|
|
|
|
<Route path="/well/:id/documentsForWell">
|
2021-07-26 11:12:20 +05:00
|
|
|
<DocumentForWell id={5}/>
|
2021-07-22 14:53:30 +05:00
|
|
|
</Route>
|
|
|
|
<Route path="/well/:id/supervisor">
|
2021-07-26 11:12:20 +05:00
|
|
|
<Supervisor id={6}/>
|
2021-07-22 14:53:30 +05:00
|
|
|
</Route>
|
|
|
|
<Route path="/well/:id/master">
|
2021-07-26 11:12:20 +05:00
|
|
|
<Master id={7}/>
|
2021-07-22 14:53:30 +05:00
|
|
|
</Route>
|
|
|
|
<Route path="/well/:id/lastData">
|
|
|
|
<LastData/>
|
|
|
|
</Route>
|
|
|
|
<Route path="/well/:id/documents">
|
|
|
|
<FluidService/>
|
|
|
|
</Route>
|
2021-05-25 12:02:39 +05:00
|
|
|
<Route path="/">
|
|
|
|
<Redirect to={{pathname: `/well/${id}/telemetry`}}/>
|
|
|
|
</Route>
|
|
|
|
</Switch>
|
|
|
|
</Content>
|
|
|
|
</Layout>
|
|
|
|
</Layout>
|
|
|
|
</>)
|
|
|
|
}
|