pull/4511/head
Divyansh Singh 8 months ago
parent d55a401f5f
commit e17e741157

@ -93,11 +93,7 @@ export function createRouter(
const currentLoc = new URL(loc, fakeHost) const currentLoc = new URL(loc, fakeHost)
if (href === loc) { if (href === loc) {
if (!initialLoad) { if (!initialLoad) return scrollTo(hash, smoothScroll)
if (hash) scrollTo(hash, smoothScroll)
else window.scrollTo(0, 0)
return
}
} else { } else {
history.replaceState({ scrollPosition: window.scrollY }, '') history.replaceState({ scrollPosition: window.scrollY }, '')
history.pushState({}, '', href) history.pushState({}, '', href)
@ -111,8 +107,7 @@ export function createRouter(
}) })
) )
if (hash) scrollTo(hash, smoothScroll) return scrollTo(hash, smoothScroll)
else window.scrollTo(0, 0)
} }
return return
@ -166,8 +161,7 @@ export function createRouter(
history.replaceState({}, '', href) history.replaceState({}, '', href)
} }
if (targetLoc.hash && !scrollPosition) scrollTo(targetLoc.hash) return scrollTo(targetLoc.hash, false, scrollPosition)
else window.scrollTo(0, scrollPosition)
}) })
} }
} }
@ -277,7 +271,12 @@ export function useRoute(): Route {
return useRouter().route return useRouter().route
} }
export function scrollTo(hash: string, smooth = false) { export function scrollTo(hash: string, smooth = false, scrollPosition = 0) {
if (!hash || scrollPosition) {
window.scrollTo(0, scrollPosition)
return
}
let target: Element | null = null let target: Element | null = null
try { try {

Loading…
Cancel
Save