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 11x 11x 11x 2x 2x 2x 2x 2x 1x 11x 28x 28x | import React, { useState } from 'react'
import { Form } from 'react-bootstrap';
import { yyyyqToQyy } from "main/utils/quarterUtilities.js";
const PersonalScheduleDropdown = ({ schedules, schedule, setSchedule, controlId, onChange = null, label = "Schedule" }) => {
const localSearchSchedule = localStorage.getItem(controlId);
const [scheduleState, setScheduleState] = useState(
// Stryker disable next-line all : not sure how to test/mock local storage
localSearchSchedule || schedule
);
const handleScheduleOnChange = (event) => {
const selectedSchedule = event.target.value;
localStorage.setItem(controlId, selectedSchedule);
setScheduleState(selectedSchedule);
setSchedule(selectedSchedule);
if (onChange != null) {
onChange(event);
}
};
return (
<Form.Group controlId={controlId}>
<Form.Label>{label}</Form.Label>
<Form.Control
as="select"
value={scheduleState}
onChange={handleScheduleOnChange}
>
{schedules.map(function (object, i) {
const key=`${controlId}-option-${i}`;
return (
<option
key={key}
data-testid={key}
value={object.id}
>
{yyyyqToQyy(object.quarter)} {object.name}
</option>
);
})}
</Form.Control>
</Form.Group>
);
};
export default PersonalScheduleDropdown;
|