forked from ddrilling/asb_cloud_front
Fixed Telemetry analytics charts' appearance
This commit is contained in:
parent
03fd9ae3b1
commit
68ef0e8e9d
@ -19,6 +19,11 @@ const defaultOptions = {
|
|||||||
text: 'Коэффициент скорости'
|
text: 'Коэффициент скорости'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
plugins: {
|
||||||
|
datalabels: {
|
||||||
|
display: false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -26,6 +31,15 @@ export const ChartTelemetryDepthToInterval = ({ depthToIntervalData }) => {
|
|||||||
const chartRef = useRef(null)
|
const chartRef = useRef(null)
|
||||||
const [chart, setChart] = useState()
|
const [chart, setChart] = useState()
|
||||||
|
|
||||||
|
const calculateBarWidth = (dataLength) => {
|
||||||
|
if (dataLength < 3)
|
||||||
|
return 150
|
||||||
|
else if (dataLength < 16)
|
||||||
|
return 70
|
||||||
|
else
|
||||||
|
return 10
|
||||||
|
}
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
|
|
||||||
const xData = depthToIntervalData.map(el => new Date(el.intervalStartDate).toLocaleString())
|
const xData = depthToIntervalData.map(el => new Date(el.intervalStartDate).toLocaleString())
|
||||||
@ -37,9 +51,10 @@ export const ChartTelemetryDepthToInterval = ({ depthToIntervalData }) => {
|
|||||||
{
|
{
|
||||||
label: 'Скорость проходки за интервал',
|
label: 'Скорость проходки за интервал',
|
||||||
data: yData,
|
data: yData,
|
||||||
borderColor: '#0A0',
|
borderColor: '#00b300',
|
||||||
|
borderWidth: 2,
|
||||||
backgroundColor: '#0A0',
|
backgroundColor: '#0A0',
|
||||||
barThickness: xData.length < 3 ? 150 : 70
|
barThickness: calculateBarWidth(xData.length)
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -3,16 +3,44 @@ import { Chart, registerables } from 'chart.js';
|
|||||||
|
|
||||||
Chart.register(...registerables);
|
Chart.register(...registerables);
|
||||||
|
|
||||||
const defaultOptions = {
|
const transformSecondsToHoursString = (seconds) => {
|
||||||
responsive: true,
|
const hours = Math.floor(seconds / 3600)
|
||||||
aspectRatio: 2.8
|
const minutes = Math.floor((seconds % 3600) / 60)
|
||||||
|
const s = seconds - (hours * 3600) - (minutes * 60)
|
||||||
|
|
||||||
|
return hours + ' ч.' + minutes + ' мин.' + s + ' сек.'
|
||||||
}
|
}
|
||||||
|
|
||||||
const secondsToTimeString = (seconds) => {
|
const transformSecondsToTimeString = (seconds) => {
|
||||||
if(seconds < 60)
|
if (seconds === 1) // 1 is default state if null returned (1 is to show chart anyway with 0 sec)
|
||||||
|
return '0 сек.'
|
||||||
|
else if(seconds < 60)
|
||||||
return seconds + ' сек.'
|
return seconds + ' сек.'
|
||||||
else if (seconds < 3600)
|
else if (seconds < 3600)
|
||||||
return Math.floor(3600 / seconds) + ' мин.' + (3600 % seconds).toFixed(2) + ' сек.'
|
return Math.floor(seconds / 60) + ' мин. ' + (0.6 * (seconds % 60)).toFixed() + ' сек.'
|
||||||
|
else
|
||||||
|
return transformSecondsToHoursString(seconds)
|
||||||
|
}
|
||||||
|
|
||||||
|
const defaultOptions = {
|
||||||
|
responsive: true,
|
||||||
|
aspectRatio: 2.8,
|
||||||
|
plugins: {
|
||||||
|
datalabels: {
|
||||||
|
color: '#ffffff',
|
||||||
|
formatter: transformSecondsToTimeString,
|
||||||
|
font: {
|
||||||
|
weight: 'bold'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
tooltip: {
|
||||||
|
callbacks: {
|
||||||
|
label: function(tooltipItem) {
|
||||||
|
return transformSecondsToTimeString(tooltipItem.parsed);
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export const ChartTelemetryOperationsSummary = ({ operationsData }) => {
|
export const ChartTelemetryOperationsSummary = ({ operationsData }) => {
|
||||||
|
@ -16,9 +16,11 @@ export default function TelemetryAnalysisDepthToDay({idWell}) {
|
|||||||
const depthToDayData = await TelemetryAnalyticsService.getWellDepthToDay(idWell)
|
const depthToDayData = await TelemetryAnalyticsService.getWellDepthToDay(idWell)
|
||||||
|
|
||||||
const depths = depthToDayData.map(el => ({depth: el.wellDepth, date: el.date}))
|
const depths = depthToDayData.map(el => ({depth: el.wellDepth, date: el.date}))
|
||||||
|
.sort((a, b) => new Date(a.date) - new Date(b.date))
|
||||||
setDepthData(depths)
|
setDepthData(depths)
|
||||||
|
|
||||||
const bitPositions = depthToDayData.map(el => ({depth: el.bitDepth, date: el.date}))
|
const bitPositions = depthToDayData.map(el => ({depth: el.bitDepth, date: el.date}))
|
||||||
|
.sort((a, b) => new Date(a.date) - new Date(b.date))
|
||||||
setBitPositionData(bitPositions)
|
setBitPositionData(bitPositions)
|
||||||
},
|
},
|
||||||
setLoader,
|
setLoader,
|
||||||
|
@ -8,10 +8,6 @@ import LoaderPortal from '../../components/LoaderPortal'
|
|||||||
const { Option } = Select
|
const { Option } = Select
|
||||||
|
|
||||||
const timePeriodCollection = [
|
const timePeriodCollection = [
|
||||||
{ value: '60', label: '1 минута' },
|
|
||||||
{ value: '300', label: '5 минут' },
|
|
||||||
{ value: '600', label: '10 минут' },
|
|
||||||
{ value: '1800', label: '30 минут' },
|
|
||||||
{ value: '3600', label: '1 час' },
|
{ value: '3600', label: '1 час' },
|
||||||
{ value: '21600', label: '6 часов' },
|
{ value: '21600', label: '6 часов' },
|
||||||
{ value: '43200', label: '12 часов' },
|
{ value: '43200', label: '12 часов' },
|
||||||
@ -21,7 +17,7 @@ const timePeriodCollection = [
|
|||||||
export default function TelemetryAnalysisDepthToInterval({idWell}) {
|
export default function TelemetryAnalysisDepthToInterval({idWell}) {
|
||||||
const [depthToIntervalData, setDepthToIntervalData] = useState([])
|
const [depthToIntervalData, setDepthToIntervalData] = useState([])
|
||||||
const [loader, setLoader] = useState(false)
|
const [loader, setLoader] = useState(false)
|
||||||
const [chartInterval, setChartInterval] = useState(600)
|
const [chartInterval, setChartInterval] = useState(86400)
|
||||||
|
|
||||||
const children = timePeriodCollection.map((line) =>
|
const children = timePeriodCollection.map((line) =>
|
||||||
<Option key={line.value}>{line.label}</Option>)
|
<Option key={line.value}>{line.label}</Option>)
|
||||||
@ -43,7 +39,7 @@ export default function TelemetryAnalysisDepthToInterval({idWell}) {
|
|||||||
<LoaderPortal show={loader}>
|
<LoaderPortal show={loader}>
|
||||||
<div className='mt-20px'>
|
<div className='mt-20px'>
|
||||||
<Select
|
<Select
|
||||||
defaultValue="600"
|
defaultValue="86400"
|
||||||
onChange={setChartInterval}
|
onChange={setChartInterval}
|
||||||
className='ml-30px'
|
className='ml-30px'
|
||||||
>
|
>
|
||||||
|
Loading…
Reference in New Issue
Block a user