owncast/web/components/chart.tsx

71 lines
1.5 KiB
TypeScript
Raw Normal View History

import ChartJs from 'chart.js/auto';
import Chartkick from 'chartkick';
import format from 'date-fns/format';
2021-01-03 11:13:28 +01:00
import { LineChart } from 'react-chartkick';
2021-04-13 04:56:37 +02:00
// from https://github.com/ankane/chartkick.js/blob/master/chart.js/chart.esm.js
Chartkick.use(ChartJs);
2020-11-01 07:17:44 +01:00
2020-11-01 08:01:37 +01:00
interface TimedValue {
time: Date;
value: number;
2020-11-01 08:01:37 +01:00
}
2020-10-28 08:53:24 +01:00
interface ChartProps {
data?: TimedValue[];
title?: string;
color: string;
unit: string;
dataCollections?: any[];
2020-10-28 08:53:24 +01:00
}
2020-11-25 09:17:35 +01:00
function createGraphDataset(dataArray) {
2020-11-29 00:28:39 +01:00
const dataValues = {};
2020-11-25 09:17:35 +01:00
dataArray.forEach(item => {
const dateObject = new Date(item.time);
2021-04-13 04:56:37 +02:00
const dateString = format(dateObject, 'H:mma');
dataValues[dateString] = item.value;
2021-02-04 18:19:16 +01:00
});
2020-11-25 09:17:35 +01:00
return dataValues;
}
export default function Chart({ data, title, color, unit, dataCollections }: ChartProps) {
2020-11-29 00:28:39 +01:00
const renderData = [];
2020-11-01 08:01:37 +01:00
if (data && data.length > 0) {
renderData.push({
name: title,
2020-11-29 00:28:39 +01:00
color,
data: createGraphDataset(data),
2020-11-01 08:01:37 +01:00
});
}
2020-11-01 07:17:44 +01:00
dataCollections.forEach(collection => {
renderData.push({
name: collection.name,
data: createGraphDataset(collection.data),
color: collection.color,
});
});
2020-10-27 07:53:04 +01:00
return (
<div className="line-chart-container">
2020-11-29 03:14:08 +01:00
<LineChart
xtitle="Time"
ytitle={title}
suffix={unit}
legend="bottom"
color={color}
data={renderData}
download={title}
/>
</div>
);
2020-10-27 07:53:04 +01:00
}
2020-11-01 07:17:44 +01:00
Chart.defaultProps = {
dataCollections: [],
data: [],
title: '',
2020-11-01 07:17:44 +01:00
};