2021-10-06 13:57:04 +05:00
|
|
|
import { useState, useEffect } from 'react'
|
2021-10-07 10:48:26 +05:00
|
|
|
import { Button, Form, Input, Timeline } from 'antd'
|
2021-10-05 17:55:20 +05:00
|
|
|
import moment from 'moment'
|
2021-10-07 15:05:59 +05:00
|
|
|
import { CheckSquareOutlined } from '@ant-design/icons'
|
2021-10-05 17:55:20 +05:00
|
|
|
import { View } from './View'
|
2021-10-06 13:57:04 +05:00
|
|
|
import LoaderPortal from '../../components/LoaderPortal'
|
2021-10-06 15:31:55 +05:00
|
|
|
import { MeasureService } from '../../services/api'
|
2021-10-05 17:55:20 +05:00
|
|
|
import '../../styles/index.css'
|
|
|
|
import '../../styles/measure.css'
|
|
|
|
|
|
|
|
const format='YYYY.MM.DD HH:mm'
|
|
|
|
|
2021-10-07 11:52:52 +05:00
|
|
|
export const MeasureTable = ({idWell, idCategory, title, columns, values, updateMeasuresFunc}) => {
|
2021-10-05 17:55:20 +05:00
|
|
|
|
2021-10-06 13:57:04 +05:00
|
|
|
const [showLoader, setShowLoader] = useState(false);
|
2021-10-06 16:06:07 +05:00
|
|
|
const [selectedTimeLineId, setSelectedTimeLineId] = useState(0)
|
2021-10-05 17:55:20 +05:00
|
|
|
const [displayedValues, setDisplayedValues] = useState([]);
|
|
|
|
const [editingColumns, setEditingColumns] = useState(columns);
|
|
|
|
const [isTableEditing, setIsTableEditing] = useState(false);
|
2021-10-06 13:57:04 +05:00
|
|
|
const [editingActionName, setEditingActionName] = useState('');
|
|
|
|
|
|
|
|
const [measuresForm] = Form.useForm();
|
|
|
|
|
2021-10-06 16:06:07 +05:00
|
|
|
const createEditingColumns = (cols, renderDelegate) =>
|
2021-10-07 15:05:59 +05:00
|
|
|
cols.map(col =>
|
|
|
|
({ render: renderDelegate,
|
|
|
|
...col
|
|
|
|
})
|
2021-10-06 16:06:07 +05:00
|
|
|
)
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
let valuesToDisplay = []
|
|
|
|
|
|
|
|
if(selectedTimeLineId === 0) {
|
|
|
|
valuesToDisplay = values.length
|
|
|
|
? values[values.length-1]
|
|
|
|
: []
|
|
|
|
} else {
|
|
|
|
valuesToDisplay = values.find(el => el.id === selectedTimeLineId)
|
|
|
|
}
|
|
|
|
|
|
|
|
setDisplayedValues(valuesToDisplay)
|
|
|
|
}, [selectedTimeLineId, values])
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
let switchableColumns = []
|
2021-10-07 10:48:26 +05:00
|
|
|
|
2021-10-06 16:06:07 +05:00
|
|
|
isTableEditing && editingActionName !== 'Удалить'
|
2021-10-07 10:48:26 +05:00
|
|
|
? switchableColumns = createEditingColumns(columns, () => <Input className='w-100' />)
|
2021-10-06 16:06:07 +05:00
|
|
|
: switchableColumns = createEditingColumns(columns, null)
|
|
|
|
|
2021-10-07 10:48:26 +05:00
|
|
|
if(editingActionName === 'Редактировать')
|
|
|
|
measuresForm.setFieldsValue(displayedValues.data);
|
|
|
|
else if(editingActionName === 'Добавить')
|
|
|
|
measuresForm.resetFields()
|
|
|
|
|
2021-10-06 16:06:07 +05:00
|
|
|
setEditingColumns(switchableColumns)
|
2021-10-07 10:48:26 +05:00
|
|
|
}, [isTableEditing, columns, editingActionName, displayedValues.data, measuresForm])
|
2021-10-06 16:06:07 +05:00
|
|
|
|
2021-10-06 13:57:04 +05:00
|
|
|
const buttonsConfig = [
|
|
|
|
{name:'Добавить', key:'add'},
|
|
|
|
{name:'Редактировать', key:'edit'},
|
|
|
|
{name:'Удалить', key:'delete'}
|
|
|
|
]
|
|
|
|
|
|
|
|
const createButtons = (config, onClickDelegate) => {
|
|
|
|
return (
|
|
|
|
<div className='w-300px mt-12px'>
|
2021-10-07 10:48:26 +05:00
|
|
|
{config.map(conf => {
|
2021-10-06 13:57:04 +05:00
|
|
|
return (
|
|
|
|
<Button
|
2021-10-07 10:48:26 +05:00
|
|
|
key={conf.key}
|
2021-10-06 13:57:04 +05:00
|
|
|
className='w-100'
|
|
|
|
onClick={onClickDelegate}
|
2021-10-07 11:52:52 +05:00
|
|
|
disabled={conf.key !== 'add' && displayedValues.isDefaultData
|
|
|
|
? true
|
|
|
|
: false}
|
2021-10-06 13:57:04 +05:00
|
|
|
>
|
2021-10-07 10:48:26 +05:00
|
|
|
{conf.name}
|
2021-10-06 13:57:04 +05:00
|
|
|
</Button>
|
|
|
|
)
|
|
|
|
})}
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2021-10-07 10:48:26 +05:00
|
|
|
const crudButtons = createButtons(buttonsConfig, (e) => {
|
2021-10-06 13:57:04 +05:00
|
|
|
setEditingActionName(e.target.innerText)
|
|
|
|
setIsTableEditing(true)
|
|
|
|
})
|
|
|
|
|
|
|
|
const confirmButtons =
|
|
|
|
<div className='w-300px'>
|
|
|
|
<h3 style={{textAlign: 'center'}}>{editingActionName} данные?</h3>
|
|
|
|
<div className='d-flex mt-20px'>
|
2021-10-07 15:05:59 +05:00
|
|
|
<Button
|
|
|
|
key='confirm'
|
|
|
|
className='w-100'
|
|
|
|
onClick={async () => {
|
2021-10-06 15:31:55 +05:00
|
|
|
if(editingActionName === 'Удалить'){
|
|
|
|
setShowLoader(true)
|
|
|
|
await MeasureService.markAsDelete(idWell, displayedValues.id)
|
2021-10-07 11:52:52 +05:00
|
|
|
updateMeasuresFunc()
|
2021-10-06 15:31:55 +05:00
|
|
|
setShowLoader(false)
|
|
|
|
setIsTableEditing(false)
|
|
|
|
} else {
|
|
|
|
measuresForm.submit()
|
|
|
|
}
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
Да
|
|
|
|
</Button>
|
2021-10-07 15:05:59 +05:00
|
|
|
<Button
|
|
|
|
key='decline'
|
|
|
|
className='w-100'
|
|
|
|
onClick={()=> setIsTableEditing(false)}
|
|
|
|
>
|
|
|
|
Нет
|
|
|
|
</Button>
|
2021-10-06 13:57:04 +05:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
let handleSubmitMeasuresForm = async (formData) => {
|
|
|
|
measuresForm.validateFields()
|
2021-08-30 16:40:56 +05:00
|
|
|
|
2021-10-06 15:31:55 +05:00
|
|
|
const measureParams = {
|
|
|
|
idWell: idWell,
|
|
|
|
idCategory: idCategory,
|
|
|
|
timestamp: new Date().toISOString(),
|
|
|
|
data: formData
|
|
|
|
}
|
|
|
|
|
2021-10-06 13:57:04 +05:00
|
|
|
setShowLoader(true)
|
2021-10-07 15:05:59 +05:00
|
|
|
|
|
|
|
if(editingActionName === 'Добавить') {
|
|
|
|
await MeasureService.insert(idWell, measureParams)
|
|
|
|
} else if (editingActionName === 'Редактировать') {
|
|
|
|
measureParams.id = displayedValues.id
|
|
|
|
measureParams.timestamp = displayedValues.timestamp
|
|
|
|
await MeasureService.update(idWell, measureParams)
|
|
|
|
}
|
|
|
|
|
2021-10-06 15:31:55 +05:00
|
|
|
setIsTableEditing(false)
|
2021-10-07 11:52:52 +05:00
|
|
|
updateMeasuresFunc()
|
2021-10-06 13:57:04 +05:00
|
|
|
setShowLoader(false)
|
|
|
|
}
|
2021-08-28 22:32:13 +05:00
|
|
|
|
2021-10-05 17:55:20 +05:00
|
|
|
return <>
|
|
|
|
|
2021-08-28 22:32:13 +05:00
|
|
|
<h3>{title}</h3>
|
2021-08-30 16:40:56 +05:00
|
|
|
|
2021-10-05 17:55:20 +05:00
|
|
|
<div className='d-flex'>
|
|
|
|
<div className='flex-direction-column'>
|
|
|
|
<div className='d-flex button-container'>
|
|
|
|
{isTableEditing
|
|
|
|
? confirmButtons
|
|
|
|
: crudButtons
|
|
|
|
}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div className='measure-dates mt-20px'>
|
|
|
|
<Timeline className='mt-12px ml-10px'>
|
|
|
|
{values.map((item, index) =>
|
|
|
|
<Timeline.Item
|
2021-10-07 15:05:59 +05:00
|
|
|
key={index}
|
|
|
|
className='measure-button'
|
2021-10-06 16:06:07 +05:00
|
|
|
onClick={() => setSelectedTimeLineId(item.id)}
|
|
|
|
dot={item?.id === displayedValues?.id
|
2021-10-07 15:05:59 +05:00
|
|
|
? <CheckSquareOutlined className="timeline-clock-icon" />
|
2021-10-06 13:57:04 +05:00
|
|
|
: null}
|
2021-10-05 17:55:20 +05:00
|
|
|
>
|
2021-10-07 15:05:59 +05:00
|
|
|
<span className={item?.id === displayedValues?.id ? 'selected-timeline' : ''}>
|
2021-10-07 15:34:59 +05:00
|
|
|
{item.timestamp ? moment.utc(item.timestamp).local().format(format) : 'Нет данных'}
|
2021-10-07 15:05:59 +05:00
|
|
|
</span>
|
2021-10-05 17:55:20 +05:00
|
|
|
</Timeline.Item>
|
|
|
|
)}
|
|
|
|
</Timeline>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div className='w-100'>
|
2021-10-06 13:57:04 +05:00
|
|
|
<LoaderPortal show={showLoader}>
|
|
|
|
<Form
|
|
|
|
form={measuresForm}
|
|
|
|
onFinish={handleSubmitMeasuresForm}
|
|
|
|
>
|
|
|
|
<View
|
2021-10-07 10:48:26 +05:00
|
|
|
item={displayedValues.data}
|
2021-10-06 13:57:04 +05:00
|
|
|
columns={editingColumns}
|
|
|
|
/>
|
|
|
|
</Form>
|
|
|
|
</LoaderPortal>
|
2021-10-05 17:55:20 +05:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</>
|
2021-08-28 22:32:13 +05:00
|
|
|
}
|