fix: laggy firefox due to replaceState leaking
Some checks failed
/ deploy (push) Failing after 2s

This commit is contained in:
Dariusz Niemczyk 2025-02-13 00:18:19 +01:00
parent c6db42dff0
commit b1481207b3
No known key found for this signature in database

View file

@ -3,7 +3,7 @@ import { Button } from "@/components/ui/button"
import { Sections, type translations } from "@/i18n/translations" import { Sections, type translations } from "@/i18n/translations"
import { cn } from "@/lib/utils" import { cn } from "@/lib/utils"
import { MoonIcon, SunIcon } from "lucide-react" import { MoonIcon, SunIcon } from "lucide-react"
import { useEffect, useState } from "react" import { useEffect, useRef, useState } from "react"
import { MobileNav } from "./mobile-nav" import { MobileNav } from "./mobile-nav"
import { useTheme } from "./providers" import { useTheme } from "./providers"
import { LanguageSelector } from "./ui/language-selector" import { LanguageSelector } from "./ui/language-selector"
@ -26,6 +26,7 @@ export function Nav({
}) { }) {
const { theme, setTheme } = useTheme() const { theme, setTheme } = useTheme()
const [activeSection, setActiveSection] = useState<Sections>("about") const [activeSection, setActiveSection] = useState<Sections>("about")
const linksParent = useRef<HTMLDivElement>(null)
useEffect(() => { useEffect(() => {
@ -34,14 +35,22 @@ export function Nav({
rootMargin: "-10px", rootMargin: "-10px",
threshold: 0.5, // Adjust the visibility threshold as needed threshold: 0.5, // Adjust the visibility threshold as needed
}; };
let timeout: NodeJS.Timeout | null = null;
const observer = new IntersectionObserver((entries) => { const observer = new IntersectionObserver((entries) => {
if (timeout) {
clearTimeout(timeout);
}
// timeout = setTimeout(() => {
entries.forEach(entry => { entries.forEach(entry => {
const target = entry.target.id as keyof (typeof translations.pl)["nav"] const target = entry.target.id as keyof (typeof translations.pl)["nav"]
if (entry.isIntersecting) { if (entry.isIntersecting) {
setActiveSection(target); setActiveSection(target);
if (history.replaceState) { if (window.location.hash !== `#${target}` && history.replaceState) {
history.replaceState(null, "", `#${target}`); timeout = setTimeout(() => {
history.replaceState(null, "", `#${target}`)
}, 150)
} }
} }
}); });
@ -73,7 +82,7 @@ export function Nav({
<h1>{t.nav.title}</h1> <h1>{t.nav.title}</h1>
</a> </a>
</div> </div>
<div className="flex items-center"> <div ref={linksParent} className="flex items-center">
{/* Desktop Navigation */} {/* Desktop Navigation */}
<div className="hidden md:flex md:items-center md:gap-4 lg:gap-8"> <div className="hidden md:flex md:items-center md:gap-4 lg:gap-8">