2021-10-19 12:47:21 +05:00
|
|
|
|
import { useState, useEffect } from 'react'
|
|
|
|
|
import { Select } from 'antd'
|
2021-08-12 17:47:16 +05:00
|
|
|
|
|
2021-10-19 12:47:21 +05:00
|
|
|
|
import { Column } from './Column'
|
|
|
|
|
import { CustomColumn } from './CustomColumn'
|
2021-08-12 17:47:16 +05:00
|
|
|
|
import ActiveMessagesOnline from './ActiveMessagesOnline'
|
2021-10-19 12:47:21 +05:00
|
|
|
|
import { ModeDisplay } from "./ModeDisplay"
|
|
|
|
|
import { UserOfWell } from './UserOfWells'
|
2021-08-12 17:47:16 +05:00
|
|
|
|
|
|
|
|
|
import LoaderPortal from '../../components/LoaderPortal'
|
2021-10-19 12:47:21 +05:00
|
|
|
|
import { Grid, GridItem, Flex } from '../../components/Grid'
|
|
|
|
|
import { Subscribe } from '../../services/signalr'
|
|
|
|
|
import { TelemetryDataSaubService, TelemetryDataSpinService } from '../../services/api'
|
|
|
|
|
import { invokeWebApiWrapperAsync } from '../../components/factory'
|
2021-08-12 17:47:16 +05:00
|
|
|
|
|
2021-09-13 17:31:09 +05:00
|
|
|
|
import MomentStabPicEnabled from "../../images/DempherOn.png"
|
|
|
|
|
import MomentStabPicDisabled from "../../images/DempherOff.png"
|
|
|
|
|
import SpinPicEnabled from "../../images/SpinEnabled.png"
|
|
|
|
|
import SpinPicDisabled from "../../images/SpinDisabled.png"
|
|
|
|
|
|
2021-08-12 17:47:16 +05:00
|
|
|
|
import '../../styles/message.css'
|
2021-05-19 16:05:01 +05:00
|
|
|
|
|
2021-10-19 12:47:21 +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
|
|
|
|
|
2021-10-19 12:47:21 +05:00
|
|
|
|
const blockHeightGroup = [
|
|
|
|
|
{
|
|
|
|
|
label: "Высота блока",
|
|
|
|
|
units: 'м',
|
|
|
|
|
xAccessorName: "blockPosition",
|
|
|
|
|
yAccessorName: "date",
|
|
|
|
|
color: '#333',
|
|
|
|
|
showValue: true
|
|
|
|
|
}, {
|
2021-07-29 16:24:01 +05:00
|
|
|
|
label: "wellDepth",
|
|
|
|
|
units: 'м',
|
|
|
|
|
xAccessorName: "wellDepth",
|
|
|
|
|
yAccessorName: "date",
|
|
|
|
|
color: '#333',
|
|
|
|
|
showLine: false,
|
2021-10-19 12:47:21 +05:00
|
|
|
|
xConstValue: 30,
|
|
|
|
|
dash
|
|
|
|
|
}, {
|
|
|
|
|
label: 'Расход',
|
|
|
|
|
units: 'м³/ч',
|
|
|
|
|
xAccessorName: 'flow',
|
|
|
|
|
yAccessorName: 'date',
|
|
|
|
|
color: '#077',
|
|
|
|
|
showValue: true
|
|
|
|
|
}
|
|
|
|
|
]
|
2021-04-16 15:50:01 +05:00
|
|
|
|
|
2021-10-19 12:47:21 +05:00
|
|
|
|
const blockSpeedGroup = [
|
|
|
|
|
{
|
|
|
|
|
label: "Скорость блока",
|
|
|
|
|
units: 'м/ч',
|
|
|
|
|
xAccessorName: "blockSpeed",
|
|
|
|
|
yAccessorName: "date",
|
|
|
|
|
color: '#0a0',
|
|
|
|
|
showValue: true
|
|
|
|
|
}, {
|
|
|
|
|
label: "blockSpeedSp",
|
|
|
|
|
units: 'м/ч',
|
|
|
|
|
xAccessorName: "blockSpeedSp",
|
|
|
|
|
yAccessorName: "date",
|
|
|
|
|
color: '#0a0',
|
|
|
|
|
footer: 'SP',
|
|
|
|
|
dash
|
|
|
|
|
}
|
|
|
|
|
]
|
2021-04-16 15:50:01 +05:00
|
|
|
|
|
2021-10-19 12:47:21 +05:00
|
|
|
|
const pressureGroup = [
|
|
|
|
|
{
|
|
|
|
|
label: "Давление",
|
|
|
|
|
units: 'атм',
|
|
|
|
|
xAccessorName: "pressure",
|
|
|
|
|
yAccessorName: "date",
|
|
|
|
|
color: '#c00',
|
|
|
|
|
showValue: true
|
|
|
|
|
}, {
|
|
|
|
|
label: "pressureSp",
|
|
|
|
|
units: 'атм',
|
|
|
|
|
xAccessorName: "pressureSp",
|
|
|
|
|
yAccessorName: "date",
|
|
|
|
|
color: '#c00',
|
|
|
|
|
footer: 'SP',
|
|
|
|
|
dash
|
|
|
|
|
}, {
|
|
|
|
|
label: "pressureIdle",
|
|
|
|
|
units: 'атм',
|
|
|
|
|
xAccessorName: "pressureIdle",
|
|
|
|
|
yAccessorName: "date",
|
|
|
|
|
color: '#c00',
|
|
|
|
|
footer: 'IDLE',
|
|
|
|
|
dash
|
|
|
|
|
}, {
|
|
|
|
|
label: "pressureDeltaLimitMax",
|
|
|
|
|
units: 'атм',
|
|
|
|
|
xAccessorName: "pressureDeltaLimitMax",
|
|
|
|
|
yAccessorName: "date",
|
|
|
|
|
color: '#c00',
|
|
|
|
|
footer: true,
|
|
|
|
|
dash
|
|
|
|
|
}
|
|
|
|
|
]
|
2021-04-16 15:50:01 +05:00
|
|
|
|
|
2021-10-19 12:47:21 +05:00
|
|
|
|
const axialLoadGroup = [
|
|
|
|
|
{
|
|
|
|
|
label: "Осевая нагрузка",
|
|
|
|
|
units: 'т',
|
|
|
|
|
xAccessorName: "axialLoad",
|
|
|
|
|
yAccessorName: "date",
|
|
|
|
|
color: '#00a',
|
|
|
|
|
showValue: true
|
|
|
|
|
}, {
|
|
|
|
|
label: "axialLoadSp",
|
|
|
|
|
units: 'т',
|
|
|
|
|
xAccessorName: "axialLoadSp",
|
|
|
|
|
yAccessorName: "date",
|
|
|
|
|
color: '#00a',
|
|
|
|
|
footer: 'SP',
|
|
|
|
|
dash
|
|
|
|
|
}, {
|
|
|
|
|
label: "axialLoadLimitMax",
|
|
|
|
|
units: 'т',
|
|
|
|
|
xAccessorName: "axialLoadLimitMax",
|
|
|
|
|
yAccessorName: "date",
|
|
|
|
|
color: '#00a',
|
|
|
|
|
footer: true,
|
|
|
|
|
dash
|
|
|
|
|
},
|
|
|
|
|
]
|
2021-04-16 15:50:01 +05:00
|
|
|
|
|
2021-10-19 12:47:21 +05:00
|
|
|
|
const hookWeightGroup = [
|
|
|
|
|
{
|
|
|
|
|
label: "Вес на крюке",
|
|
|
|
|
units: 'т',
|
|
|
|
|
xAccessorName: "hookWeight",
|
|
|
|
|
yAccessorName: "date",
|
|
|
|
|
color: '#0aa',
|
|
|
|
|
showValue: true
|
|
|
|
|
}, {
|
2021-05-27 13:46:46 +05:00
|
|
|
|
label: "hookWeightIdle",
|
|
|
|
|
units: 'т',
|
|
|
|
|
xAccessorName: "hookWeightIdle",
|
|
|
|
|
yAccessorName: "date",
|
|
|
|
|
color: '#0aa',
|
2021-10-19 12:47:21 +05:00
|
|
|
|
footer: 'IDLE',
|
|
|
|
|
dash
|
|
|
|
|
}, {
|
|
|
|
|
label: "hookWeightLimitMin",
|
|
|
|
|
units: 'т',
|
|
|
|
|
xAccessorName: "hookWeightLimitMin",
|
|
|
|
|
yAccessorName: "date",
|
|
|
|
|
color: '#0aa',
|
|
|
|
|
footer: true,
|
|
|
|
|
dash
|
|
|
|
|
}, {
|
|
|
|
|
label: "hookWeightLimitMax",
|
|
|
|
|
units: 'т',
|
|
|
|
|
xAccessorName: "hookWeightLimitMax",
|
|
|
|
|
yAccessorName: "date",
|
|
|
|
|
color: '#0aa',
|
|
|
|
|
footer: true,
|
2021-05-27 13:46:46 +05:00
|
|
|
|
dash
|
|
|
|
|
},
|
2021-10-19 12:47:21 +05:00
|
|
|
|
{
|
|
|
|
|
label: 'Обороты ротора',
|
|
|
|
|
units: 'об/мин',
|
|
|
|
|
xAccessorName: 'rotorSpeed',
|
|
|
|
|
yAccessorName: 'date',
|
|
|
|
|
color: '#aa0',
|
|
|
|
|
showValue: true
|
|
|
|
|
}
|
|
|
|
|
]
|
2021-04-16 15:50:01 +05:00
|
|
|
|
|
2021-10-19 12:47:21 +05:00
|
|
|
|
const rotorTorqueGroup = [
|
|
|
|
|
{
|
|
|
|
|
label: "Момент на роторе",
|
|
|
|
|
units: 'кН·м',
|
|
|
|
|
xAccessorName: "rotorTorque",
|
|
|
|
|
yAccessorName: "date",
|
|
|
|
|
color: '#a0a',
|
|
|
|
|
showValue: true
|
|
|
|
|
}, {
|
|
|
|
|
label: "План. Момент на роторе",
|
|
|
|
|
units: 'кН·м',
|
|
|
|
|
xAccessorName: "rotorTorqueSp",
|
|
|
|
|
yAccessorName: "date",
|
|
|
|
|
color: '#a0a',
|
|
|
|
|
footer: 'SP',
|
|
|
|
|
dash
|
|
|
|
|
}, {
|
|
|
|
|
label: "Момент на роторе х.х.",
|
2021-05-27 13:46:46 +05:00
|
|
|
|
units: 'кН·м',
|
|
|
|
|
xAccessorName: "rotorTorqueIdle",
|
|
|
|
|
yAccessorName: "date",
|
2021-10-19 12:47:21 +05:00
|
|
|
|
color: '#a0a',
|
|
|
|
|
footer: 'IDLE',
|
|
|
|
|
dash
|
|
|
|
|
}, {
|
|
|
|
|
label: "rotorTorqueLimitMax",
|
|
|
|
|
units: 'кН·м',
|
|
|
|
|
xAccessorName: "rotorTorqueLimitMax",
|
|
|
|
|
yAccessorName: "date",
|
|
|
|
|
color: '#a0a',
|
|
|
|
|
footer: true,
|
|
|
|
|
dash
|
2021-05-27 13:46:46 +05:00
|
|
|
|
},
|
2021-10-19 12:47:21 +05:00
|
|
|
|
]
|
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 = [
|
2021-10-19 12:47:21 +05:00
|
|
|
|
{ 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-20 16:15:44 +05:00
|
|
|
|
]
|
|
|
|
|
|
2021-07-27 12:08:11 +05:00
|
|
|
|
const defaultChartInterval = '600'
|
|
|
|
|
|
2021-09-30 11:42:23 +05:00
|
|
|
|
const getLast = (data) =>
|
|
|
|
|
Array.isArray(data) ? data.slice(-1)[0] : data
|
|
|
|
|
|
|
|
|
|
const isMseEnabled = (dataSaub) => {
|
|
|
|
|
const lastData = getLast(dataSaub)
|
|
|
|
|
return (lastData?.mseState && 2) > 0
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const isTorqueStabEnabled = (dataSpin) => {
|
|
|
|
|
const lastData = getLast(dataSpin)
|
|
|
|
|
return lastData?.state === 7
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const isSpinEnabled = (dataSpin) => {
|
|
|
|
|
const lastData = getLast(dataSpin)
|
|
|
|
|
return lastData?.state > 0 && lastData?.state !== 6
|
|
|
|
|
}
|
|
|
|
|
|
2021-10-19 12:47:21 +05:00
|
|
|
|
const getIndexOfDrillingBy = (dataSaub) => {
|
2021-09-30 11:42:23 +05:00
|
|
|
|
const order = {
|
|
|
|
|
0: -1,
|
|
|
|
|
1: 1, // скорость
|
|
|
|
|
2: 2, // давление
|
|
|
|
|
3: 3, // нагрузка
|
|
|
|
|
4: 5, // момент
|
|
|
|
|
}
|
2021-10-19 12:47:21 +05:00
|
|
|
|
const idFeedRegulator = getLast(dataSaub)?.idFeedRegulator ?? 0
|
|
|
|
|
return order[idFeedRegulator] ?? -1
|
2021-09-30 11:42:23 +05:00
|
|
|
|
}
|
|
|
|
|
|
2021-10-19 12:47:21 +05:00
|
|
|
|
export default function TelemetryView({ idWell }) {
|
2021-09-30 11:42:23 +05:00
|
|
|
|
const [dataSaub, setDataSaub] = useState([])
|
|
|
|
|
const [dataSpin, setDataSpin] = 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-10-14 13:00:16 +05:00
|
|
|
|
const handleDataSaub = (data) => {
|
|
|
|
|
if (data) {
|
2021-10-14 11:35:38 +05:00
|
|
|
|
data.forEach((_, idx) => {
|
|
|
|
|
if (data[idx].rotorSpeed < 1)
|
|
|
|
|
data[idx].rotorSpeed = 0;
|
2021-10-14 13:00:16 +05:00
|
|
|
|
if (data[idx].rotorTorque < 1)
|
|
|
|
|
data[idx].rotorTorque = 0;
|
2021-10-14 11:35:38 +05:00
|
|
|
|
data[idx].blockSpeed = Math.abs(data[idx].blockSpeed)
|
|
|
|
|
})
|
2021-10-14 13:00:16 +05:00
|
|
|
|
setDataSaub(data)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const handleDataSpin = (data) => {
|
|
|
|
|
if (data) {
|
|
|
|
|
setDataSpin(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-17 17:42:42 +05:00
|
|
|
|
invokeWebApiWrapperAsync(
|
2021-08-13 14:46:22 +05:00
|
|
|
|
async () => {
|
2021-09-30 11:42:23 +05:00
|
|
|
|
const dataSaub = await TelemetryDataSaubService.getData(idWell, null, chartInterval)
|
|
|
|
|
const dataSpin = await TelemetryDataSpinService.getData(idWell, null, chartInterval)
|
2021-10-14 13:00:16 +05:00
|
|
|
|
handleDataSaub(dataSaub)
|
|
|
|
|
handleDataSpin(dataSpin)
|
2021-08-13 14:46:22 +05:00
|
|
|
|
},
|
|
|
|
|
setShowLoader,
|
|
|
|
|
`Не удалось получить данные по скважине "${idWell}"`,
|
2021-10-19 12:47:21 +05:00
|
|
|
|
)
|
2021-10-14 13:00:16 +05:00
|
|
|
|
const unsubscribeSaub = Subscribe('hubs/telemetry', 'ReceiveDataSaub', `well_${idWell}`, handleDataSaub)
|
|
|
|
|
const unsubscribeSpin = Subscribe('hubs/telemetry', 'ReceiveDataSpin', `well_${idWell}`, handleDataSpin)
|
2021-09-30 11:42:23 +05:00
|
|
|
|
return () => {
|
|
|
|
|
unsubscribeSaub()
|
|
|
|
|
unsubscribeSpin()
|
|
|
|
|
}
|
2021-08-12 17:47:16 +05:00
|
|
|
|
}, [idWell, chartInterval])
|
2021-05-25 14:20:58 +05:00
|
|
|
|
|
2021-08-13 14:46:22 +05:00
|
|
|
|
return (<LoaderPortal show={showLoader}>
|
2021-10-19 12:47:21 +05:00
|
|
|
|
<Grid style={{ gridTemplateColumns: 'auto repeat(6, 1fr)' }}>
|
|
|
|
|
<GridItem col='1' row='1' colSpan='8' style={{ marginBottom: '0.5rem' }}>
|
2021-09-30 11:42:23 +05:00
|
|
|
|
<Flex>
|
2021-10-19 12:47:21 +05:00
|
|
|
|
<ModeDisplay data={dataSaub} />
|
|
|
|
|
<div style={{ marginLeft: '1rem' }}>
|
2021-09-30 11:42:23 +05:00
|
|
|
|
Интервал:
|
|
|
|
|
<Select defaultValue={defaultChartInterval} onChange={setChartInterval}>
|
|
|
|
|
{options}
|
|
|
|
|
</Select>
|
|
|
|
|
</div>
|
2021-10-19 12:47:21 +05:00
|
|
|
|
<span style={{ flexGrow: 20 }}> </span>
|
|
|
|
|
<img src={isTorqueStabEnabled(dataSpin) ? MomentStabPicEnabled : MomentStabPicDisabled} style={{ marginRight: "15px" }} alt="TorqueMaster" />
|
|
|
|
|
<img src={isSpinEnabled(dataSpin) ? SpinPicEnabled : SpinPicDisabled} style={{ marginRight: "15px" }} alt="SpinMaster" />
|
|
|
|
|
<h2 style={{ marginBottom: 0, marginRight: "15px", fontWeight: "bold", color: isMseEnabled(dataSaub) ? "green" : "lightgrey" }}>MSE</h2>
|
|
|
|
|
<UserOfWell data={dataSaub} />
|
2021-09-30 11:42:23 +05:00
|
|
|
|
</Flex>
|
|
|
|
|
</GridItem>
|
2021-10-19 12:47:21 +05:00
|
|
|
|
<GridItem col='1' row='2' rowSpan='3' style={{ minWidth: '260px', width: '0.142fr' }}>
|
|
|
|
|
<CustomColumn data={dataSaub} />
|
2021-10-14 11:35:38 +05:00
|
|
|
|
</GridItem>
|
2021-09-30 11:42:23 +05:00
|
|
|
|
{paramsGroups.map((group, index) =>
|
2021-10-19 12:47:21 +05:00
|
|
|
|
<GridItem col={2 + index} row='2' className='border_small' key={`${group.label}${index}`}>
|
|
|
|
|
<Column
|
|
|
|
|
style={{ width: '13vw' }}
|
2021-09-30 11:42:23 +05:00
|
|
|
|
data={dataSaub}
|
|
|
|
|
lineGroup={group}
|
|
|
|
|
interval={chartInterval}
|
2021-10-19 12:47:21 +05:00
|
|
|
|
headerHeight={'60px'}
|
|
|
|
|
showBorder={getIndexOfDrillingBy(dataSaub) === index} />
|
2021-10-14 11:35:38 +05:00
|
|
|
|
</GridItem>
|
|
|
|
|
)}
|
2021-09-30 11:42:23 +05:00
|
|
|
|
|
|
|
|
|
<GridItem col='2' row='3' colSpan='7'>
|
2021-10-19 12:47:21 +05:00
|
|
|
|
<ActiveMessagesOnline idWell={idWell} />
|
2021-09-30 11:42:23 +05:00
|
|
|
|
</GridItem>
|
|
|
|
|
</Grid>
|
2021-06-02 11:38:27 +05:00
|
|
|
|
</LoaderPortal>)
|
2021-04-16 15:50:01 +05:00
|
|
|
|
}
|