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

TypeError: rNode.getAttribute is not a function when using angular-three with SSR #70

Closed
ldu0009 opened this issue Jan 15, 2025 · 3 comments
Assignees
Labels
bug Something isn't working

Comments

@ldu0009
Copy link

ldu0009 commented Jan 15, 2025

I am using angular-three in an Angular 19 project, and everything works fine in the client-side rendering. However, when using SSR (Server-Side Rendering) or during the hydration process, the following error occurs:

chunk-WDMUDEB6.js?v=f3d82817:48 ERROR TypeError: rNode.getAttribute is not a function
    at retrieveHydrationInfoImpl (core.mjs:9330:28)
    at retrieveHydrationInfo (core.mjs:9414:10)
    at ComponentFactory.create (core.mjs:17330:25)
    at ViewContainerRef2.createComponent (core.mjs:17773:43)
    at _NgtCanvas.noZoneRender (angular-three.mjs:2731:59)
    at angular-three.mjs:2681:18
    at _ZoneDelegate.invoke (zone.js:369:28)
    at ZoneImpl.run (zone.js:111:43)
    at _NgZone.runOutsideAngular (core.mjs:6391:24)
    at effect.injector [as fn] (angular-three.mjs:2676:19)

Steps to Reproduce:
1. Set up an Angular 19 project with SSR enabled.
2. Install and use angular-three in the project.
3. Create a component using to render a 3D scene.
4. Attempt SSR rendering or hydration.

@nartc nartc added the bug Something isn't working label Jan 15, 2025
@nartc nartc self-assigned this Jan 15, 2025
@nartc
Copy link
Member

nartc commented Jan 18, 2025

Can you try out 3.6.1? At least the error is gone. I'm not too familiar with Angular SSR to test/ensure the experience with SSR-enabled application. Technically, Angular Three NgtCanvas is already initializing everything in afterNextRender but there might be some other SSR-specific technicalities that mess it up. For example:

  • Everytime I add a feature of Angular Three like viewChild to get reference of the THREE element on the template or use events like (pointerover), I have to restart the dev server altogether
  • HMR doesn't seem to work
  • I have to wrap ngt-canvas in @defer (Only the first time the dev server runs; subsequent times are fine without @defer 🤷

So I'll leave this issue open for now. Thanks for reporting

@kylecannon
Copy link

kylecannon commented Jan 31, 2025

seeing this in the demos: https://angularthreedemo.netlify.app/soba/stars if you click the examples in the bottom left

Image

@nartc
Copy link
Member

nartc commented Feb 1, 2025

Thanks for reporting. Fixed in 3.7.2

@nartc nartc closed this as completed Feb 1, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

3 participants