183 lines
3.7 KiB
TypeScript
183 lines
3.7 KiB
TypeScript
import { ChartXAxisProperty, ChartYAxisMetric, TAnalyticsTabsBase } from "@plane/types";
|
|
|
|
export interface IInsightField {
|
|
key: string;
|
|
i18nKey: string;
|
|
i18nProps?: {
|
|
entity?: string;
|
|
entityPlural?: string;
|
|
prefix?: string;
|
|
suffix?: string;
|
|
[key: string]: unknown;
|
|
};
|
|
}
|
|
|
|
export const ANALYTICS_INSIGHTS_FIELDS: Record<TAnalyticsTabsBase, IInsightField[]> = {
|
|
overview: [
|
|
{
|
|
key: "total_users",
|
|
i18nKey: "workspace_analytics.total",
|
|
i18nProps: {
|
|
entity: "common.users",
|
|
},
|
|
},
|
|
{
|
|
key: "total_admins",
|
|
i18nKey: "workspace_analytics.total",
|
|
i18nProps: {
|
|
entity: "common.admins",
|
|
},
|
|
},
|
|
{
|
|
key: "total_members",
|
|
i18nKey: "workspace_analytics.total",
|
|
i18nProps: {
|
|
entity: "common.members",
|
|
},
|
|
},
|
|
{
|
|
key: "total_guests",
|
|
i18nKey: "workspace_analytics.total",
|
|
i18nProps: {
|
|
entity: "common.guests",
|
|
},
|
|
},
|
|
{
|
|
key: "total_projects",
|
|
i18nKey: "workspace_analytics.total",
|
|
i18nProps: {
|
|
entity: "common.projects",
|
|
},
|
|
},
|
|
{
|
|
key: "total_work_items",
|
|
i18nKey: "workspace_analytics.total",
|
|
i18nProps: {
|
|
entity: "common.work_items",
|
|
},
|
|
},
|
|
{
|
|
key: "total_cycles",
|
|
i18nKey: "workspace_analytics.total",
|
|
i18nProps: {
|
|
entity: "common.cycles",
|
|
},
|
|
},
|
|
{
|
|
key: "total_intake",
|
|
i18nKey: "workspace_analytics.total",
|
|
i18nProps: {
|
|
entity: "sidebar.intake",
|
|
},
|
|
},
|
|
],
|
|
"work-items": [
|
|
{
|
|
key: "total_work_items",
|
|
i18nKey: "workspace_analytics.total",
|
|
},
|
|
{
|
|
key: "started_work_items",
|
|
i18nKey: "workspace_analytics.started_work_items",
|
|
},
|
|
{
|
|
key: "backlog_work_items",
|
|
i18nKey: "workspace_analytics.backlog_work_items",
|
|
},
|
|
{
|
|
key: "un_started_work_items",
|
|
i18nKey: "workspace_analytics.un_started_work_items",
|
|
},
|
|
{
|
|
key: "completed_work_items",
|
|
i18nKey: "workspace_analytics.completed_work_items",
|
|
},
|
|
],
|
|
};
|
|
|
|
export const ANALYTICS_DURATION_FILTER_OPTIONS = [
|
|
{
|
|
name: "Yesterday",
|
|
value: "yesterday",
|
|
},
|
|
{
|
|
name: "Last 7 days",
|
|
value: "last_7_days",
|
|
},
|
|
{
|
|
name: "Last 30 days",
|
|
value: "last_30_days",
|
|
},
|
|
{
|
|
name: "Last 3 months",
|
|
value: "last_3_months",
|
|
},
|
|
];
|
|
|
|
export const ANALYTICS_X_AXIS_VALUES: { value: ChartXAxisProperty; label: string }[] = [
|
|
{
|
|
value: ChartXAxisProperty.STATES,
|
|
label: "State name",
|
|
},
|
|
{
|
|
value: ChartXAxisProperty.STATE_GROUPS,
|
|
label: "State group",
|
|
},
|
|
{
|
|
value: ChartXAxisProperty.PRIORITY,
|
|
label: "Priority",
|
|
},
|
|
{
|
|
value: ChartXAxisProperty.LABELS,
|
|
label: "Label",
|
|
},
|
|
{
|
|
value: ChartXAxisProperty.ASSIGNEES,
|
|
label: "Assignee",
|
|
},
|
|
{
|
|
value: ChartXAxisProperty.ESTIMATE_POINTS,
|
|
label: "Estimate point",
|
|
},
|
|
{
|
|
value: ChartXAxisProperty.CYCLES,
|
|
label: "Cycle",
|
|
},
|
|
{
|
|
value: ChartXAxisProperty.MODULES,
|
|
label: "Module",
|
|
},
|
|
{
|
|
value: ChartXAxisProperty.COMPLETED_AT,
|
|
label: "Completed date",
|
|
},
|
|
{
|
|
value: ChartXAxisProperty.TARGET_DATE,
|
|
label: "Due date",
|
|
},
|
|
{
|
|
value: ChartXAxisProperty.START_DATE,
|
|
label: "Start date",
|
|
},
|
|
{
|
|
value: ChartXAxisProperty.CREATED_AT,
|
|
label: "Created date",
|
|
},
|
|
];
|
|
|
|
export const ANALYTICS_Y_AXIS_VALUES: { value: ChartYAxisMetric; label: string }[] = [
|
|
{
|
|
value: ChartYAxisMetric.WORK_ITEM_COUNT,
|
|
label: "Work item",
|
|
},
|
|
{
|
|
value: ChartYAxisMetric.ESTIMATE_POINT_COUNT,
|
|
label: "Estimate",
|
|
},
|
|
{
|
|
value: ChartYAxisMetric.EPIC_WORK_ITEM_COUNT,
|
|
label: "Epic",
|
|
},
|
|
];
|
|
|
|
export const ANALYTICS_V2_DATE_KEYS = ["completed_at", "target_date", "start_date", "created_at"];
|