Git Product home page Git Product logo

Comments (5)

vmarcosp avatar vmarcosp commented on August 11, 2024 1

You can create a hook that stores an array of tuple (or map) of (Field, React.domRef) and check for fields with errors to focus/scroll to the input.
Here it is an example of how to do something similar:

// FormWrapper.res
module Make = (Config: ReForm.Config) => {
  include ReForm.Make(Config)
  module ComparableField = Belt.Id.MakeComparable({
    type t = field
    let cmp = Pervasives.compare
  })

  type fields = Belt.MutableMap.t<ComparableField.t, Dom.element, ComparableField.identity>

  type registerFieldFn = (field, Js.Nullable.t<Dom.element>) => unit

  let useScrollToField = (~offsetTop=0, ()) => {
    let fieldsRef: React.ref<fields> = React.useRef(
      Belt.MutableMap.make(~id=module(ComparableField)),
    )

    let register = (fieldName, fieldRef) => {
      switch fieldRef->Js.Nullable.toOption {
      | Some(el) => fieldsRef.current->Belt.MutableMap.set(fieldName, el)
      | None => ()
      }
    }

    let scrollToFieldWithError = ({state}: onSubmitAPI) => {
      state.fieldsState
      ->Belt.Array.get(0)
      ->Belt.Option.map(((field, _)) => field)
      ->Belt.Option.flatMap(field => fieldsRef.current->Belt.MutableMap.get(field))
      ->Belt.Option.map(el => DomApiExtra.Window.scrollTo(0, el->DomApiExtra.offsetTop - offsetTop))
      ->ignore
    }

    (register, scrollToFieldWithError)
  }

}

// MyApp.res
module Lenses = %lenses(
 type state = {
  name: string,
 } 
)
module MyForm = FormWrapper.Make(Lenses)
@react.component
let make = () => {
   // reform stuff here (useForm, etc)
  let (registerField, scrollWhenFail) = MyForm.useScrollToField()
  
  <input ref={Field(Name)->registerField->ReactDOM.Ref.callbackDomRef}  />
}

from reform.

nireno avatar nireno commented on August 11, 2024

Thanks I'll give your example a shot.
I thought that's what it would boil down to but was hoping there might be some magic to help out.

from reform.

vmarcosp avatar vmarcosp commented on August 11, 2024

Let me know if you need help to change the example from scrolling to a focusing behaviour.

from reform.

vmarcosp avatar vmarcosp commented on August 11, 2024

Any progress here? Can I close this issue?
Let me know if you need help.

from reform.

nireno avatar nireno commented on August 11, 2024

Had some friction getting things wired up but finally got it:

  1. Wired scrollWhenFail up to onSubmitFail when configuring ReForm use.
  2. Realized order of the Validation.Schema array determines order that the fields will appear in the fieldsState array.
  3. Realized that, for onSubmitFail, the fieldsState array only contains the fields that have an error which is why it was safe to state.fieldsState->Belt.Array.get(0).
  4. Added external to allow el.focus({preventScroll: true}). Without preventScroll the focused element would just pop into view. Having it lets me follow up with el.scrollIntoView({"behavior": smooth, "block": center}) to smoothly scroll the invalid input into view.

Thanks!

from reform.

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.