Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

final-form-set-errors-mutator

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

final-form-set-errors-mutator

Mutator for setting errors outside of form (for example in redux-saga)

  • 1.0.4
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

final-form-set-errors-mutator

Mutator for setting form errors.

It allows you validate your form values outside of form (for example in redux-saga).

Installation

npm install final-form-set-errors-mutator

How to use

Add to form

import { FormApi } from "final-form";
import React, { FunctionComponent } from "react";
import { Form, Field } from "react-final-form";
import { setErrors } from "final-form-set-errors-mutator";
import { ModelState } from "model-state-validation";

interface PasswordModel {
    password: string;
    confirmPassword: string;
}

interface IMyFormProps {
    submit: (model: PasswordModel, formApi: FormApi) => void;
}

const MyForm: FunctionComponent<IMyFormProps> = ({ submit }) => {
    return (
        <Form
            onSubmit={submit}
            mutators={[ setErrors ]}
        >
            {({ handleSubmit }) => {
                return (
                    <form onSubmit={handleSubmit}>
                        <Field name="password">
                            {({ input, meta }) => (
                                <div>
                                    <label>Password</label>
                                    <input {...input} type="password"/>
                                    {meta.error && meta.touched && <span>{meta.error}</span>}
                                </div>
                            )}
                        </Field>

                        <Field name="confirmPassword">
                            {({ input, meta }) => (
                                <div>
                                    <label>Confirm your password</label>
                                    <input {...input} type="password"/>
                                    {meta.error && meta.touched && <span>{meta.error}</span>}
                                </div>
                            )}
                        </Field>
                    </form>
                );
            }}
        </Form>
    );
};


function* mySaga(action) {
    const { model, formApi } = action.payload;

    const modelState = validate(model);
    formApi.mutators.setErrors(modelState);
    if (modelState.isValid()) {
        // api request or something else
    }
}

function validate(model: PasswordModel): ModelState {
    const modelState = new ModelState();
    if (model.password !== model.confirmPassword) {
        modelState.addError(
            "confirmPassword",
            "Passwords are not equals."
        );
    }
    return modelState;
}

FAQs

Package last updated on 29 Jul 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc