Topic: Modal jumping on closing with async onClick

pzauner priority asked 1 month ago


*Expected behavior*Normal Modal Closing.

*Actual behavior*When clicking the button (snippet down below), then it starts closing and performs two css opacity transitions wrong. It looks like it's jumping. This can be seen in the screenshots of the analysis in between 0.8 sec and 1.1 sec (Link down below).

The problem only occurs if the toggleModal() function is after the await trigger() function, but I have to do it like this, because I want to check the inputs before closing the modal.I'm using react-hook-form for form validation.

You also can replicate the issue with setTimeout function. If the timeout is below 200ms, the modal does not close smoothly.

Do you have an idea how to solve the problem? A workaround would be to put toggleModal() in a setTimeout() function with 200ms, but I think this cannot be the answer.

Resources (screenshots, code snippets etc.)https://share.firefox.dev/3LPxT3N

<MDBBtn tabIndex={7} onClick={async () => {
        const result = await trigger([
            `${name}.strasse`,
            `${name}.postleitzahl`,
            `${name}.ort`,
            `${name}.land`
        ]);

        if (result){
            toggleModal();
        }
}}>{label} übernehmen</MDBBtn>

Mateusz Lazaru staff answered 1 month ago


it was a bug in 7.2.0, but got fixed with 8.0.0 release. It's recommended to update the mdb-react-ui-kit,


pzauner priority commented 3 weeks ago

But then, I have this issue https://mdbootstrap.com/support/react/modal-flickering-when-opened/



Please insert min. 20 characters.

FREE CONSULTATION

Hire our experts to build a dedicated project. We'll analyze your business requirements, for free.

Status

Answered

Specification of the issue

  • ForumUser: Priority
  • Premium support: Yes
  • Technology: MDB React
  • MDB Version: MDB5 7.2.0
  • Device: PC
  • Browser: Firefox
  • OS: Windows
  • Provided sample code: No
  • Provided link: Yes