forked from ddrilling/asb_cloud_front
Merge branch 'cluster-detail'
This commit is contained in:
commit
325462dcc9
@ -1,5 +1,4 @@
|
|||||||
import { ChartDepthToDay } from './charts/ChartDepthToDay'
|
import { ChartDepthToDay } from './charts/ChartDepthToDay'
|
||||||
import { useParams } from "react-router-dom"
|
|
||||||
import notify from "../components/notify"
|
import notify from "../components/notify"
|
||||||
import { useState, useEffect } from 'react'
|
import { useState, useEffect } from 'react'
|
||||||
import { AnalyticsService } from "../services/api"
|
import { AnalyticsService } from "../services/api"
|
||||||
@ -10,8 +9,7 @@ const lines = [
|
|||||||
{ label: "Положение инструмента", yAccessorName: "bitDepth", color: '#ff0' }
|
{ label: "Положение инструмента", yAccessorName: "bitDepth", color: '#ff0' }
|
||||||
]
|
]
|
||||||
|
|
||||||
export function AnalysisDepthToDay() {
|
export function AnalysisDepthToDay({idWell}) {
|
||||||
let { id } = useParams()
|
|
||||||
const [depthToDayData, setDepthToDayData] = useState([])
|
const [depthToDayData, setDepthToDayData] = useState([])
|
||||||
const [loader, setLoader] = useState(false)
|
const [loader, setLoader] = useState(false)
|
||||||
|
|
||||||
@ -21,15 +19,15 @@ export function AnalysisDepthToDay() {
|
|||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
setLoader(true)
|
setLoader(true)
|
||||||
AnalyticsService.getWellDepthToDay(id)
|
AnalyticsService.getWellDepthToDay(idWell)
|
||||||
.then(handleReceiveDepthToDayData)
|
.then(handleReceiveDepthToDayData)
|
||||||
.catch(error => {
|
.catch(error => {
|
||||||
notify(`Не удалось получить данные для Анализа Глубина-День по скважине "${id}"`,
|
notify(`Не удалось получить данные для Анализа Глубина-День по скважине "${idWell}"`,
|
||||||
'warning')
|
'warning')
|
||||||
console.log(error)
|
console.log(error)
|
||||||
})
|
})
|
||||||
.finally(setLoader(false))
|
.finally(setLoader(false))
|
||||||
}, [id])
|
}, [idWell])
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<LoaderPortal show={loader}>
|
<LoaderPortal show={loader}>
|
||||||
|
25
src/components/modalWindows/ModalChartDepthToday.jsx
Normal file
25
src/components/modalWindows/ModalChartDepthToday.jsx
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
import { useState } from 'react'
|
||||||
|
import { AnalysisDepthToDay } from '../AnalysisDepthToDay'
|
||||||
|
import { Button, Modal } from 'antd'
|
||||||
|
|
||||||
|
export default function ModalChartDepthToDay({idWell}) {
|
||||||
|
const [chartVisible, setChartVisible] = useState(false)
|
||||||
|
|
||||||
|
return (<>
|
||||||
|
<Button type="secondary" onClick={() => setChartVisible(true)} style={{ marginLeft: "5px" }}>
|
||||||
|
Открыть
|
||||||
|
</Button>
|
||||||
|
<Modal
|
||||||
|
title='Последние показатели бурового раствора'
|
||||||
|
centered
|
||||||
|
visible={chartVisible}
|
||||||
|
onOk={() => setChartVisible(false)}
|
||||||
|
onCancel={() => setChartVisible(false)}
|
||||||
|
width={1800}
|
||||||
|
okText='Ок'
|
||||||
|
cancelText='Отмена'
|
||||||
|
>
|
||||||
|
<AnalysisDepthToDay idWell={idWell}/>
|
||||||
|
</Modal>
|
||||||
|
</>)
|
||||||
|
}
|
@ -3,7 +3,7 @@ import { AnalysisDepthToInterval } from '../components/AnalysisDepthToInterval'
|
|||||||
import { AnalysisOperationTime } from '../components/AnalysisOperationTime'
|
import { AnalysisOperationTime } from '../components/AnalysisOperationTime'
|
||||||
import { Row, Col } from 'antd'
|
import { Row, Col } from 'antd'
|
||||||
|
|
||||||
export default function Analysis() {
|
export default function Analysis({idWell}) {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
@ -11,18 +11,18 @@ export default function Analysis() {
|
|||||||
<Row justify="space-around" align="middle">
|
<Row justify="space-around" align="middle">
|
||||||
<Col span={10}>
|
<Col span={10}>
|
||||||
<h2>График Глубина-день</h2>
|
<h2>График Глубина-день</h2>
|
||||||
<AnalysisDepthToDay />
|
<AnalysisDepthToDay idWell={idWell}/>
|
||||||
</Col>
|
</Col>
|
||||||
<Col span={10}>
|
<Col span={10}>
|
||||||
<h2>График Глубина за интервал</h2>
|
<h2>График Глубина за интервал</h2>
|
||||||
<AnalysisDepthToInterval />
|
<AnalysisDepthToInterval idWell={idWell}/>
|
||||||
</Col>
|
</Col>
|
||||||
</Row >
|
</Row >
|
||||||
<Row><div style={{height: "150px"}}> </div></Row>
|
<Row><div style={{height: "150px"}}> </div></Row>
|
||||||
<Row justify="space-around" align="middle">
|
<Row justify="space-around" align="middle">
|
||||||
<Col span={10}>
|
<Col span={10}>
|
||||||
<h2>График Операция за время</h2>
|
<h2>График Операция за время</h2>
|
||||||
<AnalysisOperationTime />
|
<AnalysisOperationTime idWell={idWell}/>
|
||||||
</Col>
|
</Col>
|
||||||
</Row>
|
</Row>
|
||||||
</>
|
</>
|
||||||
|
@ -5,6 +5,37 @@ import { useState, useEffect } from "react";
|
|||||||
import { ClusterService } from '../services/api'
|
import { ClusterService } from '../services/api'
|
||||||
import notify from '../components/notify'
|
import notify from '../components/notify'
|
||||||
import { Table, Tag, Button } from 'antd';
|
import { Table, Tag, Button } from 'antd';
|
||||||
|
import ModalChartDepthToDay from '../components/modalWindows/ModalChartDepthToday'
|
||||||
|
|
||||||
|
|
||||||
|
export default function Cluster() {
|
||||||
|
let { id } = useParams()
|
||||||
|
const [clusterTitle, setClusterTitle] = useState("")
|
||||||
|
const [wellsStat, setWellsStat] = useState(null)
|
||||||
|
const [showLoader, setShowLoader] = useState(false)
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
const updateWellsStat = async () => {
|
||||||
|
setShowLoader(true)
|
||||||
|
try {
|
||||||
|
const msInDay = 1000 * 60 * 60 * 24
|
||||||
|
const data = await ClusterService.getStat(id)
|
||||||
|
const wellsStat = data.wellsStat.map(w => ({
|
||||||
|
...w,
|
||||||
|
periodPlan: (new Date(w.planEnd) - new Date(w.planStart)) / msInDay,
|
||||||
|
periodFact: (new Date(w.factEnd) - new Date(w.factStart)) / msInDay,
|
||||||
|
}))
|
||||||
|
setWellsStat(wellsStat)
|
||||||
|
setClusterTitle(data.caption)
|
||||||
|
}
|
||||||
|
catch (ex) {
|
||||||
|
notify(`Не удалось загрузить статистику по скважинам куста "${id}"`, 'error')
|
||||||
|
console.log(ex)
|
||||||
|
}
|
||||||
|
setShowLoader(false)
|
||||||
|
}
|
||||||
|
updateWellsStat()
|
||||||
|
}, [id])
|
||||||
|
|
||||||
const columns = [
|
const columns = [
|
||||||
{
|
{
|
||||||
@ -86,7 +117,7 @@ const columns = [
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: 'График глубина-день',
|
title: 'График глубина-день',
|
||||||
render: _ => (<Button>Открыть</Button>)
|
render: (_, item) => (<ModalChartDepthToDay idWell={item.id}/>)
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: 'Таблица по операциям',
|
title: 'Таблица по операциям',
|
||||||
@ -100,34 +131,6 @@ const columns = [
|
|||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
export default function Cluster() {
|
|
||||||
let { id } = useParams()
|
|
||||||
const [clusterTitle, setClusterTitle] = useState("")
|
|
||||||
const [wellsStat, setWellsStat] = useState(null)
|
|
||||||
const [showLoader, setShowLoader] = useState(false)
|
|
||||||
|
|
||||||
useEffect(()=>{
|
|
||||||
const updateWellsStat = async() => {
|
|
||||||
setShowLoader(true)
|
|
||||||
try{
|
|
||||||
const msInDay = 1000*60*60*24
|
|
||||||
const data = await ClusterService.getStat(id)
|
|
||||||
const wellsStat = data.wellsStat.map(w=>({...w,
|
|
||||||
periodPlan: (new Date(w.planEnd) - new Date(w.planStart))/msInDay,
|
|
||||||
periodFact: (new Date(w.factEnd) - new Date(w.factStart))/msInDay,
|
|
||||||
}))
|
|
||||||
setWellsStat(wellsStat)
|
|
||||||
setClusterTitle(data.caption)
|
|
||||||
}
|
|
||||||
catch(ex) {
|
|
||||||
notify(`Не удалось загрузить статистику по скважинам куста "${id}"`, 'error')
|
|
||||||
console.log(ex)
|
|
||||||
}
|
|
||||||
setShowLoader(false)
|
|
||||||
}
|
|
||||||
updateWellsStat()
|
|
||||||
},[id])
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<LoaderPortal show={showLoader}>
|
<LoaderPortal show={showLoader}>
|
||||||
<h3>{clusterTitle}</h3>
|
<h3>{clusterTitle}</h3>
|
||||||
|
@ -95,7 +95,7 @@ export default function Well() {
|
|||||||
<Report/>
|
<Report/>
|
||||||
</Route>
|
</Route>
|
||||||
<Route path="/well/:id/analysis">
|
<Route path="/well/:id/analysis">
|
||||||
<Analysis/>
|
<Analysis idWell={id}/>
|
||||||
</Route>
|
</Route>
|
||||||
<Route path="/well/:id/wellAnalysis">
|
<Route path="/well/:id/wellAnalysis">
|
||||||
<WellAnalysis/>
|
<WellAnalysis/>
|
||||||
|
Loading…
Reference in New Issue
Block a user