Files
TasGrid/src/lib/constants.ts
T

38 lines
1.0 KiB
TypeScript

export const PRIORITY_OPTIONS = [
{ value: "10", label: "10 - Necessary" },
{ value: "9", label: "9" },
{ value: "8", label: "8" },
{ value: "7", label: "7" },
{ value: "6", label: "6" },
{ value: "5", label: "5" },
{ value: "4", label: "4" },
{ value: "3", label: "3" },
{ value: "2", label: "2" },
{ value: "1", label: "1 - Trivial" }
];
export const URGENCY_OPTIONS = [
{ value: "10", label: "10 - Today" },
{ value: "9", label: "9 - Tomorrow Morning" },
{ value: "8", label: "8 - EOD Tomorrow" },
{ value: "7", label: "7 - Half-Week" },
{ value: "6", label: "6 - This Week/5 Days" },
{ value: "5", label: "5 - Next Week/10 Days" },
{ value: "4", label: "4 - 3 Weeks" },
{ value: "3", label: "3 - 6 Weeks" },
{ value: "2", label: "2 - 3 Months" },
{ value: "1", label: "1 - 6 Months" }
];
export const URGENCY_HOURS: Record<number, number> = {
10: 12,
9: 24,
8: 36,
7: 72,
6: 120,
5: 240,
4: 504,
3: 1080,
2: 2160,
1: 4320
};