2021-11-10 10:21:46 +13:00
|
|
|
import { useEffect, useState, useRef } from 'react';
|
2021-11-05 14:30:40 +13:00
|
|
|
import SiteRepository from '../../../repository/SiteRepository';
|
2021-12-06 10:26:37 +13:00
|
|
|
import { HabitatSVG } from '../HabitatSVG'
|
2021-10-20 16:52:06 +13:00
|
|
|
|
|
|
|
export default function ZoneSelector(props) {
|
2021-11-05 14:30:40 +13:00
|
|
|
|
|
|
|
const [habitatImageObject, setHabitatImageObject] = useState({});
|
2021-12-06 10:26:37 +13:00
|
|
|
const [segmentMapping, setSegmentMapping] = useState({});
|
2021-11-05 14:30:40 +13:00
|
|
|
const [selectedZoneSegment, setZoneSegment] = useState(null);
|
|
|
|
|
2021-12-06 10:26:37 +13:00
|
|
|
const getHabitatImage = () => {
|
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)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2021-12-06 10:26:37 +13:00
|
|
|
const getZones = () => {
|
|
|
|
SiteRepository.getZones().then(response => {
|
|
|
|
if (response.status === 200) {
|
|
|
|
const zoneData = response.data
|
|
|
|
let newSegmentMapping = {}
|
|
|
|
zoneData.forEach(zone => {
|
|
|
|
newSegmentMapping[zone.related_svg_segment] = zone
|
|
|
|
});
|
|
|
|
setSegmentMapping(newSegmentMapping);
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
const setZoneOrRedirect = (zone) => {
|
|
|
|
const redirectHabitat = zone && zone.redirect_habitat;
|
2021-11-11 13:26:04 +13:00
|
|
|
|
2021-11-18 16:42:11 +13:00
|
|
|
// If there is a redirect habitat set then redirect otherwise set the zone as state
|
2021-12-06 10:26:37 +13:00
|
|
|
const newFilterState = redirectHabitat ? { "habitat": { "id": redirectHabitat.id, "name": redirectHabitat.name } } : { "zone": zone };
|
|
|
|
|
2021-11-18 16:42:11 +13:00
|
|
|
props.updateFilterState(newFilterState);
|
|
|
|
props.setRedirectBack(Boolean(redirectHabitat));
|
2021-11-11 13:26:04 +13:00
|
|
|
|
2021-10-20 16:52:06 +13:00
|
|
|
props.setNextDisabled(false);
|
2021-11-05 14:30:40 +13:00
|
|
|
}
|
|
|
|
|
|
|
|
useEffect(() => {
|
2021-12-06 10:26:37 +13:00
|
|
|
// Retrieves the habitat image from the api if it's not loaded already
|
|
|
|
Object.keys(habitatImageObject).length === 0 && getHabitatImage()
|
2021-11-10 10:21:46 +13:00
|
|
|
|
2021-11-11 13:26:04 +13:00
|
|
|
// Retrieves the habitat image from the api if it's not loaded already
|
2021-12-06 10:26:37 +13:00
|
|
|
Object.keys(segmentMapping).length === 0 && getZones()
|
2021-11-10 10:21:46 +13:00
|
|
|
|
2021-11-05 14:30:40 +13:00
|
|
|
|
2021-12-06 10:26:37 +13:00
|
|
|
}, [props.filters.zone]);
|
2021-10-20 16:52:06 +13:00
|
|
|
|
2021-12-06 10:26:37 +13:00
|
|
|
const selectZone = (element) => {
|
|
|
|
if (['path', 'rect'].includes(element.tagName) && element.attributes.inkscapelabel && element.attributes.inkscapelabel.nodeValue) {
|
|
|
|
if (selectedZoneSegment) {
|
|
|
|
selectedZoneSegment.style['fill-opacity'] = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
setZoneSegment(element)
|
|
|
|
element.style.fill = "#eeeeee"
|
|
|
|
element.style['fill-opacity'] = 0.5;
|
2021-11-05 14:30:40 +13:00
|
|
|
|
2021-12-06 10:26:37 +13:00
|
|
|
const zone = segmentMapping[element.attributes.inkscapelabel.nodeValue]
|
|
|
|
setZoneOrRedirect(zone)
|
|
|
|
}
|
2021-11-05 14:30:40 +13:00
|
|
|
}
|
|
|
|
|
2021-12-06 10:26:37 +13:00
|
|
|
return Object.keys(habitatImageObject).length > 0 ? (
|
|
|
|
<div style={{ width: '100%' }}>
|
|
|
|
<p>{habitatImageObject.name}</p>
|
|
|
|
<div className="zone-selector-svg">
|
|
|
|
<HabitatSVG onClick={(event) => selectZone(event.target)} name={habitatImageObject.image_filename} style={{ "height": 'auto', "width": "100%" }} />
|
|
|
|
</div>
|
|
|
|
</div>) : <div></div>
|
2021-10-20 16:52:06 +13:00
|
|
|
}
|