Merge branch 'dev' into feature/CombinedWellEditor

This commit is contained in:
goodmice 2021-10-14 12:47:02 +05:00
commit 6c3d3de619

View File

@ -179,25 +179,14 @@ export default function TelemetryView({idWell}) {
const options = timePeriodCollection.map((line) => <Option key={line.value}>{line.label}</Option>) const options = timePeriodCollection.map((line) => <Option key={line.value}>{line.label}</Option>)
const handleDataSaub = (data) => { const handleData = (state) => (data) => {
if (data) { if (data && state) {
data.forEach((_, idx) => { data.forEach((_, idx) => {
if (data[idx].rotorSpeed < 1) if (data[idx].rotorSpeed < 1)
data[idx].rotorSpeed = 0; data[idx].rotorSpeed = 0;
data[idx].blockSpeed = Math.abs(data[idx].blockSpeed) data[idx].blockSpeed = Math.abs(data[idx].blockSpeed)
}) })
setDataSaub(data) state(data)
}
}
const handleDataSpin = (data) => {
if (data) {
data.forEach((_, idx) => {
if (data[idx].rotorSpeed < 1)
data[idx].rotorSpeed = 0;
data[idx].blockSpeed = Math.abs(data[idx].blockSpeed)
})
setDataSpin(data)
} }
} }
@ -206,14 +195,14 @@ export default function TelemetryView({idWell}) {
async () => { async () => {
const dataSaub = await TelemetryDataSaubService.getData(idWell, null, chartInterval) const dataSaub = await TelemetryDataSaubService.getData(idWell, null, chartInterval)
const dataSpin = await TelemetryDataSpinService.getData(idWell, null, chartInterval) const dataSpin = await TelemetryDataSpinService.getData(idWell, null, chartInterval)
handleDataSaub(dataSaub) handleData(setDataSaub)(dataSaub)
handleDataSpin(dataSpin) handleData(setDataSpin)(dataSpin)
}, },
setShowLoader, setShowLoader,
`Не удалось получить данные по скважине "${idWell}"`, `Не удалось получить данные по скважине "${idWell}"`,
) )
const unsubscribeSaub = Subscribe('hubs/telemetry', 'ReceiveDataSaub', `well_${idWell}`, handleDataSaub) const unsubscribeSaub = Subscribe('hubs/telemetry', 'ReceiveDataSaub', `well_${idWell}`, handleData(setDataSaub))
const unsubscribeSpin = Subscribe('hubs/telemetry', 'ReceiveDataSpin', `well_${idWell}`, handleDataSpin) const unsubscribeSpin = Subscribe('hubs/telemetry', 'ReceiveDataSpin', `well_${idWell}`, handleData(setDataSpin))
return () => { return () => {
unsubscribeSaub() unsubscribeSaub()
unsubscribeSpin() unsubscribeSpin()