Giter VIP home page Giter VIP logo

Comments (4)

ctrlplusb avatar ctrlplusb commented on September 10, 2024

Ok, so to be clear the potential performance issues lie within the server side rendering logic. We have to walk your react element tree prior to render (and execute componentWillMount along the way to keep in line with a "standard" server side render). This allows us to discover AsyncComponent instances and prebake them prior to render. Although this operation isn't as expensive as an actual render as we don't generate the DOM it can still be quite wasteful if you have a deep tree. Therefore to allow for optimisation I am thinking of introducing a new configuration object property for the createAsyncComponent helper: ssrMode. It will support the following values:

  • "render" : Default. In this mode a server side render will parse and resolve your AsyncComponent and then continue walking down through the child elements of your resolved AsyncComponent. This is the most expensive operation.
  • "defer" : When set your AsyncComponent will not be resolved during server side rendering and will defer to the browser/client for resolving and rendering of it. This is the cheapest operation.
  • "boundary" : In this mode your AsyncComponent will be resolved and rendered on the server, however, it's children will not be walked over to try and find nested AsyncComponent instances. If there are any nested instances their resolving and rendering will be deferred to the browser/client.

Understand your own applications needs and use the options appropriately . I personally recommend using mostly "defer" and a bit of "boundary". Try to see code splitting as allowing you to server side render an application shell to give the user perceived performance. Of course there will be requirements otherwise (SEO), but try to isolate these components and use a "boundary" as soon as you feel you can.

Thoughts?

from react-async-component.

ctrlplusb avatar ctrlplusb commented on September 10, 2024

Also, the above will deprecate the current "defer" configuration property.

from react-async-component.

ctrlplusb avatar ctrlplusb commented on September 10, 2024

Works a treat!

from react-async-component.

ctrlplusb avatar ctrlplusb commented on September 10, 2024

Released in 0.2.0 🎉

from react-async-component.

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.