All files / pages AdminCreateCommonsPage.js

100% Statements 12/12
100% Branches 2/2
100% Functions 4/4
100% Lines 11/11

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                1x     6x             6x           6x 1x                                 6x               6x 1x       6x 1x     5x                      
import React from "react";
import BasicLayout from "main/layouts/BasicLayout/BasicLayout";
import CommonsForm from "main/components/Commons/CommonsForm";
import { Navigate } from 'react-router-dom'
import { toast } from "react-toastify"
 
import { useBackend, useBackendMutation } from "main/utils/useBackend";
 
const AdminCreateCommonsPage = () => {
 
    // Stryker disable all 
    const { data: initialCommons } = useBackend(
        ["/api/commons/defaults"],
        { method: "GET", url: "/api/commons/defaults" },
        []
        );
    // Stryker restore all
 
    const objectToAxiosParams = (newCommons) => ({
        url: "/api/commons/new",
        method: "POST",
        data: newCommons
    });
 
    const onSuccess = (commons) => {
        toast(<div>Commons successfully created!
            <br />{`id: ${commons.id}`}
            <br />{`name: ${commons.name}`}
            <br />{`startingBalance: ${commons.startingBalance}`}
            <br />{`cowPrice: ${commons.cowPrice}`}
            <br />{`milkPrice: ${commons.milkPrice}`}
            <br />{`degradationRate: ${commons.degradationRate}`}
            <br />{`carryingCapacity: ${commons.carryingCapacity}`}
            <br />{`capacityPerUser: ${commons.capacityPerUser}`}
            <br />{`startDate: ${commons.startingDate}`}
            <br />{`aboveCapacityHealthUpdateStrategy: ${commons.aboveCapacityHealthUpdateStrategy}`}
            <br />{`belowCapacityHealthUpdateStrategy: ${commons.belowCapacityHealthUpdateStrategy}`}
            <br />{`showLeaderboard: ${commons.showLeaderboard}`}
        </div>);
    }
   
    // Stryker disable all
    const mutation = useBackendMutation(
        objectToAxiosParams,
        { onSuccess },
        // Stryker disable next-line all : hard to set up test for caching
        ["/api/commons/all"]
    );
    // Stryker restore all
 
    const submitAction = async (data) => {
        mutation.mutate(data);
    }
 
 
    if (mutation.isSuccess) {
        return <Navigate to="/" />
    }
 
    return (
        <BasicLayout>
            <h2>Create Commons</h2>
            <CommonsForm
                initialCommons={initialCommons}
                submitAction={submitAction}
            />
        </BasicLayout>
    );
};
 
export default AdminCreateCommonsPage;