diff --git a/web/components/analytics/scope-and-demand/scope.tsx b/web/components/analytics/scope-and-demand/scope.tsx index ea1a51937..c37543e45 100644 --- a/web/components/analytics/scope-and-demand/scope.tsx +++ b/web/components/analytics/scope-and-demand/scope.tsx @@ -65,7 +65,7 @@ export const AnalyticsScope: React.FC = ({ defaultAnalytics }) => ( ); }, }} - margin={{ top: 20 }} + margin={{ top: 20, right: 20 }} theme={{ axis: {}, }} diff --git a/web/components/analytics/scope-and-demand/year-wise-issues.tsx b/web/components/analytics/scope-and-demand/year-wise-issues.tsx index 2a62c99d4..19505717f 100644 --- a/web/components/analytics/scope-and-demand/year-wise-issues.tsx +++ b/web/components/analytics/scope-and-demand/year-wise-issues.tsx @@ -6,54 +6,76 @@ import emptyGraph from "public/empty-state/empty_graph.svg"; import { IDefaultAnalyticsResponse } from "@plane/types"; // constants import { MONTHS_LIST } from "constants/calendar"; +import { useEffect, useState } from "react"; type Props = { defaultAnalytics: IDefaultAnalyticsResponse; }; -export const AnalyticsYearWiseIssues: React.FC = ({ defaultAnalytics }) => ( -
-

Issues closed in a year

- {defaultAnalytics.issue_completed_month_wise.length > 0 ? ( - ({ - x: month.shortTitle, - y: - defaultAnalytics.issue_completed_month_wise.find((data) => data.month === parseInt(index, 10))?.count || - 0, - })), - }, - ]} - customYAxisTickValues={defaultAnalytics.issue_completed_month_wise.map((data) => data.count)} - height="300px" - colors={(datum) => datum.color} - curve="monotoneX" - margin={{ top: 20 }} - enableSlices="x" - sliceTooltip={(datum) => ( -
- {datum.slice.points[0].data.yFormatted} - issues closed in - {datum.slice.points[0].data.xFormatted} -
- )} - theme={{ - background: "rgb(var(--color-background-100))", - }} - enableArea - /> - ) : ( -
- = ({ defaultAnalytics }) => { + // states + const [width, setWidth] = useState(window.innerWidth); + useEffect(() => { + // event listener to update the width + window.addEventListener("resize", () => { + if (width <= 768 && window.innerWidth > 768) { + setWidth(window.innerWidth); + } else if (width >= 768 && window.innerWidth < 768) { + setWidth(window.innerWidth); + } + }); + }, []); + + return ( +
+

Issues closed in a year

+ {defaultAnalytics.issue_completed_month_wise.length > 0 ? ( + ({ + x: month.shortTitle, + y: + defaultAnalytics.issue_completed_month_wise.find((data) => data.month === parseInt(index, 10)) + ?.count || 0, + })), + }, + ]} + axisBottom={{ + // if width is less than 768px, rotate the x-axis labels + ...(width < 768 && { + tickRotation: -45, + }), + }} + customYAxisTickValues={defaultAnalytics.issue_completed_month_wise.map((data) => data.count)} + height="300px" + colors={(datum) => datum.color} + curve="monotoneX" + margin={{ top: 20, right: 20 }} + enableSlices="x" + sliceTooltip={(datum) => ( +
+ {datum.slice.points[0].data.yFormatted} + issues closed in + {datum.slice.points[0].data.xFormatted} +
+ )} + theme={{ + background: "rgb(var(--color-background-100))", + }} + enableArea /> -
- )} -
-); + ) : ( +
+ +
+ )} +
+ ); +};