Giter Club home page Giter Club logo

Comments (6)

theKashey avatar theKashey commented on May 27, 2024 3

Should be fixed in 1.13.2

from react-focus-lock.

theKashey avatar theKashey commented on May 27, 2024

I'll check. Something is very wrong, as long I could not find any reason for this strange behavior.

from react-focus-lock.

Sammii avatar Sammii commented on May 27, 2024

Thanks very much @theKashey ! I have some further clarification of the error scenario that we are encountering:

If the last tabbable link in the modal is within a parent that has display: none and the link does not have tabindex="-1" explicitly specified, then the focus cycle gets stuck, although browser does not tab to this link (since it is hidden).

Example:

Scenario 1: ❌ Focus stuck at #link1

<FocusLock>
  ...
  <a id="link1">Test</a>
  <div style="display: none;">
    <a id="link2">Test</a>
  </div>
</FocusLock>

Scenario 2: ✅ Cycles back to top as expected

<FocusLock>
  ...
  <a id="link1">Test</a>
  <div style="display: none;">
    <a id="link2" tabindex="-1">Test</a>
  </div>
</FocusLock>

Scenario 3: ❌ Focus stuck at #link1

<FocusLock>
  ...
  <a id="link1">Test</a>
  <div style="display: none;">
    <a id="link2">Test</a>
  </div>
  <a id="link3" tabindex="-1">Test</a> /* This cannot be tabbed to */
</FocusLock>

Scenario 4: ✅ Cycles back to top as expected

<FocusLock>
  ...
  <a id="link1">Test</a>
  <div style="display: none;">
    <a id="link2">Test</a>
  </div>
  <a id="link3">Test</a>
</FocusLock>

from react-focus-lock.

theKashey avatar theKashey commented on May 27, 2024

Yep, I've found the problem already - underlaying logic removes tabindex=-1 elements from two lists - "my" focusable elements, and the "rest" focusable elements.
Meanwhile it also has a logic about removing invisible (you forgot input type=hidden) elements, but it work only one list, not for another.
Result - 💣 💥

from react-focus-lock.

Sammii avatar Sammii commented on May 27, 2024

🙏 Thank you @theKashey ! Your patch works like a charm!

from react-focus-lock.

theKashey avatar theKashey commented on May 27, 2024

Thank you in response. You helped to find and close quite important issue.

from react-focus-lock.

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.