2021-05-24 12:13:24 +00:00
|
|
|
import React, { useCallback } from "react"
|
2021-05-11 14:37:15 +00:00
|
|
|
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"
|
2021-05-23 03:35:17 +00:00
|
|
|
import { faLocationArrow, faPlus } from "@fortawesome/free-solid-svg-icons"
|
2021-04-30 20:10:00 +00:00
|
|
|
import ButtonIconOnly from "../base/ButtonIconOnly"
|
|
|
|
import useRepositoryEditor from "../../hooks/useRepositoryEditor"
|
2021-05-18 14:53:42 +00:00
|
|
|
import BoxMap from "../base/BoxMap"
|
2021-05-22 02:44:08 +00:00
|
|
|
import useMapAreaState from "../../hooks/useMapAreaState"
|
2021-05-22 02:57:38 +00:00
|
|
|
import { ConditionLocation } from "../../objects/Condition"
|
2021-05-24 12:13:24 +00:00
|
|
|
import useStrings from "../../hooks/useStrings"
|
2021-05-07 14:30:12 +00:00
|
|
|
|
2021-05-01 00:33:46 +00:00
|
|
|
|
2021-04-30 20:10:00 +00:00
|
|
|
/**
|
2021-05-22 02:57:38 +00:00
|
|
|
* A {@link BoxMap} that allows the user to select a geographical location, and then to add it as a
|
|
|
|
* {@link ConditionLocation} of a RepositoryEditor.
|
2021-04-30 20:10:00 +00:00
|
|
|
*
|
|
|
|
* @param props - Additional props to pass to the box.
|
|
|
|
* @returns {JSX.Element}
|
|
|
|
* @constructor
|
|
|
|
*/
|
2021-05-22 02:57:38 +00:00
|
|
|
export default function BoxConditionLocation({ ...props }) {
|
2021-05-22 02:44:08 +00:00
|
|
|
const mapViewHook = useMapAreaState()
|
2021-05-11 14:37:15 +00:00
|
|
|
const { addCondition } = useRepositoryEditor()
|
2021-05-24 12:13:24 +00:00
|
|
|
const strings = useStrings()
|
2021-04-30 20:10:00 +00:00
|
|
|
|
2021-05-21 17:52:56 +00:00
|
|
|
const onButtonClick = useCallback(
|
2021-05-22 02:57:38 +00:00
|
|
|
() => addCondition(new ConditionLocation(mapViewHook.mapArea)),
|
2021-05-23 14:20:53 +00:00
|
|
|
[mapViewHook, addCondition],
|
2021-05-07 03:02:20 +00:00
|
|
|
)
|
2021-04-30 20:10:00 +00:00
|
|
|
|
|
|
|
return (
|
2021-05-18 14:53:42 +00:00
|
|
|
<BoxMap
|
2021-05-21 17:52:56 +00:00
|
|
|
mapViewHook={mapViewHook}
|
2021-05-07 14:30:12 +00:00
|
|
|
header={
|
2021-05-17 23:33:08 +00:00
|
|
|
<span>
|
2021-05-18 00:04:06 +00:00
|
|
|
{strings.searchBy}
|
2021-05-17 23:33:08 +00:00
|
|
|
|
2021-05-22 02:57:38 +00:00
|
|
|
<FontAwesomeIcon icon={faLocationArrow}/>
|
2021-05-17 23:33:08 +00:00
|
|
|
|
2021-05-18 00:04:06 +00:00
|
|
|
{strings.byZone}
|
2021-05-17 23:33:08 +00:00
|
|
|
</span>
|
2021-05-07 14:30:12 +00:00
|
|
|
}
|
2021-05-18 14:53:42 +00:00
|
|
|
button={
|
|
|
|
<ButtonIconOnly
|
|
|
|
icon={faPlus}
|
|
|
|
color={"Green"}
|
|
|
|
onClick={onButtonClick}
|
2021-04-30 20:10:00 +00:00
|
|
|
/>
|
2021-05-18 14:53:42 +00:00
|
|
|
}
|
|
|
|
{...props}
|
|
|
|
/>
|
2021-04-30 20:10:00 +00:00
|
|
|
)
|
|
|
|
}
|