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 | 1x 10x 10x 10x 2x 2x 2x 2x 1x 10x 25x 25x 25x | import React, { useState } from "react";
import { Form } from "react-bootstrap";
const RequestTypeDropdown = ({
requestTypes,
requestType,
setRequestType,
controlId,
onChange = null,
label = "Request Type",
}) => {
const localSearchType = localStorage.getItem(controlId);
const [requestTypeState, setRequestTypeState] = useState(
// Stryker disable next-line all : not sure how to test/mock local storage
localSearchType || requestType,
);
const handleSubjectOnChange = (event) => {
localStorage.setItem(controlId, event.target.value);
setRequestTypeState(event.target.value);
setRequestType(event.target.value);
if (onChange != null) {
onChange(event);
}
};
return (
<Form.Group controlId={controlId}>
<Form.Label>{label}</Form.Label>
<Form.Control
as="select"
value={requestTypeState}
onChange={handleSubjectOnChange}
>
{requestTypes.map(function (object) {
const id = object.id;
const key = `${controlId}-option-${id}`;
return (
<option key={key} data-testid={key} value={object.requestType}>
{object.requestType}
</option>
);
})}
</Form.Control>
</Form.Group>
);
};
export default RequestTypeDropdown;
|