kamilkisiela / apollo-angular

A fully-featured, production ready caching GraphQL client for Angular and every GraphQL server 🎁
https://apollo-angular.com
MIT License
1.5k stars 309 forks source link

apollo-angular prevents Zone from becoming stable #2251

Closed diesieben07 closed 5 months ago

diesieben07 commented 5 months ago

Describe the bug

When apollo-angular is used with Angular SSR and a GraphQL query is made from an APP_INITIALIZER then Angular hydration is delayed by about 10 seconds. This happens, because ApolloClient uses setTimeout when constructed to suggest you to use its devtools. This setTimeout prevents Zone from becoming stable, delaying hydration.

To Reproduce Use apollo-angular from within an APP_INITIALIZER in an Angular App using Angular 17 SSR. Observe the "Angular hydrated ..." message being delayed.

Expected behavior

apollo-angular should not delay hydration / ApplicationRef#isStable.

Environment:

├── @angular/cli@17.3.5
├── @angular/core@17.3.5
├── @apollo/client@3.10.1
├── apollo-angular@7.0.0
├── graphql@16.8.1
└── typescript@5.4.5

Additional context

To fix this, the call to the ApolloClient constructor should be wrapped in zone.runOutsideAngular. I have worked around this problem like so:


export function provideGraphql(): EnvironmentProviders {
    return makeEnvironmentProviders([
        {
            provide: Apollo,
            useFactory: () => {
                // Apollo must be created outside the Angular Zone, because ApolloClient starts a `setTimeout` for its
                // devtools connection
                // this setTimeout prevents NgZone from becoming stable
                const zone = inject(NgZone);
                const options = inject(APOLLO_OPTIONS, { optional: true }) ?? undefined;
                const namedOptions = inject(APOLLO_NAMED_OPTIONS, { optional: true }) ?? undefined;
                const flags = inject(APOLLO_FLAGS, { optional: true }) ?? undefined;
                // Note the following line:
                return zone.runOutsideAngular(() => new Apollo(zone, options, namedOptions, flags));
            },
        },
        {
            provide: APOLLO_OPTIONS,
            useFactory: () => {
                const httpLink = inject(HttpLink);
                return {
                    link: httpLink.create({ uri }),
                    cache: new InMemoryCache(),
                } satisfies ApolloClientOptions<unknown>;
            },
        },
    ]);
}
PowerKiKi commented 5 months ago

This is documented in https://the-guild.dev/graphql/apollo-angular/docs/performance/server-side-rendering#using-apollo-devtools, and the better solution is:

// When providing options
{
  provide: APOLLO_OPTIONS,
  useFactory: () {
    return {
      connectToDevTools: false
      // ...
    };
  },
},

// Or when creating the client
apollo.create({
  connectToDevTools: false
  // ...
})
diesieben07 commented 5 months ago

But... does that not disable the Apollo Developer tools, which I want to use?

PowerKiKi commented 4 months ago

It is not possible to use Apollo Developer tools on server side, but if you want to keep using it on the browser side, then you can do it conditionally, with something roughly like that:

const platformId = inject(PLATFORM_ID);
const isBrowser = isPlatformBrowser(platformId);

return {
    ssrMode: !isBrowser,
    connectToDevTools: isBrowser,
};
diesieben07 commented 4 months ago

Yes, I want to use the Developer tools on the client, not on the server. Disabling it on the server is not going to solve this issue, because the issue is connectToDevTools on the client side in the first place. connectDevTools being enabled makes Apollo spawn a 10 second long setTimeout. This setTimeout prevents Zone.js from becoming stable (until it completes) and this delays Angular hydration by those 10 seconds.

This issue is even relevant with no SSR at all, still preventing ApplicationRef#isStable for 10 seconds. The fact is just that with SSR and hydration it becomes fairly obvious, because hydration is tied to isStable.

PowerKiKi commented 4 months ago

Disabling it on the server is not going to solve this issue

Create a minimal reproduction case that attempts that, probably in a dedicated repository, and then we can work on it

no SSR at all, still preventing ApplicationRef#isStable

What is your use-case for a stable application in the browser ?

diesieben07 commented 4 months ago

Create a minimal reproduction case that attempts that, probably in a dedicated repository, and then we can work on it

https://github.com/diesieben07/apollo-angular-stable-repro

To reproduce start the dev server (npm start). Open the application in the browser and look at the console. Note how the "Angular hydrated..." message takes 10 seconds to appear.

The same can be observed in production (npm run build then npm run serve:ssr:apollo-angular-stable-repro). Unfortunately there is no way to get Angular to log the "Angular hydrated..." message in production, so you'll have to either take my word for it or check yourself that Angular starts hydration when ApplicationRef#isStable turns true. I have also logged that value manually, so the effect can be observed in production that way.

This delay goes away if the APP_INITIALIZER that accesses Apollo (in app.config.ts) is commented out / removed.

What is your use-case for a stable application in the browser ?

I do not have one, because this is a fairly niche feature of Angular. It is however used for SSR. My argument here was that this issue exists completely separate from and is not related to any kind of server side rendering.