forked from ddrilling/asb_cloud_front
26 lines
814 B
JavaScript
26 lines
814 B
JavaScript
import {Display} from './Display'
|
||
|
||
export const CustomColumn = ({data}) => {
|
||
const dataLast = data[data.length -1]
|
||
|
||
const lines = [
|
||
{label:'Рот., об/мин', accessorName:'rotorSpeed'},
|
||
{label:'Долото, м', accessorName:'bitDepth'},
|
||
{label:'Забой, м', accessorName:'wellDepth'},
|
||
{label:'Расход, м³/ч', accessorName:'flow'},
|
||
{label:'Расход х.х., м³/ч', accessorName:'flowIdle'},
|
||
]
|
||
|
||
if(dataLast)
|
||
lines.forEach(line => line.value = dataLast[line.accessorName]?.toPrecision(4)??'-' )
|
||
else
|
||
lines.forEach(line => line.value = '-' )
|
||
|
||
return (<>
|
||
{lines.map(line => <Display className='border_small display_flex_container'
|
||
kay={line.label}
|
||
label={line.label}
|
||
value={line.value}
|
||
suffix={line.units}/>)}
|
||
</>)
|
||
} |