45 lines
768 B
TypeScript
45 lines
768 B
TypeScript
export type TStateGroups =
|
|
| "backlog"
|
|
| "unstarted"
|
|
| "started"
|
|
| "completed"
|
|
| "cancelled";
|
|
|
|
export const STATE_GROUPS: {
|
|
[key in TStateGroups]: {
|
|
key: TStateGroups;
|
|
label: string;
|
|
color: string;
|
|
};
|
|
} = {
|
|
backlog: {
|
|
key: "backlog",
|
|
label: "Backlog",
|
|
color: "#d9d9d9",
|
|
},
|
|
unstarted: {
|
|
key: "unstarted",
|
|
label: "Unstarted",
|
|
color: "#3f76ff",
|
|
},
|
|
started: {
|
|
key: "started",
|
|
label: "Started",
|
|
color: "#f59e0b",
|
|
},
|
|
completed: {
|
|
key: "completed",
|
|
label: "Completed",
|
|
color: "#16a34a",
|
|
},
|
|
cancelled: {
|
|
key: "cancelled",
|
|
label: "Canceled",
|
|
color: "#dc2626",
|
|
},
|
|
};
|
|
|
|
export const ARCHIVABLE_STATE_GROUPS = [
|
|
STATE_GROUPS.completed.key,
|
|
STATE_GROUPS.cancelled.key,
|
|
];
|