-
-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Viewport prefetching #3633
Comments
Just wanted to chime in again that adding this kind of config to every anchor element in an app is a lot of user overhead in terms of DX which is also introduces more surface for user-error. IMO if this was implemented it would be an even stronger argument for adding the ability to prefetch all relative links by default at the same time, with this stuff configured globally in the same place. A |
I wrote my own implementation of a Prefetch link whenever the link is in viewport. I additionally added a prop which if set to false will only prefetch the page and not run the load method (as in NextJS where load is not run). For checking whether the link is in viewport, I think its better to use Intersection Observer API
|
Another strategy might be 'focus'. If I navigate to a link with the tab key, maybe that link should start prefetching? Then again, doing so would typically mean prefetching all the links you tab through until you get to the one you want, so maybe not. Unclear. At the very least we should prefetch on keydown for focused links. |
this can be closed now that we have |
Describe the problem
Currently
sveltekit:prefetch
works by requesting data on hover or before click only. In some cases, it may be desirable to prefetch immediately when the link enters the viewport, similar to how nextjs works today.#3041 also highlighted some points there.
Describe the proposed solution
Provide a way to define the prefetching strategy, either by viewport or hover. This can be achieved by passing a value to the attribute, e.g.
sveltekit:prefetch="<strategy>"
. By default with no value, it would fallback to the hover strategy.For viewport prefetching,
IntersectionObservers
can't be used as anchor tags change often and to detect thatMutationObservers
are needed, but that imposes a lot of potential overhead. An alternative is to query select anchor tags and prefetch them in short intervals. (Ideas welcomed)To detect when to invalidate the data,
maxage
can be used. To avoid discouraging shortmaxage
(which indirectly cause repeated prefetching), a syntax likesveltekit:prefetch="viewport:1000"
could be supported to denote "invalidate after 1s". Or a config option can be used to set a minimum prefetch interval (similar #790)Alternatives considered
Refer users to implement their own viewport prefetch logic using actions. Caveat is that links in contents from CDN can't take advantage of the declarative prefetching syntax.
Importance
nice to have
Additional Information
The text was updated successfully, but these errors were encountered: