mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-25 23:28:33 -06:00
79 lines
2.6 KiB
TypeScript
79 lines
2.6 KiB
TypeScript
"use client";
|
|
import { CalendarMonthModel, getWeekNumber } from "./calendarMonthUtils";
|
|
import { Expandable } from "@/components/Expandable";
|
|
import { CalendarWeek } from "./CalendarWeek";
|
|
import { useLocalCourseSettingsQuery } from "@/features/local/course/localCoursesHooks";
|
|
import { getDateFromStringOrThrow } from "@/features/local/utils/timeUtils";
|
|
import UpChevron from "@/components/icons/UpChevron";
|
|
import DownChevron from "@/components/icons/DownChevron";
|
|
import { DayOfWeek } from "@/features/local/course/localCourseSettings";
|
|
|
|
export const CalendarMonth = ({ month }: { month: CalendarMonthModel }) => {
|
|
// const weekInMilliseconds = 604_800_000;
|
|
const four_days_in_milliseconds = 345_600_000;
|
|
const { data: settings } = useLocalCourseSettingsQuery();
|
|
const startDate = getDateFromStringOrThrow(
|
|
settings.startDate,
|
|
"week calculation start date"
|
|
);
|
|
|
|
const isPastSemester = Date.now() > new Date(settings.endDate).getTime();
|
|
|
|
const pastWeekNumber = getWeekNumber(
|
|
startDate,
|
|
new Date(Date.now() - four_days_in_milliseconds)
|
|
);
|
|
|
|
const startOfMonthWeekNumber = getWeekNumber(
|
|
startDate,
|
|
new Date(month.year, month.month, 1)
|
|
);
|
|
|
|
const shouldCollapse =
|
|
pastWeekNumber >= startOfMonthWeekNumber && !isPastSemester;
|
|
|
|
const monthName = new Date(month.year, month.month - 1, 1).toLocaleString(
|
|
"default",
|
|
{ month: "long" }
|
|
);
|
|
const weekDaysList: DayOfWeek[] = Object.values(DayOfWeek);
|
|
return (
|
|
<>
|
|
<Expandable
|
|
defaultExpanded={!shouldCollapse}
|
|
ExpandableElement={({ setIsExpanded, isExpanded }) => (
|
|
<div className="flex justify-center">
|
|
<h3
|
|
className={
|
|
"text-2xl transition-all duration-500 " +
|
|
"hover:text-slate-50 underline hover:scale-105 " +
|
|
"flex cursor-pointer"
|
|
}
|
|
onClick={() => setIsExpanded((e) => !e)}
|
|
role="button"
|
|
>
|
|
{monthName}
|
|
<div className="my-auto">
|
|
{isExpanded ? <UpChevron /> : <DownChevron />}
|
|
</div>
|
|
</h3>
|
|
</div>
|
|
)}
|
|
>
|
|
<div className="grid grid-cols-7 text-center fw-bold ms-3">
|
|
{weekDaysList.map((day) => (
|
|
<div key={day} className={""}>
|
|
<span className="hidden xl:inline">{day}</span>
|
|
<span className="xl:hidden inline">{day.slice(0, 3)}</span>
|
|
</div>
|
|
))}
|
|
</div>
|
|
|
|
{month.daysByWeek.map((week, weekIndex) => (
|
|
<CalendarWeek key={weekIndex} week={week} monthNumber={month.month} />
|
|
))}
|
|
</Expandable>
|
|
</>
|
|
);
|
|
};
|