webapp/src/components/Editor/InlineForm/InlineForm.tsx

76 lines
2.0 KiB
TypeScript
Raw Normal View History

import styles from './InlineForm.module.scss'
import { Icon } from '../../_shared/Icon'
import { createSignal } from 'solid-js'
import { clsx } from 'clsx'
type Props = {
onClose: () => void
onClear?: () => void
onSubmit: (value: string) => void
validate?: (value: string) => string | Promise<string>
initialValue?: string
showInput?: boolean
placeholder: string
autoFocus?: boolean
}
export const InlineForm = (props: Props) => {
const [formValue, setFormValue] = createSignal(props.initialValue || '')
const [formValueError, setFormValueError] = createSignal<string | undefined>()
const handleFormInput = (value) => {
setFormValueError()
setFormValue(value)
}
const handleSaveButtonClick = async () => {
if (props.validate) {
const errorMessage = await props.validate(formValue())
if (errorMessage) {
setFormValueError(errorMessage)
return
}
}
props.onSubmit(formValue())
props.onClose()
}
const handleKeyPress = async (event) => {
setFormValueError('')
const key = event.key
if (key === 'Enter') {
await handleSaveButtonClick()
}
if (key === 'Esc') {
props.onClear
}
}
return (
<div class={styles.InlineForm}>
<div class={styles.form}>
<input
autofocus={props.autoFocus ?? true}
type="text"
placeholder={props.placeholder}
onKeyPress={(e) => handleKeyPress(e)}
onInput={(e) => handleFormInput(e.currentTarget.value)}
/>
<button type="button" onClick={handleSaveButtonClick} disabled={Boolean(formValueError())}>
<Icon name="status-done" />
</button>
<button type="button" onClick={props.onClear}>
{props.initialValue ? <Icon name="editor-unlink" /> : <Icon name="status-cancel" />}
</button>
</div>
<div class={clsx(styles.linkError, { [styles.visible]: Boolean(formValueError()) })}>
{formValueError()}
</div>
</div>
)
}