Skip to content
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

bug: stencil hydrate not calling globalScript in version 4.17.0 onwards #6002

Closed
3 tasks done
felipeyukio182 opened this issue Sep 27, 2024 · 2 comments
Closed
3 tasks done
Labels
Bug: Validated This PR or Issue is verified to be a bug within Stencil Help Wanted

Comments

@felipeyukio182
Copy link

felipeyukio182 commented Sep 27, 2024

Prerequisites

Stencil Version

4.17.0

Current Behavior

I have an angular SSR application and use the stencil hydrate. Until version 4.16.0, I had no problems hydrating my server-side components, but from 4.17.0 onwards the globalScript initialization code stopped working, it seemed that they were not called.

I run the following initialization script from global-script-start.ts:

export default function() {
  const customConfig = window?.CustomConfig;
  window.CustomAPI = {
    color: customConfig?.color || "#003DA5",
  }
  const api = window.CustomAPI;
  window.document.documentElement.style.setProperty("--stencil-custom-color", api.color);
  if (customConfig && typeof customConfig.onReady === 'function') customConfig.onReady(api);
}

In stencil.config:
globalScript: 'src/global-script-start.ts',

When I run my SSR application, I call the "renderToString" function of the stencil hydrate and send the result to the client. But even though the html is hydrated, this initialization script appears not to have been called, and the css variable "--stencil-custom-color" is not set.

Before version 4.17.0, this script ran without problems and the CSS variable "--stencil-custom-color" was included with the <html> tag.

I checked the changelog from 4.16.0 to 4.17.0, and noticed that bundler was migrated from rollup to esbuild.
Could there be something related to this? Or am I missing something?

Expected Behavior

When I call the renderToString function, the script inside global-script-start.ts should be executed, and the CSS variable "--stencil-custom-color" should be set inside the <html> tag of the renderToString response.

System Info

System: node 20.13.1
    Platform: windows (10.0.19045)
   CPU Model: Intel(R) Core(TM) i7-10510U CPU @ 1.80GHz (8 cpus)
    Compiler: C:\Users\felipe.fupunaga\Documents\Projetos\outros\stencil-hydration-global-script-test\node_modules\@stencil\core\compiler\stencil.js
       Build: 1724698030
     Stencil: 4.21.0
  TypeScript: 5.5.3
      Rollup: 2.56.3
      Parse5: 7.1.2
      jQuery: 4.0.0-pre
      Terser: 5.31.1

Steps to Reproduce

Run the following:

git clone https://github.com/felipeyukio182/stencil-hydration-global-script-test.git
cd stencil-hydration-global-script-test
npm i
npm run build
cd packages/angular-ssr-project
npm run serve:ssr

Then access http://localhost:4000/ with the network tab open and compare the html preview coming from the server with the html rendered on the page.
The client-side html will have the CSS variable "--stencil-custom-color" (text with green color) while the server-side html will not have any css variable in the <html> tag (text with red color). You can also see the blinking effect from red to green.

For comparison, I created the stencil-v4.16.0 branch, where it is possible to run the same test. In this branch, both the client-side and server-side responses contain the css variable "--stencil-custom-color" and both responses contain green text.

Code Reproduction URL

https://github.com/felipeyukio182/stencil-hydration-global-script-test

Additional Information

When i run the main branch, this is the response:
image

When i run the stencil-v4.16.0 branch, the html from server-side and client-side are the same:
image

And the html from server have the "--stencil-custom-color" CSS variable:
image

@ionitron-bot ionitron-bot bot added the triage label Sep 27, 2024
@christian-bromann christian-bromann added Bug: Validated This PR or Issue is verified to be a bug within Stencil Help Wanted and removed triage labels Sep 30, 2024
@christian-bromann
Copy link
Member

@felipeyukio182 thanks for raising an issue and providing a reproducible example. Our team currently has a lot of competing priorities and we can't say when we are able to take a look at this. We would appreciate any support in form of investigation on the root cause or actual fixes. We are happy to answer any technical questions as they arise.

@christian-bromann
Copy link
Member

A fix for this has been released in Stencil v4.22.0 🎉

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Bug: Validated This PR or Issue is verified to be a bug within Stencil Help Wanted
Projects
None yet
Development

No branches or pull requests

2 participants