Git Product home page Git Product logo

js-form's Introduction

A lightweight form class that handles common functionality internally while still returning a promise on submit to allow for flexible use cases.

Installation:

From project root, run:

yarn @wheelmaker/js-form

Basic usage:

Create new form with a string for the submit url and an object with form fields as keys paired with default values:

import Form from '@wheelmaker/js-form'

const url = '/submit/here'
const fields = {name: '', email: ''}

const form = new Form(url, fields)

You now have access to:

form.post() // sends POST request with form fields using axios and returns promise
form.get() // same as post but uses 'GET' method
form.reset() // sets 'name' and 'email' fields back to ''
form.pending // true while form submit is pending

form.fields.name // defaulted to ''
form.fields.email // defaulted to ''

Optional Error Handling:

You can provide a third parameter on form creation which is a callable function, used to extract error messages from failed submission attempts.

 const getErrors = r => r.response.data.errors

 const form = new Form(url, fields, getErrors)

note: your getErrors function should return an object with errors keyed by field name, actual function definition will depend on how your backend returns form submission errors

You now have access to:

 form.errors.name // undefined untill/unless error returned from server
 form.errors.emais // "                                                "
 
 form.resetErrors() // clears errors (to be called when user updates a form field after failure)

js-form's People

Contributors

mattquest avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.