mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
37bb183bf0
* chore: global bar graph component * chore: global pie graph component * chore: global line graph component * chore: removed unnecessary file * chore: refactored global chart components to accept all props * chore: function to convert response to chart data * chore: global calendar graph component added * chore: global scatter plot graph component * feat: analytics boilerplate created * chore: null value for segment and project * chore: clean up file * chore: change project query param key * chore: export, refresh buttons, analytics table * fix: analytics fetch key error * chore: show only integer values in the y-axis * chore: custom x-axis tick values and bar colors * refactor: divide analytics page into granular components * chore: convert analytics page to modal, save analytics modal * fix: build error * fix: modal overflow issues, analytics loading screen * chore: custom tooltip, refactor: graphs folder structure * refactor: folder structure, chore: x-axis tick values for larger data * chore: code cleanup * chore: remove unnecessary files * fix: refresh analytics button on error * feat: scope and demand analytics * refactor: scope and demand and custom analytics folder structure * fix: dynamic import type * chore: minor updates * feat: project, cycle and module level analytics * style: project analytics modal * fix: merge conflicts * style: new scope and demand ui, user avatars in bar graph * fix: default analytics types * chore: new values when dimensioned by date * chore: update table and tooltip content when dimensioned or segmented by dates
48 lines
1.4 KiB
TypeScript
48 lines
1.4 KiB
TypeScript
// 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<Props> = ({ defaultAnalytics }) => {
|
|
const currentMonth = new Date().getMonth();
|
|
const startMonth = Math.floor(currentMonth / 3) * 3 + 1;
|
|
const quarterMonthsList = [startMonth, startMonth + 1, startMonth + 2];
|
|
|
|
return (
|
|
<div className="py-3 border border-brand-base rounded-[10px]">
|
|
<h1 className="px-3 text-base font-medium">Issues closed in a year</h1>
|
|
<LineGraph
|
|
data={[
|
|
{
|
|
id: "issues_closed",
|
|
color: "rgb(var(--color-accent))",
|
|
data: MONTHS_LIST.map((month) => ({
|
|
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 }}
|
|
enableArea
|
|
/>
|
|
</div>
|
|
);
|
|
};
|