2024-01-18 10:19:54 +00:00
|
|
|
import { linearGradientDef } from "@nivo/core";
|
|
|
|
// assets
|
2024-03-08 12:29:02 +00:00
|
|
|
import { BarChart2, Briefcase, CheckCircle, Home } from "lucide-react";
|
2024-03-06 13:09:14 +00:00
|
|
|
import { ContrastIcon } from "@plane/ui";
|
2024-03-19 14:38:35 +00:00
|
|
|
import { Props } from "@/components/icons/types";
|
2024-01-24 14:11:02 +00:00
|
|
|
import CompletedIssuesDark from "public/empty-state/dashboard/dark/completed-issues.svg";
|
2024-03-06 13:09:14 +00:00
|
|
|
import OverdueIssuesDark from "public/empty-state/dashboard/dark/overdue-issues.svg";
|
|
|
|
import UpcomingIssuesDark from "public/empty-state/dashboard/dark/upcoming-issues.svg";
|
2024-01-24 14:11:02 +00:00
|
|
|
import CompletedIssuesLight from "public/empty-state/dashboard/light/completed-issues.svg";
|
2024-03-06 13:09:14 +00:00
|
|
|
import OverdueIssuesLight from "public/empty-state/dashboard/light/overdue-issues.svg";
|
|
|
|
import UpcomingIssuesLight from "public/empty-state/dashboard/light/upcoming-issues.svg";
|
2024-01-18 10:19:54 +00:00
|
|
|
// types
|
2024-03-06 13:16:36 +00:00
|
|
|
import { TIssuesListTypes, TStateGroups } from "@plane/types";
|
2024-01-19 10:35:52 +00:00
|
|
|
// constants
|
|
|
|
import { EUserWorkspaceRoles } from "./workspace";
|
|
|
|
// icons
|
2024-01-18 10:19:54 +00:00
|
|
|
|
|
|
|
// gradients for issues by priority widget graph bars
|
|
|
|
export const PRIORITY_GRAPH_GRADIENTS = [
|
|
|
|
linearGradientDef(
|
|
|
|
"gradientUrgent",
|
|
|
|
[
|
|
|
|
{ offset: 0, color: "#A90408" },
|
|
|
|
{ offset: 100, color: "#DF4D51" },
|
|
|
|
],
|
|
|
|
{
|
|
|
|
x1: 1,
|
|
|
|
y1: 0,
|
|
|
|
x2: 0,
|
|
|
|
y2: 0,
|
|
|
|
}
|
|
|
|
),
|
|
|
|
linearGradientDef(
|
|
|
|
"gradientHigh",
|
|
|
|
[
|
|
|
|
{ offset: 0, color: "#FE6B00" },
|
|
|
|
{ offset: 100, color: "#FFAC88" },
|
|
|
|
],
|
|
|
|
{
|
|
|
|
x1: 1,
|
|
|
|
y1: 0,
|
|
|
|
x2: 0,
|
|
|
|
y2: 0,
|
|
|
|
}
|
|
|
|
),
|
|
|
|
linearGradientDef(
|
|
|
|
"gradientMedium",
|
|
|
|
[
|
|
|
|
{ offset: 0, color: "#F5AC00" },
|
|
|
|
{ offset: 100, color: "#FFD675" },
|
|
|
|
],
|
|
|
|
{
|
|
|
|
x1: 1,
|
|
|
|
y1: 0,
|
|
|
|
x2: 0,
|
|
|
|
y2: 0,
|
|
|
|
}
|
|
|
|
),
|
|
|
|
linearGradientDef(
|
|
|
|
"gradientLow",
|
|
|
|
[
|
|
|
|
{ offset: 0, color: "#1B46DE" },
|
|
|
|
{ offset: 100, color: "#4F9BF4" },
|
|
|
|
],
|
|
|
|
{
|
|
|
|
x1: 1,
|
|
|
|
y1: 0,
|
|
|
|
x2: 0,
|
|
|
|
y2: 0,
|
|
|
|
}
|
|
|
|
),
|
|
|
|
linearGradientDef(
|
|
|
|
"gradientNone",
|
|
|
|
[
|
|
|
|
{ offset: 0, color: "#A0A1A9" },
|
|
|
|
{ offset: 100, color: "#B9BBC6" },
|
|
|
|
],
|
|
|
|
{
|
|
|
|
x1: 1,
|
|
|
|
y1: 0,
|
|
|
|
x2: 0,
|
|
|
|
y2: 0,
|
|
|
|
}
|
|
|
|
),
|
|
|
|
];
|
|
|
|
|
|
|
|
// colors for issues by state group widget graph arcs
|
|
|
|
export const STATE_GROUP_GRAPH_GRADIENTS = [
|
|
|
|
linearGradientDef("gradientBacklog", [
|
|
|
|
{ offset: 0, color: "#DEDEDE" },
|
|
|
|
{ offset: 100, color: "#BABABE" },
|
|
|
|
]),
|
|
|
|
linearGradientDef("gradientUnstarted", [
|
|
|
|
{ offset: 0, color: "#D4D4D4" },
|
|
|
|
{ offset: 100, color: "#878796" },
|
|
|
|
]),
|
|
|
|
linearGradientDef("gradientStarted", [
|
|
|
|
{ offset: 0, color: "#FFD300" },
|
|
|
|
{ offset: 100, color: "#FAE270" },
|
|
|
|
]),
|
|
|
|
linearGradientDef("gradientCompleted", [
|
|
|
|
{ offset: 0, color: "#0E8B1B" },
|
|
|
|
{ offset: 100, color: "#37CB46" },
|
|
|
|
]),
|
|
|
|
linearGradientDef("gradientCanceled", [
|
|
|
|
{ offset: 0, color: "#C90004" },
|
|
|
|
{ offset: 100, color: "#FF7679" },
|
|
|
|
]),
|
|
|
|
];
|
|
|
|
|
|
|
|
export const STATE_GROUP_GRAPH_COLORS: Record<TStateGroups, string> = {
|
|
|
|
backlog: "#CDCED6",
|
|
|
|
unstarted: "#80838D",
|
|
|
|
started: "#FFC53D",
|
|
|
|
completed: "#3E9B4F",
|
|
|
|
cancelled: "#E5484D",
|
|
|
|
};
|
|
|
|
|
2024-03-06 13:16:36 +00:00
|
|
|
export enum EDurationFilters {
|
|
|
|
NONE = "none",
|
|
|
|
TODAY = "today",
|
|
|
|
THIS_WEEK = "this_week",
|
|
|
|
THIS_MONTH = "this_month",
|
|
|
|
THIS_YEAR = "this_year",
|
|
|
|
CUSTOM = "custom",
|
|
|
|
}
|
|
|
|
|
2024-01-18 10:19:54 +00:00
|
|
|
// filter duration options
|
|
|
|
export const DURATION_FILTER_OPTIONS: {
|
2024-03-06 08:54:36 +00:00
|
|
|
key: EDurationFilters;
|
2024-01-18 10:19:54 +00:00
|
|
|
label: string;
|
|
|
|
}[] = [
|
2024-02-05 13:42:33 +00:00
|
|
|
{
|
2024-03-06 08:54:36 +00:00
|
|
|
key: EDurationFilters.NONE,
|
2024-04-30 18:38:18 +00:00
|
|
|
label: "All time",
|
2024-02-05 13:42:33 +00:00
|
|
|
},
|
2024-01-18 10:19:54 +00:00
|
|
|
{
|
2024-03-06 08:54:36 +00:00
|
|
|
key: EDurationFilters.TODAY,
|
2024-02-05 13:42:33 +00:00
|
|
|
label: "Due today",
|
2024-01-18 10:19:54 +00:00
|
|
|
},
|
|
|
|
{
|
2024-03-06 08:54:36 +00:00
|
|
|
key: EDurationFilters.THIS_WEEK,
|
|
|
|
label: "Due this week",
|
2024-01-18 10:19:54 +00:00
|
|
|
},
|
|
|
|
{
|
2024-03-06 08:54:36 +00:00
|
|
|
key: EDurationFilters.THIS_MONTH,
|
2024-02-05 13:42:33 +00:00
|
|
|
label: "Due this month",
|
2024-01-18 10:19:54 +00:00
|
|
|
},
|
|
|
|
{
|
2024-03-06 08:54:36 +00:00
|
|
|
key: EDurationFilters.THIS_YEAR,
|
2024-02-05 13:42:33 +00:00
|
|
|
label: "Due this year",
|
2024-01-18 10:19:54 +00:00
|
|
|
},
|
2024-03-06 08:54:36 +00:00
|
|
|
{
|
|
|
|
key: EDurationFilters.CUSTOM,
|
|
|
|
label: "Custom",
|
|
|
|
},
|
2024-01-18 10:19:54 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
// random background colors for project cards
|
|
|
|
export const PROJECT_BACKGROUND_COLORS = [
|
|
|
|
"bg-gray-500/20",
|
|
|
|
"bg-green-500/20",
|
|
|
|
"bg-red-500/20",
|
|
|
|
"bg-orange-500/20",
|
|
|
|
"bg-blue-500/20",
|
|
|
|
"bg-yellow-500/20",
|
|
|
|
"bg-pink-500/20",
|
|
|
|
"bg-purple-500/20",
|
|
|
|
];
|
|
|
|
|
|
|
|
// assigned and created issues widgets tabs list
|
2024-02-05 13:42:33 +00:00
|
|
|
export const FILTERED_ISSUES_TABS_LIST: {
|
2024-01-18 10:19:54 +00:00
|
|
|
key: TIssuesListTypes;
|
|
|
|
label: string;
|
|
|
|
}[] = [
|
|
|
|
{
|
|
|
|
key: "upcoming",
|
|
|
|
label: "Upcoming",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
key: "overdue",
|
|
|
|
label: "Overdue",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
key: "completed",
|
2024-01-24 14:11:02 +00:00
|
|
|
label: "Marked completed",
|
2024-01-18 10:19:54 +00:00
|
|
|
},
|
|
|
|
];
|
|
|
|
|
2024-02-05 13:42:33 +00:00
|
|
|
// assigned and created issues widgets tabs list
|
|
|
|
export const UNFILTERED_ISSUES_TABS_LIST: {
|
|
|
|
key: TIssuesListTypes;
|
|
|
|
label: string;
|
|
|
|
}[] = [
|
|
|
|
{
|
|
|
|
key: "pending",
|
|
|
|
label: "Pending",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
key: "completed",
|
|
|
|
label: "Marked completed",
|
|
|
|
},
|
|
|
|
];
|
|
|
|
|
2024-01-18 10:19:54 +00:00
|
|
|
export const ASSIGNED_ISSUES_EMPTY_STATES = {
|
2024-02-05 13:42:33 +00:00
|
|
|
pending: {
|
|
|
|
title: "Issues assigned to you that are pending\nwill show up here.",
|
|
|
|
darkImage: UpcomingIssuesDark,
|
|
|
|
lightImage: UpcomingIssuesLight,
|
|
|
|
},
|
2024-01-18 10:19:54 +00:00
|
|
|
upcoming: {
|
2024-01-24 14:11:02 +00:00
|
|
|
title: "Upcoming issues assigned to\nyou will show up here.",
|
|
|
|
darkImage: UpcomingIssuesDark,
|
|
|
|
lightImage: UpcomingIssuesLight,
|
2024-01-18 10:19:54 +00:00
|
|
|
},
|
|
|
|
overdue: {
|
2024-01-24 14:11:02 +00:00
|
|
|
title: "Issues assigned to you that are past\ntheir due date will show up here.",
|
|
|
|
darkImage: OverdueIssuesDark,
|
|
|
|
lightImage: OverdueIssuesLight,
|
2024-01-18 10:19:54 +00:00
|
|
|
},
|
|
|
|
completed: {
|
2024-01-24 14:11:02 +00:00
|
|
|
title: "Issues assigned to you that you have\nmarked Completed will show up here.",
|
|
|
|
darkImage: CompletedIssuesDark,
|
|
|
|
lightImage: CompletedIssuesLight,
|
2024-01-18 10:19:54 +00:00
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
export const CREATED_ISSUES_EMPTY_STATES = {
|
2024-02-05 13:42:33 +00:00
|
|
|
pending: {
|
|
|
|
title: "Issues created by you that are pending\nwill show up here.",
|
|
|
|
darkImage: UpcomingIssuesDark,
|
|
|
|
lightImage: UpcomingIssuesLight,
|
|
|
|
},
|
2024-01-18 10:19:54 +00:00
|
|
|
upcoming: {
|
2024-01-24 14:11:02 +00:00
|
|
|
title: "Upcoming issues you created\nwill show up here.",
|
|
|
|
darkImage: UpcomingIssuesDark,
|
|
|
|
lightImage: UpcomingIssuesLight,
|
2024-01-18 10:19:54 +00:00
|
|
|
},
|
|
|
|
overdue: {
|
2024-01-24 14:11:02 +00:00
|
|
|
title: "Issues created by you that are past their\ndue date will show up here.",
|
|
|
|
darkImage: OverdueIssuesDark,
|
|
|
|
lightImage: OverdueIssuesLight,
|
2024-01-18 10:19:54 +00:00
|
|
|
},
|
|
|
|
completed: {
|
2024-01-24 14:11:02 +00:00
|
|
|
title: "Issues created by you that you have\nmarked completed will show up here.",
|
|
|
|
darkImage: CompletedIssuesDark,
|
|
|
|
lightImage: CompletedIssuesLight,
|
2024-01-18 10:19:54 +00:00
|
|
|
},
|
|
|
|
};
|
2024-01-19 10:35:52 +00:00
|
|
|
|
|
|
|
export const SIDEBAR_MENU_ITEMS: {
|
|
|
|
key: string;
|
|
|
|
label: string;
|
|
|
|
href: string;
|
|
|
|
access: EUserWorkspaceRoles;
|
|
|
|
highlight: (pathname: string, baseUrl: string) => boolean;
|
|
|
|
Icon: React.FC<Props>;
|
|
|
|
}[] = [
|
|
|
|
{
|
2024-03-08 12:29:02 +00:00
|
|
|
key: "home",
|
|
|
|
label: "Home",
|
2024-01-19 10:35:52 +00:00
|
|
|
href: ``,
|
|
|
|
access: EUserWorkspaceRoles.GUEST,
|
|
|
|
highlight: (pathname: string, baseUrl: string) => pathname === `${baseUrl}`,
|
2024-03-08 12:29:02 +00:00
|
|
|
Icon: Home,
|
2024-01-19 10:35:52 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
key: "analytics",
|
|
|
|
label: "Analytics",
|
|
|
|
href: `/analytics`,
|
|
|
|
access: EUserWorkspaceRoles.MEMBER,
|
2024-02-23 13:22:12 +00:00
|
|
|
highlight: (pathname: string, baseUrl: string) => pathname.includes(`${baseUrl}/analytics`),
|
2024-01-19 10:35:52 +00:00
|
|
|
Icon: BarChart2,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
key: "projects",
|
|
|
|
label: "Projects",
|
|
|
|
href: `/projects`,
|
|
|
|
access: EUserWorkspaceRoles.GUEST,
|
|
|
|
highlight: (pathname: string, baseUrl: string) => pathname === `${baseUrl}/projects`,
|
|
|
|
Icon: Briefcase,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
key: "all-issues",
|
|
|
|
label: "All Issues",
|
|
|
|
href: `/workspace-views/all-issues`,
|
|
|
|
access: EUserWorkspaceRoles.GUEST,
|
2024-01-25 12:38:21 +00:00
|
|
|
highlight: (pathname: string, baseUrl: string) => pathname.includes(`${baseUrl}/workspace-views`),
|
2024-01-19 10:35:52 +00:00
|
|
|
Icon: CheckCircle,
|
|
|
|
},
|
2024-01-24 14:07:49 +00:00
|
|
|
{
|
|
|
|
key: "active-cycles",
|
|
|
|
label: "Active Cycles",
|
|
|
|
href: `/active-cycles`,
|
|
|
|
access: EUserWorkspaceRoles.GUEST,
|
|
|
|
highlight: (pathname: string, baseUrl: string) => pathname === `${baseUrl}/active-cycles`,
|
|
|
|
Icon: ContrastIcon,
|
|
|
|
},
|
2024-01-19 10:35:52 +00:00
|
|
|
];
|