mobx-react-form-hoc
v0.1.1
Published
Simplify mobx-react-form by using a higher order component.
Downloads
3
Readme
mobx-react-form-hoc
Simplify mobx-react-form by using a higher order component
Installation
mobx-react-form-hoc is available as an npm package.
npm install mobx-react-form-hoc
Usage
import React from "react";
import { observer } from "mobx-react";
import validatorjs from "validatorjs";
import withForm from "mobx-react-form-hoc";
const LoginForm = () => {
return (
<form>
<fieldset>
<label htmlFor={form.$("email").id}>
{form.$("email").label}
</label>
<input {...form.$("email").bind()} />
<p>{form.$("email").error}</p>
</fieldset>
</form>
);
};
const events = {
onSuccess(props, form) {
console.log(form.values());
}
};
const fields = {
email: {
label: "eMail",
placeholder: "Enter your eMail address",
rules: "required|email|string|between:5,25"
}
};
const plugins = {
dvr: validatorjs
};
export default withForm({ fields, plugins, events }, observer(LoginForm));
Documentation
please have a look into the documentation of mobx-react-form
Related
Contributing
This project was bootstrapped with Create React App.
Getting started
- Fork the mobx-react-form-hoc repository on Github
- Clone your fork to your local machine
git clone [email protected]:<yourname>/mobx-react-form-hoc.git
- Create a branch
git checkout -b my-topic-branch
- Make your changes and add tests for them, lint, test then push to to github with
git push --set-upstream origin my-topic-branch
. - Visit github and make your pull request.
Scripts
- Install
npm install
oryarn install
- Start developing
npm start
oryarn start
- Test
npm test
oryarn test
- Build
npm run build
oryarn build
- Publish
npm run publish
oryarn publish
License
MIT © Simon Mollweide