1
Fork 0
mirror of https://github.com/Steffo99/festa.git synced 2024-10-16 23:17:26 +00:00
festa/components/EventCreate.tsx

41 lines
1.2 KiB
TypeScript
Raw Normal View History

2022-06-01 16:54:59 +00:00
import { useTranslation } from "next-i18next"
import { FormEvent, MouseEventHandler, useCallback, useRef, useState } from "react"
import { Loading } from "./Loading"
export function EventCreate() {
const {t} = useTranslation()
const [name, setName] = useState<string>("")
const [running, setRunning] = useState<boolean>(false)
const createEvent = useCallback(() => {
setRunning(true)
},
[]
)
if(running) return <Loading text={t("eventListCreateRunning")}/>
return (
<form
className="form-monorow"
onSubmit={e => {e.preventDefault(); createEvent()}}
noValidate
>
<input
type="text"
placeholder={t("eventListCreateEventNameLabel")}
value={name}
onChange={e => setName(e.target.value)}
required
/>
<input
type="submit"
aria-label={t("eventListCreateSubmitLabel")}
className="positive square-40"
value="→"
onClick={e => createEvent()}
disabled={!name}
/>
</form>
)
}