Code Monkey home page Code Monkey logo

Comments (6)

bluebill1049 avatar bluebill1049 commented on June 15, 2024

The input would need to fire an onBlur event for the revalidate.

from react-hook-form.

stowball avatar stowball commented on June 15, 2024

But how? It feels very wrong to need to intercept onClick on the submit button, blur, refocus and then submit… if that's even a possible solution to the problem

from react-hook-form.

bluebill1049 avatar bluebill1049 commented on June 15, 2024

maybe try to do a trigger on the submit button click?

from react-hook-form.

stowball avatar stowball commented on June 15, 2024

That doesn't seem to work either. The onClick doesn't seem to fire when there are errors:

const handleClick = () => {
    console.log(Math.radom());
    trigger();
    handleSubmit(onSubmit)();
  };

  return (
    <div className="App">
      <form onSubmit={handleSubmit(onSubmit)}>
        {errors?.firstName ? <p>Enter a valid name</p> : null}
        <div>
          <label htmlFor="firstName">First Name</label>
          <input
            {...register("firstName", {
              required: true,
            })}
          />
        </div>
        <input type="submit" onClick={handleClick} />
      </form>
    </div>
  );

The random number gets logged on the first press which initially validates the form, but not on the 2nd.

Was that what you had in mind?

from react-hook-form.

bluebill1049 avatar bluebill1049 commented on June 15, 2024

yea that's what i have in mind, why it's not firing tho. it should as the onClick even there.

from react-hook-form.

erashu212 avatar erashu212 commented on June 15, 2024

Hi @bluebill1049,

If I understood correctly, you want the form to be submitted onBlur if form is valid. This is not expected behavior of reValidationMode. However you can achieve this by using below code snippet.

import React from "react";
import ReactDOM from "react-dom";
import { useForm } from "react-hook-form";

import "./index.css";

function App() {
  const { register, handleSubmit, formState } = useForm({
    mode: "onSubmit",
    reValidateMode: "onBlur",
  });
  const [blurState, setBlurState] = React.useState({})

  const onSubmit = (data) => {
    alert(JSON.stringify(data));
  };

  const { onBlur, ...registerProps } = register('firstName', { required: true }); 

  const handBlurEvent = (e) => {
    onBlur(e)
    setBlurState(prevState => ({
      ...prevState,
      "firstName": true
    }))
  };

  const isValidState = blurState["firstName"] && !formState.isValidating && !formState.errors["firstName"]

  React.useEffect(() => {
    if(isValidState) {
      handleSubmit(onSubmit)()
      setBlurState(prevState => ({
        ...prevState,
        "firstName": false
      }))
    }
  }, [
    isValidState,
    onSubmit,
    handleSubmit
  ])

  return (
    <div className="App">
      <form onSubmit={handleSubmit(onSubmit)}>
        {formState.errors && formState.errors.firstName ? (
          <p>Enter a valid name</p>
        ) : null}
        <div>
          <label htmlFor="firstName">First Name</label>
          <input
            {...registerProps}
            onBlur={handBlurEvent}
          />
        </div>
        <input type="submit" />
      </form>
    </div>
  );
}

const rootElement = document.getElementById("root");
ReactDOM.render(<App />, rootElement);

from react-hook-form.

Related Issues (20)

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.