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 | 3x 3x 3x 121x 121x 121x 1x 1x 1x 120x 62x 62x 62x 62x 62x 62x 5x 5x 3x 3x 2x 62x 1x 62x 1x 1x 1x 62x 1x 1x 62x 46x 45x 46x 52x 52x 52x 36x 62x 62x 33x 134x 5x 33x | import { useMemo, 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,
defaultAdminEmails,
}) {
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) => {
// Stryker disable next-line OptionalChaining
const selfUser = currentUser?.root?.user;
if (selfUser != null && selfUser.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 sortedUsers = useMemo(() => {
if (!Array.isArray(users)) return [];
const defaultEmails = Array.isArray(defaultAdminEmails)
? defaultAdminEmails
: // Stryker disable next-line ArrayDeclaration
[];
return [...users].sort((a, b) => {
const aIsDefault = defaultEmails.includes(a.email);
const bIsDefault = defaultEmails.includes(b.email);
if (aIsDefault !== bIsDefault) return aIsDefault ? -1 : 1;
return a.id - b.id;
});
}, [users, defaultAdminEmails]);
const columns = [...baseColumns];
if (showToggleRoleButtons) {
columns.push({
Header: "Toggle Admin",
//id: "Toggle Admin",
Cell: ({ cell }) => {
const isDefaultAdmin =
Array.isArray(defaultAdminEmails) &&
defaultAdminEmails.includes(cell.row.values.email);
return (
<Button
variant="primary"
onClick={() => toggleAdminCallback(cell)}
disabled={isDefaultAdmin}
data-testid={`UsersTable-cell-row-${cell.row.index}-col-Toggle Admin-button`}
>
Toggle Admin
</Button>
);
},
});
columns.push(
ButtonColumn(
"Toggle Moderator",
"primary",
toggleModeratorCallback,
"UsersTable",
),
);
}
return (
<>
<OurTable data={sortedUsers} 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>
)}
</>
);
}
|