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 | 17x 17x 17x 3x | import { Button, Form } from "react-bootstrap"; import { useForm } from "react-hook-form"; function CommonsForm({ initialCommons, submitAction, buttonLabel = "Create" }) { // Stryker disable all const { register, formState: { errors }, handleSubmit, } = useForm( { defaultValues: initialCommons || {} } ); // Stryker enable all const testid = "CommonsForm"; 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> )} <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> <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" isInvalid={!!errors.startingBalance} {...register("startingBalance", { valueAsNumber: true, required: "Starting Balance is required", min: { value: 0.01, message: "Starting Balance must be positive" }, })} /> <Form.Control.Feedback type="invalid"> {errors.startingBalance?.message} </Form.Control.Feedback> </Form.Group> <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" isInvalid={!!errors.cowPrice} {...register("cowPrice", { valueAsNumber: true, required: "Cow price is required", min: { value: 0.01, message: "Cow price must be positive" }, })} /> <Form.Control.Feedback type="invalid"> {errors.cowPrice?.message} </Form.Control.Feedback> </Form.Group> <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" isInvalid={!!errors.milkPrice} {...register("milkPrice", { valueAsNumber: true, required: "Milk price is required", min: { value: 0.01, message: "Milk price must be positive" }, })} /> <Form.Control.Feedback type="invalid"> {errors.milkPrice?.message} </Form.Control.Feedback> </Form.Group> <Form.Group className="mb-3"> <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> <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.01" isInvalid={!!errors.degradationRate} {...register("degradationRate", { valueAsNumber: true, required: "Degradation rate is required", min: { value: 0.00, message: "Degradation rate must be positive" }, })} /> <Form.Control.Feedback type="invalid"> {errors.degradationRate?.message} </Form.Control.Feedback> </Form.Group> <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" isInvalid={!!errors.carryingCapacity} {...register("carryingCapacity", { valueAsNumber: true, required: "Carrying capacity is required", min: { value: 1, message: "Carrying Capacity must be greater than 0" }, })} /> <Form.Control.Feedback type="invalid"> {errors.carryingCapacity?.message} </Form.Control.Feedback> </Form.Group> <Form.Group className="mb-3"> <Form.Label htmlFor="scaleCowSalePrice">Decrease Sale Price of Unhealthy Cows?</Form.Label> <Form.Check data-testid={`${testid}-scaleCowSalePrice`} type="checkbox" id="scaleCowSalePrice" {...register("scaleCowSalePrice")} /> </Form.Group> <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; |