Skip to content

stariqmi/react-forms-lite

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

react-forms-lite

What is it?

react-forms-lite is a minimal, opinionated React Component for building forms. It consists of the 3 following Components:

  • Forms
  • Form
  • Input

Forms is a wrapper around Form. The basic idea is that you can have multiple Form(s) that are submitted via 1 submit button as part of the Forms component. This helps in specifying different specs for each Form yet submit it as one. For example a reservation page will have the reservation detail Form but may also have the payment Form. You will want to submit them both as one but it helps in tracking them separately.

Forms properties:

  • specs: Object, required
  • onSubmit: Function(values), required

onSubmit is a function attribute of the Component that owns Forms. This function is called when the submit button is clicked. The values argument is structured like the specs such that each spec has it's values based on the id(s) passed along with an additional isValid property.

spec object must have:

  • name: String,
  • fields: Array[Object]

Each field corresponds to an Input. The following code from the Input Component explains which properties are required and which are optional.

// All properties and their types
Input.propTypes = {
    id: React.PropTypes.string.isRequired,
    label: React.PropTypes.string.isRequired,
    className: React.PropTypes.string,
    type: React.PropTypes.oneOf(['text','textarea','select','datepicker']),
    required: React.PropTypes.bool,
    placeholder: React.PropTypes.string,
    validate: React.PropTypes.func,
    options: React.PropTypes.array
}

// Default values for some properties
Input.defaultProps = {
    className: '',
    type: 'text',
    required: false,
    placeholder: '',
    validate: function(prop) {
        // Default: not empty string
        return prop !== '';
    }
}

Styling Utilities

The HTML structure is similar to the following:

<!-- Forms Component -->
<div class="rfl-forms-container">
    <!-- Form Component -->
    <div class="rfl-form-container">
        <!-- Input Component -->
        <div class="rfl-field-container">
            <div class="rfl-label-container"><label>{this.props.label}</label></div>
            <div class="rfl-input-container">
                <!-- Input according to spec -->
                <input type="text" />
            </div>
        </div>
    </div>
    <div class="rfl-submit-btn-container">
        <button>Submit</button>
    </div>
</div>

Hence the above classes can be used for styling. However the following classes are actually default properties on the Forms Component and can be changed by passing appropriate properties:

Forms.defaultProps = {
    containerClass: 'rfl-forms-container',
    submitBtnContainerClass: 'rfl-submit-btn-container',
    formContainerClass: 'rfl-form-container'
}

Validation Errors

Currently there is no support for displaying validation errors as part of react-forms-lite. The onSubmit callback will have the isValid property that you can use to render validation errors.

A minimal example

import React from 'react';
import ReactDOM from 'react-dom';

import Forms from 'react-forms-lite';

let specs = {
    mySpec: {
        name: 'mySpec',
        fields: {
            myInput: {id: 'my-input', className: 'my-input', label: 'Text Field'},
            myDatePicker: {id: 'datepicker', type: 'datepicker', label: 'DatePicker'}
        }
    }
};

class App extends React.Component {
    constructor(props) {
        super(props);
    }
    
    onFormsSubmit(formData) {
        console.log(formData);
    }
    
    render() {
        return <div>
                <Forms specs={specs} onSubmit={this.onFormsSubmit} />
            </div>
    }
}

ReactDOM.render(<App />, document.getElementById('app'));

Note: This Component is the result of learning React and using it in a project. It will hopefully significantly improve with the use of Redux/React-redux/Immutable.js as I improve my knowledge of the React ecosystem.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published