Embedded vaadin flow component disappears after session timeout and also loads styles from wrong location.
Description of the bug
I have a vaadin flow component exported through WebComponentExporter and embedded in another page. When I e.g. let the laptop sleep for longer than session timeout duration or just put the browser to offline in Network tab in Developer tools, the server session expires in meantime and the embedded component disappears from page - it's still there in html source, but with nothing inside its shadow-root except one style element. I managed to replicate it also with latest skeleton starter application downloaded from vaadin.com where I just added the WebComponentExporter for the sample view, added cors filter bean registration and set the servlet session timeout to 60 seconds. After waiting for over 60 seconds in offline mode and then disabling offline mode the embedded component tries to resynchronize on next heartbeat or any other request to server and then disappears.
Also the embedded component tries to incorretly download styles from wrong host - my vaadin flow app is running on port 8080 and the embedded components tries to load styles from the page where it is embedded instead.
Browser console log: localhost-1718905756488.log
Expected behavior
Embedded flow component should not dissapear after server session expires. Styles should be loaded from correct url.
Minimal reproducible example
See https://github.com/ggecy/embedded-component-issues
- Clone the repo, build and start the vaadin application. I changed the session timeout to 60 seconds and heartbeat to 15 seconds. There is also cors filter registration bean to add cors headers. I also added WebComponentExporter for sample view.
- In
react-appsubfolder, I created a blank react app where inpublic/index.htmlI added the embedded webcomponent. Go to this subfolder and runnpm installand thennpm run startto start the app on port 3000. - Open the
http://localhost:3000in chrome, the page should open with embedded component displayed. Open developer tools and in Network tab at the top choose Offline from throttling menu. - Wait for longer than 60 seconds until session expires on backend.
- Change offline mode back to no thottling.
- The embedded component should try to resynchronize with server on next heartbeat or when you try to submit a value from textfield.
- Embedded component disappears.
Versions
- Vaadin / Flow version: 24.4.3
- Java version: 17
- OS version: MacOS 14.5
- Browser version (if applicable): Arc 1.47.1 (latest)
- IDE (if applicable): Intellij Idea Ultimate
It seems that during resynchronize, some code tries to set the exported web component $server.disconnected function while $server is undefined, it seems to be this place: https://github.com/vaadin/flow/blob/e4c75ce01c985722dc4550b697fd48ea8e6e7baf/flow-client/src/main/java/com/vaadin/client/SystemErrorHandler.java#L193
See also: https://vaadin.com/forum/t/embedded-vaadin-flow-component-disappears-after-session-timeout/166573
Any updates? This has been under investigation for over a month now...
No updates unfortunately, we have no solution at the moment, but will be keeping an eye on it and continue as soon as we can.
I'm struggling with the same issue.
Is there any possiblity to remove or shutdown a web component completely, without reloading the page?
Thanks
What I found is that there is something happening when Push is in use. So if I do not have Push enabled the resync works, but with push enabled there are 2 webcomponent-resync calls which breaks the webcomponent.
So as a workaround one can use polling from the webcomponent instead of push while we try to get a fix for the problem with push.
This ticket/PR has been released with Vaadin 24.6.0.alpha3 and is also targeting the upcoming stable 24.6.0 version.
This ticket/PR has been released with Vaadin 24.4.17.
This ticket/PR has been released with Vaadin 24.5.5.
Theme css is still loaded from wrong path even with vaadin version 24.6.0. React app is running at http://localhost:3000, vaadin is running on http://localhost:8080, the web component is loaded from http://localhost:8080/web-component/commons-template-main-view.js but it adds <link rel="stylesheet" type="text/css" href="VAADIN/themes/my-theme/document.css"> to header (without correct host and port) and this file is obviously not accessible at http://localhost:3000/VAADIN/themes/my-theme/document.css
Re-opened for further investigation.
This ticket/PR has been released with Vaadin 24.8.0.alpha2 and is also targeting the upcoming stable 24.8.0 version.
This ticket/PR has been released with Vaadin 24.5.14.
This ticket/PR has been released with Vaadin 24.6.7.