mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
130 lines
3.4 KiB
TypeScript
130 lines
3.4 KiB
TypeScript
/**
|
|
* Copyright (c) OpenLens Authors. All rights reserved.
|
|
* Licensed under MIT License. See LICENSE in root directory for more information.
|
|
*/
|
|
|
|
import "./pie-chart.scss";
|
|
import React from "react";
|
|
import { observer } from "mobx-react";
|
|
import type { ChartOptions } from "chart.js";
|
|
import ChartJS from "chart.js";
|
|
import type { ChartProps } from "./chart";
|
|
import { Chart } from "./chart";
|
|
import { cssNames } from "../../utils";
|
|
import type { ThemeStore } from "../../themes/store";
|
|
import { withInjectables } from "@ogre-tools/injectable-react";
|
|
import themeStoreInjectable from "../../themes/store.injectable";
|
|
|
|
export interface PieChartProps extends ChartProps {
|
|
}
|
|
|
|
export interface PieChartData extends ChartJS.ChartData {
|
|
datasets?: PieChartDataSets[];
|
|
}
|
|
|
|
export type DatasetTooltipLabel = (percent: string) => string | string;
|
|
|
|
interface PieChartDataSets extends ChartJS.ChartDataSets {
|
|
id?: string;
|
|
tooltipLabels?: DatasetTooltipLabel[];
|
|
}
|
|
|
|
function getCutout(length: number | undefined): number {
|
|
switch (length) {
|
|
case 0:
|
|
case 1:
|
|
return 88;
|
|
case 2:
|
|
return 76;
|
|
case 3:
|
|
return 63;
|
|
default:
|
|
return 50;
|
|
}
|
|
}
|
|
|
|
interface Dependencies {
|
|
themeStore: ThemeStore;
|
|
}
|
|
|
|
const NonInjectedPieChart = observer(({
|
|
themeStore,
|
|
data,
|
|
className,
|
|
options,
|
|
showChart,
|
|
...chartProps
|
|
}: Dependencies & PieChartProps) => {
|
|
const { contentColor } = themeStore.activeTheme.colors;
|
|
const opts: ChartOptions = {
|
|
maintainAspectRatio: false,
|
|
tooltips: {
|
|
mode: "index",
|
|
callbacks: {
|
|
title: () => "",
|
|
label: (tooltipItem: { datasetIndex: number; index: number }, data: PieChartData) => {
|
|
const dataset = data.datasets?.[tooltipItem.datasetIndex] ?? {};
|
|
const datasetData = (dataset.data ?? []) as number[];
|
|
const total = datasetData.reduce((acc, cur) => acc + cur, 0);
|
|
const percent = Math.round((datasetData[tooltipItem.index] as number / total) * 100);
|
|
const percentLabel = isNaN(percent) ? "N/A" : `${percent}%`;
|
|
const tooltipLabel = dataset.tooltipLabels?.[tooltipItem.index];
|
|
let tooltip = `${dataset.label}: ${percentLabel}`;
|
|
|
|
if (tooltipLabel) {
|
|
if (typeof tooltipLabel === "function") {
|
|
tooltip = tooltipLabel(percentLabel);
|
|
} else {
|
|
tooltip = tooltipLabel;
|
|
}
|
|
}
|
|
|
|
return tooltip;
|
|
},
|
|
},
|
|
filter: ({ datasetIndex, index }, { datasets = [] }) => {
|
|
if (datasetIndex === undefined) {
|
|
return false;
|
|
}
|
|
|
|
const { data = [] } = datasets[datasetIndex];
|
|
|
|
if (datasets.length === 1) return true;
|
|
|
|
return index !== data.length - 1;
|
|
},
|
|
position: "cursor",
|
|
},
|
|
elements: {
|
|
arc: {
|
|
borderWidth: 1,
|
|
borderColor: contentColor,
|
|
},
|
|
},
|
|
cutoutPercentage: getCutout(data.datasets?.length),
|
|
responsive: true,
|
|
...options,
|
|
};
|
|
|
|
return (
|
|
<Chart
|
|
className={cssNames("PieChart flex column align-center", className)}
|
|
data={data}
|
|
options={showChart ? {} : opts}
|
|
showChart={showChart}
|
|
{...chartProps}
|
|
/>
|
|
);
|
|
});
|
|
|
|
export const PieChart = withInjectables<Dependencies, PieChartProps>(NonInjectedPieChart, {
|
|
getProps: (di, props) => ({
|
|
...props,
|
|
themeStore: di.inject(themeStoreInjectable),
|
|
}),
|
|
});
|
|
|
|
ChartJS.Tooltip.positioners.cursor = function (elements: any, position: { x: number; y: number }) {
|
|
return position;
|
|
};
|