All files / components/Commons CommonsTable.js

100% Statements 34/34
100% Branches 4/4
100% Functions 18/18
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                      45x 45x   45x   45x 1x     45x           45x 5x 5x     45x 2x 2x     45x 1x 1x     45x                       84x         84x         84x         84x         84x         84x           84x         84x               84x         84x                 45x   45x               45x     45x               1x     2x           45x                    
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),
    ];
 
    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}
    </>);
};