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

Lit v3 upgrade and SSR Pages support and compatibility for renderer plugin #1197

Closed
thescientist13 opened this issue Jan 20, 2024 · 0 comments · Fixed by #1201 · May be fixed by #1208
Closed

Lit v3 upgrade and SSR Pages support and compatibility for renderer plugin #1197

thescientist13 opened this issue Jan 20, 2024 · 0 comments · Fixed by #1201 · May be fixed by #1208
Assignees
Labels
alpha.0 breaking bug Something isn't working documentation Greenwood specific docs feature New feature or request Plugins Greenwood Plugins SSR v0.30.0
Milestone

Comments

@thescientist13
Copy link
Member

thescientist13 commented Jan 20, 2024

Summary

Was making a demo for Lit SSR on Vercel serverless functions and ran into a few issues. (check out the patches/ folder) in

Node Resolution

We will need to add node as a default bundling export condition or else the DOM shim wont come in. This would be needed for SSR pages and API routes.

// rollup.config.json
plugins: [
  // ...
  nodeResolve({
    exportConditions: ['default', 'module', 'import', 'node']
  })
]

Otherwise, the serve command was failing with the below error.

    ReferenceError: HTMLElement is not defined
    at file:///Users/owenbuckley/Workspace/github/greenwood-demo-adapter-vercel-lit/public/api/card.04a6f554.js:204:752
    at ModuleJob.run (node:internal/modules/esm/module_job:193:25)
    at async Promise.all (index 0)
    at async ESMLoader.import (node:internal/modules/esm/loader:530:24)
    at async file:///Users/owenbuckley/Workspace/github/greenwood-demo-adapter-vercel-lit/node_modules/@greenwood/cli/src/lifecycles/serve.js:305:29
    at async file:///Users/owenbuckley/Workspace/github/greenwood-demo-adapter-vercel-lit/node_modules/@greenwood/cli/src/lifecycles/serve.js:275:7
    at async file:///Users/owenbuckley/Workspace/github/greenwood-demo-adapter-vercel-lit/node_modules/@greenwood/cli/src/lifecycles/serve.js:233:5
    at async file:///Users/owenbuckley/Workspace/github/greenwood-demo-adapter-vercel-lit/node_modules/@greenwood/cli/src/lifecycles/serve.js:200:5
  

This is called out in the Lit SSR docs

As such, when Lit runs in Node, it automatically uses a set of minimal DOM APIs necessary to render Lit on the server, and defines the customElements global.


Maybe #1187 will handle this by default? Should look into it.

SSR Client Script

Looks we were missing the addition of the SSR client hydration script from our output

<!-- ssr-client lit-element-hydrate-support should be loaded first. -->
<script type="module" src="/node_modules/@lit-labs/ssr-client/lit-element-hydrate-support.js"></script>

Otherwise we were getting double rendering in the browser

customElements.define conflict ⚠️

Haven't seen this in any of my other demos with WCC, but if you load the home page and click the more products button, the page will crash the following error can be seen in the terminal, meaning this happening in NodeJS land. (Maybe this is why workers are good - #1117 )
Screenshot 2024-01-19 at 8 56 33 PM

Error: Failed to execute 'define' on 'CustomElementRegistry': the name "app-card" has already been used with this registry at CustomElementRegistry.define (file:///Users/owenbuckley/Workspace/github/greenwood-demo-adapter-vercel-lit/public/lit-element.2f782e55.js:220:23) at file:///Users/owenbuckley/Workspace/github/greenwood-demo-adapter-vercel-lit/public/api/card.658da880.js:11316:16 at ModuleJob.run (node:internal/modules/esm/module_job:193:25) at async Promise.all (index 0) at async ESMLoader.import (node:internal/modules/esm/loader:530:24) at async file:///Users/owenbuckley/Workspace/github/greenwood-demo-adapter-vercel-lit/node_modules/@greenwood/cli/src/lifecycles/serve.js:305:29 at async file:///Users/owenbuckley/Workspace/github/greenwood-demo-adapter-vercel-lit/node_modules/@greenwood/cli/src/lifecycles/serve.js:275:7 at async file:///Users/owenbuckley/Workspace/github/greenwood-demo-adapter-vercel-lit/node_modules/@greenwood/cli/src/lifecycles/serve.js:233:5 at async file:///Users/owenbuckley/Workspace/github/greenwood-demo-adapter-vercel-lit/node_modules/@greenwood/cli/src/lifecycles/serve.js:200:5

edit: ah, the Lit implementation specifically fails on multiple customElements.define calls, which in all fairness is to the spec. Wonder if WCC should impose this restriction too? Would add more overhead though... 🤔


We may want to revisit the SSR docs on their recommendation of running in a VM module vs a Worker.

Details

The specific set of fixes and enhancements will need to implement are

  1. Upgrade Lit to v3
  2. Refactor renderToString to use new collectResult SSR API
  3. Will want to add @lit-labs/ssr-client as dependency
  4. Will only be able to support the getBody API for pages, since there is no "Server Components Only" option with Lit
  5. Implement basic hydration support
  6. Looks like are we missing HTML intercepting and optimizing during SSR pages bundling
  7. plugins have to manage their own type="module-shim" 🤔
  8. Misc
    • How come the Lit card re-renders on client side? (make a repro repo)
      • need the polyfill?
      • chrome doesn't already support it?
  9. After this, could we suggest adding ourselves to the list of tools here (or maybe after the website redesign)? - https://lit.dev/docs/ssr/overview/
@thescientist13 thescientist13 added bug Something isn't working Plugins Greenwood Plugins SSR v0.30.0 labels Jan 20, 2024
@thescientist13 thescientist13 added this to the 1.0 milestone Jan 20, 2024
@thescientist13 thescientist13 self-assigned this Jan 20, 2024
@thescientist13 thescientist13 changed the title Lit v3 upgrade + SSR Pages fixes Lit v3 upgrade + SSR Pages support and compatibility Jan 20, 2024
@thescientist13 thescientist13 changed the title Lit v3 upgrade + SSR Pages support and compatibility Lit v3 upgrade + SSR Pages support and compatibility for renderer plugin Jan 20, 2024
@thescientist13 thescientist13 added the feature New feature or request label Jan 27, 2024
@thescientist13 thescientist13 changed the title Lit v3 upgrade + SSR Pages support and compatibility for renderer plugin Lit v3 upgrade and SSR Pages support and compatibility for renderer plugin Jan 27, 2024
@thescientist13 thescientist13 added documentation Greenwood specific docs enhancement Improve something existing (e.g. no docs, new APIs, etc) feature New feature or request and removed feature New feature or request enhancement Improve something existing (e.g. no docs, new APIs, etc) labels Feb 27, 2024
@thescientist13 thescientist13 mentioned this issue Mar 9, 2024
37 tasks
@thescientist13 thescientist13 linked a pull request Mar 10, 2024 that will close this issue
37 tasks
@thescientist13 thescientist13 pinned this issue Mar 10, 2024
@thescientist13 thescientist13 unpinned this issue Sep 23, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
alpha.0 breaking bug Something isn't working documentation Greenwood specific docs feature New feature or request Plugins Greenwood Plugins SSR v0.30.0
Projects
1 participant