GithubHelp home page GithubHelp logo

Comments (8)

catamphetamine avatar catamphetamine commented on May 28, 2024

I didn't understand what you're trying to say here

from react-pages.

catamphetamine avatar catamphetamine commented on May 28, 2024

I think I get what you mean.

https://github.com/halt-hammerzeit/react-isomorphic-render/blob/122c2e82ef9a41ed971cc4f8edc8e7c7e146bf14/source/page-server/render.js#L68-L77
head is evaluated before the page is rendered:
https://github.com/halt-hammerzeit/react-isomorphic-render/blob/e55b9a29effb956f389f961a8b3080bb83448820/source/redux/server/render.js#L76

I could move head evaluation to render_webpage():
https://github.com/halt-hammerzeit/react-isomorphic-render/blob/122c2e82ef9a41ed971cc4f8edc8e7c7e146bf14/source/page-server/render.js#L132
In this case it will be evaluated after the React page has been rendered.

Would that solve this issue.
Or did you choose a different approach.

from react-pages.

benoneal avatar benoneal commented on May 28, 2024

Yeah deferring the head evaluation would work great.

from react-pages.

catamphetamine avatar catamphetamine commented on May 28, 2024

Done in 1c2ad46
Install the latest version

from react-pages.

catamphetamine avatar catamphetamine commented on May 28, 2024

All this rewind machinery is not thread safe by the way.
nfl/react-helmet#240
So if using alternative react renderers (like streaming ones) all those "side effects" won't work.

from react-pages.

benoneal avatar benoneal commented on May 28, 2024

It seems this still isn't resolved. Looking at the code, it's an easy fix.

https://github.com/halt-hammerzeit/react-isomorphic-render/blob/master/source/page-server/render.js:151

content needs to be resolved at line 125, right before head is executed.

Like this:

render_webpage(content)
{
  ...
  // Normalize `html` parameters
   content = render === false ? normalize_markup(loading) : (content && ReactDOM.renderToString(content))
  head       = normalize_markup(typeof head       === 'function' ? head      (path, parameters) : head)
  ...

  // Render the HTML
  return Html
  ({
    ...parameters,
    extension_javascript: typeof extension_javascript === 'function' ? extension_javascript() : extension_javascript,
    assets,
    locale,
    locale_messages_json: messagesJSON,
    head,
    body_start,
    body_end,
    authentication_token,
    content
  })
}

from react-pages.

catamphetamine avatar catamphetamine commented on May 28, 2024

Yeah, that will do.
Released [email protected]

from react-pages.

benoneal avatar benoneal commented on May 28, 2024

That appears to have done the trick 👍

from react-pages.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.