Skip to content

Commit

Permalink
refactor: improve internal type definitions of <NuxtLink> (#9869)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mini-ghost committed Jan 10, 2023
1 parent 6c32a60 commit 9de94c2
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions packages/nuxt/src/app/components/nuxt-link.ts
Expand Up @@ -180,7 +180,7 @@ export function defineNuxtLink (options: NuxtLinkOptions) {
if (shouldPrefetch) {
const nuxtApp = useNuxtApp()
let idleId: number
let unobserve: Function | null = null
let unobserve: (() => void)| null = null
onMounted(() => {
const observer = useObserver()
onNuxtReady(() => {
Expand Down Expand Up @@ -268,8 +268,10 @@ export function defineNuxtLink (options: NuxtLinkOptions) {
export default defineNuxtLink({ componentName: 'NuxtLink' })

// --- Prefetching utils ---
type CallbackFn = () => void
type ObserveFn = (element: Element, callback: CallbackFn) => () => void

function useObserver () {
function useObserver (): { observe: ObserveFn } | undefined {
if (process.server) { return }

const nuxtApp = useNuxtApp()
Expand All @@ -278,10 +280,10 @@ function useObserver () {
}

let observer: IntersectionObserver | null = null
type CallbackFn = () => void

const callbacks = new Map<Element, CallbackFn>()

const observe = (element: Element, callback: CallbackFn) => {
const observe: ObserveFn = (element, callback) => {
if (!observer) {
observer = new IntersectionObserver((entries) => {
for (const entry of entries) {
Expand Down

0 comments on commit 9de94c2

Please sign in to comment.