0

70 lines
1.4 KiB
TypeScript
Raw Normal View History

import { LineChart } from 'react-chartkick'
2020-11-28 15:28:39 -08:00
import styles from '../../styles/styles.module.css';
import 'chart.js'
2020-10-31 23:17:44 -07:00
2020-10-28 00:53:24 -07:00
const defaultProps = {
active: false,
2020-11-01 00:01:37 -07:00
payload: Object,
unit: '',
2020-10-28 00:53:24 -07:00
};
2020-11-01 00:01:37 -07:00
interface TimedValue {
time: Date;
value: number;
2020-11-01 00:01:37 -07:00
}
2020-10-28 00:53:24 -07:00
interface ChartProps {
2020-11-01 00:01:37 -07:00
data?: TimedValue[],
title?: string,
2020-10-28 00:53:24 -07:00
color: string,
unit: string,
2020-11-01 00:01:37 -07:00
dataCollections?: any[],
2020-10-28 00:53:24 -07:00
}
2020-11-25 00:17:35 -08:00
function createGraphDataset(dataArray) {
2020-11-28 15:28:39 -08:00
const dataValues = {};
2020-11-25 00:17:35 -08:00
dataArray.forEach(item => {
const dateObject = new Date(item.time);
2020-11-28 15:28:39 -08:00
const dateString = `${dateObject.getFullYear() }-${ dateObject.getMonth() }-${ dateObject.getDay() } ${ dateObject.getHours() }:${ dateObject.getMinutes()}`;
2020-11-25 00:17:35 -08:00
dataValues[dateString] = item.value;
})
return dataValues;
}
export default function Chart({ data, title, color, unit, dataCollections }: ChartProps) {
2020-11-28 15:28:39 -08:00
const renderData = [];
2020-11-01 00:01:37 -07:00
if (data && data.length > 0) {
renderData.push({
name: title,
2020-11-28 15:28:39 -08:00
color,
2020-11-25 00:17:35 -08:00
data: createGraphDataset(data)
2020-11-01 00:01:37 -07:00
});
}
2020-10-31 23:17:44 -07:00
dataCollections.forEach(collection => {
renderData.push(
2020-11-25 00:17:35 -08:00
{name: collection.name, data: createGraphDataset(collection.data), color: collection.color}
)
});
2020-10-26 23:53:04 -07:00
return (
<LineChart
className={styles.lineChartContainer}
xtitle="Time"
ytitle={title}
suffix={unit}
2020-11-28 15:28:39 -08:00
legend="bottom"
color={color}
data={renderData}
download={title}
/>
)
2020-10-26 23:53:04 -07:00
}
2020-10-31 23:17:44 -07:00
Chart.defaultProps = {
dataCollections: [],
data: [],
title: '',
2020-10-31 23:17:44 -07:00
};