* chore: removed extra space at calendar footer * chore: fixed eslint issues * chore: changed return type to react node * chore: displaycourses true fixes and checks fixed * chore: prettier fix * feat: not working same semester course issue * feat: modifying components to use the new hook * feat: small fixes * fix: remove comments and spaces * fix: dialog error solved * fix: add to new schedule * fix: prettier * fix: delete unnecessary custom hook and p[rettier * fix: checks all passing * fix: added requested changes * fix: added new conditions * fix: description fixed * style: fix Roboto Flex not being used as font in dialog * fix: made requested changes --------- Co-authored-by: doprz <52579214+doprz@users.noreply.github.com> Co-authored-by: Razboy20 <razboy20@gmail.com> Co-authored-by: Samuel Gunter <29130894+Samathingamajig@users.noreply.github.com>
114 lines
4.5 KiB
TypeScript
114 lines
4.5 KiB
TypeScript
import { OptionsStore } from '@shared/storage/OptionsStore';
|
|
import type { Course, ScrapedRow } from '@shared/types/Course';
|
|
import ExtensionRoot from '@views/components/common/ExtensionRoot/ExtensionRoot';
|
|
import AutoLoad from '@views/components/injected/AutoLoad/AutoLoad';
|
|
import CourseCatalogInjectedPopup from '@views/components/injected/CourseCatalogInjectedPopup/CourseCatalogInjectedPopup';
|
|
import NewSearchLink from '@views/components/injected/NewSearchLink';
|
|
import RecruitmentBanner from '@views/components/injected/RecruitmentBanner/RecruitmentBanner';
|
|
import TableHead from '@views/components/injected/TableHead';
|
|
import TableRow from '@views/components/injected/TableRow/TableRow';
|
|
// import TableSubheading from '@views/components/injected/TableSubheading/TableSubheading';
|
|
import useSchedules from '@views/hooks/useSchedules';
|
|
import { CourseCatalogScraper } from '@views/lib/CourseCatalogScraper';
|
|
import getCourseTableRows from '@views/lib/getCourseTableRows';
|
|
import type { SiteSupportType } from '@views/lib/getSiteSupport';
|
|
import { populateSearchInputs } from '@views/lib/populateSearchInputs';
|
|
import React, { useEffect, useRef, useState } from 'react';
|
|
|
|
import DialogProvider from './common/DialogProvider/DialogProvider';
|
|
|
|
interface Props {
|
|
support: Extract<SiteSupportType, 'COURSE_CATALOG_DETAILS' | 'COURSE_CATALOG_LIST'>;
|
|
}
|
|
|
|
/**
|
|
* This is the top level react component orchestrating the course catalog page.
|
|
*/
|
|
export default function CourseCatalogMain({ support }: Props): JSX.Element | null {
|
|
const [rows, setRows] = React.useState<ScrapedRow[]>([]);
|
|
const [selectedCourse, setSelectedCourse] = useState<Course | null>(null);
|
|
const [showPopup, setShowPopup] = useState(false);
|
|
const [enableScrollToLoad, setEnableScrollToLoad] = useState<boolean>(false);
|
|
const prevCourseTitleRef = useRef<string | null>(null);
|
|
const tbody = document.querySelector('table tbody')!;
|
|
|
|
useEffect(() => {
|
|
populateSearchInputs();
|
|
}, []);
|
|
|
|
useEffect(() => {
|
|
if (selectedCourse) {
|
|
setShowPopup(true);
|
|
}
|
|
}, [selectedCourse]);
|
|
|
|
useEffect(() => {
|
|
const tableRows = getCourseTableRows(document);
|
|
const ccs = new CourseCatalogScraper(support);
|
|
const scrapedRows = ccs.scrape(tableRows, true);
|
|
setRows(scrapedRows);
|
|
prevCourseTitleRef.current =
|
|
scrapedRows.findLast(row => row.course === null)?.element.querySelector('.course_header')?.textContent ??
|
|
null;
|
|
}, [support]);
|
|
|
|
useEffect(() => {
|
|
OptionsStore.get('enableScrollToLoad').then(setEnableScrollToLoad);
|
|
}, []);
|
|
|
|
const addRows = (newRows: ScrapedRow[]) => {
|
|
newRows.forEach(row => {
|
|
const courseTitle = row.element.querySelector('.course_header')?.textContent ?? null;
|
|
if (row.course === null) {
|
|
if (courseTitle !== prevCourseTitleRef.current) {
|
|
tbody.appendChild(row.element);
|
|
prevCourseTitleRef.current = courseTitle;
|
|
}
|
|
} else {
|
|
tbody.appendChild(row.element);
|
|
}
|
|
});
|
|
|
|
setRows([...rows, ...newRows]);
|
|
};
|
|
|
|
const handleRowButtonClick = (course: Course) => () => {
|
|
setSelectedCourse(course);
|
|
};
|
|
|
|
const [activeSchedule] = useSchedules();
|
|
|
|
if (!activeSchedule) {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<ExtensionRoot>
|
|
<DialogProvider>
|
|
<NewSearchLink />
|
|
<RecruitmentBanner />
|
|
<TableHead>Plus</TableHead>
|
|
{rows.map(
|
|
row =>
|
|
row.course && (
|
|
<TableRow
|
|
key={row.course.uniqueId}
|
|
row={row}
|
|
isSelected={row.course.uniqueId === selectedCourse?.uniqueId}
|
|
activeSchedule={activeSchedule}
|
|
onClick={handleRowButtonClick(row.course)}
|
|
/>
|
|
)
|
|
)}
|
|
<CourseCatalogInjectedPopup
|
|
course={selectedCourse!} // always defined when showPopup is true
|
|
show={showPopup}
|
|
onClose={() => setShowPopup(false)}
|
|
afterLeave={() => setSelectedCourse(null)}
|
|
/>
|
|
{enableScrollToLoad && <AutoLoad addRows={addRows} />}
|
|
</DialogProvider>
|
|
</ExtensionRoot>
|
|
);
|
|
}
|