import React from 'react'; import { DAY_MAP } from 'src/shared/types/CourseMeeting'; import styles from './CalendarGrid.module.scss'; import CalendarCell from '../CalendarGridCell/CalendarGridCell'; import { CourseMeeting } from 'src/shared/types/CourseMeeting'; const daysOfWeek = Object.keys(DAY_MAP).filter(key => !['S', 'SU'].includes(key)); const hoursOfDay = Array.from({ length: 14 }, (_, index) => index + 8); const grid = []; for (let i = 0; i < 13; i++) { const row = []; let hour = hoursOfDay[i]; row.push(

{(hour % 12 === 0 ? 12 : hour % 12) + (hour < 12 ? ' AM' : ' PM')}

); row.push(Array.from({ length: 5 }, (_, j) => )); grid.push(row); } interface Props { CourseMeetingBlocks: CourseMeeting[]; } /** * Grid of CalendarGridCell components forming the user's course schedule calendar view * @param props */ export function Calendar({ CourseMeetingBlocks }: React.PropsWithChildren): JSX.Element { return (
{/* Displaying the rest of the calendar */}
{/*
{hoursOfDay.map((hour) => (

{hour % 12 === 0 ? 12 : hour % 12} {hour < 12 ? 'AM' : 'PM'}

))}
*/}
{/* Displaying day labels */}
{daysOfWeek.map(day => (
{day}
))} {grid.map((row, rowIndex) => row)}
); ); export default Calendar;