owncast/web/pages/components/chart.tsx

71 lines
1.5 KiB
TypeScript
Raw Normal View History

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