feat: init
Some checks failed
CodeQL / Analyze (javascript) (push) Has been cancelled
CodeQL / Analyze (python) (push) Has been cancelled

This commit is contained in:
chuan
2025-11-11 01:56:44 +08:00
commit bba4bb40c8
4638 changed files with 447437 additions and 0 deletions

View File

@@ -0,0 +1,106 @@
// types
import type { WeekMonthDataType, ChartDataType, TGanttViews } from "@plane/types";
import { EStartOfTheWeek } from "@plane/types";
// constants
export const generateWeeks = (startOfWeek: EStartOfTheWeek = EStartOfTheWeek.SUNDAY): WeekMonthDataType[] => [
...weeks.slice(startOfWeek),
...weeks.slice(0, startOfWeek),
];
export const weeks: WeekMonthDataType[] = [
{ key: 0, shortTitle: "sun", title: "sunday", abbreviation: "Su" },
{ key: 1, shortTitle: "mon", title: "monday", abbreviation: "M" },
{ key: 2, shortTitle: "tue", title: "tuesday", abbreviation: "T" },
{ key: 3, shortTitle: "wed", title: "wednesday", abbreviation: "W" },
{ key: 4, shortTitle: "thurs", title: "thursday", abbreviation: "Th" },
{ key: 5, shortTitle: "fri", title: "friday", abbreviation: "F" },
{ key: 6, shortTitle: "sat", title: "saturday", abbreviation: "Sa" },
];
export const months: WeekMonthDataType[] = [
{ key: 0, shortTitle: "jan", title: "january", abbreviation: "Jan" },
{ key: 1, shortTitle: "feb", title: "february", abbreviation: "Feb" },
{ key: 2, shortTitle: "mar", title: "march", abbreviation: "Mar" },
{ key: 3, shortTitle: "apr", title: "april", abbreviation: "Apr" },
{ key: 4, shortTitle: "may", title: "may", abbreviation: "May" },
{ key: 5, shortTitle: "jun", title: "june", abbreviation: "Jun" },
{ key: 6, shortTitle: "jul", title: "july", abbreviation: "Jul" },
{ key: 7, shortTitle: "aug", title: "august", abbreviation: "Aug" },
{ key: 8, shortTitle: "sept", title: "september", abbreviation: "Sept" },
{ key: 9, shortTitle: "oct", title: "october", abbreviation: "Oct" },
{ key: 10, shortTitle: "nov", title: "november", abbreviation: "Nov" },
{ key: 11, shortTitle: "dec", title: "december", abbreviation: "Dec" },
];
export const quarters: WeekMonthDataType[] = [
{ key: 0, shortTitle: "Q1", title: "Jan - Mar", abbreviation: "Q1" },
{ key: 1, shortTitle: "Q2", title: "Apr - Jun", abbreviation: "Q2" },
{ key: 2, shortTitle: "Q3", title: "Jul - Sept", abbreviation: "Q3" },
{ key: 3, shortTitle: "Q4", title: "Oct - Dec", abbreviation: "Q4" },
];
export const charCapitalize = (word: string) => `${word.charAt(0).toUpperCase()}${word.substring(1)}`;
export const bindZero = (value: number) => (value > 9 ? `${value}` : `0${value}`);
export const timePreview = (date: Date) => {
let hours = date.getHours();
const amPm = hours >= 12 ? "PM" : "AM";
hours = hours % 12;
hours = hours ? hours : 12;
let minutes: number | string = date.getMinutes();
minutes = bindZero(minutes);
return `${bindZero(hours)}:${minutes} ${amPm}`;
};
export const datePreview = (date: Date, includeTime: boolean = false) => {
const day = date.getDate();
let month: number | WeekMonthDataType = date.getMonth();
month = months[month as number] as WeekMonthDataType;
const year = date.getFullYear();
return `${charCapitalize(month?.shortTitle)} ${day}, ${year}${includeTime ? `, ${timePreview(date)}` : ``}`;
};
// context data
export const VIEWS_LIST: ChartDataType[] = [
{
key: "week",
i18n_title: "common.week",
data: {
startDate: new Date(),
currentDate: new Date(),
endDate: new Date(),
approxFilterRange: 4, // it will preview week dates with weekends highlighted with 1 week limitations ex: title (Wed 1, Thu 2, Fri 3)
dayWidth: 60,
},
},
{
key: "month",
i18n_title: "common.month",
data: {
startDate: new Date(),
currentDate: new Date(),
endDate: new Date(),
approxFilterRange: 6, // it will preview monthly all dates with weekends highlighted with no limitations ex: title (1, 2, 3)
dayWidth: 20,
},
},
{
key: "quarter",
i18n_title: "common.quarter",
data: {
startDate: new Date(),
currentDate: new Date(),
endDate: new Date(),
approxFilterRange: 24, // it will preview week starting dates all months data and there is 3 months limitation for preview ex: title (2, 9, 16, 23, 30)
dayWidth: 5,
},
},
];
export const currentViewDataWithView = (view: TGanttViews = "month") =>
VIEWS_LIST.find((_viewData) => _viewData.key === view);