Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 | 4x 1x 4x 2x 1x 1x 4x 2x 2x 2x 27x 4x 23x 4x 19x 19x 19x 1x 1x 19x 19x 27x 1657x 1657x 1657x 1657x 1657x 1657x 1657x 1657x 1657x 1657x 1657x 505x 1152x 390x 762x 1x 19x | import SectionsTableBase from "main/components/SectionsTableBase"; import { useBackendMutation } from "main/utils/useBackend"; import { toast } from "react-toastify"; import { useCurrentUser } from "main/utils/currentUser.js"; import { formatDays, formatInstructors, formatLocation, formatTime, formatStatus, enrollmentFraction, getSection, getSectionField, renderInfoLink, shouldShowAddToScheduleLink, getQuarter, } from "main/utils/sectionUtils.js"; import { yyyyqToQyy } from "main/utils/quarterUtilities"; import AddToScheduleModal from "main/components/PersonalSchedules/AddToScheduleModal"; export const objectToAxiosParams = (data) => { return { url: "/api/courses/post", method: "POST", params: { enrollCd: data.enrollCd.toString(), psId: data.psId.toString(), }, }; }; export const onSuccess = (response) => { if (response.length < 3) { toast( `New course Created - id: ${response[0].id} enrollCd: ${response[0].enrollCd}`, ); } else { toast( `Course ${response[0].enrollCd} replaced old section ${response[2].enrollCd} with new section ${response[1].enrollCd}`, ); } }; export const onError = (error) => { console.error("onError: error=", error); const message = error.response.data?.message || `An unexpected error occurred adding the schedule: ${JSON.stringify(error)}`; toast.error(message); }; export default function SectionsTable({ sections, schedules = [] }) { if (!(schedules instanceof Array)) { throw new Error("schedules prop must be an array"); } if (schedules.length > 0 && !schedules[0].hasOwnProperty("id")) { throw new Error( "schedules prop must be an array of objects with an 'id' property", ); } const { data: currentUser } = useCurrentUser(); const mutation = useBackendMutation( objectToAxiosParams, { onSuccess, onError }, [], ); const addToScheduleCallback = (section, schedule, mutation) => { const dataFinal = { enrollCd: section.enrollCode, psId: schedule, }; mutation.mutate(dataFinal); }; const testid = "SectionsTable"; const columns = [ { id: "expander", // Unique ID for the expander column header: ({ table }) => ( <button data-testid={`${testid}-expand-all-rows`} {...{ onClick: table.getToggleAllRowsExpandedHandler(), }} > {table.getIsAllRowsExpanded() ? "➖" : "➕"} </button> ), cell: ({ row }) => row.getCanExpand() ? ( <button data-testid={`${testid}-row-${row.index}-expand-button`} {...{ onClick: row.getToggleExpandedHandler(), style: { cursor: "pointer" }, }} > {row.getIsExpanded() ? "➖" : "➕"} </button> ) : ( <span data-testid={`${testid}-row-${row.index}-cannot-expand`} /> ), // This is important for indenting sub-rows // We'll apply this style in the render, but you can define it here too // For sub-rows, you might want to adjust cell content for clarity }, { header: "Quarter", accessorKey: "quarter", cell: ({ row }) => row.original.quarter ? yyyyqToQyy(row.original.quarter) : "", }, { accessorKey: "courseId", header: "Course ID", // cell: ({ row, getValue }) => ( // <div style={{ paddingLeft: `${row.depth * 2}rem` }}>{getValue()}</div> // ), }, { accessorKey: "title", header: "Title", }, { header: "Status", accessorKey: "status", cell: ({ row }) => formatStatus(getSection(row)), }, { header: "Enrolled", accessorKey: "enrolled", cell: ({ row }) => enrollmentFraction(row), }, { id: "location", header: "Location", cell: ({ row }) => formatLocation(getSection(row).timeLocations), }, { id: "days", header: "Days", cell: ({ row }) => formatDays(getSection(row).timeLocations), }, { id: "time", header: "Time", cell: ({ row }) => formatTime(getSection(row).timeLocations), }, { id: "instructor", header: "Instructor", cell: ({ row }) => formatInstructors(getSection(row).instructors), }, { accessorKey: "enrollCode", header: "Enroll Code", cell: ({ row }) => getSectionField(row, "enrollCode"), }, { header: "Info", id: "info", cell: ({ row }) => renderInfoLink(row, testid), }, { header: "Action", id: "action", cell: ({ row }) => { if (!currentUser.loggedIn) { return <span data-testid={`${testid}-row-${row.id}-not-logged-in`} />; } else if (!shouldShowAddToScheduleLink(row)) { return <span data-testid={`${testid}-row-${row.id}-no-action`} />; } return ( <div className="d-flex align-items-center gap-2"> <AddToScheduleModal section={getSection(row)} quarter={getQuarter(row)} onAdd={(section, schedule) => addToScheduleCallback(section, schedule, mutation) } schedules={schedules} testid={`${testid}-cell-row-${row.id}-col-action`} /> </div> ); }, }, ]; return ( <> <SectionsTableBase columns={columns} data={sections} testid={testid} /> </> ); } |