// ui import { LineGraph } from "components/ui"; // types import { IDefaultAnalyticsResponse } from "types"; // constants import { MONTHS_LIST } from "constants/calendar"; type Props = { defaultAnalytics: IDefaultAnalyticsResponse; }; export const AnalyticsYearWiseIssues: React.FC = ({ defaultAnalytics }) => { const currentMonth = new Date().getMonth(); const startMonth = Math.floor(currentMonth / 3) * 3 + 1; const quarterMonthsList = [startMonth, startMonth + 1, startMonth + 2]; return (

Issues closed in a year

({ x: month.label.substring(0, 3), y: defaultAnalytics.issue_completed_month_wise.find( (data) => data.month === month.value )?.count || 0, })), }, ]} customYAxisTickValues={defaultAnalytics.issue_completed_month_wise.map((data) => { if (quarterMonthsList.includes(data.month)) return data.count; return 0; })} height="300px" colors={(datum) => datum.color} curve="monotoneX" margin={{ top: 20 }} theme={{ background: "rgb(var(--color-bg-base))", }} enableArea />
); };