right-tree/frontend/src/components/steps/zone/ZoneSelector.js

91 lines
4.2 KiB
JavaScript
Raw Normal View History

import { useEffect, useState, useRef } from 'react';
import SampleBackground from '../../../assets/img/stepBackgrounds/step1.jpg';
2021-11-05 14:30:40 +13:00
import SiteRepository from '../../../repository/SiteRepository';
export default function ZoneSelector(props) {
2021-11-05 14:30:40 +13:00
const [habitatImageObject, setHabitatImageObject] = useState({});
const [habitatImageFile, setHabitatImageFile] = useState(SampleBackground);
const [imageHeight, setImageHeight] = useState(0)
2021-11-05 14:30:40 +13:00
const [selectedZoneSegment, setZoneSegment] = useState(null);
const imageContainer = useRef(null)
2021-11-05 14:30:40 +13:00
const getHabitatImage = (findAndSetImageHeightFunc) => {
2021-11-05 14:30:40 +13:00
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)
2021-11-05 14:30:40 +13:00
}
}).catch(e => {
findAndSetImageHeightFunc(habitatImageFile)
2021-11-05 14:30:40 +13:00
})
}
2021-11-11 13:26:04 +13:00
const setZoneOrRedirect = (zoneSegment) => {
const redirectHabitat = zoneSegment && zoneSegment.zone && zoneSegment.zone.redirect_habitat;
setZoneSegment(zoneSegment);
2021-11-18 16:42:11 +13:00
// If there is a redirect habitat set then redirect otherwise set the zone as state
const newFilterState = redirectHabitat ? { "habitat": { "id": redirectHabitat.id, "name": redirectHabitat.name }} : { "zone": zoneSegment.zone };
props.updateFilterState(newFilterState);
props.setRedirectBack(Boolean(redirectHabitat));
2021-11-11 13:26:04 +13:00
props.setNextDisabled(false);
2021-11-05 14:30:40 +13:00
}
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);
}
2021-11-11 13:26:04 +13:00
// 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);
2021-11-05 14:30:40 +13:00
// Temporarily bypass if there is no image available
2021-11-11 13:26:04 +13:00
if (props.filters.zone || !props.filters.habitatImage || (habitatImageObject && habitatImageObject.image_segments)) {
props.setNextDisabled(false);
2021-11-05 14:30:40 +13:00
}
});
2021-11-05 14:30:40 +13:00
const stepBackground = {
backgroundImage: `url(${habitatImageFile})`,
backgroundSize: '100% auto',
backgroundRepeat: 'none',
height: imageHeight,
2021-11-05 14:30:40 +13:00
width: '100%',
display: 'flex'
}
return (
<div ref={imageContainer} style={{ width: '100%' }}>
2021-11-05 14:30:40 +13:00
<p>{habitatImageObject && habitatImageObject.name}</p>
{Object.keys(habitatImageObject).length === 0 ? (
// Sample segment selector (temporary if no image is available)
<div style={stepBackground}>
<div className='selectable-section' style={{ width: '50%', height: '100%' }}></div>
<div className='selectable-section' style={{ width: '20%', height: '100%' }}></div>
<div className='selectable-section' style={{ width: '30%', height: '100%' }}></div>
</div>) :
// Actual zone selector
(<div style={stepBackground}>
{habitatImageObject && habitatImageObject.image_segments && Array.isArray(habitatImageObject.image_segments) && habitatImageObject.image_segments.map(segment =>
2021-11-11 13:26:04 +13:00
<div key={segment.id} onClick={() => { setZoneOrRedirect(segment) }} className={`selectable-section ${selectedZoneSegment === segment ? 'selected-segment' : ''}`} style={{ width: `${segment.segment_percentage_width}%`, height: '100%' }}></div>
2021-11-05 14:30:40 +13:00
)}
</div>
)}
</div>
)
}