2021-05-27 13:46:46 +05:00
|
|
|
|
import {useState, useEffect} from 'react'
|
2021-09-30 11:42:23 +05:00
|
|
|
|
import {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"
|
2021-09-30 11:42:23 +05:00
|
|
|
|
import {UserOfWell} from './UserOfWells'
|
2021-08-12 17:47:16 +05:00
|
|
|
|
|
|
|
|
|
import LoaderPortal from '../../components/LoaderPortal'
|
2021-09-30 11:42:23 +05:00
|
|
|
|
import {Grid, GridItem, Flex} from '../../components/Grid'
|
2021-08-12 17:47:16 +05:00
|
|
|
|
import {Subscribe} from '../../services/signalr'
|
2021-09-30 11:42:23 +05:00
|
|
|
|
import {TelemetryDataSaubService, TelemetryDataSpinService} from '../../services/api'
|
2021-08-17 17:42:42 +05:00
|
|
|
|
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-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-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
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const getIndexOfDrillingBy = (dataSaub)=>{
|
|
|
|
|
const order = {
|
|
|
|
|
0: -1,
|
|
|
|
|
1: 1, // скорость
|
|
|
|
|
2: 2, // давление
|
|
|
|
|
3: 3, // нагрузка
|
|
|
|
|
4: 5, // момент
|
|
|
|
|
}
|
|
|
|
|
const idFeedRegulator = getLast(dataSaub)?.idFeedRegulator??0
|
|
|
|
|
return order[idFeedRegulator]??-1
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-12 17:47:16 +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-09-30 11:42:23 +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;
|
|
|
|
|
data[idx].blockSpeed = Math.abs(data[idx].blockSpeed)
|
|
|
|
|
})
|
2021-09-30 11:42:23 +05:00
|
|
|
|
setDataSaub(data)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const handleDataSpin = (data) => {
|
2021-05-19 16:05:01 +05:00
|
|
|
|
if (data) {
|
2021-10-14 11:35:38 +05:00
|
|
|
|
data.forEach((_, idx) => {
|
|
|
|
|
if (data[idx].rotorSpeed < 1)
|
|
|
|
|
data[idx].rotorSpeed = 0;
|
|
|
|
|
data[idx].blockSpeed = Math.abs(data[idx].blockSpeed)
|
|
|
|
|
})
|
2021-09-30 11:42:23 +05:00
|
|
|
|
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)
|
|
|
|
|
handleDataSaub(dataSaub)
|
|
|
|
|
handleDataSpin(dataSpin)
|
2021-08-13 14:46:22 +05:00
|
|
|
|
},
|
|
|
|
|
setShowLoader,
|
|
|
|
|
`Не удалось получить данные по скважине "${idWell}"`,
|
|
|
|
|
)
|
2021-09-30 11:42:23 +05:00
|
|
|
|
const unsubscribeSaub = Subscribe('hubs/telemetry', 'ReceiveDataSaub', `well_${idWell}`, handleDataSaub)
|
|
|
|
|
const unsubscribeSpin = Subscribe('hubs/telemetry', 'ReceiveDataSpin', `well_${idWell}`, handleDataSpin)
|
|
|
|
|
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-09-30 11:42:23 +05:00
|
|
|
|
<Grid style={{gridTemplateColumns: 'auto repeat(6, 1fr)'}}>
|
|
|
|
|
<GridItem col='1' row='1' colSpan='8' style={{marginBottom: '0.5rem'}}>
|
|
|
|
|
<Flex>
|
|
|
|
|
<ModeDisplay data={dataSaub}/>
|
|
|
|
|
<div style={{marginLeft: '1rem'}}>
|
|
|
|
|
Интервал:
|
|
|
|
|
<Select defaultValue={defaultChartInterval} onChange={setChartInterval}>
|
|
|
|
|
{options}
|
|
|
|
|
</Select>
|
|
|
|
|
</div>
|
|
|
|
|
<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}/>
|
|
|
|
|
</Flex>
|
|
|
|
|
</GridItem>
|
|
|
|
|
<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) =>
|
|
|
|
|
<GridItem col={2 + index} row='2' className='border_small' key={group.label}>
|
|
|
|
|
<Column
|
|
|
|
|
style={{width:'13vw'}}
|
|
|
|
|
data={dataSaub}
|
|
|
|
|
lineGroup={group}
|
|
|
|
|
interval={chartInterval}
|
|
|
|
|
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'>
|
|
|
|
|
<ActiveMessagesOnline idWell={idWell}/>
|
|
|
|
|
</GridItem>
|
|
|
|
|
</Grid>
|
2021-06-02 11:38:27 +05:00
|
|
|
|
</LoaderPortal>)
|
2021-04-16 15:50:01 +05:00
|
|
|
|
}
|