react-local-form

Simple React local form management

Usage no npm install needed!

<script type="module">
  import reactLocalForm from 'https://cdn.skypack.dev/react-local-form';
</script>

README

Unstated connect (react-local-form)

Build Status Coverage Status

Simple React local form management

Installation

npm install --save react-local-form

Why

Easy form handling for most basic (and common) cases

How

import React from "react";
import {Form, FormItem} from "react-local-form";

// You can move validations to another file
const isRequired = value => !value && "This field is required";

const App = () => {
  return (
    <Form
      // Initial values
      values={{first: "Gonzalo", last: "Pozzo"}}
      // Set rules
      rules={{
        first: isRequired,
        last: [isRequired, (value, values) => !value.first && "You need a first to have a last"]
      }}
      // Log the results when there aren't form errors
      onSubmit={({values, errors}) => {
        const error = Object.values(errors)[0];

        error ? toaster.danger(error) : console.log(values)
      }}
      // You also can pass children instead of render if you don't need the errors
      render={({errors}) => (
        <FormItem
          // Name of the field to map
          name="first"
        >
          <input type="text" /> {/* An error, value and onChange prop will automatically be passed to this component */}
        </FormItem>
        <FormItem name="last">
          <input type="text" />
        </FormItem>
        <button type="submit" disabled={Boolean(errors.length)}>Submit</button>
      )}
    />
  );
}

export default App;

Try it on CodeSandbox

License

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.