1
1
mirror of https://github.com/theoludwig/react-component-form.git synced 2024-07-17 07:30:13 +02:00
Go to file
2020-08-04 16:22:31 +02:00
.github/workflows 🎉 Initial commit 2020-08-04 16:22:31 +02:00
example 🎉 Initial commit 2020-08-04 16:22:31 +02:00
src 🎉 Initial commit 2020-08-04 16:22:31 +02:00
.editorconfig 🎉 Initial commit 2020-08-04 16:22:31 +02:00
.eslintignore 🎉 Initial commit 2020-08-04 16:22:31 +02:00
.eslintrc 🎉 Initial commit 2020-08-04 16:22:31 +02:00
.gitignore 🎉 Initial commit 2020-08-04 16:22:31 +02:00
.prettierrc 🎉 Initial commit 2020-08-04 16:22:31 +02:00
.travis.yml 🎉 Initial commit 2020-08-04 16:22:31 +02:00
LICENSE 🎉 Initial commit 2020-08-04 16:22:31 +02:00
package-lock.json 🎉 Initial commit 2020-08-04 16:22:31 +02:00
package.json 🎉 Initial commit 2020-08-04 16:22:31 +02:00
README.md 🎉 Initial commit 2020-08-04 16:22:31 +02:00
tsconfig.json 🎉 Initial commit 2020-08-04 16:22:31 +02:00
tsconfig.test.json 🎉 Initial commit 2020-08-04 16:22:31 +02:00

react-component-form

Manage React Forms with ease.

Gitmoji JavaScript Style Guide Licence MIT npm version Node.js CI

📜 About

react-component-form is a lightweight form component for React.js, it allows you to get the inputs values without state with onChange or onSubmit props.

💾 Install

npm install --save react-component-form

⚙ Usage

import React from 'react'
import Form, { HandleForm } from 'react-component-form'

const Example = () => {
  const handleSubmit: HandleForm = (formData, formElement) => {
    console.log(formData) // { inputName: 'value of the input' }
    formElement.reset()
  }

  return (
    <Form onSubmit={handleSubmit}>
      <input type='text' name='inputName' />
      <button type='submit'>Submit</button>
    </Form>
  )
}

Basically you have access to the same props of the HTML form tag in React, but the onSubmit and the onChange props are differents.

Instead to get the event params you get formData and formElement :

  • formData: It's an object where the keys are the name of your inputs and the current value. Behind the scene, it uses the FormData constructor.
  • formElement: It's the actual HTML form element in the DOM so for example you can access the .reset() method on a HTMLFormElement.

📄 License

MIT