import { useEffect, useState, useRef } from 'react'; import SampleBackground from '../../../assets/img/stepBackgrounds/step1.jpg'; import SiteRepository from '../../../repository/SiteRepository'; export default function ZoneSelector(props) { const [habitatImageObject, setHabitatImageObject] = useState({}); const [habitatImageFile, setHabitatImageFile] = useState(SampleBackground); const [imageHeight, setImageHeight] = useState(0) const [selectedZoneSegment, setZoneSegment] = useState(null); const imageContainer = useRef(null) const getHabitatImage = (findAndSetImageHeightFunc) => { SiteRepository.getHabitatImage(props.filters.habitatImage).then(response => { if (response.status === 200) { const imageData = response.data setHabitatImageObject(imageData) const imageSrc = require(`../../../assets/img/habitats/${imageData.image_filename}`).default setHabitatImageFile(imageSrc) findAndSetImageHeightFunc(imageSrc) } }).catch(e => { findAndSetImageHeightFunc(habitatImageFile) }) } const setZoneOrRedirect = (zoneSegment) => { const redirectHabitat = zoneSegment && zoneSegment.zone && zoneSegment.zone.redirect_habitat; setZoneSegment(zoneSegment); if (redirectHabitat) { props.updateFilterState({ "habitat": { "id": redirectHabitat.id, "name": redirectHabitat.name } }); props.setRedirectBack(true) } else { props.updateFilterState({ "zone": zoneSegment.zone }); } props.setNextDisabled(false); } useEffect(() => { // Calculates the image ratio and uses this to calculate the height in pixels based on outer container width const findAndSetImageHeight = (imageSource) => { let img = new Image(); img.src = imageSource; const newHeight = imageContainer.current ? imageContainer.current.clientWidth * (img.height / img.width) : 0; setImageHeight(newHeight); } // Retrieves the habitat image from the api if it's not loaded already Object.keys(habitatImageObject).length === 0 && getHabitatImage(findAndSetImageHeight) // Sets the image height such that the full image always displays on page resize window.addEventListener("resize", () => findAndSetImageHeight(habitatImageFile), false); // Temporarily bypass if there is no image available if (props.filters.zone || !props.filters.habitatImage || (habitatImageObject && habitatImageObject.image_segments)) { props.setNextDisabled(false); } }); const stepBackground = { backgroundImage: `url(${habitatImageFile})`, backgroundSize: '100% auto', backgroundRepeat: 'none', height: imageHeight, width: '100%', display: 'flex' } return (
{habitatImageObject && habitatImageObject.name}
{Object.keys(habitatImageObject).length === 0 ? ( // Sample segment selector (temporary if no image is available)