All files / components/Commons CommonsForm.js

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

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 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308              52x   52x 15x               52x           52x             52x   52x 52x 52x         52x 52x     52x                                                                                                                                                                                                                                                                                                                                                                                                                               10x                                                                                                              
import {Button, Form, Row, Col, OverlayTrigger, Tooltip} 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"}) {
    let modifiedCommons = initialCommons ? { ...initialCommons } : {};  // make a shallow copy of initialCommons
 
    if (modifiedCommons.startingDate) {
        modifiedCommons.startingDate = modifiedCommons.startingDate.split("T")[0];
    }
 
    // Stryker disable all
    const {
        register,
        formState: {errors},
        handleSubmit,
    } = useForm(
        // modifiedCommons is guaranteed to be defined (initialCommons or {})
        {defaultValues: modifiedCommons}
    );
    // 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";
 
    const curr = new Date();
    const today = curr.toISOString().split('T')[0];
    const DefaultVals = {
        name: "", startingBalance: "10000", cowPrice: "100",
        milkPrice: "1", degradationRate: null, carryingCapacity: null, startingDate: today
    };
 
    const belowStrategy = initialCommons?.belowCapacityStrategy || healthUpdateStrategies?.defaultBelowCapacity;
    const aboveStrategy = initialCommons?.aboveCapacityStrategy || healthUpdateStrategies?.defaultAboveCapacity;
 
 
    return (
        <Form onSubmit={handleSubmit(submitAction)}>
            {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>
            )}
 
            <div className="border-bottom mb-3"></div>
 
            <Row className="flex justify-content-start" style={{width: '80%'}} data-testid={`${testid}-r0`}>
                <Col className="" md={6}>
                    <Form.Group className="mb-3">
                        <Form.Label htmlFor="name">Commons Name</Form.Label>
                        <OverlayTrigger
                            placement="top"
                            overlay={<Tooltip>Enter Name for a new common</Tooltip>}
                            delay='5'
                        >
                            <Form.Control
                                data-testid={`${testid}-name`}
                                id="name"
                                type="text"
                                defaultValue={DefaultVals.name}
                                isInvalid={!!errors.name}
                                {...register("name", {required: "Commons name is required"})}
                            />
                        </OverlayTrigger>
                        <Form.Control.Feedback type="invalid">
                            {errors.name?.message}
                        </Form.Control.Feedback>
                    </Form.Group>
                </Col>
                <Col md={6}>
                    <Form.Group className="mb-3">
                        <Form.Label htmlFor="startingBalance">Starting Balance</Form.Label>
                        <OverlayTrigger
                            placement="top"
                            overlay={<Tooltip>Unit: $</Tooltip>}
                            delay='100'
                        >
                            <Form.Control
                                id="startingBalance"
                                data-testid={`${testid}-startingBalance`}
                                type="number"
                                step="0.01"
                                defaultValue={DefaultVals.startingBalance}
                                isInvalid={!!errors.startingBalance}
                                {...register("startingBalance", {
                                    valueAsNumber: true,
                                    required: "Starting Balance is required",
                                    min: {value: 0.0, message: "Starting Balance must be ≥ 0.00"},
                                })}
                            />
                        </OverlayTrigger>
                        <Form.Control.Feedback type="invalid">
                            {errors.startingBalance?.message}
                        </Form.Control.Feedback>
                    </Form.Group>
                </Col>
            </Row>
 
            <Row className="flex justify-content-start" style={{width: '80%'}} data-testid={`${testid}-r1`}>
                <Col md={6}>
                    <Form.Group className="mb-3">
                        <Form.Label htmlFor="cowPrice">Cow Price</Form.Label>
                        <OverlayTrigger
                            placement="top"
                            overlay={<Tooltip>Unit: $</Tooltip>}
                            delay='100'
                        >
                            <Form.Control
                                data-testid={`${testid}-cowPrice`}
                                id="cowPrice"
                                type="number"
                                step="0.01"
                                defaultValue={DefaultVals.cowPrice}
                                isInvalid={!!errors.cowPrice}
                                {...register("cowPrice", {
                                    valueAsNumber: true,
                                    required: "Cow price is required",
                                    min: {value: 0.01, message: "Cow price must be ≥ 0.01"},
                                })}
                            />
                        </OverlayTrigger>
 
 
                        <Form.Control.Feedback type="invalid">
                            {errors.cowPrice?.message}
                        </Form.Control.Feedback>
                    </Form.Group>
 
                </Col>
                <Col md={6}>
                    <Form.Group className="mb-3">
                        <Form.Label htmlFor="milkPrice">Milk Price</Form.Label>
                        <OverlayTrigger
                            placement="top"
                            overlay={<Tooltip>Unit: $</Tooltip>}
                            delay='100'
                        >
                            <Form.Control
                                data-testid={`${testid}-milkPrice`}
                                id="milkPrice"
                                type="number"
                                step="0.01"
                                defaultValue={DefaultVals.milkPrice}
                                isInvalid={!!errors.milkPrice}
                                {...register("milkPrice", {
                                    valueAsNumber: true,
                                    required: "Milk price is required",
                                    min: {value: 0.01, message: "Milk price must be ≥ 0.01"},
                                })}
                            />
                        </OverlayTrigger>
                        <Form.Control.Feedback type="invalid">
                            {errors.milkPrice?.message}
                        </Form.Control.Feedback>
                    </Form.Group>
 
                </Col>
            </Row>
 
 
            <Row className="mt-1 flex justify-content-start" style={{width: '80%'}} data-testid={`${testid}-r2`}>
                <Col md={4}>
                    <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.0001"
                            defaultValue={DefaultVals.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 md={4}>
                    <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={DefaultVals.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 md={4}>
                    <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"
                            isInvalid={!!errors.capacityPerUser}
                            {...register("capacityPerUser", {
                                valueAsNumber: true,
                                required: "Capacity Per User is required",
                            })}
                        />
                        <Form.Control.Feedback type="invalid">
                            {errors.capacityPerUser?.message}
                        </Form.Control.Feedback>
                    </Form.Group>
                </Col>
            </Row>
 
 
            <Form.Group className="mb-5" style={{width: '300px', height: '50px'}} data-testid={`${testid}-r3`}>
                <Form.Label htmlFor="startingDate">Starting Date</Form.Label>
                <Form.Control
                    data-testid={`${testid}-startingDate`}
                    id="startingDate"
                    type="date"
                    defaultValue={DefaultVals.startingDate}
                    isInvalid={!!errors.startingDate}
                    {...register("startingDate", {
                        valueAsDate: true,
                        validate: {isPresent: (v) => !isNaN(v)},
                    })}
                />
                <Form.Control.Feedback type="invalid">
                    {errors.startingDate?.message}
                </Form.Control.Feedback>
            </Form.Group>
            
 
 
 
            <h5>Health update formula</h5>
            <div className="border-bottom mb-4"></div>
            <Row>
                <Col md={6}>
                    <HealthUpdateStrategiesDropdown
                        formName={"aboveCapacityHealthUpdateStrategy"}
                        displayName={"When above capacity"}
                        initialValue={aboveStrategy}
                        register={register}
                        healthUpdateStrategies={healthUpdateStrategies}
                    />
 
                </Col>
                <Col md={6}>
                    <HealthUpdateStrategiesDropdown
                        formName={"belowCapacityHealthUpdateStrategy"}
                        displayName={"When below capacity"}
                        initialValue={belowStrategy}
                        register={register}
                        healthUpdateStrategies={healthUpdateStrategies}
                    />
                </Col>
            </Row>
 
            <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>
            <Row className="mb-5">
                <Button type="submit"
                        data-testid="CommonsForm-Submit-Button"
                        className="pl-1 w-30 text-left"
                        style={{width: '30%'}}
                >{buttonLabel}</Button>
            </Row>
        </Form>
    );
}
export default CommonsForm;