1
Fork 0
mirror of https://github.com/pds-nest/nest.git synced 2024-11-22 21:14:18 +00:00
pds-2021-g2-nest/code/frontend/src/components/interactive/BoxConditionMap.js

78 lines
2.5 KiB
JavaScript
Raw Normal View History

2021-04-30 20:10:00 +00:00
import React, { useState } from "react"
import BoxFull from "../base/BoxFull"
import {FontAwesomeIcon} from "@fortawesome/react-fontawesome"
import { faMapPin, faPlus } from "@fortawesome/free-solid-svg-icons"
import FormInline from "../base/FormInline"
import Style from "./BoxConditionMap.module.css"
import ButtonIconOnly from "../base/ButtonIconOnly"
2021-05-01 00:33:46 +00:00
import { MapContainer, Marker, TileLayer } from "react-leaflet"
2021-04-30 20:10:00 +00:00
import useRepositoryEditor from "../../hooks/useRepositoryEditor"
2021-05-01 00:33:46 +00:00
const STARTING_POSITION = [41.89309, 12.48289]
const STARTING_ZOOM = 3
2021-04-30 20:10:00 +00:00
/**
* A {@link BoxFull} that allows the user to select a geographical location to use to filter tweets.
*
* @param props - Additional props to pass to the box.
* @returns {JSX.Element}
* @constructor
*/
export default function BoxConditionMap({ ...props }) {
const [user, setUser] = useState("")
const {conditions, appendCondition} = useRepositoryEditor()
const onButtonClick = () => {
const newCond = {
"id": null,
"type": 1,
"content": null
}
if(user === "") {
console.debug("Refusing to append ", newCond, " to the Conditions list, as it is empty.")
return
}
let duplicate = null;
for(const oldCond of conditions) {
if(newCond.type === oldCond.type && newCond.content === oldCond.content) {
duplicate = oldCond;
break;
}
}
if(duplicate) {
console.debug("Refusing to append ", newCond, " to the Conditions list, as ", duplicate, " already exists.")
}
else {
console.debug("Appending ", newCond, " to the Conditions list")
appendCondition(newCond)
}
setUser("")
}
return (
2021-05-01 00:33:46 +00:00
<BoxFull
header={<span>Search by <FontAwesomeIcon icon={faMapPin}/> zone</span>}
childrenClassName={Style.BoxConditionMapContents}
{...props}
>
<MapContainer
center={STARTING_POSITION}
zoom={STARTING_ZOOM}
className={Style.MapContainer}
>
2021-04-30 20:10:00 +00:00
<TileLayer
attribution='(c) <a href="https://osm.org/copyright">OpenStreetMap</a> contributors'
url="https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png"
/>
2021-05-01 00:33:46 +00:00
<Marker draggable={true} position={STARTING_POSITION}/>
2021-04-30 20:10:00 +00:00
</MapContainer>
</BoxFull>
)
}