import { useEffect, useState } from 'react'; import SiteRepository from '../../../repository/SiteRepository'; import * as React from 'react'; import Radio from '@mui/material/Radio'; import RadioGroup from '@mui/material/RadioGroup'; import FormControlLabel from '@mui/material/FormControlLabel'; import FormLabel from '@mui/material/FormLabel'; import FormControl from '@mui/material/FormControl'; import staticText from '../../../assets/data/staticText.json' export default function HabitatSelector(props) { const [habitats, setHabitats] = useState([]) const [habitatsMap, setHabitatsMap] = useState({}) const [value, setValue] = React.useState(props.filters.habitat && props.filters.habitat.id); const [selectedHabitat, setSelectedHabitat] = React.useState({}); const [imageValue, setImageValue] = React.useState(props.filters.habitatImage); const getHabitats = () => { SiteRepository.getHabitats().then(response => { if (response.status === 200) { // Create a mapping from the habitat id to the object let habitatsJson = {} response.data.forEach(habitat => { habitatsJson[habitat.id] = habitat }) setHabitats(response.data); setHabitatsMap(habitatsJson); } }) } useEffect(() => { // Retrieves the habitats from the api if they are not loaded already habitats.length === 0 && getHabitats() // Sets the selected habitat if its already set in filters if (props.filters.habitat && props.filters.habitat.id) { setSelectedHabitat(habitatsMap[props.filters.habitat.id]) } // If both the habitat and the image is selected, then enable the next step if (props.filters.habitat && props.filters.habitatImage) { props.setNextDisabled(false); } }); const setHabitatImage = (imageId) => { // Sets the selected image radio, updates filter state for image and enable the next button setImageValue(imageId); props.updateFilterState({ "habitatImage": imageId }); props.updateFilterState({ "zone": null }); props.setNextDisabled(false); } const handleRadioChange = (event) => { // Retrieve and set the value of the radio button const habitatSelection = event.target.value; setValue(habitatSelection); setHabitatImage(null) // Set the image default selection if there is only one image variation available const habitatObject = habitatsMap[habitatSelection] setSelectedHabitat(habitatObject) if (habitatObject.images.length === 1) { setHabitatImage(habitatObject.images[0].id) } // Update the filters for the selected habitat props.updateFilterState({ "habitat": habitatObject }); }; const handleImageRadioChange = (event) => { const habitatImageSelection = event.target.value; setHabitatImage(habitatImageSelection) }; const getImageLabel = (image) => { return (

{image.name}

) } return (
{staticText.steps.habitat.optionsLabel} {habitats && Array.isArray(habitats) && habitats.map(habitat => } label={habitat.name} /> )}
{staticText.steps.habitat.imageOptionsLabel} {selectedHabitat && selectedHabitat.images && Array.isArray(selectedHabitat.images) && selectedHabitat.images.map(image => } label={getImageLabel(image)} sx={{ paddingTop: '15px', paddingBottom: '15px' }} /> )} {(!selectedHabitat || (selectedHabitat.images && selectedHabitat.images.length === 0)) &&

No images available.

}
); }