
Research
/Security News
Contagious Interview Campaign Escalates With 67 Malicious npm Packages and New Malware Loader
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.
react-redux-local-form
Advanced tools
React components for building forms with a local Redux store for managing state.
React Redux Local Form is a set of minimal React components to help with building forms. State is managed with a Redux store that is local to your component. This promotes keeping your ui state separate from your global state while still being able to leverage the redux ecosystem. You can swap reducers/actions between local and global state as well apply different store enhancers to each level of state. If these ideas appeal to you read on... if not, check out some of these great alternatives:
React 15.3.0 and Redux 3.0.0 or later are peer dependencies.
npm install --save react-redux-local-form
import React from 'react'
import { withForm, FormProvider, Field } from 'react-redux-local-form'
function BasicForm({ form, onSubmit }) {
return (
<FormProvider store={form} onSubmit={onSubmit}>
<form onSubmit={preventDefault(form.submit)}>
<Field path="user.firstName">
{ ({ value = '', setValue }) =>
<div>
<label>First Name</label>
<input type="text" value={value} onChange={(e) => setValue(e.target.value)} />
</div>
}
</Field>
<button type="submit">Save</button>
</form>
</FormProvider>
)
}
const preventDefault = (next) => (e) => {
e.preventDefault()
next()
}
export default withForm()(BasicForm)
Check out the basic form example for the entire source.
Setting initial form state is done by passing it into withForm
...
export default withForm({
user: {
firstName: 'john'
}
})(BasicForm)
// or a function of props
export default withForm((props) => {
user: {
firstName: props.user.firstName
}
})(BasicForm)
This lib currently doesn't provide any validation functions out of the box, only an API to provide your own. Validation functions are simply functions that accept the current value and return a promise. Pass in a single validation function or an array to the <Field>
component. The form won't submit until all validation functions are resolved.
import React from 'react'
import { withForm, FormProvider, Field } from 'react-redux-local-form'
import { isEmail } from 'validator'
const required = (value) => new Promise((resolve, reject) => {
if (value) { resolve() }
else { reject(new Error('Invalid Email')) }
})
const email = (value) => new Promise((resolve, reject) => {
if (isEmail(value)) { resolve() }
else { reject(new Error('Invalid Email')) }
})
function BasicForm({ form, onSubmit }) {
return (
<FormProvider store={form} onSubmit={onSubmit}>
<form onSubmit={preventDefault(form.submit)}>
<Field path="user.firstName" validate={required}>
{ ({ value = '', setValue, error }) =>
<div>
<label>First Name</label>
<input type="text" value={value} onChange={(e) => setValue(e.target.value)} />
{ error && error.message }
</div>
}
</Field>
<Field path="user.firstName" validate={[ required, email ]}>
...
</Field>
<button type="submit">Save</button>
</form>
</FormProvider>
)
}
export default withForm()(BasicForm)
Check out the basic form example for the entire source.
Use the connectForm
function to map form state to props. This function has the exact same API as react-redux's connect
function.
import React from 'react'
import { withForm, connectForm, FormProvider, Field } from 'react-redux-local-form'
function mapFormStateToProps(formState) {
return {
userFormState: formState.user,
allErrors: formState.errors
}
}
function BasicForm({ userFormState, allErrors, form, onSubmit }) {
...
})
export default withForm()(
connectForm(mapFormStateToProps)(withForm)
)
withForm
also allows you to provide your own reducer and enhancer that will be used to create the form store. This allows you to reuse reducers and bind actions to local component state. You can also separate store enhancers depending on the level of state. A good use case for this is persisting and/or batching global state changes without affecting local state.
You will need to manually apply the default reducer and enhancer.
import React, { PureComponent } from 'react'
import { combineReducers, bindActionCreators, applyMiddleware, compose } from 'redux'
import thunk from 'redux-thunk'
import {
withForm,
connectForm,
FormProvider,
Field,
reducer as formReducer,
enhancer as formEnhancer
} from 'react-redux-local-form'
import loginReducer from '../reducers/login'
import * as loginActions from '../actions/login'
import { preventDefault, targetValue } from '../helpers'
import { required, email } from '../validators'
class LoginForm extends PureComponent {
handleSubmit = (form) => {
const { attemptLogin, onAuthToken, onUser } = this.props
attemptLogin(form.email, form.password)
.then(({ token, profile }) => {
onAuthToken(token)
onUser(profile)
})
}
render() {
const { form, loginPending, loginError } = this.props
return (
<FormProvider store={form} onSubmit={this.handleSubmit}>
<form onSubmit={preventDefault(form.submit)}>
<Field path="email" validate={[ required, email ]}>
{ ({ value = '', setValue, error }) =>
<div>
<label>Email { error && <div className="error">{ error.message }</div> }</label>
<input type="text" value={value} onChange={targetValue(setValue)} />
</div>
}
</Field>
<Field path="password" validate={required}>
{ ({ value = '', setValue, error }) =>
<div>
<label>Password { error && <div className="error">{ error.message }</div> }</label>
<input type="password" value={value} onChange={targetValue(setValue)} />
</div>
}
</Field>
{ loginError &&
<div className="error">{ loginError.message }</div>
}
<button type="submit" disabled={loginPending}>
{ loginPending ? 'Logging in...' : 'Login' }
</button>
</form>
</FormProvider>
)
}
}
const initialFormState = {
// initial form state should reflect your combineReducers structure
form: {},
login: {
error: null,
pending: false
}
}
const reducer = combineReducers({
form: formReducer,
login: loginReducer
})
const enhancer = compose(
applyMiddleware(thunk),
// provide the key in state where form state exists (defined in combineReducers)
formEnhancer('form')
)
function mapFormStateToProps(state) {
return {
loginPending: state.login.pending,
loginError: state.login.error
}
}
function mapFormDispatchToProps(dispatch) {
return {
...bindActionCreators(loginActions, dispatch)
}
}
export default withForm(initialFormState, reducer, enhancer)(
connectForm(mapFormStateToProps, mapFormDispatchToProps)(LoginForm)
)
Check out the login form example for the entire source.
FAQs
React components for building forms with a local Redux store for managing state.
The npm package react-redux-local-form receives a total of 1 weekly downloads. As such, react-redux-local-form popularity was classified as not popular.
We found that react-redux-local-form demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
/Security News
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.
Security News
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.