2020-04-16 17:39:41 +02:00
|
|
|
import React, { useState, useRef, useEffect } from 'react';
|
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import mapboxgl from 'mapbox-gl';
|
|
|
|
import ReactMapboxGl, { GeoJSONLayer, ZoomControl } from 'react-mapbox-gl';
|
|
|
|
import DrawControl from 'react-mapbox-gl-draw';
|
|
|
|
import SwitchMapStyle from './SwitchMapStyle';
|
|
|
|
import SearchInput from './SearchInput';
|
2020-05-05 15:09:29 +02:00
|
|
|
import { getJSON, ajax } from '@utils';
|
2020-04-16 17:39:41 +02:00
|
|
|
import ortho from './styles/ortho.json';
|
|
|
|
import vector from './styles/vector.json';
|
2020-05-05 15:09:29 +02:00
|
|
|
import { polygonCadastresFill, polygonCadastresLine } from './utils';
|
2020-04-16 17:39:41 +02:00
|
|
|
import '@mapbox/mapbox-gl-draw/dist/mapbox-gl-draw.css';
|
|
|
|
|
|
|
|
const Map = ReactMapboxGl({});
|
|
|
|
|
2020-05-05 15:09:29 +02:00
|
|
|
function filterFeatureCollection(featureCollection, source) {
|
|
|
|
return {
|
|
|
|
type: 'FeatureCollection',
|
|
|
|
features: featureCollection.features.filter(
|
|
|
|
feature => feature.properties.source === source
|
|
|
|
)
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
const MapEditor = ({ featureCollection, url }) => {
|
2020-04-16 17:39:41 +02:00
|
|
|
const drawControl = useRef(null);
|
|
|
|
const [style, setStyle] = useState('ortho');
|
|
|
|
const [coords, setCoords] = useState([1.7, 46.9]);
|
|
|
|
const [zoom, setZoom] = useState([5]);
|
|
|
|
const [currentMap, setCurrentMap] = useState({});
|
|
|
|
|
2020-05-05 15:09:29 +02:00
|
|
|
const mapStyle = style === 'ortho' ? ortho : vector;
|
|
|
|
const bbox = featureCollection.bbox;
|
|
|
|
const cadastresFeatureCollection = filterFeatureCollection(
|
|
|
|
featureCollection,
|
|
|
|
'cadastre'
|
2020-04-16 17:39:41 +02:00
|
|
|
);
|
|
|
|
|
2020-05-05 15:09:29 +02:00
|
|
|
function updateFeaturesList(features) {
|
|
|
|
const cadastres = features.find(
|
|
|
|
({ geometry }) => geometry.type === 'Polygon'
|
|
|
|
);
|
|
|
|
ajax({ url, type: 'get', data: cadastres ? 'cadastres=update' : '' });
|
|
|
|
}
|
2020-04-16 17:39:41 +02:00
|
|
|
|
2020-05-05 15:09:29 +02:00
|
|
|
function setFeatureId(lid, feature) {
|
|
|
|
const draw = drawControl.current.draw;
|
|
|
|
draw.setFeatureProperty(lid, 'id', feature.properties.id);
|
|
|
|
}
|
|
|
|
|
|
|
|
async function onDrawCreate({ features }) {
|
|
|
|
for (const feature of features) {
|
|
|
|
const data = await getJSON(url, { feature }, 'post');
|
|
|
|
setFeatureId(feature.id, data.feature);
|
2020-04-16 17:39:41 +02:00
|
|
|
}
|
|
|
|
|
2020-05-05 15:09:29 +02:00
|
|
|
updateFeaturesList(features);
|
|
|
|
}
|
2020-04-16 17:39:41 +02:00
|
|
|
|
2020-05-05 15:09:29 +02:00
|
|
|
async function onDrawUpdate({ features }) {
|
|
|
|
for (const feature of features) {
|
|
|
|
let { id } = feature.properties;
|
|
|
|
await getJSON(`${url}/${id}`, { feature }, 'patch');
|
2020-04-16 17:39:41 +02:00
|
|
|
}
|
|
|
|
|
2020-05-05 15:09:29 +02:00
|
|
|
updateFeaturesList(features);
|
|
|
|
}
|
2020-04-16 17:39:41 +02:00
|
|
|
|
2020-05-05 15:09:29 +02:00
|
|
|
async function onDrawDelete({ features }) {
|
|
|
|
for (const feature of features) {
|
|
|
|
const { id } = feature.properties;
|
|
|
|
await getJSON(`${url}/${id}`, null, 'delete');
|
|
|
|
}
|
2020-04-16 17:39:41 +02:00
|
|
|
|
2020-05-05 15:09:29 +02:00
|
|
|
updateFeaturesList(features);
|
|
|
|
}
|
2020-04-16 17:39:41 +02:00
|
|
|
|
|
|
|
const onMapLoad = map => {
|
|
|
|
setCurrentMap(map);
|
2020-05-05 15:09:29 +02:00
|
|
|
|
|
|
|
drawControl.current.draw.set(
|
|
|
|
filterFeatureCollection(featureCollection, 'selection_utilisateur')
|
|
|
|
);
|
2020-04-16 17:39:41 +02:00
|
|
|
};
|
|
|
|
|
2020-05-05 15:09:29 +02:00
|
|
|
const onCadastresUpdate = evt => {
|
2020-04-16 17:39:41 +02:00
|
|
|
if (currentMap) {
|
|
|
|
currentMap
|
|
|
|
.getSource('cadastres-layer')
|
2020-05-05 15:09:29 +02:00
|
|
|
.setData(
|
|
|
|
filterFeatureCollection(evt.detail.featureCollection, 'cadastre')
|
|
|
|
);
|
2020-04-16 17:39:41 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
useEffect(() => {
|
2020-05-05 15:09:29 +02:00
|
|
|
addEventListener('cadastres:update', onCadastresUpdate);
|
|
|
|
return () => removeEventListener('cadastres:update', onCadastresUpdate);
|
2020-04-16 17:39:41 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
if (!mapboxgl.supported()) {
|
|
|
|
return (
|
|
|
|
<p>
|
|
|
|
Nous ne pouvons pas afficher notre éditeur de carte car il est
|
|
|
|
imcompatible avec votre navigateur. Nous vous conseillons de le mettre à
|
|
|
|
jour ou utiliser les dernières versions de Chrome, Firefox ou Safari
|
|
|
|
</p>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<div
|
|
|
|
style={{
|
|
|
|
marginBottom: '62px'
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
<SearchInput
|
|
|
|
getCoords={searchTerm => {
|
|
|
|
setCoords(searchTerm);
|
|
|
|
setZoom([17]);
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
<Map
|
|
|
|
onStyleLoad={map => onMapLoad(map)}
|
|
|
|
fitBounds={bbox}
|
|
|
|
fitBoundsOptions={{ padding: 100 }}
|
|
|
|
center={coords}
|
|
|
|
zoom={zoom}
|
|
|
|
style={mapStyle}
|
|
|
|
containerStyle={{
|
|
|
|
height: '500px'
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
<GeoJSONLayer
|
|
|
|
id="cadastres-layer"
|
|
|
|
data={cadastresFeatureCollection}
|
|
|
|
fillPaint={polygonCadastresFill}
|
|
|
|
linePaint={polygonCadastresLine}
|
|
|
|
/>
|
|
|
|
<DrawControl
|
|
|
|
ref={drawControl}
|
|
|
|
onDrawCreate={onDrawCreate}
|
|
|
|
onDrawUpdate={onDrawUpdate}
|
|
|
|
onDrawDelete={onDrawDelete}
|
|
|
|
displayControlsDefault={false}
|
|
|
|
controls={{
|
|
|
|
point: true,
|
|
|
|
line_string: true,
|
|
|
|
polygon: true,
|
|
|
|
trash: true
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
<div
|
|
|
|
className="style-switch"
|
|
|
|
style={{
|
|
|
|
position: 'absolute',
|
|
|
|
bottom: 0,
|
|
|
|
left: 0
|
|
|
|
}}
|
|
|
|
onClick={() =>
|
|
|
|
style === 'ortho' ? setStyle('vector') : setStyle('ortho')
|
|
|
|
}
|
|
|
|
>
|
|
|
|
<SwitchMapStyle isVector={style === 'vector' ? true : false} />
|
|
|
|
</div>
|
|
|
|
<ZoomControl />
|
|
|
|
</Map>
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
MapEditor.propTypes = {
|
|
|
|
featureCollection: PropTypes.shape({
|
|
|
|
bbox: PropTypes.array,
|
|
|
|
features: PropTypes.array,
|
|
|
|
id: PropTypes.number
|
2020-05-05 15:09:29 +02:00
|
|
|
}),
|
|
|
|
url: PropTypes.string
|
2020-04-16 17:39:41 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
export default MapEditor;
|