// @flow import * as React from "react"; import { Icon } from "../"; import cn from "classnames"; import FormGroup from "./FormGroup.react"; import type { FormEvents, MouseEvents, PointerEvents, FocusEvents, KeyboardEvents, ClipboardEvents, } from "../../"; type FormStyle = {| +className?: string, +icon?: string, +position?: "append" | "prepend", +valid?: boolean, +tick?: boolean, +invalid?: boolean, +cross?: boolean, +feedback?: string, +error?: string, +type?: string, +placeholder?: string, +name?: string, +value?: string | number, +defaultValue?: string | number, +min?: string | number, +max?: string | number, +step?: string | number, +minLength?: string | number, +maxLength?: string | number, +disabled?: boolean, +readOnly?: boolean, +autoFocus?: boolean, +required?: boolean, +checked?: boolean, |}; export type Props = {| ...FormStyle, ...FormEvents, ...MouseEvents, ...PointerEvents, ...FocusEvents, ...KeyboardEvents, ...ClipboardEvents, +placeholder?: string, +type?: "checkbox" | "radio" | "text" | "email" | "password", +value?: string | number | boolean, /** * Wraps the input in Form.Group and adds a label */ +label?: string, +autoComplete?: "on" | "off", |}; /** * A an input field */ function FormInput(props: Props): React.Node { const { className, name, icon, position = "prepend", valid, tick, invalid, cross, error, placeholder, value, defaultValue, min, max, step, minLength, maxLength, checked, onChange, onClick, onMouseEnter, onMouseLeave, onPointerEnter, onPointerLeave, onFocus, onBlur, onKeyPress, onKeyUp, onKeyDown, onCopy, onCut, onPaste, disabled, readOnly, autoFocus, required, label, autoComplete, } = props; const type = props.type || "text"; const classes = cn( { "form-control": type !== "checkbox" && type !== "radio", "custom-control-input": type === "checkbox" || type === "radio", "is-valid": valid, "state-valid": tick, "is-invalid": invalid || !!error, "state-invalid": cross || !!error, }, className ); const feedback = error || props.feedback; const allInputProps = { name, className: classes, type, placeholder, value, defaultValue, min, max, step, minLength, maxLength, disabled, readOnly, autoFocus, required, onChange, onClick, onMouseEnter, onMouseLeave, onPointerEnter, onPointerLeave, onFocus, onBlur, onKeyPress, onKeyUp, onKeyDown, onCopy, onCut, onPaste, autoComplete, }; const contents = !icon ? ( {type === "checkbox" || type === "radio" ? ( ) : ( )} {feedback && {feedback}} ) : (
{position === "prepend" && ( )} {position === "append" && ( )}
{feedback && {feedback}}
); return label ? {contents} : contents; } FormInput.displayName = "Form.Input"; /** @component */ export default FormInput;