All files / components/Commons CommonsTable.jsx

100% Statements 163/163
100% Branches 21/21
100% Functions 18/18
100% Lines 163/163

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 2211x 1x 1x 1x       1x 1x       1x 1x   1x 40x 40x   40x   40x 1x 1x   40x 40x 40x 40x     40x 5x 5x 5x   40x 2x 2x 2x   40x 1x 1x 1x   40x 40x 40x 40x 40x 40x 40x 40x 40x 40x 40x 40x   40x     40x 40x 40x 40x 40x 40x 40x     40x 40x 40x 40x 40x 40x 40x     40x 40x 40x 40x 40x 40x 40x     40x 40x 40x 40x 40x 40x 40x     40x 40x 40x 40x 40x 40x 40x     40x 40x 40x 40x 40x 40x 40x     40x 40x 40x 40x 40x 40x 40x     40x 40x 40x 40x 40x 40x 40x     40x 40x 40x 40x 40x 40x     40x 40x 40x 40x 40x 40x 40x     40x 40x 40x 40x 40x 40x 40x     40x 40x 40x   40x   40x 40x 40x 40x 40x 40x 40x 40x 40x 40x   40x 40x   40x 26x 11x   40x 40x 40x 40x 40x   40x 40x   40x 40x 40x 40x 40x 40x 40x     40x 40x 40x 40x 40x             40x 40x 40x 40x     40x  
import React, { useState } from "react";
import Button from "react-bootstrap/Button";
import Modal from "react-bootstrap/Modal";
import OurTable, {
  ButtonColumn,
  HrefButtonColumn,
} from "main/components/OurTable";
import { useBackendMutation } from "main/utils/useBackend";
import {
  cellToAxiosParamsDelete,
  onDeleteSuccess,
} from "main/utils/commonsUtils";
import { useNavigate } from "react-router-dom";
import { hasRole } from "main/utils/currentUser";
 
export default function CommonsTable({ commons, currentUser }) {
  const [showModal, setShowModal] = useState(false);
  const [cellToDelete, setCellToDelete] = useState(null);
 
  const navigate = useNavigate();
 
  const editCallback = (cell) => {
    navigate(`/admin/editcommons/${cell.row.values["commons.id"]}`);
  };
 
  const deleteMutation = useBackendMutation(
    cellToAxiosParamsDelete,
    { onSuccess: onDeleteSuccess },
    ["/api/commons/allplus"],
  );
 
  const deleteCallback = async (cell) => {
    setCellToDelete(cell);
    setShowModal(true);
  };
 
  const confirmDelete = async (cell) => {
    deleteMutation.mutate(cell);
    setShowModal(false);
  };
 
  const leaderboardCallback = (cell) => {
    const route = `/leaderboard/${cell.row.values["commons.id"]}`;
    navigate(route);
  };
 
  const columns = [
    {
      Header: "id",
      accessor: "commons.id", // accessor is the "key" in the data
    },
    {
      Header: "Name",
      accessor: "commons.name",
    },
    {
      Header: (
        <span>
          Cow
          <br /> Price
        </span>
      ),
      accessor: (row) => row.commons.cowPrice,
      id: "commons.cowPrice",
    },
    {
      Header: (
        <span>
          Milk <br /> Price
        </span>
      ),
      accessor: (row) => row.commons.milkPrice,
      id: "commons.milkPrice",
    },
    {
      Header: (
        <span>
          Start <br /> Bal
        </span>
      ),
      accessor: (row) => row.commons.startingBalance,
      id: "commons.startingBalance",
    },
    {
      Header: (
        <span>
          Starting <br /> Date
        </span>
      ),
      accessor: (row) => String(row.commons.startingDate).slice(0, 10),
      id: "commons.startingDate",
    },
    {
      Header: (
        <span>
          Last <br /> Date
        </span>
      ),
      accessor: (row) => String(row.commons.lastDate).slice(0, 10),
      id: "commons.lastDate",
    },
    {
      Header: (
        <span>
          Degrad <br /> Rate
        </span>
      ),
      accessor: (row) => row.commons.degradationRate,
      id: "commons.degradationRate",
    },
    {
      Header: (
        <span>
          Show <br /> LrdrBrd?
        </span>
      ),
      id: "commons.showLeaderboard", // needed for tests
      accessor: (row, _rowIndex) => String(row.commons.showLeaderboard), // hack needed for boolean values to show up
    },
    {
      Header: (
        <span>
          Show <br /> Chat?
        </span>
      ),
      id: "commons.showChat",
      accessor: (row, _rowIndex) => String(row.commons.showChat),
    },
    {
      Header: (
        <span>
          Tot <br /> Cows
        </span>
      ),
      accessor: "totalCows",
    },
    {
      Header: (
        <span>
          Cap / <br /> User
        </span>
      ),
      accessor: (row) => row.commons.capacityPerUser,
      id: "commons.capacityPerUser",
    },
    {
      Header: (
        <span>
          Carry <br /> Cap
        </span>
      ),
      accessor: (row) => row.commons.carryingCapacity,
      id: "commons.carryingCapacity",
    },
    {
      Header: (
        <span>
          Eff <br /> Cap
        </span>
      ),
      accessor: "effectiveCapacity",
    },
  ];
 
  const testid = "CommonsTable";
 
  const columnsIfAdmin = [
    ...columns,
    ButtonColumn("Edit", "primary", editCallback, testid),
    ButtonColumn("Delete", "danger", deleteCallback, testid),
    ButtonColumn("Leaderboard", "secondary", leaderboardCallback, testid),
    HrefButtonColumn(
      "Stats CSV",
      "success",
      `/api/commonstats/download?commonsId=`,
      testid,
    ),
    HrefButtonColumn("Announcements", "info", `/admin/announcements/`, testid),
  ];
 
  const columnsToDisplay = hasRole(currentUser, "ROLE_ADMIN")
    ? columnsIfAdmin
    : columns;
 
  const commonsModal = (
    <Modal
      data-testid="CommonsTable-Modal"
      show={showModal}
      onHide={() => setShowModal(false)}
    >
      <Modal.Header closeButton>
        <Modal.Title>Confirm Deletion</Modal.Title>
      </Modal.Header>
      <Modal.Body>Are you sure you want to delete this commons?</Modal.Body>
      <Modal.Footer>
        <Button
          variant="secondary"
          data-testid="CommonsTable-Modal-Cancel"
          onClick={() => setShowModal(false)}
        >
          Keep this Commons
        </Button>
        <Button
          variant="danger"
          data-testid="CommonsTable-Modal-Delete"
          onClick={() => confirmDelete(cellToDelete)}
        >
          Permanently Delete
        </Button>
      </Modal.Footer>
    </Modal>
  );
 
  return (
    <>
      <OurTable data={commons} columns={columnsToDisplay} testid={testid} />
      {hasRole(currentUser, "ROLE_ADMIN") && commonsModal}
    </>
  );
}