87 lines
2.7 KiB
TypeScript
87 lines
2.7 KiB
TypeScript
import { PRData } from "@/app/Interfaces/interface";
|
|
import { useSharedContext } from "@/lib/shared-context";
|
|
import { useEffect, useState } from "react";
|
|
import { Legend } from "recharts";
|
|
import { CartesianGrid, Tooltip, XAxis, YAxis } from "recharts";
|
|
import { Bar } from "recharts";
|
|
import { BarChart } from "recharts";
|
|
|
|
export function PRReviewBarData({ args }: any) {
|
|
const { prData } = useSharedContext();
|
|
const [data, setData] = useState<any>([]);
|
|
const chartColors = [
|
|
"hsl(12, 76%, 61%)",
|
|
"hsl(173, 58%, 39%)",
|
|
"hsl(197, 37%, 24%)",
|
|
"hsl(43, 74%, 66%)",
|
|
"hsl(27, 87%, 67%)",
|
|
];
|
|
|
|
useEffect(() => {
|
|
console.log(args);
|
|
|
|
let buffer = prData.filter(
|
|
(pr: PRData) =>
|
|
(pr.status === "needs_revision" || pr.status === "in_review") &&
|
|
pr.userId === args?.userId,
|
|
);
|
|
const uniqueReviewers = getUniqueReviewers(buffer);
|
|
let buffer2 = uniqueReviewers.map((reviewer: string) => {
|
|
return {
|
|
name: reviewer.split("@")[0].split(".").join(" "),
|
|
"PR Count": buffer.filter(
|
|
(pr: PRData) => pr.assignedReviewer === reviewer,
|
|
).length,
|
|
};
|
|
});
|
|
setData(buffer2);
|
|
}, [args]);
|
|
|
|
function getUniqueReviewers(prArray: PRData[]): string[] {
|
|
const reviewerSet = new Set<string>();
|
|
for (const pr of prArray) {
|
|
if (pr.assignedReviewer) {
|
|
reviewerSet.add(pr.assignedReviewer.toLowerCase()); // normalize casing if needed
|
|
}
|
|
}
|
|
return Array.from(reviewerSet);
|
|
}
|
|
|
|
return (
|
|
<>
|
|
{/* Bar Chart Section */}
|
|
<div className="flex-1 p-4 rounded-2xl shadow-lg flex flex-col items-center min-w-[250px] max-w-[350px]">
|
|
<h2 className="text-xl font-semibold mb-2 text-gray-700 text-center">
|
|
PR Under Review
|
|
</h2>
|
|
<div className="h-[180px] flex items-center justify-center">
|
|
<BarChart width={260} height={180} data={data}>
|
|
<CartesianGrid strokeDasharray="3 3" stroke="#94a3b855" />
|
|
<XAxis
|
|
dataKey="name"
|
|
stroke="#cbd5e1"
|
|
className="text-black"
|
|
tickFormatter={(value: string) =>
|
|
value.split(" ")[0][0].toUpperCase() +
|
|
value.split(" ")[1][0].toUpperCase()
|
|
}
|
|
/>
|
|
<YAxis stroke="#cbd5e1" />
|
|
<Tooltip
|
|
contentStyle={{
|
|
background: "#1f2937",
|
|
border: "none",
|
|
color: "white",
|
|
}}
|
|
/>
|
|
<Legend wrapperStyle={{ color: "white" }} />
|
|
<Bar dataKey="PR Count" fill={chartColors[3]} />
|
|
{/* <Bar dataKey="merged" fill="#475569" /> */}
|
|
{/* <Bar dataKey="closed" fill="#cbd5e1" /> */}
|
|
</BarChart>
|
|
</div>
|
|
</div>
|
|
</>
|
|
);
|
|
}
|