feat: add cal save buttons (no functionality)

This commit is contained in:
Lukas Zenick
2024-02-17 15:15:24 -06:00
committed by doprz
parent f8691207e3
commit 53e7c7feda
4 changed files with 70 additions and 4 deletions

View File

@@ -5,6 +5,8 @@ import { CalendarGridCourse } from 'src/views/hooks/useFlattenedCourseSchedule';
import CalendarCourseCell from '../CalendarCourseCell/CalendarCourseCell';
import { Chip } from '../Chip/Chip';
import styles from './CalendarGrid.module.scss';
import calIcon from './cal.svg';
import pngIcon from './png.svg';
const daysOfWeek = Object.keys(DAY_MAP).filter(key => !['S', 'SU'].includes(key));
const hoursOfDay = Array.from({ length: 14 }, (_, index) => index + 8);
@@ -59,7 +61,7 @@ function CalendarGrid({ courseCells, saturdayClass }: React.PropsWithChildren<Pr
{grid.map(row => row)}
</div>
</div>
{courseCells.map((Block: typeof CalendarCourseCell) => (
{/* {courseCells.map((Block: typeof CalendarCourseCell) => (
<div
key={`${Block}`}
style={{
@@ -69,7 +71,19 @@ function CalendarGrid({ courseCells, saturdayClass }: React.PropsWithChildren<Pr
>
<CalendarCourseCell courseDeptAndInstr={} />
</div>
))}
))} */}
<div className={styles.buttonContainer}>
<div className={styles.divider}></div> {/* First divider */}
<button className={styles.calendarButton}>
<img src={calIcon} className={styles.buttonIcon} alt="CAL" />
Save as .CAL
</button>
<div className={styles.divider}></div> {/* Second divider */}
<button className={styles.calendarButton}>
<img src={pngIcon} className={styles.buttonIcon} alt="PNG" />
Save as .PNG
</button>
</div>
</div>
);
}