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 | 53x 53x 53x 53x 53x 1x 53x 53x 5x 53x 8x 53x 5x 53x 4x 4x 53x 2x 2x 53x 2x 2x 53x 183x 183x 183x 100x 183x 53x 20x 53x 44x 53x 20x 53x | import React from "react"; import OurTable, { ButtonColumn, ButtonDropdownColumn, } from "main/components/OurTable"; import { useBackendMutation } from "main/utils/useBackend"; import { cellToAxiosParamsDelete, onDeleteSuccess, formattedDate, cellToAxiosParamsUpdateStatus, onUpdateStatusSuccess, } from "main/utils/RecommendationRequestUtils"; import { useNavigate, useLocation } from "react-router-dom"; import { hasRole } from "main/utils/currentUser"; export default function RecommendationRequestTable({ requests, currentUser }) { const navigate = useNavigate(); const location = useLocation(); const isPendingPage = location.pathname.includes("pending"); const isCompletedPage = location.pathname.includes("completed"); const editCallback = (cell) => { navigate(`/requests/edit/${cell.row.values.id}`); }; // Stryker disable all : hard to test for query caching // when delete success, invalidate the correct query key (depending on user role) const apiEndpoint = isPendingPage || isCompletedPage ? "/api/recommendationrequest/professor/all" : "/api/recommendationrequest/requester/all"; const deleteMutation = useBackendMutation( (cell) => cellToAxiosParamsDelete(cell, currentUser), { onSuccess: onDeleteSuccess }, apiEndpoint, ); // Stryker restore all const updateStatusMutation = useBackendMutation( ({ cell, newStatus }) => cellToAxiosParamsUpdateStatus(cell, newStatus), { onSuccess: onUpdateStatusSuccess }, [apiEndpoint], ); // Stryker restore all // Stryker disable next-line all : TODO try to make a good test for this const deleteCallback = async (cell) => { deleteMutation.mutate(cell); }; const acceptCallback = async (cell) => { updateStatusMutation.mutate( { cell, newStatus: "IN PROGRESS" }, { onSuccess: () => onUpdateStatusSuccess("Request marked as IN PROGRESS."), }, ); }; const denyCallback = async (cell) => { updateStatusMutation.mutate( { cell, newStatus: "DENIED" }, { onSuccess: () => onUpdateStatusSuccess("Request marked as DENIED."), }, ); }; const completeCallback = async (cell) => { updateStatusMutation.mutate( { cell, newStatus: "COMPLETED" }, { onSuccess: () => onUpdateStatusSuccess("Request marked as COMPLETED."), }, ); }; const columns = [ { Header: "id", accessor: "id", // accessor is the "key" in the data }, { Header: "Professor Name", accessor: "professor.fullName", }, { Header: "Professor Email", accessor: "professor.email", }, { Header: "Requester Name", accessor: "requester.fullName", }, { Header: "Requester Email", accessor: "requester.email", }, { Header: "Recommendation Type", accessor: "recommendationType", }, { Header: "Details", accessor: "details", }, { Header: "Status", accessor: "status", }, { Header: "Submission Date", accessor: "submissionDate", Cell: ({ value }) => { return formattedDate(value); }, }, { Header: "Last Modified Date", accessor: "lastModifiedDate", Cell: ({ value }) => { return formattedDate(value); }, }, { Header: "Completion Date", accessor: "completionDate", Cell: ({ value }) => { if (!value) return ""; // Check if value exists return formattedDate(value); }, }, { Header: "Due Date", accessor: "dueDate", Cell: ({ value }) => { return formattedDate(value); }, }, ]; if (hasRole(currentUser, "ROLE_PROFESSOR") && isPendingPage) { columns.push( ButtonDropdownColumn( "Update", "info", { Accept: acceptCallback, Deny: denyCallback, Complete: completeCallback, }, "RecommendationRequestTable", ), ); } //since all admins have the role of a user, we can just check if the current user has the role ROLE_USER if (hasRole(currentUser, "ROLE_USER")) { columns.push( ButtonColumn( "Delete", "danger", deleteCallback, "RecommendationRequestTable", ), ); } if ( hasRole(currentUser, "ROLE_USER") && !hasRole(currentUser, "ROLE_ADMIN") && !isPendingPage && !isCompletedPage ) { columns.push( ButtonColumn( "Edit", "primary", editCallback, "RecommendationRequestTable", ), ); } return ( <OurTable data={requests} columns={columns} testid={"RecommendationRequestTable"} /> ); } |