JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 20863
  • Score
    100M100P100Q139941F
  • License MIT

An adapter between Redux Form and Material UI components

Package Exports

  • redux-form-material-ui

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (redux-form-material-ui) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

redux-form-material-ui


NPM Version NPM Downloads Build Status codecov.io

redux-form-material-ui is an adapter between Redux Form and Material UI components.


Installation

Using npm:

  $ npm install --save redux-form-material-ui

Usage

Pass this library as the adapter config property to redux-form, and then refer to the Material UI widgets as strings to the component property of redux-form's Field component.

import { reduxForm, Field } from 'redux-form'
import MenuItem from 'material-ui/MenuItem'
import { RadioButton } from 'material-ui/RadioButton'
import adapter from 'redux-form-material-ui'

class MyForm extends Component {
  render() {
    return (
      <form>
        <Field name="username" component="TextField" hintText="Street"/>
        
        <Field name="plan" component="SelectField" hintText="Select a plan">
          <MenuItem value="monthly" primaryText="Monthly"/>
          <MenuItem value="yearly" primaryText="Yearly"/>
          <MenuItem value="lifetime" primaryText="Lifetime"/>
        </Field>
        
        <Field name="agreeToTerms" component="Checkbox" label="Agree to terms?"/>
        
        <Field name="receiveEmails" component="Toggle" label="Please spam me!"/>
        
        <Field name="bestFramework" component="RadioButtonGroup">
          <RadioButton value="react" label="React"/>
          <RadioButton value="angular" label="Angular"/>
          <RadioButton value="ember" label="Ember"/>
        </Field>
      </form>
    )
  }
}

// Decorate with redux-form
MyForm = reduxForm({
  form: 'myForm',
  adapter
})

export default MyForm