forked from github/plane
1e152c666c
* chore: moved app & space from apps to root * chore: modified workspace configuration * chore: modified dockerfiles for space and web * chore: modified icons for space * feat: updated files for new svg icons supported by next-images * chore: added /spaces base path for next * chore: added compose config for space * chore: updated husky configuration * chore: updated workflows for new configuration * chore: changed app name to web * fix: resolved build errors with web * chore: reset file tracing root for both projects * chore: added nginx config for deploy * fix: eslint and tsconfig settings for space app * husky setup fixes based on new dir * eslint fixes * prettier formatting --------- Co-authored-by: Henit Chobisa <chobisa.henit@gmail.com>
134 lines
3.1 KiB
TypeScript
134 lines
3.1 KiB
TypeScript
// interfaces
|
|
import {
|
|
IIssueBoardViews,
|
|
// priority
|
|
TIssuePriorityKey,
|
|
// state groups
|
|
TIssueGroupKey,
|
|
IIssuePriorityFilters,
|
|
IIssueGroup,
|
|
} from "types/issue";
|
|
// icons
|
|
import {
|
|
BacklogStateIcon,
|
|
UnstartedStateIcon,
|
|
StartedStateIcon,
|
|
CompletedStateIcon,
|
|
CancelledStateIcon,
|
|
} from "components/icons";
|
|
|
|
// all issue views
|
|
export const issueViews: any = {
|
|
list: {
|
|
title: "List View",
|
|
icon: "format_list_bulleted",
|
|
className: "",
|
|
},
|
|
kanban: {
|
|
title: "Board View",
|
|
icon: "grid_view",
|
|
className: "",
|
|
},
|
|
};
|
|
|
|
// issue priority filters
|
|
export const issuePriorityFilters: IIssuePriorityFilters[] = [
|
|
{
|
|
key: "urgent",
|
|
title: "Urgent",
|
|
className: "bg-red-500 border-red-500 text-white",
|
|
icon: "error",
|
|
},
|
|
{
|
|
key: "high",
|
|
title: "High",
|
|
className: "text-orange-500 border-custom-border-300",
|
|
icon: "signal_cellular_alt",
|
|
},
|
|
{
|
|
key: "medium",
|
|
title: "Medium",
|
|
className: "text-yellow-500 border-custom-border-300",
|
|
icon: "signal_cellular_alt_2_bar",
|
|
},
|
|
{
|
|
key: "low",
|
|
title: "Low",
|
|
className: "text-green-500 border-custom-border-300",
|
|
icon: "signal_cellular_alt_1_bar",
|
|
},
|
|
{
|
|
key: "none",
|
|
title: "None",
|
|
className: "text-gray-500 border-custom-border-300",
|
|
icon: "block",
|
|
},
|
|
];
|
|
|
|
export const issuePriorityFilter = (priorityKey: TIssuePriorityKey): IIssuePriorityFilters | null => {
|
|
const currentIssuePriority: IIssuePriorityFilters | undefined | null =
|
|
issuePriorityFilters && issuePriorityFilters.length > 0
|
|
? issuePriorityFilters.find((_priority) => _priority.key === priorityKey)
|
|
: null;
|
|
|
|
if (currentIssuePriority === undefined || currentIssuePriority === null) return null;
|
|
return { ...currentIssuePriority };
|
|
};
|
|
|
|
// issue group filters
|
|
export const issueGroupColors: {
|
|
[key: string]: string;
|
|
} = {
|
|
backlog: "#d9d9d9",
|
|
unstarted: "#3f76ff",
|
|
started: "#f59e0b",
|
|
completed: "#16a34a",
|
|
cancelled: "#dc2626",
|
|
};
|
|
|
|
export const issueGroups: IIssueGroup[] = [
|
|
{
|
|
key: "backlog",
|
|
title: "Backlog",
|
|
color: "#d9d9d9",
|
|
className: `text-[#d9d9d9] bg-[#d9d9d9]/10`,
|
|
icon: BacklogStateIcon,
|
|
},
|
|
{
|
|
key: "unstarted",
|
|
title: "Unstarted",
|
|
color: "#3f76ff",
|
|
className: `text-[#3f76ff] bg-[#3f76ff]/10`,
|
|
icon: UnstartedStateIcon,
|
|
},
|
|
{
|
|
key: "started",
|
|
title: "Started",
|
|
color: "#f59e0b",
|
|
className: `text-[#f59e0b] bg-[#f59e0b]/10`,
|
|
icon: StartedStateIcon,
|
|
},
|
|
{
|
|
key: "completed",
|
|
title: "Completed",
|
|
color: "#16a34a",
|
|
className: `text-[#16a34a] bg-[#16a34a]/10`,
|
|
icon: CompletedStateIcon,
|
|
},
|
|
{
|
|
key: "cancelled",
|
|
title: "Cancelled",
|
|
color: "#dc2626",
|
|
className: `text-[#dc2626] bg-[#dc2626]/10`,
|
|
icon: CancelledStateIcon,
|
|
},
|
|
];
|
|
|
|
export const issueGroupFilter = (issueKey: TIssueGroupKey): IIssueGroup | null => {
|
|
const currentIssueStateGroup: IIssueGroup | undefined | null =
|
|
issueGroups && issueGroups.length > 0 ? issueGroups.find((group) => group.key === issueKey) : null;
|
|
|
|
if (currentIssueStateGroup === undefined || currentIssueStateGroup === null) return null;
|
|
return { ...currentIssueStateGroup };
|
|
};
|