2021-05-27 17:55:03 +05:00
|
|
|
import { useState, useEffect, useRef } from 'react';
|
2021-05-24 15:19:38 +05:00
|
|
|
import {CaretUpOutlined, CaretDownOutlined} from '@ant-design/icons'
|
|
|
|
|
|
|
|
export const ValueDisplay = ({prefix, value, suffix, isArrowVisible}) =>{
|
|
|
|
const [oldVal, setOldVal] = useState(NaN)
|
2021-05-24 17:57:13 +05:00
|
|
|
const [val, setVal] = useState('---')
|
2021-05-27 17:55:03 +05:00
|
|
|
const arrowRef = useRef(null);
|
2021-05-24 17:57:13 +05:00
|
|
|
|
|
|
|
useEffect(()=>{
|
|
|
|
if(value)
|
|
|
|
if(Number.isFinite(+value)){
|
|
|
|
setVal((+value).toPrecision(4)??'---')
|
|
|
|
if (isArrowVisible)
|
|
|
|
{
|
|
|
|
if (value > oldVal)
|
2021-05-27 17:55:03 +05:00
|
|
|
arrowRef.current = (<CaretUpOutlined style={{color:"red"}} />)
|
2021-05-24 17:57:13 +05:00
|
|
|
else if (value < oldVal)
|
2021-05-27 17:55:03 +05:00
|
|
|
arrowRef.current = (<CaretDownOutlined style={{color:"red"}} />)
|
2021-05-24 17:57:13 +05:00
|
|
|
setOldVal(value)
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
setVal(value)
|
|
|
|
},[value])
|
2021-04-16 15:50:01 +05:00
|
|
|
|
2021-05-27 17:55:03 +05:00
|
|
|
return(<span className='display_value'>{prefix} {val} {suffix}{arrowRef.current}</span>)
|
2021-04-16 15:50:01 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
export const Display = (props)=>{
|
|
|
|
const {label} = props
|
|
|
|
|
|
|
|
return <div className={props.className}>
|
|
|
|
<div className='display_label'>{label}</div>
|
|
|
|
<div style={{display:"flex", flexGrow:1}}>
|
|
|
|
<ValueDisplay {...props}/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
}
|