All files / components/RosterStudent RosterStudentTable.jsx

100% Statements 183/183
100% Branches 30/30
100% Functions 10/10
100% Lines 183/183

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 2381x 1x 1x   1x 1x       1x 1x 1x 1x   1x 64x 64x 64x 64x 64x 64x 64x   64x 64x 64x 64x 64x   64x   64x 1x 1x 1x 1x 1x 1x 1x 1x 1x   64x 1x 1x   64x 1x 1x 1x   64x 64x 1x 1x   64x 64x 64x 64x     64x 1x 1x 1x   64x 1x 1x   64x 64x 64x 64x 64x 64x   64x 64x 64x 64x   64x 64x 64x 64x 64x 64x 64x 64x 64x 64x 64x 64x 64x 64x 64x 64x 64x 64x 64x 64x 64x 64x 64x         64x     64x 129x 64x 64x   64x 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   64x 64x 64x 64x 180x 180x 18x 18x 18x     180x 29x 29x 29x 29x   29x     162x 19x 19x 19x     133x 18x 18x 18x     114x 18x 18x 18x     18x 78x 78x 78x 78x   78x     78x 64x   64x 53x 53x 53x   53x   64x 64x 64x 64x 64x   64x 64x 64x   64x 64x 64x 64x 64x       64x 64x 64x 64x 64x       64x  
import React from "react";
import OurTable, { ButtonColumn } from "main/components/OurTable";
import { Tooltip, OverlayTrigger } from "react-bootstrap";
 
import { useBackendMutation } from "main/utils/useBackend";
import {
  cellToAxiosParamsDelete,
  onDeleteSuccess,
} from "main/utils/rosterStudentUtils";
import { hasRole } from "main/utils/currentUser";
import Modal from "react-bootstrap/Modal";
import RosterStudentForm from "main/components/RosterStudent/RosterStudentForm";
import { toast } from "react-toastify";
 
export default function RosterStudentTable({
  students,
  currentUser,
  courseId,
  testIdPrefix = "RosterStudentTable",
}) {
  const [showEditModal, setShowEditModal] = React.useState(false);
  const [editStudent, setEditStudent] = React.useState(null);
 
  // Stryker disable all : hard to test for query caching
  const deleteMutation = useBackendMutation(
    cellToAxiosParamsDelete,
    { onSuccess: onDeleteSuccess },
    [`/api/rosterstudents/course/${courseId}`],
  );
  // Stryker restore all
 
  const cellToAxiosParamsEdit = (formData) => ({
    url: `/api/rosterstudents/update`,
    method: "PUT",
    params: {
      studentId: formData.studentId,
      firstName: formData.firstName,
      lastName: formData.lastName,
      id: formData.id,
    },
  });
 
  const hideModal = () => {
    setShowEditModal(false);
  };
 
  const onEditSuccess = () => {
    toast("Student updated successfully.");
    hideModal();
  };
 
  // Stryker disable next-line all
  const deleteCallback = async (cell) => {
    deleteMutation.mutate(cell);
  };
 
  const editMutation = useBackendMutation(
    cellToAxiosParamsEdit,
    { onSuccess: onEditSuccess },
    [`/api/rosterstudents/course/${courseId}`],
  );
 
  const editCallback = (cell) => {
    setEditStudent(cell.row.original);
    setShowEditModal(true);
  };
 
  const submitEditForm = (data) => {
    editMutation.mutate(data);
  };
 
  const columns = [
    {
      header: "id",
      accessorKey: "id",
      id: "id",
    },
 
    {
      header: "Student Id",
      accessorKey: "studentId",
    },
 
    {
      header: "First Name",
      accessorKey: "firstName",
    },
    {
      header: "Last Name",
      accessorKey: "lastName",
    },
    {
      header: "Email",
      accessorKey: "email",
    },
    {
      header: "GitHub Login",
      accessorKey: "githubLogin",
    },
    {
      id: "teams",
      header: () => (
        <OverlayTrigger
          placement="right"
          overlay={
            <Tooltip id={`tooltip-teams-header`}>
              A list of teams that the student is a member of.
            </Tooltip>
          }
        >
          <span>Teams</span>
        </OverlayTrigger>
      ),
      accessorFn: (row) =>
        Array.isArray(row.teams) ? row.teams.join(", ") : "",
    },
  ];
 
  const renderTooltip = (orgStatus) => (props) => {
    let set_message;
 
    switch (orgStatus) {
      case "PENDING":
        set_message =
          "Student cannot join the course until it has been completely set up.";
        break;
      case "JOINCOURSE":
        set_message =
          "Student 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 =
          "Student has generated an invite, but has not yet accepted or declined the invitation.";
        break;
      case "OWNER":
        set_message =
          "Student is an owner of the GitHub organization associated with this course.";
        break;
      case "MEMBER":
        set_message =
          "Student 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>
    );
  };
 
  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-danger">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 style={{ color: "purple" }}>Owner</span>
          </OverlayTrigger>
        );
      } else if (status === "MEMBER") {
        return (
          <OverlayTrigger placement="right" overlay={renderTooltip("MEMBER")}>
            <span className="text-success">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 Student</Modal.Title>
        </Modal.Header>
        <Modal.Body
          className={"pb-3"}
          data-testid={`${testIdPrefix}-modal-body`}
        >
          <RosterStudentForm
            initialContents={editStudent}
            submitAction={submitEditForm}
            buttonLabel={"Update"}
            cancelDisabled={true}
          />
        </Modal.Body>
      </Modal>
      <OurTable data={students} columns={columns} testid={testIdPrefix} />
      <div
        style={{ display: "none" }}
        data-testid={`${testIdPrefix}-courseId`}
        data-course-id={`${courseId}`}
      />
    </>
  );
}