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/nest_frontend/components/interactive/BoxConditionDatetime.js

87 lines
2.9 KiB
JavaScript
Raw Normal View History

2021-04-30 14:37:28 +00:00
import React, { useState } from "react"
import BoxFull from "../base/BoxFull"
2021-05-11 14:37:15 +00:00
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"
import { faClock, faPlus } from "@fortawesome/free-solid-svg-icons"
2021-04-30 14:37:28 +00:00
import InputWithIcon from "../base/InputWithIcon"
import FormInline from "../base/FormInline"
2021-04-30 20:10:00 +00:00
import Style from "./BoxConditionDatetime.module.css"
2021-04-30 14:37:28 +00:00
import ButtonIconOnly from "../base/ButtonIconOnly"
import useRepositoryEditor from "../../hooks/useRepositoryEditor"
import ButtonToggleBeforeAfter from "./ButtonToggleBeforeAfter"
2021-05-07 03:02:20 +00:00
import Condition from "../../utils/Condition"
import convertToLocalISODate from "../../utils/convertToLocalISODate"
2021-05-17 22:22:11 +00:00
import Localization from "../../Localization"
2021-04-30 14:37:28 +00:00
2021-05-07 03:02:20 +00:00
const INVALID_USER_CHARACTERS = /[^0-9TZ:+-]/g
2021-04-30 14:37:28 +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
*/
export default function BoxConditionDatetime({ ...props }) {
const [datetime, setDatetime] = useState("")
const [ba, setBa] = useState(false)
2021-05-11 14:37:15 +00:00
const { addCondition } = useRepositoryEditor()
2021-04-30 14:37:28 +00:00
const onInputChange = event => {
let text = event.target.value
text = text.toUpperCase()
text = text.replace(INVALID_USER_CHARACTERS, "")
return setDatetime(text)
}
2021-05-07 22:35:13 +00:00
const onButtonClick = e => {
2021-05-07 03:02:20 +00:00
const naive = new Date(datetime)
if(naive.toString() === "Invalid Date") {
2021-05-11 14:37:15 +00:00
console.debug("Refusing to add condition: ", naive, " is an Invalid Date.")
2021-04-30 14:37:28 +00:00
return
}
2021-05-07 03:02:20 +00:00
const aware = convertToLocalISODate(naive)
addCondition(new Condition("TIME", `${ba ? ">" : "<"} ${aware}`))
2021-04-30 14:37:28 +00:00
setDatetime("")
2021-05-07 22:35:13 +00:00
// Prevent reloading the page!
e.preventDefault()
2021-04-30 14:37:28 +00:00
}
return (
2021-05-17 23:33:08 +00:00
<BoxFull
header={
<span>
{Localization.searchBy}
&nbsp;
<FontAwesomeIcon icon={faClock}/>
&nbsp;
{Localization.byTimePeriod}
</span>
}
{...props}
>
2021-05-07 22:35:13 +00:00
<FormInline onSubmit={onButtonClick}>
2021-04-30 14:37:28 +00:00
<ButtonToggleBeforeAfter onUpdate={setBa}/>
<InputWithIcon
className={Style.Input}
id={"condition-datetime"}
type={"datetime-local"}
icon={faClock}
value={datetime}
onChange={onInputChange}
2021-05-07 03:02:20 +00:00
placeholder={"2021-12-31T23:59Z"}
2021-04-30 14:37:28 +00:00
/>
<ButtonIconOnly
className={Style.Button}
icon={faPlus}
color={"Green"}
onClick={onButtonClick}
/>
</FormInline>
</BoxFull>
)
}