mirror of
https://github.com/Unleash/unleash.git
synced 2025-04-10 01:16:39 +02:00
53 lines
1.6 KiB
TypeScript
53 lines
1.6 KiB
TypeScript
import { useMemo, type VFC } from 'react';
|
|
import 'chartjs-adapter-date-fns';
|
|
import { useTheme } from '@mui/material';
|
|
import {
|
|
ExecutiveSummarySchema,
|
|
ExecutiveSummarySchemaProjectFlagTrendsItem,
|
|
} from 'openapi';
|
|
import { LineChart } from '../LineChart/LineChart';
|
|
import { getRandomColor } from '../executive-dashboard-utils';
|
|
|
|
interface IFlagsProjectChartProps {
|
|
projectFlagTrends: ExecutiveSummarySchema['projectFlagTrends'];
|
|
}
|
|
|
|
export const FlagsProjectChart: VFC<IFlagsProjectChartProps> = ({
|
|
projectFlagTrends,
|
|
}) => {
|
|
const theme = useTheme();
|
|
const data = useMemo(() => {
|
|
const groupedFlagTrends = projectFlagTrends.reduce<
|
|
Record<string, ExecutiveSummarySchemaProjectFlagTrendsItem[]>
|
|
>((groups, item) => {
|
|
if (!groups[item.project]) {
|
|
groups[item.project] = [];
|
|
}
|
|
groups[item.project].push(item);
|
|
return groups;
|
|
}, {});
|
|
|
|
const datasets = Object.entries(groupedFlagTrends).map(
|
|
([project, trends]) => {
|
|
const color = getRandomColor();
|
|
return {
|
|
label: project,
|
|
data: trends.map((item) => item.total),
|
|
borderColor: color,
|
|
backgroundColor: color,
|
|
fill: true,
|
|
};
|
|
},
|
|
);
|
|
|
|
const objectKeys = Object.keys(groupedFlagTrends);
|
|
|
|
return {
|
|
labels: groupedFlagTrends[objectKeys[0]].map((item) => item.date),
|
|
datasets,
|
|
};
|
|
}, [theme, projectFlagTrends]);
|
|
|
|
return <LineChart data={data} />;
|
|
};
|