-
-
Notifications
You must be signed in to change notification settings - Fork 369
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
Client-side Routing without hitting the server #95
Comments
Check out
Is your GraphQL server physically closer to your user than to your SSR server?
Yes you are right, with the current |
Yeah.. Is it closer, but the issue is that it will "freeze" the application while transitioning pages. I think, in the era of SPA's users are accustomed to instantaneous page transitions. I more like the idea behind Suspense, when I can delay loading state but still show it if it takes too long. I really like how next.js handles routing — after first page load it starts to use pure client-side routing. It actually is less about load of the SSR server and more about user experience. For example, let's take CRUD, user is on the list page and clicks on one of the items to drop into details, as the list is already loaded into the graphql client's cache, actual useQuery would not go to grab data from back-end and can just instantaneously show details page, maybe while showing some spinners for parts that are not in the cache and still loading. But user can already interact with the page. This way SSR is perceived slower than the pure client queries. I think it would be really great if you can expose full routes in AST form so we can create compilers for each specific routing library. |
I do share the sentiment of being able to let The question here though is how would the data fetching work for e.g. |
There are two ways to do fetching in SSR
I always do second one for my sites, because it is much more convenient for large apps. I'm using
|
So you basically centrally manage the data fetching for all pages in your Now imagine a That's the main blocker of this ticket. In a nutshell: it's not clear how to define data fecthing on page-by-page basis. |
As I understand, it is already done by making all queries in addPageContext. We can just call it on the client without hitting SSR server after initial page load. |
Exactly, that's why the plan here is to have See my last edits to #95 (comment) for an update about this. |
Also, just so we are on the same page here, this is only about server cost savings (and for a very small number of app architectures a performance benefit). There is nothing you could achieve with client-side only navigations you cannot already achieve with the current design. |
As I said this is not really about performance or reducing SSR server loads, it's more about perceived application performance when page transitions are generally expected to be instantaneous. I like how next.js solves this with their I think if you just allow us to get full routing information on application start then we can build our routes from As I understand we can already use client-only routes in current vite-plugin-ssr, it's just a bit inconvenient because we have to have two copies of routing data in |
See #95 (comment). Check out |
I have a PR in progress that will allow for integrations with proprietary routers. This will avoid the duplicate route information problem and allow you to take over client routing. My focus is Vue Router but the underlying work should make a React Router integration viable. |
I think the best option is NOT to call pageContext API endpoint when |
I agree. Is the current behavior causing you trouble? Or is it an optimization you'd like to have at some point? |
Updated OP to clarify what this is about. |
IMHO client routing should not be blocking, because then it is almost the same as server routing in terms of UX. There are also a lot of discussions about this in nextjs #vercel/next.js#23921 |
I can also see that no fetching request at all VS fetching an empty
response to make a considerable difference on mobile.
Were you able to reproduce a difference in performance or are you guessing
so far?
I can implement skipping when there is no addPageContest sooner rather than
later, as I expect this to be considerably faster to implement than OP.
…On Sat 11. Sep 2021 at 14:05, Arian Santrach ***@***.***> wrote:
IMHO client routing should not be blocking, because then it is almost the
same as server routing in terms of UX. There are also a lot of discussions
about this in nextjs #vercel/next.js#23921
<vercel/next.js#23921>
I agree that server cost savings should be negligible but impact to user
experience is huge - especially on slow networks.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#95 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAHVQRQVCNJXTI4BIY3WVTDUBNAW5ANCNFSM46TQ2VNA>
.
Triage notifications on the go with GitHub Mobile for iOS
<https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675>
or Android
<https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub>.
|
No fetch request at all is the only viable option in my opinion because on slow networks client routing will still be blocked for the amount of response time. For example, if fetch request response time is 500ms, client routing will be blocked for minimum of 500ms. Without this request we can fetch data on client and show loading skeleton/spinner right away.
Sounds great, fixes my problem because I can use react-ssr-prepass to fetch data and don't need per page fetches. |
The whole idea of hitting SSR server on each page transition brings us back to pre-SPA web. When user have to wait until server sends them rendered page on each navigation. SSR meant to help with SEO primarily and with loading data for slow networks at first page load. There's absolutely no need to do any SSR after user loaded page initially. All other navigation should be client-only. Next.js recently did similar thing with its |
Thats why I also still use |
I'm finishing up the |
Alright, so the plan is following:
This means that if you move all your I'm not sure what should happen if there are two Thoughts? |
Looks great! |
Sounds awesome and very flexible. Looking forward to this :) |
ETA this week. |
That part is now released in Now working on being able to define |
This is great! We could also prefetch static files with Intersection Observer API or similar on |
Yes that'd be exciting. Is the Intersection API really needed? Isn't a passive mouse listener with getBoundingClientRect enough? If someone's up on working on that, let me know. |
As far as I know Intersection Observer API doesn't run on main thread as opposing to passive mouse listener with getBoundingClientRect.
https://developer.mozilla.org/en-US/docs/Web/API/Intersection_Observer_API I can make rough implementation so we continue discussion. ;) |
Sounds like a plan :-). |
I may finish this ticket today btw. Hopefully actually since I'm on a wedding this weekend so limited working capacity. |
@Axxxx0n How about: import { prefetchUrl } from 'vite-plugin-ssr/client/router'
function onLinkProximity(url: string) {
await prefetchUrl(url)
console.log(`The static assets for ${url} are now loaded.`)
} So we can do whatever we want on top of this. |
I was just writing the same. This way we can prefetch manually from router, intersection on links, on link hover or similar. |
Exactly |
General thing is that we need to get context and call dirty example: async function prefetchUrl(url: string) {
if(isExternalLink(url)) return
if(!isNotNewTabLink) return
const globalContext = await getGlobalContext()
const pageContext = {
url,
_noNavigationnChangeYet: navigationState.noNavigationChangeYet,
...globalContext
}
addComputedUrlProps(pageContext)
const pageContextAddendum = await getPageContext(pageContext) // gets .pageContext.json files
objectAssign(pageContext, pageContextAddendum)
loadPageFiles(pageContext)
} Some possible solutions:
|
This |
_pageId is provided by |
Btw we can also offer |
When this lands
this is not necessary
Because then we: have client onBeforeRoute and load everything on client OR have server onBeforeRoute which we want to load on server. |
|
All issues mentioned in this ticket should now be resolved. I will write docs for it in the next days. |
Currently, when using Client-Side Routing (see docs here and there), the client-side
pageContext
is fetched from the server.Some people want to be able to navigate between pages without hitting the Node.js SSR server. I'm opening a ticket for dicussing this.
I'm willing to implement this but this will require a couple of days work, so don't expect this too soon.
👍 this ticket if you want this. The more 👍 this ticket collects the more will I increase the importance of this. And better yet, add a comment elaborating why this is crucial for you and I'll then also increase urgency.
Edit: Most of the time, this is only about (negligible) server cost servings. For most apps, performance and cost implications are negligible. (Note that the static middleware of your Node.js server always needs to be hit anyways in order to get the latest code of the new page. It's mostly only about reducing Node.js work load.)
The text was updated successfully, but these errors were encountered: