πΎπΎπΎ GIT CLONE 2.0 LOCAL DEMO πππ
For "power users" the SPA is dead. If you're not universally rendering on the server you're doing it "wrong." You're losing money for you, your clients, your employers. All hail the Google god.
This is the final universal component for React you'll ever need, and it looks like this:
import universal from 'react-universal-component'
const UniversalComponent = universal(props => import(`./${props.page}`))
export default () =>
<div>
<UniversalComponent page='Foo' />
</div>
It's made possible by our PR to webpack which built support for require.resolveWeak(`'./${page}`)
. Before it couldn't be dynamic--i.e. it supported one module, not a folder of modules.
You no longer need to create a hash of all your universal or loadable components. You can frictionlessly support multiple components in one HoC as if imports weren't static. This seamingly small thing--we predict--will lead to universal rendering finally becoming commonplace. It's what a universal component for React is supposed to be.
Of course, you also need webpack-flush-chunks to bring this together server-side. Ultimately that's the real foundation here and the most challenging part. Packages in the past like React Loadable did not address this aspect. They excelled at the SPA. In terms of universal rendering, they got you maybe 15% of the way by providing the module IDs rendered. There's a lot more than that.
In the future both packages will be distilled into one product called universal-render
--or "Universal" for short. The transition will be seamless. We're making this space as easy as possible for "power users" like yourself that prefer the frameworkless approach over the constraints of a framework like Next.js.
DEFINITION: "Universal Rendering" is simutlaneous SSR + Splitting, not trading one for the other.
That's probably because you were trapped in SPA land. If you didn't know how much of a pain in the ass universal rendering has been, check this quote from the React Router docs:
If you were already in the know, you're probably one of our first users, and we thank you for your support and feeling the essence of our mission. Thank god this is over!
yarn add react-universal-component
.babelrc:
{
"plugins": ["universal-import"]
}
For Typescript or environments without Babel, just copy what babel-plugin-universal-import does.
Reactlandia Articles:
-
react-universal-component-2-and-babel-plugin-universal-import π
-
how-to-use-webpack-magic-comments-with-react-universal-component
To be clear, you can get started with just the simple HoC
shown at the top of the page, but to accomplish universal rendering, you will need to follow the directions in the webpack-flush-chunks package:
And if you want CSS chunks (which we highly recommend), you will need:
universal(asyncComponent, options)
asyncComponent:
props => import(`./${page}`)
import('./Foo')
// doesn't need to be wrapped in a function when using the babel plugin!(props, cb) => require.ensure([], require => cb(null, require('./Foo')))
The first argument can be a function that returns a promise, a promise itself, or a function that takes a node-style callback. The most powerful and popular is a function that takes props as an argument.
Options (all are optional):
loading
: LoadingComponent, -- default: a simple one is provided for youerror
: ErrorComponent, -- default: a simple one is provided for youkey
:'foo'
||module => module.foo
-- default:default
export in ES6 andmodule.exports
in ES5timeout
:15000
-- defaultonError
: `(error, { isServer }) => handleError(error, isServer)onLoad
:(module, { isSync, isServer }) => doSomething(module, isSync, isServer)
minDelay
:0
-- defaultalwaysDelay
:false
-- defaultloadingTransition
:true
-- default
In Depth:
All components can be classes/functions or elements (e.g:
Loading
or<Loading />
)
-
loading
is the component class or function corresponding to your stateless component that displays while the primary import is loading. While testing out this package, you can leave it out as a simple default one is used. -
error
similarly is the component that displays if there are any errors that occur during your aynschronous import. While testing out this package, you can leave it out as a simple default one is used. -
key
lets you specify the export from the module you want to be your component if it's notdefault
in ES6 ormodule.exports
in ES5. It can be a string corresponding to the export key, or a function that's passed the entire module and returns the export that will become the component. -
timeout
allows you to specify a maximum amount of time before theerror
component is displayed. The default is 15 seconds. -
onError
is a callback called if async imports fail. It does not apply to sync requires. -
onLoad
is a callback function that receives the entire module. It allows you to export and put to use things other than yourdefault
component export, like reducers, sagas, etc. E.g:onLoad: module => store.replaceReducer({ ...otherReducers, foo: module.fooReducer })
. It's fired directly before the component is rendered so you can setup any reducers/etc it depends on. UnlikeonAfter
, it's only fired the first time the module is received. Also note: it will fire on the server, so doif (!isServer)
if you have to. -
minDelay
is essentially the minimum amount of time theloading
component will always show for. It's good for enforcing silky smooth animations, such as during a 500ms sliding transition. It insures the re-render won't happen until the animation is complete. It's often a good idea to set this to something like 300ms even if you don't have a transition, just so the loading spinner shows for an appropriate amount of time without jank. -
alwaysDelay
is a boolean you can set to true (default: false) to guarantee theminDelay
is always used (i.e. even when components cached from previous imports and therefore synchronously and instantly required). This can be useful for guaranteeing animations operate as you want without having to wire up other components to perform the task. Note: this only applies to the client when yourUniversalComponent
uses dynamic expressions to switch between multiple components. -
loadingTransition
when set tofalse
allows you to keep showing the current component when theloading
component would otherwise show during transitions from one component to the next.
Below is the most important thing on this page. It's a quick example of the connection between this package and webpack-flush-chunks:
import { flushChunkNames } from 'react-universal-component/server'
import flushChunks from 'webpack-flush-chunks'
import ReactDOM from 'react-dom/server'
export default function serverRender(req, res) => {
const app = ReactDOM.renderToString(<App />)
const { js, styles, cssHash } = flushChunks(webpackStats, {
chunkNames: flushChunkNames()
})
res.send(`
<!doctype html>
<html>
<head>
${styles}
</head>
<body>
<div id="root">${app}</div>
${cssHash}
${js}
</body>
</html>
`)
You can preload the async component if there's a likelihood it will show soon:
import universal from 'react-universal-component'
const UniversalComponent = universal(import('./Foo'))
export default class MyComponent extends React.Component {
componentWillMount() {
UniversalComponent.preload()
}
render() {
return <div>{this.props.visible && <UniversalComponent />}</div>
}
}
If your imported component has static methods like this:
export default class MyComponent extends React.Component {
static doSomething() {}
render() {}
}
Then this will work:
const MyUniversalComponent = universal(import('./MyComponent'))
// render it
<MyUniversalComponent />
// call this only after you're sure it has loaded
MyUniversalComponent.doSomething()
NOTE: for imports using dynamic expressions, conflicting methods will be overwritten by the current component
isLoading: boolean
error: new Error
onBefore
:({ isMount, isSync, isServer }) => doSomething(isMount, isSync, isServer)
onAfter
:({ isMount, isSync, isServer }, Component) => doSomething(Component, isMount, etc)
You can pass isLoading
and error
props to the resulting component returned from the universal
HoC. This has the convenient benefit of allowing you to continue to show the same loading
component (or trigger the same error
component) that is shown while your async component loads AND while any data-fetching may be occuring in a parent HoC. That means less jank from unnecessary re-renders, and less work (DRY).
Here's an example using Apollo:
const UniversalUser = universal(import('./User'))
const User = ({ loading, error, user }) =>
<div>
<UniversalUser isLoading={loading} error={error} user={user} />
</div>
export default graphql(gql`
query CurrentUser {
user {
id
name
}
}
`, {
props: ({ ownProps, data: { loading, error, user } }) => ({
loading,
error,
user,
}),
})(User)
If it's not clear, the same
loading
component will show while both async aspects load, without flinching/re-rendering. And perhaps more importantly they will be run in parallel.
onBefore/After
are callbacks called before and after the wrapped component changes. It's also called on componentWillMount
on both the client and server. If you chose to use it on the server, make sure the client renders the same thing on first load or you will have checksum mismatches.
It's primary use case is for triggering loading state outside of the component on the client during child component transitions. You can use its info
argument and keys like info.isSync
to determine what you want to do. Here's an example:
const UniversalComponent = univesal(props => import(`./props.page`))
const MyComponent = ({ dispatch, isLoading }) =>
<div>
{isLoading && <div>loading...</div>}
<UniversalComponent
page={props.page}
onBefore={({ isSync }) => !isSync && dispatch({ type: 'LOADING', true })}
onAfter={({ isSync }) => !isSync && dispatch({ type: 'LOADING', false })}
/>
</div>
Each callback is passed an info
argument containing these keys:
isMount
(whether the component just mounted)isSync
(whether the imported component is already available from previous usage and required synchronsouly)isServer
(very rarely will you want to do stuff on the server; note: server will always be sync)
onAfter
is also passed a second argument containing the imported Component
, which you can use to do things like call its static methods.
NOTE:
onBefore
andonAfter
will fire synchronously a millisecond a part after the first timeComponent
loads (and on the server). Your options are to only trigger loading state when!info.isSync
as in the above example, or you can use theinfo
argument withminDelay
+alwaysDelay
to insure the 2 callbacks always fire, e.g., 300ms a part. The latter can be helpful to produce consistent glitch-free animations. A consistent300ms
or even500ms
wait doesn't hurt user-experience--what does is unpredictability, glitchy animations and large bundles π
πΎπΎπΎ faceyspacey/universal-demo πππ
git clone https://github.com/faceyspacey/universal-demo.git
cd universal-demo
yarn
yarn start
We use commitizen, so run npm run cm
to make commits. A command-line form will appear, requiring you answer a few questions to automatically produce a nicely formatted commit. Releases, semantic version numbers, tags, changelogs and publishing to NPM will automatically be handled based on these commits thanks to semantic-release. Be good.
Reviewing a module's tests are a great way to get familiar with it. It's direct insight into the capabilities of the given module (if the tests are thorough). What's even better is a screenshot of the tests neatly organized and grouped (you know the whole "a picture says a thousand words" thing).
Below is a screenshot of this module's tests running in Wallaby ("An Integrated Continuous Testing Tool for JavaScript") which everyone in the React community should be using. It's fantastic and has taken my entire workflow to the next level. It re-runs your tests on every change along with comprehensive logging, bi-directional linking to your IDE, in-line code coverage indicators, and even snapshot comparisons + updates for Jest! I requestsed that feature by the way :). It's basically a substitute for live-coding that inspires you to test along your journey.
- redux-first-router. It's made to work perfectly with Universal. Together they comprise our "frameworkless" Redux-based approach to what Next.js does (splitting, SSR, prefetching, routing).