2021-05-21 17:52:56 +00:00
|
|
|
import React, { useContext } from "react"
|
2021-04-29 14:58:31 +00:00
|
|
|
import BoxFull from "../base/BoxFull"
|
2021-05-11 14:37:15 +00:00
|
|
|
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"
|
2021-05-21 17:52:56 +00:00
|
|
|
import { faAt } from "@fortawesome/free-solid-svg-icons"
|
2021-04-29 14:58:31 +00:00
|
|
|
import useRepositoryEditor from "../../hooks/useRepositoryEditor"
|
2021-05-07 03:02:20 +00:00
|
|
|
import Condition from "../../utils/Condition"
|
2021-05-18 00:04:06 +00:00
|
|
|
import ContextLanguage from "../../contexts/ContextLanguage"
|
2021-05-21 17:52:56 +00:00
|
|
|
import FormInlineUser from "./FormInlineUser"
|
2021-04-29 14:23:11 +00:00
|
|
|
|
|
|
|
|
2021-04-29 14:58:31 +00:00
|
|
|
/**
|
|
|
|
* A {@link BoxFull} that allows the user to select a Twitter user to search for, and then to add it as a Condition
|
|
|
|
* to the {@link ContextRepositoryEditor}.
|
|
|
|
*
|
|
|
|
* @param props - Additional props to pass to the box.
|
|
|
|
* @returns {JSX.Element}
|
|
|
|
* @constructor
|
|
|
|
*/
|
2021-04-29 14:23:11 +00:00
|
|
|
export default function BoxConditionUser({ ...props }) {
|
2021-05-11 14:37:15 +00:00
|
|
|
const { addCondition } = useRepositoryEditor()
|
2021-05-18 00:48:34 +00:00
|
|
|
const { strings } = useContext(ContextLanguage)
|
2021-04-29 14:23:11 +00:00
|
|
|
|
2021-05-21 17:52:56 +00:00
|
|
|
const submit = value => {
|
|
|
|
addCondition(new Condition("USER", value))
|
2021-04-29 14:23:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
2021-05-17 23:33:08 +00:00
|
|
|
<BoxFull
|
|
|
|
header={
|
|
|
|
<span>
|
2021-05-18 00:04:06 +00:00
|
|
|
{strings.searchBy}
|
2021-05-17 23:33:08 +00:00
|
|
|
|
|
|
|
<FontAwesomeIcon icon={faAt}/>
|
|
|
|
|
2021-05-18 00:04:06 +00:00
|
|
|
{strings.byUser}
|
2021-05-17 23:33:08 +00:00
|
|
|
</span>
|
|
|
|
}
|
|
|
|
{...props}
|
|
|
|
>
|
2021-05-21 17:52:56 +00:00
|
|
|
<FormInlineUser
|
|
|
|
submit={submit}
|
|
|
|
/>
|
2021-04-29 14:23:11 +00:00
|
|
|
</BoxFull>
|
|
|
|
)
|
|
|
|
}
|