All files / components/Users UsersTable.jsx

100% Statements 35/35
100% Branches 8/8
100% Functions 10/10
100% Lines 33/33

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            3x           3x           3x                                       99x         99x                         99x   1x 1x         1x   98x                   53x 53x 53x     53x           53x             53x 5x 3x 3x   2x         53x 1x     53x 1x 1x 1x     53x 1x   1x     53x   53x 28x               28x                                                                                                      
import { useState } from "react";
import { Button, Modal } from "react-bootstrap";
import { useNavigate } from "react-router";
import OurTable, { ButtonColumn } from "main/components/OurTable";
import { useBackendMutation } from "main/utils/useBackend";
 
const cellToAxiosParamsToggleAdmin = (cell) => ({
  method: "PUT",
  url: "/api/admin/toggleAdmin",
  params: { id: cell.row.values.id },
});
 
const cellToAxiosParamsToggleModerator = (cell) => ({
  method: "PUT",
  url: "/api/admin/toggleModerator",
  params: { id: cell.row.values.id },
});
 
const baseColumns = [
  {
    Header: "id",
    accessor: "id",
  },
  {
    Header: "First Name",
    accessor: "givenName",
  },
  {
    Header: "Last Name",
    accessor: "familyName",
  },
  {
    Header: "Email",
    accessor: "email",
  },
  {
    Header: "Admin",
    id: "admin",
    accessor: (row, _rowIndex) => String(row.admin), // hack needed for boolean values to show up
  },
  {
    Header: "Moderator",
    id: "moderator",
    accessor: (row, _rowIndex) => String(row.moderator),
  },
  {
    Header: "Alias",
    accessor: "alias",
  },
  {
    Header: "Proposed Alias",
    accessor: "proposedAlias",
  },
  {
    Header: "Status",
    accessor: (row) => {
      if (row.status === "Approved" && row.dateApproved) {
        // Parse as local date (YYYY-MM-DD)
        const [year, month, day] = row.dateApproved.split("-");
        const formattedDate = new Date(
          year,
          month - 1,
          day,
        ).toLocaleDateString();
        return `Approved on ${formattedDate}`;
      }
      return row.status;
    },
  },
];
 
export default function UsersTable({
  users,
  showToggleRoleButtons,
  currentUser,
}) {
  const navigate = useNavigate();
  const [showModal, setShowModal] = useState(false);
  const [pendingCell, setPendingCell] = useState(null);
 
  // Stryker disable all
  const toggleAdminMutation = useBackendMutation(
    cellToAxiosParamsToggleAdmin,
    {},
    ["/api/admin/users"],
  );
 
  const toggleModeratorMutation = useBackendMutation(
    cellToAxiosParamsToggleModerator,
    {},
    ["/api/admin/users"],
  );
  // Stryker restore all
 
  const toggleAdminCallback = (cell) => {
    if (currentUser?.root?.user?.id === cell.row.values.id) {
      setPendingCell(cell);
      setShowModal(true);
    } else {
      toggleAdminMutation.mutate(cell);
    }
  };
 
  // Stryker disable next-line all
  const toggleModeratorCallback = async (cell) => {
    toggleModeratorMutation.mutate(cell);
  };
 
  const handleConfirm = () => {
    setShowModal(false);
    toggleAdminMutation.mutate(pendingCell);
    navigate("/");
  };
 
  const handleCancel = () => {
    setShowModal(false);
    // Stryker disable next-line all
    setPendingCell(null);
  };
 
  const columns = [...baseColumns];
 
  if (showToggleRoleButtons) {
    columns.push(
      ButtonColumn(
        "Toggle Admin",
        "primary",
        toggleAdminCallback,
        "UsersTable",
      ),
    );
    columns.push(
      ButtonColumn(
        "Toggle Moderator",
        "primary",
        toggleModeratorCallback,
        "UsersTable",
      ),
    );
  }
 
  return (
    <>
      <OurTable data={users} columns={columns} testid={"UsersTable"} />
      {showModal && (
        <Modal
          show
          onHide={handleCancel}
          data-testid="confirm-admin-toggle-modal"
        >
          <Modal.Header closeButton>
            <Modal.Title>Confirm Admin Toggle</Modal.Title>
          </Modal.Header>
          <Modal.Body>
            <p>
              Are you sure you want to toggle admin status for your own account?
            </p>
            <p>
              You will lose admin access and be redirected to the home page.
            </p>
          </Modal.Body>
          <Modal.Footer>
            <Button
              variant="secondary"
              onClick={handleCancel}
              data-testid="confirm-admin-toggle-cancel"
            >
              No
            </Button>
            <Button
              variant="danger"
              onClick={handleConfirm}
              data-testid="confirm-admin-toggle-confirm"
            >
              Yes
            </Button>
          </Modal.Footer>
        </Modal>
      )}
    </>
  );
}