All files / components/Commons CommonsForm.js

100% Statements 9/9
100% Branches 9/9
100% Functions 2/2
100% Lines 9/9

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              40x 40x                             40x         40x             40x   40x 40x   40x                                                                                                                                                                                                                   8x                                                                                                                                                                                                                  
import {Button, Form, Col, Row} 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"}) {
  const today = new Date().toISOString().split('T')[0];
  const defaultValues = {
    name: "CS156",
    startingBalance: 10000,
    cowPrice: 100,
    milkPrice: 20,
    startingDate: today,
    degradationRate: 1,
    carryingCapacity: 100
  }
 
  // Stryker disable all
  const {
    register,
    formState: {errors},
    handleSubmit,
  } = useForm(
    {defaultValues: {...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";
 
  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>
      )}
 
      <Row className="mb-3">
        <Form.Group as={Col} md="6">
          <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 className="mb-3">
        <Form.Group as={Col} md="6">
          <Form.Label htmlFor="startingBalance">Starting Balance</Form.Label>
          <Form.Control
            id="startingBalance"
            data-testid={`${testid}-startingBalance`}
            type="number"
            step="0.01"
            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>
      </Row>
 
      <Row className="mb-3">
        <Form.Group as={Col} md="6">
          <Form.Label htmlFor="cowPrice">Cow Price</Form.Label>
          <Form.Control
            data-testid={`${testid}-cowPrice`}
            id="cowPrice"
            type="number"
            step="0.01"
            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>
      </Row>
 
      <Row className="mb-3">
        <Form.Group as={Col} md="6">
          <Form.Label htmlFor="milkPrice">Milk Price</Form.Label>
          <Form.Control
            data-testid={`${testid}-milkPrice`}
            id="milkPrice"
            type="number"
            step="0.01"
            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>
      </Row>
 
      <Row className="mb-3">
        <Form.Group as={Col} md="6">
          <Form.Label htmlFor="startingDate">Starting Date</Form.Label>
          <Form.Control
            data-testid={`${testid}-startingDate`}
            id="startingDate"
            type="date"
            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>
      </Row>
 
      <Row className="mb-3">
        <Form.Group as={Col} md="6">
          <Form.Label htmlFor="degradationRate">Degradation Rate</Form.Label>
          <Form.Control
            data-testid={`${testid}-degradationRate`}
            id="degradationRate"
            type="number"
            step="0.01"
            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>
      </Row>
 
      <Row className="mb-3">
        <Form.Group as={Col} md="6">
          <Form.Label htmlFor="carryingCapacity">Carrying Capacity</Form.Label>
          <Form.Control
            data-testid={`${testid}-carryingCapacity`}
            id="carryingCapacity"
            type="number"
            step="1"
            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>
      </Row>
 
      <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>
 
      <h4>
        Health update formula
      </h4>
      <HealthUpdateStrategiesDropdown
        formName={"aboveCapacityHealthUpdateStrategy"}
        displayName={"When above capacity"}
        initialValue={ aboveStrategy }
        register={register}
        healthUpdateStrategies={healthUpdateStrategies}
      />
      <HealthUpdateStrategiesDropdown
        formName={"belowCapacityHealthUpdateStrategy"}
        displayName={"When below capacity"}
        initialValue={ belowStrategy }
        register={register}
        healthUpdateStrategies={healthUpdateStrategies}
      />
 
 
      <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>
 
      <Button type="submit" data-testid="CommonsForm-Submit-Button">{buttonLabel}</Button>
    </Form>
  );
}
 
export default CommonsForm;