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 | 3x 41x 41x 41x 7x 7x 7x 7x 1x 41x 1408x 1408x | import { useState } from "react";
import { Form } from "react-bootstrap";
const SingleBuildingDropdown = ({
buildings,
setBuilding,
controlId,
onChange = null,
label = "Building Name",
}) => {
const localSearchBuilding = localStorage.getItem(controlId);
const [buildingState, setBuildingState] = useState(
// Stryker disable next-line all : not sure how to test/mock local storage
localSearchBuilding || "U",
);
const handleBuildingtoChange = (event) => {
localStorage.setItem(controlId, event.target.value);
setBuildingState(event.target.value);
setBuilding(event.target.value);
if (onChange != null) {
onChange(event);
}
};
return (
<Form.Group controlId={controlId}>
<Form.Label>{label}</Form.Label>
<Form.Control
as="select"
value={buildingState}
onChange={handleBuildingtoChange}
>
{buildings.map(function (object, i) {
const key = `${controlId}-option-${i}`;
return (
<option key={key} data-testid={key} value={object[0]}>
{object[1]}
</option>
);
})}
</Form.Control>
</Form.Group>
);
};
export default SingleBuildingDropdown;
|