Git Product home page Git Product logo

effector-react-form's Introduction

Effector-react-form

Clone based on effector-react-form

Connect your forms with state manager

Visit effector-react-form.webstap to see full documentation and examples.

QuikStart

Install

# Yarn
yarn add @softmg/effector-react-form

# NPM
npm install --save @softmg/effector-react-form

Short example

Create single form
import { createForm } from '@softmg/effector-react-form';

const form = createForm<Values>({
  initialValues: {
    userName: '',
    email: '',
    password: '',
    repeatPassword: '',
  },
  onSubmit: ({ values }) => // your post method,
});

Set this form to our jsx

import { useForm } from '@softmg/effector-react-form';

const validateFields = (value) => {
  if (!value) return 'Field is required';
  if (value.length < 4) return 'Minimum of 4 characters';
  return undefined;
};

const Form = () => {
  const { controller, handleSubmit, submit } = useForm({ form: formSignIn });
  return (
    <form onSubmit={handleSubmit}>
      <Input label="Name" controller={controller({ name: 'userName', validate: validateFields })} />
      <Input label="Name" controller={controller({ name: 'email', validate: validateFields })} />
      <Input label="Password" controller={controller({ name: 'password', validate: validateFields })} />
      <Input label="Repeat password" controller={controller({ name: 'repeatPassword', validate: validateFields })} />
      <button onClick={submit}>
        submit
      </button>
    </form>
  );
};

Custom Input component

const Input = ({ controller, label }) => {
  const { input,isShowError, error } = controller();

  return (
    <div className="input-wrap">
      <label>{label}</label>
      <input {...input} value={input.value || ''} className={'input'} />
      {isShowError && <div className="input-error-message">{error}</div>}
    </div>
  );
};

createForm arguments

Accepts an object with following optional params:

name: form name

validate: function, for validation values of the form.

Example:

const validateForm = ({ values }) => {
  const errors = {};

  if (values.newPassword !== values.repeatPassword) {
    errors.newPassword = 'passwordsDontMatch';
    errors.repeatPassword = 'passwordsDontMatch';
  }

  if (values.newPassword && values.newPassword === values.oldPassword) {
    errors.newPassword = 'passwordMustDiffer';
  }

  return errors;
};

mapSubmit: a function that transforms data that received from the form fields before passing it to the onSubmit function.

onSubmit: a function that fires on a form submit even.

onSubmitGuardFn: before the onSubmit function is executed, the value of this field is checked. By default, it contains a predicate function that checks if there are validation errors in form fields. If there are no errors, it returns true and onSubmit is triggered. You can pass your own predicate function that will accept the values โ€‹โ€‹of the form fields and an object with meta.

onChange: a function that`s triggered when the form fields change. onChangeGuardFn: before the onChange function is executed, the value of this field is checked. By default, it contains a predicate function that checks if there are validation errors in form fields. If there are no errors, it will return true and onChange will be fired. You can pass your own predicate function that will accept the values of the form fields and an object with meta.

initalValues: an object with initial values of your form fields.

Example:

const initialValues = {
  name: "John",
  lastName: "Smith"
}

initialMeta: an object with initial values of your form fields.

resetOuterErrorsBySubmit: takes true / false. Determines whether outer form errors should be cleared on the onSubmit event. The default is true.

resetOuterErrorByOnChange: takes true / false. Determines whether outer form errors should be cleared on the onChange event. The default is true.

Docs and Examples

effector-react-form's People

Contributors

gtosss avatar mg901 avatar dependabot[bot] avatar alexsabur avatar pavelmgs avatar ilyaagarkov avatar cebelerk avatar sergeysova avatar xaota avatar

Watchers

Alex avatar  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.