GithubHelp home page GithubHelp logo

Comments (2)

wsmd avatar wsmd commented on June 1, 2024

@uhoh-itsmaciek I know it has been a while since this issue was created, but I hope you can still find this helpful! :)

I think this is a valid use case. However, re-running the validation of another input programmatically is not currently possible because input validation requires a change/blur event, so it can only happen when the user interacts with an input. In fact, the validate exposes the event that triggers the validation as well.

if (isFunction(inputOptions.validate)) {
const result = inputOptions.validate(value, values, e);

Introduce the ability to programmatically re-validating exiting inputs against their current values without an event is a breaking change. I'll take this into consideration in future major releases.

For the time being, as you know, the form state can be manually updated using dedicated methods such as setFieldError. I think useEffect is the prefect candidate here to achieve the fields "dependency" behavior you mentioned above without any code duplications or validate functions.

const Form = () => {
  const [formState, { password }] = useFormState();

  // ensures that both `password` and `confirm` are always in sync
  // whenever either one changes
  useEffect(() => {
    const { password, confirm } = formState.values;
    formState.setFieldError(
      'confirm',
      password !== confirm ? 'password must match' : undefined,
    );
  }, [formState.values.password, formState.values.confirm]);

  return (
    <form>
      <label>
        password: <input {...password('password')} />
      </label>
      <label>
        confirm password: <input {...password('confirm')} />
      </label>
    </form>
  );
};

from react-use-form-state.

msakrejda avatar msakrejda commented on June 1, 2024

Cool, thanks for responding. After some reflection, I think this is probably reasonable to keep the surface area of the library simple.

from react-use-form-state.

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.