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
67 lines
1.2 KiB
TypeScript
67 lines
1.2 KiB
TypeScript
// types
|
|
import { TXAxisValues, TYAxisValues } from "types";
|
|
|
|
export const ANALYTICS_X_AXIS_VALUES: { value: TXAxisValues; label: string }[] = [
|
|
{
|
|
value: "state__name",
|
|
label: "State name",
|
|
},
|
|
{
|
|
value: "state__group",
|
|
label: "State group",
|
|
},
|
|
{
|
|
value: "priority",
|
|
label: "Priority",
|
|
},
|
|
{
|
|
value: "labels__name",
|
|
label: "Label",
|
|
},
|
|
{
|
|
value: "assignees__email",
|
|
label: "Assignee",
|
|
},
|
|
{
|
|
value: "estimate_point",
|
|
label: "Estimate point",
|
|
},
|
|
{
|
|
value: "issue_cycle__cycle__name",
|
|
label: "Cycle",
|
|
},
|
|
{
|
|
value: "issue_module__module__name",
|
|
label: "Module",
|
|
},
|
|
{
|
|
value: "completed_at",
|
|
label: "Completed date",
|
|
},
|
|
{
|
|
value: "target_date",
|
|
label: "Due date",
|
|
},
|
|
// {
|
|
// value: "start_date",
|
|
// label: "Start date",
|
|
// },
|
|
{
|
|
value: "created_at",
|
|
label: "Created date",
|
|
},
|
|
];
|
|
|
|
export const ANALYTICS_Y_AXIS_VALUES: { value: TYAxisValues; label: string }[] = [
|
|
{
|
|
value: "issue_count",
|
|
label: "Issue Count",
|
|
},
|
|
{
|
|
value: "effort",
|
|
label: "Effort",
|
|
},
|
|
];
|
|
|
|
export const DATE_KEYS = ["completed_at", "target_date", "start_date", "created_at"];
|