1.0.5 • Published 4 years ago

unform-material-ui v1.0.5

Weekly downloads
134
License
MIT
Repository
github
Last release
4 years ago

npm.io

npm Build Status Coverage Status

Overview

This library uses Unform + Material UI styles to create super beautiful forms easily.

Table of contents

Roadmap

Installation

Just add unform to your project:

yarn add @unform/core @unform/web @material-ui/core unform-material-ui

Guides

Basics

⚠️ This is a library that depends on Unform and Material UI to work, both must be installed in your project.

Components

️️⚠️ For now, all components of the Material UI are not yet supported. Below are just the supported components.

<TextField /> Component

The <TextField /> component, is similar to the default component <Input />. See the component documentation here for more information.

import React from 'react';
import { Form } from '@unform/web';
import { TextField } from 'unform-material-ui';

function App() {
  function handleSubmit(data) {}

  return (
    <Form onSubmit={handleSubmit}>
      <TextField name="name" />
      <TextField multiline name="bio" />

      <button type="submit">Send</button>
    </Form>
  );
}

<Select /> Component

The <Select /> component, is similar to the default component <Select />. See the component documentation here for more information.

import React from 'react';
import { Form } from '@unform/web';
import { Select } from 'unform-material-ui';
import { MenuItem } from '@material-ui/core';

function App() {
  function handleSubmit(data) {
    /**
     * {
     *  "tech": ['node'],
     *  "country": "br"
     * }
     */
  }

  return (
    <Form onSubmit={handleSubmit}>
      <Select multiple name="tech" label="Tech">
        <MenuItem value="node">Node</MenuItem>
        <MenuItem value="react">React</MenuItem>
      </Select>

      <Select name="country" label="Country">
        <MenuItem value="br">Brazil</MenuItem>
        <MenuItem value="us">United State</MenuItem>
      </Select>

      <button type="submit">Send</button>
    </Form>
  );
}

<Checkbox /> Component

The <Checkbox /> component, is similar to the default component <Checkbox />. See the component documentation here for more information.

import React from 'react';
import { Form } from '@rocketseat/unform';
import { Checkbox } from 'unform-material-ui';

function App() {
  function handleSubmit(data) {
    /**
     * {
     *  "terms": true,
     *  "acceptEmails": true
     * }
     */
  }

  return (
    <Form onSubmit={handleSubmit}>
      {/* not controlled */}
      <Checkbox name="terms" />

      {/* internally controlled */}
      <Checkbox name="acceptEmails" checked />

      <button type="submit">Send</button>
    </Form>
  );
}

<Switch /> Component

The <Switch /> component, is similar to the default component <Switch />. See the component documentation here for more information.

import React from 'react';
import { Form } from '@rocketseat/unform';
import { Switch } from 'unform-material-ui';

function App() {
  function handleSubmit(data) {
    /**
     * {
     *  "terms": true,
     *  "acceptEmails": true
     * }
     */
  }

  return (
    <Form onSubmit={handleSubmit}>
      {/* not controlled */}
      <Switch name="terms" />

      {/* internally controlled */}
      <Switch name="acceptEmails" checked />

      <button type="submit">Send</button>
    </Form>
  );
}

Contributing

Thanks for being interested on making this package better. We encourage everyone to help improving this project with some new features, bug fixes and performance issues. Please take a little bit of your time to read our guides, so this process can be faster and easier.

Contribution Guidelines

Take a moment to read about our Contribution Guidelines so you can understand how to submit an issue, commit and create pull requests.

Code of Conduct

We expect you to follow our Code of Conduct. You can read it to understand what kind of behaviour will and will not be tolerated.

License

MIT © Italo Izaac

1.0.5

4 years ago

1.0.4

4 years ago

1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago

0.3.2

5 years ago

0.3.1

5 years ago

0.3.0

5 years ago

0.2.0

5 years ago

0.1.1

5 years ago

0.1.0

5 years ago

0.0.1

5 years ago