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 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 61x 61x 61x 61x 61x 61x 61x 61x 61x 61x 1x 1x 61x 61x 1x 1x 1x 1x 61x 61x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 61x 61x 61x 61x 61x 61x 61x 61x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 61x 1x 1x 61x 1x 1x 1x 61x 61x 1x 1x 1x 61x 1x 1x 1x 1x 1x 1x 61x 61x 61x 61x 61x 61x 2x 2x 2x 61x 2x 2x 61x 61x 61x 61x 61x 61x 61x 61x 61x 61x 61x 61x 61x 61x 61x 61x 61x 61x 61x 61x 61x 61x 61x 61x 134x 42x 42x 42x 6x 6x 6x 42x 6x 6x 6x 42x 6x 6x 6x 42x 6x 6x 6x 42x 12x 12x 12x 42x 6x 6x 42x 42x 42x 42x 42x 134x 134x 61x 61x 61x 61x 134x 134x 14x 14x 14x 134x 23x 23x 23x 23x 23x 120x 15x 15x 15x 97x 14x 14x 14x 82x 28x 28x 28x 28x 40x 40x 40x 40x 40x 40x 61x 61x 45x 45x 45x 45x 61x 61x 61x 61x 61x 61x 61x 61x 61x 61x 61x 61x 61x 61x 61x 61x 61x 61x 61x 61x 61x 61x 61x | import React from "react";
import OurTable, { ButtonColumn } from "main/components/OurTable";
import { Tooltip, OverlayTrigger } from "react-bootstrap";
import { useBackendMutation } from "main/utils/useBackend";
import { hasRole } from "main/utils/currentUser";
import Modal from "react-bootstrap/Modal";
import CourseStaffForm from "main/components/CourseStaff/CourseStaffForm";
import { toast } from "react-toastify";
import CourseStaffDeleteModal from "main/components/CourseStaff/CourseStaffDeleteModal";
export default function CourseStaffTable({
staff,
currentUser,
courseId,
testIdPrefix = "CourseStaffTable",
}) {
const [showEditModal, setShowEditModal] = React.useState(false);
const [editStaff, setEditStaff] = React.useState(null);
const [showDeleteModal, setShowDeleteModal] = React.useState(false);
const [deleteCourseStaff, setDeleteCourseStaff] = React.useState(null);
const hideDeleteModal = () => {
setShowDeleteModal(false);
};
// Stryker disable all
function onDeleteSuccess(message) {
console.log(message);
toast(message);
hideDeleteModal();
}
// Stryker restore all
function cellToAxiosParamsDelete(cell) {
console.log(cell);
return {
// Stryker disable next-line StringLiteral
url: "/api/coursestaff/delete",
method: "DELETE",
params: {
id: cell.id,
courseId: cell.courseId,
removeFromOrg: cell.removeFromOrg,
},
};
// why is this a bad request?
}
// Stryker disable all : hard to test for query caching
const deleteMutation = useBackendMutation(
cellToAxiosParamsDelete,
{ onSuccess: onDeleteSuccess },
// Stryker disable next-line all
[`/api/coursestaff/course?courseId=${courseId}`],
);
// Stryker restore all
const cellToAxiosParamsEdit = (formData) => ({
url: `/api/coursestaff`,
method: "PUT",
// Stryker disable next-line ObjectLiteral
params: {
firstName: formData.firstName,
lastName: formData.lastName,
id: formData.id,
courseId: courseId,
},
});
const hideModal = () => {
setShowEditModal(false);
};
const onEditSuccess = () => {
toast("Staff member updated successfully.");
hideModal();
};
// Stryker disable next-line all
const deleteCallback = async (cell) => {
setShowDeleteModal(true);
setDeleteCourseStaff(cell.row.original.id);
};
const submitDeleteForm = (data) => {
deleteMutation.mutate({
id: deleteCourseStaff,
courseId: courseId,
removeFromOrg: data.removeFromOrg,
});
};
const editMutation = useBackendMutation(
cellToAxiosParamsEdit,
{ onSuccess: onEditSuccess },
// Stryker disable next-line all
[`/api/coursestaff/course?courseId=${courseId}`],
);
const editCallback = (cell) => {
setEditStaff(cell.row.original);
setShowEditModal(true);
};
const submitEditForm = (data) => {
editMutation.mutate(data);
};
const columns = [
{
header: "id",
accessorKey: "id",
id: "id",
},
{
header: "First Name",
accessorKey: "firstName",
},
{
header: "Last Name",
accessorKey: "lastName",
},
{
header: "Email",
accessorKey: "email",
},
{
header: "GitHub Login",
accessorKey: "githubLogin",
},
// {
// header: "courseId",
// accessorKey: "courseId",
// id: "courseId",
// enableHiding: true,
// },
// {
// header: "removeFromOrg",
// accessorKey: "removeFromOrg",
// id: "removeFromOrg",
// enableHiding: true,
// }
];
const renderTooltip = (orgStatus) => {
const tooltipComponent = (props) => {
let set_message;
switch (orgStatus) {
case "PENDING":
set_message =
"Staff member cannot join the course until it has been completely set up.";
break;
case "JOINCOURSE":
set_message =
"Staff member has been prompted to join, but hasn't yet clicked the 'Join Course' button to generate an invite to the organization.";
break;
case "INVITED":
set_message =
"Staff member has generated an invite, but has not yet accepted or declined the invitation.";
break;
case "OWNER":
set_message =
"Staff member is an owner of the GitHub organization associated with this course.";
break;
case "MEMBER":
set_message =
"Staff member is a member of the GitHub organization associated with this course.";
break;
default:
set_message = "Tooltip for illegal status that will never occur";
break;
}
return (
<Tooltip id={`${orgStatus.toLowerCase()}-tooltip`} {...props}>
{set_message}
</Tooltip>
);
};
return tooltipComponent;
};
columns.push({
header: "Status",
accessorKey: "orgStatus",
cell: ({ cell }) => {
const status = cell.row.original.orgStatus;
if (status === "PENDING") {
return (
<OverlayTrigger placement="right" overlay={renderTooltip("PENDING")}>
<span className="text-warning">Pending</span>
</OverlayTrigger>
);
} else if (status === "JOINCOURSE") {
return (
<OverlayTrigger
placement="right"
overlay={renderTooltip("JOINCOURSE")}
>
<span className="text-primary">Join Course</span>
</OverlayTrigger>
);
} else if (status === "INVITED") {
return (
<OverlayTrigger placement="right" overlay={renderTooltip("INVITED")}>
<span className="text-primary">Invited</span>
</OverlayTrigger>
);
} else if (status === "OWNER") {
return (
<OverlayTrigger placement="right" overlay={renderTooltip("OWNER")}>
<span className="text-info">Owner</span>
</OverlayTrigger>
);
} else if (status === "MEMBER") {
return (
<OverlayTrigger placement="right" overlay={renderTooltip("MEMBER")}>
<span className="text-primary">Member</span>
</OverlayTrigger>
);
}
return (
<OverlayTrigger
placement="right"
overlay={renderTooltip(cell.row.original.orgStatus)}
>
<span>{status}</span>
</OverlayTrigger>
);
},
});
if (hasRole(currentUser, "ROLE_INSTRUCTOR")) {
columns.push(ButtonColumn("Edit", "primary", editCallback, testIdPrefix));
columns.push(
ButtonColumn("Delete", "danger", deleteCallback, testIdPrefix),
);
}
return (
<>
<Modal show={showEditModal} onHide={hideModal}>
<Modal.Header closeButton>
<Modal.Title>Edit Staff Member</Modal.Title>
</Modal.Header>
<Modal.Body
className={"pb-3"}
data-testid={`${testIdPrefix}-modal-body`}
>
<CourseStaffForm
initialContents={editStaff}
submitAction={submitEditForm}
buttonLabel={"Update"}
cancelDisabled={true}
/>
</Modal.Body>
</Modal>
<CourseStaffDeleteModal
showModal={showDeleteModal}
toggleShowModal={setShowDeleteModal}
onSubmitAction={submitDeleteForm}
/>
<OurTable data={staff} columns={columns} testid={testIdPrefix} />
<div
style={{ display: "none" }}
data-testid={`${testIdPrefix}-courseId`}
data-course-id={`${courseId}`}
/>
</>
);
}
|