import Button from 'react-bootstrap/Button'
import InputGroup from 'react-bootstrap/InputGroup'
import BootstrapForm from 'react-bootstrap/Form'
import Alert from 'react-bootstrap/Alert'
import { Formik, Form as FormikForm, useFormikContext, useField } from 'formik'
import { useEffect, useRef, useState } from 'react'
import copy from 'clipboard-copy'
import Thumb from '../svgs/thumb-up-fill.svg'
import { Nav } from 'react-bootstrap'
import Markdown from '../svgs/markdown-line.svg'
import styles from './form.module.css'
import Text from '../components/text'
export function SubmitButton ({ children, variant, ...props }) {
const { isSubmitting } = useFormikContext()
return (
)
}
export function CopyInput (props) {
const [copied, setCopied] = useState(false)
const handleClick = () => {
copy(props.placeholder)
setCopied(true)
setTimeout(() => setCopied(false), 1500)
}
return (
{copied ? : 'copy'}
}
{...props}
/>
)
}
export function InputSkeleton ({ label }) {
return (
{label && {label}}
)
}
export function MarkdownInput ({ label, groupClassName, ...props }) {
const [tab, setTab] = useState('write')
const [, meta] = useField(props)
useEffect(() => {
!meta.value && setTab('write')
}, [meta.value])
return (
)
}
function FormGroup ({ className, label, children }) {
return (
{label && {label}}
{children}
)
}
function InputInner ({ prepend, append, hint, showValid, ...props }) {
const [field, meta] = props.readOnly ? [{}, {}] : useField(props)
return (
<>
{prepend && (
{prepend}
)}
{append && (
{append}
)}
{meta.touched && meta.error}
{hint && (
{hint}
)}
>
)
}
export function Input ({ label, groupClassName, ...props }) {
return (
)
}
export function Form ({
initial, schema, onSubmit, children, initialError, validateImmediately, ...props
}) {
const [error, setError] = useState(initialError)
return (
onSubmit && onSubmit(...args).catch(e => setError(e.message || e))}
>
{error && setError(undefined)} dismissible>{error}}
{children}
)
}
export function SyncForm ({
initial, schema, children, action, ...props
}) {
const ref = useRef(null)
return (
ref.current.submit()}
>
{props => (
)}
)
}