Skip to content

nicolaslopezj/simple-react-form

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Simple React Form

Simple React Form is the simplest way to handle forms in React. It helps you make reusable form components in React and React Native.

This is just a framework, you must create the form components or install a package with fields that you will use.

To use with react native check here

Installation

Install the base package

npm install --save simple-react-form

Example

import React, { useState } from 'react'
import { Form, Field } from 'simple-react-form'
import DatePicker from './myFields/DatePicker'
import Text from './myFields/Text'

function PostsCreate() {
  const [state, setState] = useState({})

  return (
    <div>
      <Form state={state} onChange={setState}>
        <Field fieldName="name" label="Name" type={Text} />
        <Field fieldName="date" label="A Date" type={DatePicker} />
      </Form>
      <p>My name is {state.name}</p>
    </div>
  )
}

Contributions

Docs

Using with state

In this example, the current value of the form will be stored in a state variable using useState.

import React, { useState } from 'react'
import { Form, Field } from 'simple-react-form'
import DatePicker from './myFields/DatePicker'
import Text from './myFields/Text'

function PostsCreate() {
  const [state, setState] = useState({})

  return (
    <div>
      <Form state={state} onChange={setState}>
        <Field fieldName="name" label="Name" type={Text} />
        <Field fieldName="date" label="A Date" type={DatePicker} />
      </Form>
      <p>My name is {state.name}</p>
    </div>
  )
}

Using without state

In this example, the current value of the form will be stored inside the Form component and passed in the onSubmit function. The difference on this is that the state prop does not change over time.

import React, { useRef } from 'react'
import { Form, Field } from 'simple-react-form'
import DatePicker from './myFields/DatePicker'
import Text from './myFields/Text'

function PostsCreate({ initialDoc }) {
  const formRef = useRef()

  const onSubmit = ({ name, date }) => {
    // handle submit
  }

  return (
    <div>
      <Form ref={formRef} state={initialDoc} onSubmit={onSubmit}>
        <Field fieldName="name" label="Name" type={Text} />
        <Field fieldName="date" label="A Date" type={DatePicker} />
      </Form>
      <button onClick={() => formRef.current.submit()}>Submit</button>
    </div>
  )
}

Field Types

React Simple Form is built from the idea that you can create custom components easily.

Basically this consist in a component that have the prop value and the prop onChange. You must render the value and call onChange passing the new value when the value has changed.

import UploadImage from '../components/my-fields/upload'

<Field fieldName='picture' type={UploadImage} squareOnly={true}/>

Creating the field type

You must create a React component.

import React from 'react'

function UploadImage({ value, onChange, label, errorMessage }) {
  return (
    <div>
      <p>{label}</p>
      <div>
        <img src={value} alt="preview" />
      </div>
      <TextField
        value={value}
        hintText="Image Url"
        onChange={event => onChange(event.target.value)}
      />
      <p>{errorMessage}</p>
    </div>
  )
}

export default UploadImage

You can view the full list of props here.

React Native

With React Native the api is the same, but you must enclose the inner content of the form with a View component.

Example:

import React from 'react'
import { View, TextInput } from 'react-native'

function TextFieldComponent({ value, onChange }) {
  return (
    <View>
      <TextInput
        style={{ height: 40, borderColor: 'gray', borderWidth: 1 }}
        onChangeText={onChange}
        value={value}
      />
    </View>
  )
}

export default TextFieldComponent

Render the form in the component you want

import React, { useState } from 'react'
import Text from '../components/my-fields/text'
import { Form, Field } from 'simple-react-form'
import { View } from 'react-native'

function MyForm() {
  const [state, setState] = useState({})

  return (
    <Form state={state} onChange={setState}>
      <View>
        <Field fieldName='email' type={Text}/>
        <Field fieldName='password' type={Text}/>
      </View>
    </Form>
  )
}

You should always render your fields inside a View when using react native.

WithValue High order component

If you need to get the current value of the form in the children you can use the WithValue component

import React from 'react'
import { Form, Field, WithValue } from 'simple-react-form'
import Text from './myFields/Text'

function Example() {
  return (
    <div>
      <Form>
        <WithValue>
          {value => (
            <div>
              <p>The name is {value.name}</p>
              <Field fieldName="name" label="Name" type={Text} />
            </div>
          )}
        </WithValue>
      </Form>
    </div>
  )
}

Contributors