Giter VIP home page Giter VIP logo

Comments (2)

neenhouse avatar neenhouse commented on September 10, 2024 2

@mschipperheyn @anilanar

I followed this thread here and here is one possible solution implementing LoadingComponent:

class SSRAsyncLoadingComponent extends Component {
    shouldComponentUpdate() {
        return false;
    }
    getExistingHtml(selector) {
        if (typeof document === 'undefined') { 
            return null;
        }
        const node = document.querySelector(selector);
        return (node && node.innerHTML) ? node.innerHTML : `Error: Element with ${selector} not found`;
    }
    render() {
        const selector = this.props.asyncLoading;
        const html = this.getExistingHtml(selector);
        return <div dangerouslySetInnerHTML={{__html: html}} />;
    }
}

const DeferredComponent = asyncComponent({
    resolve: () => import('path/to/header' /* webpackChunkName:"deferred" */),
    LoadingComponent: SSRAsyncLoadingComponent
});

*Rendering*

<div data-async-loading="header">
  <DeferredComponent asyncLoading="[data-async-loading=header]" ... />
</div>

Downside is your are rendering 2x on the client and in dev you get a mismatch error, but you save bandwidth / parse / execute of the bundle which is very significant performance gain for our use case and worth it.

from react-async-component.

anilanar avatar anilanar commented on September 10, 2024 1

I think the problem is react doesn't allow you to skip rendering subtrees and no-one could come up with a hack yet that would skip checksum checking and skip subtree rendering. So if you render in server and if you don't initially serve JS for subcomponents in the client side, you cannot render your App at all. If you do, your server rendered subcomponent would be replaced with a placeholder (such as Loading component) until subcomponent.js is downloaded and executed. If you really want to do it, you cannot stick to having a single root App for your whole application. You must have multiple roots and then you can load/mount them separately.

That won't allow you to have deep incremental component loading with full SSR. However that probably doesn't make much sense anyway.

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.