You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Problem
For SEO reasons as well as to prevent FOUC we prerender our Elm apps with certain tools. That means that by the time the Elm app initializes the DOM is already filled and the Elm app is supposed to "take it from there".
However, links are broken then, in the sense that they will cause a full page reload instead of be intercepted by Browser.application.
Cause
Before Browser.application initializes it seems to call _VirtualDom_virtualize()here in order to hydrate the vdom. Since the content is the same it would render initally the DOM will be left as is. This is problematic because links will not get the same treatment as other links in Browser.application that is happening here
Proposed solution
Add special treatment for links when virtualizing the DOM in this scenario so that clicks on those links will be intercepted as well.
Possible workaround
Whiping the DOM clean before Elm initializes. :-/
SSCCE
<html><!-- note the lack of whitespace after the body tag, to make sure no text nodes get inserted by the virtual DOM virtualize function --><body><ahref="/blog">Prerendered: This link WILL NOT be intercepted by Browser.application</a><scriptsrc="/elm.js"></script><script>Elm.Main.init()</script></body></html>
moduleMainexposing (..)
importBrowserimportHtmlexposing (..)
importHtml.Attributesexposing (href)
view model =Browser.Document"SSCCE"[ a [ href "/blog"][ text "Prerendered: This link WILL NOT be intercepted by Browser.application"], br [][], br [][], a [ href "/blog"][ text "Dynamically rendered: This link WILL be intercepted by Browser application"]]main =Browser.application
{ init =\() url key ->((),Cmd.none ), view = view
, update =\msg model ->( model,Cmd.none ), subscriptions =\()->Sub.none
, onUrlRequest =\urlRequest ->(), onUrlChange =\url ->()}
Problem
For SEO reasons as well as to prevent FOUC we prerender our Elm apps with certain tools. That means that by the time the Elm app initializes the DOM is already filled and the Elm app is supposed to "take it from there".
However, links are broken then, in the sense that they will cause a full page reload instead of be intercepted by
Browser.application
.Cause
Before
Browser.application
initializes it seems to call_VirtualDom_virtualize()
here in order to hydrate the vdom. Since the content is the same it would render initally the DOM will be left as is. This is problematic because links will not get the same treatment as other links inBrowser.application
that is happening hereProposed solution
Add special treatment for links when virtualizing the DOM in this scenario so that clicks on those links will be intercepted as well.
Possible workaround
Whiping the DOM clean before Elm initializes. :-/
SSCCE
The text was updated successfully, but these errors were encountered: