2019-09-26 20:40:37 +00:00
|
|
|
![Logo](./.github/Logo.svg)
|
2019-09-26 19:30:28 +00:00
|
|
|
|
2019-09-26 20:05:53 +00:00
|
|
|
![Version](https://badgen.net/npm/v/formhero)
|
|
|
|
![Dependencies](https://badgen.net/david/dep/cupcakearmy/formhero)
|
|
|
|
![Size Badge](https://badgen.net/bundlephobia/minzip/formhero)
|
2019-09-26 20:40:37 +00:00
|
|
|
|
|
|
|
**Fully customisable react form utility.**
|
2019-09-26 20:05:53 +00:00
|
|
|
|
2019-09-26 20:06:16 +00:00
|
|
|
## 🌈 Features
|
2019-09-26 19:30:28 +00:00
|
|
|
|
|
|
|
- Typescript compatible
|
|
|
|
- Customizable extractor, validator, getter and setters. (More in the docs)
|
|
|
|
- No Deps
|
2019-09-26 20:05:53 +00:00
|
|
|
- Tiny
|
2019-09-26 19:30:28 +00:00
|
|
|
|
|
|
|
## 🚀 Quickstart
|
|
|
|
|
2019-09-26 19:31:13 +00:00
|
|
|
```typescript
|
2019-09-26 19:30:28 +00:00
|
|
|
import ReactDOM from 'react-dom'
|
|
|
|
import { useForm } from 'formhero'
|
|
|
|
|
|
|
|
const Form = () => {
|
|
|
|
|
|
|
|
const { auto, form, errors } = useForm({
|
|
|
|
username: '',
|
|
|
|
password: '',
|
|
|
|
type: 'formhero',
|
|
|
|
awesome: true,
|
|
|
|
}, {
|
|
|
|
username: /^test/,
|
|
|
|
password: {
|
|
|
|
validator: /^.{3,}$/,
|
|
|
|
message: 'To short',
|
|
|
|
},
|
|
|
|
awesome: (value) => !!value
|
|
|
|
})
|
|
|
|
|
|
|
|
const _submit = (e: React.FormEvent) => {
|
|
|
|
e.preventDefault()
|
|
|
|
console.log(form, errors)
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div>
|
|
|
|
<form onSubmit={_submit}>
|
|
|
|
|
|
|
|
<div>Username</div>
|
|
|
|
<input {...auto('username')} />
|
|
|
|
{errors.username && 'Something went wrong'}
|
|
|
|
<br />
|
|
|
|
|
|
|
|
<div>Password</div>
|
|
|
|
<input {...auto('password')} />
|
|
|
|
<br />
|
|
|
|
|
|
|
|
<div>Which one to choose?</div>
|
|
|
|
<select {...auto('type')}>
|
|
|
|
<option value="redux-form">Redux-Form</option>
|
|
|
|
<option value="react-hook-forms">React-Hook-Forms</option>
|
|
|
|
<option value="formik">Formik</option>
|
|
|
|
<option value="formhero">FormHero</option>
|
|
|
|
</select>
|
|
|
|
<br />
|
|
|
|
|
|
|
|
<div>Is it awesome?</div>
|
|
|
|
<input type="checkbox" name="vehicle" {...auto('awesome', {
|
|
|
|
setter: 'checked',
|
|
|
|
getter: 'onChange',
|
|
|
|
extractor: (e) => e.target.checked
|
|
|
|
})} />
|
|
|
|
<br />
|
|
|
|
|
|
|
|
<button type="submit">Go 🚀</button>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
## 📖 Docs
|
|
|
|
|
|
|
|
### `useForm`
|
|
|
|
|
|
|
|
```typescript
|
|
|
|
const {auto, errors, update, form} = useForm(initial, validators, options)
|
|
|
|
```
|