2022-03-22 23:06:15 -04:00
|
|
|
import { Modal, Note, Spacer, Input } from "@geist-ui/core"
|
2022-03-21 06:28:06 -04:00
|
|
|
import { useState } from "react"
|
|
|
|
|
|
|
|
type Props = {
|
2022-04-09 20:48:19 -04:00
|
|
|
creating: boolean
|
|
|
|
isOpen: boolean
|
|
|
|
onClose: () => void
|
|
|
|
onSubmit: (password: string) => void
|
2022-03-21 06:28:06 -04:00
|
|
|
}
|
|
|
|
|
2022-04-09 20:48:19 -04:00
|
|
|
const PasswordModal = ({
|
|
|
|
isOpen,
|
|
|
|
onClose,
|
|
|
|
onSubmit: onSubmitAfterVerify,
|
|
|
|
creating
|
|
|
|
}: Props) => {
|
|
|
|
const [password, setPassword] = useState<string>()
|
|
|
|
const [confirmPassword, setConfirmPassword] = useState<string>()
|
|
|
|
const [error, setError] = useState<string>()
|
|
|
|
|
|
|
|
const onSubmit = () => {
|
|
|
|
if (!password || (creating && !confirmPassword)) {
|
|
|
|
setError("Please enter a password")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if (password !== confirmPassword && creating) {
|
|
|
|
setError("Passwords do not match")
|
|
|
|
return
|
|
|
|
}
|
2022-03-21 06:28:06 -04:00
|
|
|
|
2022-04-09 20:48:19 -04:00
|
|
|
onSubmitAfterVerify(password)
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
{/* TODO: investigate disableBackdropClick not updating state? */}
|
|
|
|
|
|
|
|
{
|
2022-04-12 19:48:12 -04:00
|
|
|
<Modal visible={isOpen} disableBackdropClick={false}>
|
2022-04-09 20:48:19 -04:00
|
|
|
<Modal.Title>Enter a password</Modal.Title>
|
|
|
|
<Modal.Content>
|
|
|
|
{!error && creating && (
|
|
|
|
<Note type="warning" label="Warning">
|
|
|
|
This doesn't protect your post from the server
|
|
|
|
administrator.
|
|
|
|
</Note>
|
|
|
|
)}
|
|
|
|
{error && (
|
|
|
|
<Note type="error" label="Error">
|
|
|
|
{error}
|
|
|
|
</Note>
|
|
|
|
)}
|
|
|
|
<Spacer />
|
|
|
|
<Input
|
|
|
|
width={"100%"}
|
|
|
|
label="Password"
|
|
|
|
marginBottom={1}
|
|
|
|
htmlType="password"
|
|
|
|
placeholder="Password"
|
|
|
|
onChange={(e) => setPassword(e.target.value)}
|
|
|
|
/>
|
|
|
|
{creating && (
|
|
|
|
<Input
|
|
|
|
width={"100%"}
|
|
|
|
label="Confirm"
|
|
|
|
htmlType="password"
|
|
|
|
placeholder="Confirm Password"
|
|
|
|
onChange={(e) => setConfirmPassword(e.target.value)}
|
|
|
|
/>
|
|
|
|
)}
|
|
|
|
</Modal.Content>
|
|
|
|
<Modal.Action passive onClick={onClose}>
|
|
|
|
Cancel
|
|
|
|
</Modal.Action>
|
|
|
|
<Modal.Action onClick={onSubmit}>Submit</Modal.Action>
|
|
|
|
</Modal>
|
|
|
|
}
|
|
|
|
</>
|
|
|
|
)
|
|
|
|
}
|
2022-03-21 06:28:06 -04:00
|
|
|
|
2022-04-09 20:48:19 -04:00
|
|
|
export default PasswordModal
|