fix(docs): Table of Contents Anchor Navigation in Safari on Mobile/Small Screens#18
Open
shashankxrm wants to merge 1 commit intolovit-dev:mainfrom
Open
fix(docs): Table of Contents Anchor Navigation in Safari on Mobile/Small Screens#18shashankxrm wants to merge 1 commit intolovit-dev:mainfrom
shashankxrm wants to merge 1 commit intolovit-dev:mainfrom
Conversation
- Ensure TOC closes before scrolling on mobile/tablet, with delay for smooth Safari behavior - Improves anchor navigation reliability when TOC is toggled via button on small screens - No functional change for desktop/large screens
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Root Cause
TableOfContents(TOC) is hidden by default and shown via a button. When a link is clicked, the TOC is still visible or transitioning, and Safari sometimes fails to process anchor navigation orscrollIntoViewif the element or its parent was recently hidden or transitioned.Solution
setTimeout). This ensures the scroll happens after the TOC is hidden and the DOM is stable, which is required for Safari to process the scroll correctly.xl), so desktop/large screens are unaffected.aria-expandedandaria-controlsfor better accessibility.Implementation
TableOfContents.tsx:openstate and asetOpenfunction to control TOC visibility.setTocOpendown toNavLinkcomponents.NavLink, when on mobile/tablet, clicking a link closes the TOC and then scrolls to the heading after a 250ms delay.document.querySelectorwithCSS.escapefor robust element selection.scrollIntoView({ behavior: 'smooth', block: 'start' })for smooth scrolling where supported.Testing
Screen.Recording.2025-05-20.at.17.09.28.mov
Motivation
Bugs needed to be solved.
Change Type
Checklist
npm run lint)Related Issues