1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
lens/src/renderer/components/chart/pie-chart.tsx
Alex Andreev e22f8216e8 Move tooltipLabels prop to PieCharts
Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
2022-04-08 10:27:55 +03:00

96 lines
2.9 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 { ThemeStore } from "../../theme.store";
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[];
}
@observer
export class PieChart extends React.Component<PieChartProps> {
render() {
const { data, className, options, ...chartProps } = this.props;
const { contentColor } = ThemeStore.getInstance().activeTheme.colors;
const cutouts = [88, 76, 63];
const opts: ChartOptions = this.props.showChart === false ? {} : {
maintainAspectRatio: false,
tooltips: {
mode: "index",
callbacks: {
title: () => "",
label: (tooltipItem, 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((dataset.data[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 }) => {
const { data } = datasets[datasetIndex];
if (datasets.length === 1) return true;
return index !== data.length - 1;
},
position: "cursor",
},
elements: {
arc: {
borderWidth: 1,
borderColor: contentColor,
},
},
cutoutPercentage: cutouts[data.datasets.length - 1] || 50,
responsive: true,
...options,
};
return (
<Chart
className={cssNames("PieChart flex column align-center", className)}
data={data}
options={opts}
{...chartProps}
/>
);
}
}
ChartJS.Tooltip.positioners.cursor = function (elements: any, position: { x: number; y: number }) {
return position;
};