All files / components/Commons CommonsForm.js

100% Statements 10/10
100% Branches 11/11
100% Functions 2/2
100% Lines 10/10

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 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271                42x                       42x         42x             42x     42x 42x   42x 42x   42x                                                                                                                                                                                                                       9x                                                                                                                                                                                                                                                  
import { Button, Form, Row, Col } from 'react-bootstrap';
import { useForm } from "react-hook-form";
import { useBackend } from "main/utils/useBackend";
 
import HealthUpdateStrategiesDropdown from "main/components/Commons/HealthStrategiesUpdateDropdown";
 
function CommonsForm({ initialCommons, submitAction, buttonLabel = "Create" }) {
    // Stryker disable all
    const defaultValues = {
        startingBalance: 10000,
        cowPrice: 100,
        milkPrice: 20,
        degradationRate: 0.01,
        carryingCapacity: 1000,
        capacityPerUser: 50,
      } 
    const {
        register,
        formState: { errors },
        handleSubmit,
    } = useForm(
        { defaultValues: initialCommons || {} }
    );
    // Stryker restore all
 
    const { data: healthUpdateStrategies } = useBackend(
        "/api/commons/all-health-update-strategies", {
        method: "GET",
        url: "/api/commons/all-health-update-strategies",
    },
    );
 
    const testid = "CommonsForm";
 
    // Stryker disable all
    const curr = new Date();
    const today = curr.toISOString().substring(0, 10);
    // Stryker restore all
    const belowStrategy = initialCommons?.belowCapacityStrategy || healthUpdateStrategies?.defaultBelowCapacity;
    const aboveStrategy = initialCommons?.aboveCapacityStrategy || healthUpdateStrategies?.defaultAboveCapacity;
 
    return (
        <Form onSubmit={handleSubmit(submitAction)}>
            <Row>           
                {initialCommons && (
                    <Form.Group className="mb-3">
                        <Form.Label htmlFor="id">Id</Form.Label>
                        <Form.Control
                            data-testid={`${testid}-id`}
                            id="id"
                            type="text"
                            {...register("id")}
                            value={initialCommons.id}
                            disabled
                        />
                    </Form.Group>
                )}
                    <Form.Group className="mb-3">
                        <Form.Label htmlFor="name">Commons Name</Form.Label>
                        <Form.Control
                            data-testid={`${testid}-name`}
                            id="name"
                            type="text"
                            isInvalid={!!errors.name}
                            {...register("name", { required: "Commons name is required" })}
                        />
                        <Form.Control.Feedback type="invalid">
                            {errors.name?.message}
                        </Form.Control.Feedback>
                    </Form.Group>
            </Row>
            <Row>
                <Col>
                    <Form.Group className="mb-3">
                    <Form.Label htmlFor="startingBalance">Starting Balance</Form.Label>
                    <Form.Control
                        id="startingBalance"
                        data-testid={`${testid}-startingBalance`}
                        type="number"
                        step="0.01"
                        defaultValue={defaultValues.startingBalance}
                        isInvalid={!!errors.startingBalance}
                        {...register("startingBalance", {
                            valueAsNumber: true,
                            required: "Starting balance is required",
                            min: { value: 0.00, message: "Starting Balance must be ≥ 0.00" },
                        })}
                    />
                    <Form.Control.Feedback type="invalid">
                        {errors.startingBalance?.message}
                    </Form.Control.Feedback>
                    </Form.Group>
                </Col>
                <Col>
                    <Form.Group className="mb-3">
                    <Form.Label htmlFor="cowPrice">Cow Price</Form.Label>
                    <Form.Control
                        data-testid={`${testid}-cowPrice`}
                        id="cowPrice"
                        type="number"
                        step="0.01"
                        defaultValue={defaultValues.cowPrice}
                        isInvalid={!!errors.cowPrice}
                        {...register("cowPrice", {
                            valueAsNumber: true,
                            required: "Cow price is required",
                            min: { value: 0.01, message: "Cow price must be ≥ 0.01" },
                        })}
                    />
                    <Form.Control.Feedback type="invalid">
                        {errors.cowPrice?.message}
                    </Form.Control.Feedback>
                    </Form.Group>
                </Col>
                <Col>
                    <Form.Group className="mb-3">
                    <Form.Label htmlFor="milkPrice">Milk Price</Form.Label>
                    <Form.Control
                        data-testid={`${testid}-milkPrice`}
                        id="milkPrice"
                        type="number"
                        step="0.01"
                        defaultValue={defaultValues.milkPrice}
                        isInvalid={!!errors.milkPrice}
                        {...register("milkPrice", {
                            valueAsNumber: true,
                            required: "Milk price is required",
                            min: { value: 0.01, message: "Milk price must be ≥ 0.01" },
                        })}
                    />
                    <Form.Control.Feedback type="invalid">
                        {errors.milkPrice?.message}
                    </Form.Control.Feedback>
                    </Form.Group>
                </Col>
            </Row>
            <Row>
                <Col>
                    <Form.Group className="mb-3">
                    <Form.Label htmlFor="startingDate">Starting Date</Form.Label>
                    <Form.Control
                        data-testid={`${testid}-startingDate`}
                        id="startingDate"
                        type="date"
                        defaultValue={today}
                        isInvalid={!!errors.startingDate}
                        {...register("startingDate", {
                            valueAsDate: true,
                            validate: {
                                isPresent: (v) => !isNaN(v) || "Starting date is required",
                            },
                        })}
                    />
                    <Form.Control.Feedback type="invalid">
                        {errors.startingDate?.message}
                    </Form.Control.Feedback>
                    </Form.Group>
                </Col>
                <Col>
                    <Form.Group className="mb-3">
                    <Form.Label htmlFor="degradationRate">Degradation Rate</Form.Label>
                    <Form.Control
                        data-testid={`${testid}-degradationRate`}
                        id="degradationRate"
                        type="number"
                        step="0.001"
                        defaultValue={defaultValues.degradationRate}
                        isInvalid={!!errors.degradationRate}
                        {...register("degradationRate", {
                            valueAsNumber: true,
                            required: "Degradation rate is required",
                            min: { value: 0.00, message: "Degradation rate must be ≥ 0.00" },
                        })}
                    />
                    <Form.Control.Feedback type="invalid">
                        {errors.degradationRate?.message}
                    </Form.Control.Feedback>
                    </Form.Group>    
                </Col>
                <Col>
                </Col>
            </Row>
            <Row>
                <Col>
                    <Form.Group className="mb-3">
                    <Form.Label htmlFor="carryingCapacity">Carrying Capacity</Form.Label>
                    <Form.Control
                        data-testid={`${testid}-carryingCapacity`}
                        id="carryingCapacity"
                        type="number"
                        step="1"
                        defaultValue={defaultValues.carryingCapacity}
                        isInvalid={!!errors.carryingCapacity}
                        {...register("carryingCapacity", {
                            valueAsNumber: true,
                            required: "Carrying capacity is required",
                            min: { value: 1, message: "Carrying Capacity must be ≥ 1" },
                        })}
                    />
                    <Form.Control.Feedback type="invalid">
                        {errors.carryingCapacity?.message}
                    </Form.Control.Feedback>
                    </Form.Group>
                </Col>
                <Col>
                    <Form.Group className="mb-3">
                    <Form.Label htmlFor="capacityPerUser">Capacity Per User</Form.Label>
                    <Form.Control
                        data-testid={`${testid}-capacityPerUser`}
                        id="capacityPerUser"
                        type="number"
                        step="1"
                        defaultValue={defaultValues.capacityPerUser}
                        isInvalid={!!errors.capacityPerUser}
                        {...register("capacityPerUser", {
                            valueAsNumber: true,
                            required: "Capacity per user is required",
                            min: { value: 1, message: "Capacity per user must be ≥ 1" },
                        })}
                    />
                    <Form.Control.Feedback type="invalid">
                        {errors.capacityPerUser?.message}
                    </Form.Control.Feedback>
                    </Form.Group>
                </Col>
                <Col>
                    <Form.Group className="mb-3">
                    <Form.Label htmlFor="showLeaderboard">Show Leaderboard?</Form.Label>
                    <Form.Check
                        data-testid={`${testid}-showLeaderboard`}
                        type="checkbox"
                        id="showLeaderboard"
                        {...register("showLeaderboard")}
                    />
                    </Form.Group>
                </Col>
            </Row>
 
            <Row>
                <h4>
                Health Update Formula
                </h4>
                <Col>
                    <HealthUpdateStrategiesDropdown
                        formName={"aboveCapacityHealthUpdateStrategy"}
                        displayName={"When Above Capacity"}
                        initialValue={aboveStrategy}
                        register={register}
                        healthUpdateStrategies={healthUpdateStrategies}
                    />           
                </Col>
                <Col>
                    <HealthUpdateStrategiesDropdown
                        formName={"belowCapacityHealthUpdateStrategy"}
                        displayName={"When Below Capacity"}
                        initialValue={belowStrategy}
                        register={register}
                        healthUpdateStrategies={healthUpdateStrategies}
                    />
                </Col>
                <Col>
                </Col>
            </Row>
            
            <Button type="submit" data-testid="CommonsForm-Submit-Button">{buttonLabel}</Button>
        </Form>
    );
}
 
export default CommonsForm;