redux-form-field
v1.1.0
Published
Easy way to create fields to form for validations, warnings etc...
Downloads
3
Maintainers
Readme
redux-form-field
Easy way to create fields to form for validations, warnings etc... based on redux-form
Introduction
A new architectural approach to creating fields components for redux-form. While you using this library all the logic of redux-form created behind the scenes.
redux-form-field give you a easy way to convert your Container to 'Form Container', and use 'Field Components' inside it.
Form Container
- Container that connected to redux-form-field using connectWithReduxForm
Field Component
- Component that connected to redux-form-field using createField
Quick start
install
$ npm install --save redux-form-field
Add form
to your redux. for example:
import { combineReducers } from 'redux';
import { reducer as formReducer } from 'redux-form';
const rootReducer = combineReducers({
form: formReducer,
});
export default rootReducer;
Convert your component to Field Component with createField
export default createField(MyFieldComponent, {
nyField_1: PropTypes.string.isRequired,
nyField_2: PropTypes.string.isRequired
});
Connect your Form Container to redux-form
with connectWithReduxForm
export default connectWithReduxForm(MyFormContainer,
(state) => {
return {
}
},
{
myActions
},
{
form : 'MyFormContainerForm',
fields: ['MyFieldComponent'],
myValidateFunction
}
);
Methods
createField
Parameters :
component
- the component you createdpropTypes [OPTIONAL]
- propTypes that will be combined to the returned component.
Return :
Return redux-form Field
component that can be use easly inside forms.
connectWithReduxForm
Parameters :
component (container)
- the component you want to connect toredux-form
.mapStateToProps [OPTIONAL]
- states you want to connect toredux
.mapDispatchToProps [OPTIONAL]
- actions you want to connect toredux
.reduxFormConfig
-redux-form
configuration.
Return :
Return your connected component to redux
and redux-form
Usage
createField
Example Code
This example show you how to create component and convert it to Field that can be easly to use inside forms to validations, warnings etc...
as you can see inside the props
that send to your component you can find meta
and input
data.
meta
- include the error/warning message and if field is touched. You can figure out more props on redux-form documentation.input
- here you get all the inputs props. for example : onChange, name etc .. This field make your component like a 'real' input, you can now pass any props that input have and it will auto combine it to the 'real' input inside your component.
import React, { Component } from 'react';
import PropTypes from 'prop-types';
import { createField } from 'redux-form-field';
const component = ({ meta: { touched, error, warning }, input, type, label }) => {
return (
<div className="form-group">
<label>{label}</label>
<div>
<input {...input} placeholder={label} type={type} className="form-control"/>
{error}
</div>
</div>
);
};
export default createField(component, {
type: PropTypes.string.isRequired,
label: PropTypes.string.isRequired
});
connectWithReduxForm
Example Code
This example show how to use your redux-form-field
inside Form Container
and how to connect him to redux-form
.
Input and Textarea are redux-form-field
.
import React, { Component } from 'react';
import { connectWithReduxForm } from 'redux-form-field';
import { createPost } from '../../actions/posts/actions_posts';
import { Input, Textarea } from '../../components/core';
class PostsNew extends Component {
onChg () {
console.log("Hello redux-form-field");
}
render() {
const { handleSubmit, pristine, reset, submitting } = this.props;
return (
<form onSubmit={handleSubmit(this.props.createPost)} >
<h3>Create A New Post</h3>
<Input name="title" type="text" label="Title" onChange={this.onChg} />
<Input name="categories" type="text" label="Categories" />
<Textarea name="content" label="Content" onChange={this.onChg} />
<button type="submit" className="btn btn-primary">Submit</button>
</form>
);
}
}
function validate(values) {
const errors = {};
if (!values.title) {
errors.title = 'Enter a username';
}
return errors;
}
export default connectWithReduxForm(PostsNew,
null,
{
createPost
},
{
form : 'PostsNewForm',
fields: ['title', 'categories', 'content'],
validate
}
);