mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
4c2cb2368a
* chore: store various shades of accent color * refactor: custom theme selector * refactor: custom theme selector * chore: update custom theme input labels * fix: color generator function logic * fix: accent color preloaded data * chore: new theming structure * chore: update shades calculation logic * refactor: variable names * chore: update color scheming * chore: new color scheming * refactor: themes folder structure * chore: update classnames to the new ones * chore: update static colors * chore: sidebar link colors * chore: placeholder color * chore: update border classnames
73 lines
2.3 KiB
TypeScript
73 lines
2.3 KiB
TypeScript
// ui
|
|
import { PieGraph } from "components/ui";
|
|
// helpers
|
|
import { capitalizeFirstLetter } from "helpers/string.helper";
|
|
// types
|
|
import { IUserStateDistribution } from "types";
|
|
// constants
|
|
import { STATE_GROUP_COLORS } from "constants/state";
|
|
|
|
type Props = {
|
|
groupedIssues: IUserStateDistribution[] | undefined;
|
|
};
|
|
|
|
export const IssuesPieChart: React.FC<Props> = ({ groupedIssues }) => (
|
|
<div>
|
|
<h3 className="mb-2 font-semibold">Issues by States</h3>
|
|
<div className="rounded-[10px] border border-custom-border-100 bg-custom-background-100 p-4">
|
|
<PieGraph
|
|
data={
|
|
groupedIssues?.map((cell) => ({
|
|
id: cell.state_group,
|
|
label: cell.state_group,
|
|
value: cell.state_count,
|
|
color: STATE_GROUP_COLORS[cell.state_group.toLowerCase()],
|
|
})) ?? []
|
|
}
|
|
height="320px"
|
|
innerRadius={0.6}
|
|
cornerRadius={5}
|
|
padAngle={2}
|
|
enableArcLabels
|
|
arcLabelsTextColor="#000000"
|
|
enableArcLinkLabels={false}
|
|
legends={[
|
|
{
|
|
anchor: "right",
|
|
direction: "column",
|
|
justify: false,
|
|
translateX: 0,
|
|
translateY: 56,
|
|
itemsSpacing: 10,
|
|
itemWidth: 100,
|
|
itemHeight: 18,
|
|
itemTextColor: "rgb(var(--color-text-secondary))",
|
|
itemDirection: "left-to-right",
|
|
itemOpacity: 1,
|
|
symbolSize: 12,
|
|
symbolShape: "square",
|
|
data:
|
|
groupedIssues?.map((cell) => ({
|
|
id: cell.state_group,
|
|
label: capitalizeFirstLetter(cell.state_group),
|
|
value: cell.state_count,
|
|
color: STATE_GROUP_COLORS[cell.state_group.toLowerCase()],
|
|
})) ?? [],
|
|
},
|
|
]}
|
|
activeInnerRadiusOffset={5}
|
|
colors={(datum) => datum.data.color}
|
|
tooltip={(datum) => (
|
|
<div className="flex items-center gap-2 rounded-md border border-custom-border-100 bg-custom-background-80 p-2 text-xs">
|
|
<span className="text-custom-text-200 capitalize">{datum.datum.label} issues:</span>{" "}
|
|
{datum.datum.value}
|
|
</div>
|
|
)}
|
|
theme={{
|
|
background: "transparent",
|
|
}}
|
|
/>
|
|
</div>
|
|
</div>
|
|
);
|