2021-05-27 13:46:46 +05:00
|
|
|
|
import {useState, useEffect} from 'react'
|
2021-07-29 15:15:09 +05:00
|
|
|
|
import {Row, Col, Select} from 'antd'
|
2021-08-12 17:47:16 +05:00
|
|
|
|
|
|
|
|
|
import {Column} from './Column'
|
|
|
|
|
import {CustomColumn} from './CustomColumn'
|
|
|
|
|
import ActiveMessagesOnline from './ActiveMessagesOnline'
|
2021-08-12 17:54:04 +05:00
|
|
|
|
import {ModeDisplay} from "./ModeDisplay"
|
|
|
|
|
import {UserOfWells} from './UserOfWells'
|
2021-08-12 17:47:16 +05:00
|
|
|
|
|
|
|
|
|
import LoaderPortal from '../../components/LoaderPortal'
|
|
|
|
|
import {Subscribe} from '../../services/signalr'
|
|
|
|
|
import {DataService} from '../../services/api'
|
2021-08-13 14:46:22 +05:00
|
|
|
|
import {updateFromWebApiWrapperAsync} from '../../components/factory'
|
2021-08-12 17:47:16 +05:00
|
|
|
|
|
|
|
|
|
import '../../styles/message.css'
|
2021-05-19 16:05:01 +05:00
|
|
|
|
|
2021-05-27 13:46:46 +05:00
|
|
|
|
const {Option} = Select
|
2021-05-19 16:05:01 +05:00
|
|
|
|
|
|
|
|
|
const dash = [7, 3]
|
2021-04-16 15:50:01 +05:00
|
|
|
|
|
|
|
|
|
const blockHeightGroup = {
|
2021-05-19 16:05:01 +05:00
|
|
|
|
label: "Высота блока",
|
2021-04-16 15:50:01 +05:00
|
|
|
|
yDisplay: false,
|
2021-07-29 16:24:01 +05:00
|
|
|
|
linePv: {label: "blockPosition", units: 'м', xAccessorName: "blockPosition", yAccessorName: "date", color: '#333'},
|
|
|
|
|
lineOther: {
|
|
|
|
|
label: "wellDepth",
|
|
|
|
|
units: 'м',
|
|
|
|
|
xAccessorName: "wellDepth",
|
|
|
|
|
yAccessorName: "date",
|
|
|
|
|
color: '#333',
|
|
|
|
|
showLine: false,
|
|
|
|
|
xConstValue: 30
|
|
|
|
|
},
|
2021-04-16 15:50:01 +05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const blockSpeedGroup = {
|
2021-05-19 16:05:01 +05:00
|
|
|
|
label: "Скорость блока",
|
2021-04-16 15:50:01 +05:00
|
|
|
|
yDisplay: false,
|
2021-05-27 13:46:46 +05:00
|
|
|
|
linePv: {label: "blockSpeed", units: 'м/ч', xAccessorName: "blockSpeed", yAccessorName: "date", color: '#0a0'},
|
|
|
|
|
lineSp: {label: "blockSpeedSp", units: 'м/ч', xAccessorName: "blockSpeedSp", yAccessorName: "date", color: '#0a0'},
|
2021-04-16 15:50:01 +05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const pressureGroup = {
|
2021-05-19 16:05:01 +05:00
|
|
|
|
label: "Давление",
|
|
|
|
|
yDisplay: false,
|
2021-05-27 13:46:46 +05:00
|
|
|
|
linePv: {label: "pressure", units: 'атм', xAccessorName: "pressure", yAccessorName: "date", color: '#c00'},
|
|
|
|
|
lineSp: {label: "pressureSp", units: 'атм', xAccessorName: "pressureSp", yAccessorName: "date", color: '#c00'},
|
|
|
|
|
lineIdle: {label: "pressureIdle", units: 'атм', xAccessorName: "pressureIdle", yAccessorName: "date", color: '#c00'},
|
2021-04-16 15:50:01 +05:00
|
|
|
|
linesOther: [
|
2021-05-27 13:46:46 +05:00
|
|
|
|
{
|
|
|
|
|
label: "мекс. перепад",
|
|
|
|
|
units: 'атм',
|
|
|
|
|
xAccessorName: "pressureDeltaLimitMax",
|
|
|
|
|
yAccessorName: "date",
|
|
|
|
|
color: '#c00'
|
|
|
|
|
},
|
2021-04-16 15:50:01 +05:00
|
|
|
|
],
|
|
|
|
|
}
|
|
|
|
|
|
2021-05-19 16:05:01 +05:00
|
|
|
|
const axialLoadGroup = {
|
|
|
|
|
label: "Осевая нагрузка",
|
2021-04-16 15:50:01 +05:00
|
|
|
|
yDisplay: false,
|
2021-05-27 13:46:46 +05:00
|
|
|
|
linePv: {label: "axialLoad", units: 'т', xAccessorName: "axialLoad", yAccessorName: "date", color: '#00a'},
|
|
|
|
|
lineSp: {label: "axialLoadSp", units: 'т', xAccessorName: "axialLoadSp", yAccessorName: "date", color: '#00a', dash},
|
2021-04-16 15:50:01 +05:00
|
|
|
|
linesOther: [
|
2021-05-27 13:46:46 +05:00
|
|
|
|
{label: "axialLoadLimitMax", units: 'т', xAccessorName: "axialLoadLimitMax", yAccessorName: "date", color: '#00a'},
|
2021-04-16 15:50:01 +05:00
|
|
|
|
],
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const hookWeightGroup = {
|
2021-07-23 17:15:33 +05:00
|
|
|
|
label: "Вес на крюке",
|
2021-04-16 15:50:01 +05:00
|
|
|
|
yDisplay: false,
|
2021-05-27 13:46:46 +05:00
|
|
|
|
linePv: {label: "hookWeight", units: 'т', xAccessorName: "hookWeight", yAccessorName: "date", color: '#0aa'},
|
|
|
|
|
lineIdle: {
|
|
|
|
|
label: "hookWeightIdle",
|
|
|
|
|
units: 'т',
|
|
|
|
|
xAccessorName: "hookWeightIdle",
|
|
|
|
|
yAccessorName: "date",
|
|
|
|
|
color: '#0aa',
|
|
|
|
|
dash
|
|
|
|
|
},
|
2021-04-16 15:50:01 +05:00
|
|
|
|
linesOther: [
|
2021-05-27 13:46:46 +05:00
|
|
|
|
{
|
|
|
|
|
label: "hookWeightLimitMin",
|
|
|
|
|
units: 'т',
|
|
|
|
|
xAccessorName: "hookWeightLimitMin",
|
|
|
|
|
yAccessorName: "date",
|
|
|
|
|
color: '#0aa'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: "hookWeightLimitMax",
|
|
|
|
|
units: 'т',
|
|
|
|
|
xAccessorName: "hookWeightLimitMax",
|
|
|
|
|
yAccessorName: "date",
|
|
|
|
|
color: '#0aa'
|
|
|
|
|
},
|
2021-04-16 15:50:01 +05:00
|
|
|
|
],
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const rotorTorqueGroup = {
|
2021-05-19 16:05:01 +05:00
|
|
|
|
label: "Момент на роторе",
|
2021-04-16 15:50:01 +05:00
|
|
|
|
yDisplay: false,
|
2021-05-27 13:46:46 +05:00
|
|
|
|
linePv: {label: "rotorTorque", units: 'кН·м', xAccessorName: "rotorTorque", yAccessorName: "date", color: '#a0a'},
|
|
|
|
|
lineSp: {label: "rotorTorqueSp", units: 'кН·м', xAccessorName: "rotorTorqueSp", yAccessorName: "date", color: '#a0a'},
|
|
|
|
|
lineIdle: {
|
|
|
|
|
label: "rotorTorqueIdle",
|
|
|
|
|
units: 'кН·м',
|
|
|
|
|
xAccessorName: "rotorTorqueIdle",
|
|
|
|
|
yAccessorName: "date",
|
|
|
|
|
color: '#a0a'
|
|
|
|
|
},
|
2021-04-16 15:50:01 +05:00
|
|
|
|
linesOther: [
|
2021-05-27 13:46:46 +05:00
|
|
|
|
{
|
|
|
|
|
label: "rotorTorqueLimitMax",
|
|
|
|
|
units: 'кН·м',
|
|
|
|
|
xAccessorName: "rotorTorqueLimitMax",
|
|
|
|
|
yAccessorName: "date",
|
|
|
|
|
color: '#a0a'
|
|
|
|
|
},
|
2021-04-16 15:50:01 +05:00
|
|
|
|
],
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const paramsGroups = [blockHeightGroup, blockSpeedGroup, pressureGroup, axialLoadGroup, hookWeightGroup, rotorTorqueGroup]
|
|
|
|
|
|
2021-07-20 16:15:44 +05:00
|
|
|
|
const timePeriodCollection = [
|
|
|
|
|
{value: '60', label: '1 минута'},
|
|
|
|
|
{value: '300', label: '5 минут'},
|
|
|
|
|
{value: '600', label: '10 минут'},
|
|
|
|
|
{value: '1800', label: '30 минут'},
|
|
|
|
|
{value: '3600', label: '1 час'},
|
|
|
|
|
{value: '21600', label: '6 часов'},
|
|
|
|
|
{value: '43200', label: '12 часов'},
|
|
|
|
|
{value: '86400', label: '24 часа'}
|
|
|
|
|
]
|
|
|
|
|
|
2021-07-27 12:08:11 +05:00
|
|
|
|
const defaultChartInterval = '600'
|
|
|
|
|
|
2021-08-12 17:47:16 +05:00
|
|
|
|
export default function TelemetryView({idWell}) {
|
2021-04-16 15:50:01 +05:00
|
|
|
|
const [saubData, setSaubData] = useState([])
|
2021-07-27 12:08:11 +05:00
|
|
|
|
const [chartInterval, setChartInterval] = useState(defaultChartInterval)
|
2021-08-13 14:46:22 +05:00
|
|
|
|
const [showLoader, setShowLoader] = useState(false)
|
2021-07-23 17:15:33 +05:00
|
|
|
|
|
2021-07-27 12:08:11 +05:00
|
|
|
|
const options = timePeriodCollection.map((line) => <Option key={line.value}>{line.label}</Option>)
|
2021-07-20 16:15:44 +05:00
|
|
|
|
|
2021-05-19 16:05:01 +05:00
|
|
|
|
const handleReceiveDataSaub = (data) => {
|
|
|
|
|
if (data) {
|
2021-04-16 15:50:01 +05:00
|
|
|
|
setSaubData(data)
|
2021-05-19 16:05:01 +05:00
|
|
|
|
}
|
2021-04-16 15:50:01 +05:00
|
|
|
|
}
|
|
|
|
|
|
2021-05-19 16:05:01 +05:00
|
|
|
|
useEffect(() => {
|
2021-08-13 14:46:22 +05:00
|
|
|
|
updateFromWebApiWrapperAsync(
|
|
|
|
|
async () => {
|
|
|
|
|
const data = await DataService.getData(idWell, null, chartInterval)
|
2021-07-29 16:24:01 +05:00
|
|
|
|
handleReceiveDataSaub(data)
|
2021-08-13 14:46:22 +05:00
|
|
|
|
},
|
|
|
|
|
setShowLoader,
|
|
|
|
|
`Не удалось получить данные по скважине "${idWell}"`,
|
|
|
|
|
)
|
|
|
|
|
return Subscribe('hubs/telemetry', 'ReceiveDataSaub', `well_${idWell}`, handleReceiveDataSaub)
|
2021-08-12 17:47:16 +05:00
|
|
|
|
}, [idWell, chartInterval])
|
2021-05-25 14:20:58 +05:00
|
|
|
|
|
2021-05-19 16:05:01 +05:00
|
|
|
|
const colSpan = 24 / (paramsGroups.length)
|
|
|
|
|
|
2021-08-13 14:46:22 +05:00
|
|
|
|
return (<LoaderPortal show={showLoader}>
|
2021-05-27 13:46:46 +05:00
|
|
|
|
<Row style={{marginBottom: '1rem'}}>
|
2021-05-19 16:05:01 +05:00
|
|
|
|
<Col>
|
2021-05-27 13:46:46 +05:00
|
|
|
|
<ModeDisplay data={saubData}/>
|
2021-05-19 16:05:01 +05:00
|
|
|
|
</Col>
|
2021-05-27 13:46:46 +05:00
|
|
|
|
<span style={{flexGrow: 0.1}}> </span>
|
2021-04-16 15:50:01 +05:00
|
|
|
|
<Col>
|
2021-05-19 16:05:01 +05:00
|
|
|
|
Интервал:
|
2021-07-27 12:08:11 +05:00
|
|
|
|
<Select defaultValue={defaultChartInterval} onChange={setChartInterval}>
|
|
|
|
|
{options}
|
2021-05-19 16:05:01 +05:00
|
|
|
|
</Select>
|
2021-04-16 15:50:01 +05:00
|
|
|
|
</Col>
|
2021-05-27 13:46:46 +05:00
|
|
|
|
<span style={{flexGrow: 1}}> </span>
|
2021-04-16 15:50:01 +05:00
|
|
|
|
<Col>
|
2021-05-19 16:05:01 +05:00
|
|
|
|
<UserOfWells data={saubData}/>
|
2021-04-16 15:50:01 +05:00
|
|
|
|
</Col>
|
|
|
|
|
</Row>
|
|
|
|
|
<Row>
|
2021-07-23 17:15:33 +05:00
|
|
|
|
<Col span={3}>
|
2021-05-27 13:46:46 +05:00
|
|
|
|
<CustomColumn data={saubData}/>
|
2021-04-16 15:50:01 +05:00
|
|
|
|
</Col>
|
2021-07-23 17:15:33 +05:00
|
|
|
|
<Col span={24 - 3}>
|
2021-04-16 15:50:01 +05:00
|
|
|
|
<Row>
|
2021-07-23 17:15:33 +05:00
|
|
|
|
{paramsGroups.map((group, index) =>
|
2021-05-19 16:05:01 +05:00
|
|
|
|
<Col span={colSpan} className='border_small' key={group.label}>
|
2021-07-29 16:24:01 +05:00
|
|
|
|
<Column data={saubData} lineGroup={group} interval={chartInterval}
|
|
|
|
|
showBorder={saubData[saubData.length - 1]?.drillingBy === index}/>
|
2021-05-19 16:05:01 +05:00
|
|
|
|
</Col>)}
|
2021-04-16 15:50:01 +05:00
|
|
|
|
</Row>
|
|
|
|
|
</Col>
|
|
|
|
|
</Row>
|
2021-08-12 17:47:16 +05:00
|
|
|
|
<ActiveMessagesOnline idWell={idWell}/>
|
2021-06-02 11:38:27 +05:00
|
|
|
|
</LoaderPortal>)
|
2021-04-16 15:50:01 +05:00
|
|
|
|
}
|