Skip to content
This repository was archived by the owner on Aug 23, 2022. It is now read-only.

Latest commit

 

History

History
33 lines (27 loc) · 854 Bytes

immutable.md

File metadata and controls

33 lines (27 loc) · 854 Bytes

Immutable.js

React Redux Form, as of the latest version, has support for Immutable.JS. To use it, just import the parts you need from react-redux-form/immutable:

import Immutable from 'immutable';
import {
  Form,
  Control,
  actions,
  // ... etc.
} from 'react-redux-form/immutable';
// ... other imports

class MyForm extends Component {
  onFormSubmit(formObj) {
    // ... access form fields e.g. formObj.get('name');
  }
  render() {
    return (
      <Form model="user" onSubmit={this.onFormSubmit}>
        <Control model=".name" />
        
        {/* ... other controls */}
      </Form>
    );
  }
}

export default MyForm;

and it will just work with Immutable.js. When creating your store, make sure to import createForms, combineForms, modelReducer, and/or formReducer, etc. from react-redux-form/immutable.