import React, { useRef } from 'react'; import * as htmlToImage from 'html-to-image'; import { DAY_MAP } from 'src/shared/types/CourseMeeting'; import { CalendarGridCourse } from 'src/views/hooks/useFlattenedCourseSchedule'; import calIcon from 'src/assets/icons/cal.svg'; import pngIcon from 'src/assets/icons/png.svg'; import CalendarCell from '../CalendarGridCell/CalendarGridCell'; import CalendarCourseCell from '../CalendarCourseCell/CalendarCourseCell'; import styles from './CalendarGrid.module.scss'; 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 { courseCells: CalendarGridCourse[]; saturdayClass: boolean; } /** * Grid of CalendarGridCell components forming the user's course schedule calendar view * @param props */ function CalendarGrid({ courseCells, saturdayClass }: React.PropsWithChildren): JSX.Element { const calendarRef = useRef(null); // Create a ref for the calendar grid const saveAsPNG = () => { htmlToImage .toPng(calendarRef.current, { backgroundColor: 'white', style: { background: 'white', marginTop: '20px', marginBottom: '20px', marginRight: '20px', marginLeft: '20px', }, }) .then(dataUrl => { let img = new Image(); img.src = dataUrl; fetch(dataUrl) .then(response => response.blob()) .then(blob => { const href = window.URL.createObjectURL(blob); const link = document.createElement('a'); link.href = href; link.download = 'my-schedule.png'; document.body.appendChild(link); link.click(); document.body.removeChild(link); }) .catch(error => console.error('Error downloading file:', error)); }) .catch(error => { console.error('oops, something went wrong!', error); }); }; 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, index) => ( {row} ))}
{courseCells.map((block: CalendarGridCourse) => (
))}
{/* First divider */}
{/* Second divider */}
); } export default CalendarGrid;