2021-10-18 12:00:03 +05:00
|
|
|
|
import { useState, useEffect } from 'react'
|
|
|
|
|
|
|
|
|
|
import {
|
|
|
|
|
makeColumn,
|
|
|
|
|
makeNumericMinMax
|
|
|
|
|
} from '../../components/Table'
|
|
|
|
|
import LoaderPortal from '../../components/LoaderPortal'
|
|
|
|
|
import { invokeWebApiWrapperAsync } from '../../components/factory'
|
|
|
|
|
import { EditableTable, SelectFromDictionary } from '../../components/Table'
|
|
|
|
|
import { DrillFlowChartService } from '../../services/api'
|
|
|
|
|
import { dictionarySectionType, getByKeyOrReturnKey } from './dictionary'
|
|
|
|
|
|
|
|
|
|
const columns = [
|
|
|
|
|
makeColumn('Конструкция секции','idWellSectionType', {
|
|
|
|
|
editable: true,
|
|
|
|
|
input: <SelectFromDictionary dictionary={dictionarySectionType}/>,
|
|
|
|
|
width: 160,
|
|
|
|
|
render: (_, record)=>getByKeyOrReturnKey(dictionarySectionType, record.idWellSectionType)
|
|
|
|
|
}),
|
|
|
|
|
makeNumericMinMax('Глубина', 'depth'),
|
|
|
|
|
makeNumericMinMax('Нагрузка', 'axialLoad'),
|
|
|
|
|
makeNumericMinMax('Давление', 'pressure'),
|
|
|
|
|
makeNumericMinMax('Момент на ВСП', 'rotorTorque'),
|
|
|
|
|
makeNumericMinMax('Обороты на ВСП', 'rotorSpeed'),
|
|
|
|
|
makeNumericMinMax('Расход', 'flow')
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
export const DrillProcessFlow = ({idWell}) => {
|
|
|
|
|
const [flows, setFlows] = useState([])
|
|
|
|
|
const [showLoader, setShowLoader] = useState(false)
|
|
|
|
|
|
|
|
|
|
const updateFlows = () => invokeWebApiWrapperAsync(
|
|
|
|
|
async () => {
|
|
|
|
|
const flows = await DrillFlowChartService.get(idWell)
|
|
|
|
|
setFlows(Array.isArray(flows) ? flows : [])
|
|
|
|
|
},
|
|
|
|
|
setShowLoader,
|
|
|
|
|
'Не удалось загрузить режимно-технологическую карту скважины'
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
useEffect(updateFlows, [idWell])
|
|
|
|
|
|
2021-10-18 13:24:11 +05:00
|
|
|
|
const onAdd = async (flow) => {
|
|
|
|
|
flow.idWell = idWell
|
|
|
|
|
await DrillFlowChartService.insert(idWell, flow)
|
2021-10-18 12:00:03 +05:00
|
|
|
|
updateFlows()
|
|
|
|
|
}
|
|
|
|
|
|
2021-10-18 13:24:11 +05:00
|
|
|
|
const onEdit = async (flow) => {
|
|
|
|
|
if (!flow.id) return
|
|
|
|
|
flow.idWell = idWell
|
|
|
|
|
await DrillFlowChartService.edit(idWell, flow)
|
2021-10-18 12:00:03 +05:00
|
|
|
|
updateFlows()
|
|
|
|
|
}
|
|
|
|
|
|
2021-10-18 13:24:11 +05:00
|
|
|
|
const onDelete = async (flow) => {
|
|
|
|
|
if (!flow.id) return
|
|
|
|
|
await DrillFlowChartService.delete(idWell, flow.id)
|
2021-10-18 12:00:03 +05:00
|
|
|
|
updateFlows()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<LoaderPortal show={showLoader}>
|
|
|
|
|
<EditableTable
|
|
|
|
|
size={'small'}
|
|
|
|
|
bordered
|
|
|
|
|
columns={columns}
|
|
|
|
|
dataSource={flows}
|
|
|
|
|
onRowAdd={onAdd}
|
|
|
|
|
onRowEdit={onEdit}
|
|
|
|
|
onRowDelete={onDelete}
|
|
|
|
|
pagination={false}
|
|
|
|
|
/>
|
|
|
|
|
</LoaderPortal>
|
|
|
|
|
)
|
|
|
|
|
}
|