$ npm install react-imported-component
👉 Usage | API | SSR | Concurrent loading
Key features:
Other features:
👍 Better than React.Lazy:
👍 Better than Loadable-Component:
👌 Not as good with
main one
, as long as loader code is bundled inside the main chunk, so it should be loaded first.progressive hydration
, and might provide a better UX via feature detection.Just a proper setup and a bit of magic
imported
provides 2 common ways to define a component, which are more different inside than outside
pre-lazy
API.import importedComponent from 'react-imported-component';
const Component = importedComponent( () => import('./Component'));
const Component = importedComponent( () => import('./Component'), {
LoadingComponent: Spinner, // what to display during the loading
ErrorComponent: FatalError // what to display in case of error
});
Component.preload(); // force preload
// render it
<Component... />
lazy
API. It's almost the same React.lazy
outside, and exactly the same inside.import {lazy, LazyBoundary} from 'react-imported-component'
const Component = lazy(() => import('./Component'));
const ClientSideOnly = () => (
<Suspense>
<Component />
</Suspense>
);
// or let's make it SSR friendly
const ServerSideFriendly = () => (
<LazyBoundary> // LazyBoundary is Suspense on the client, and "nothing" on the server
<Component />
</LazyBoundary>
)
LazyBoundary
is a Suspense
on Client Side, and React.Fragment
on Server Side. Don't forget - "dynamic" imports are sync on a server.
Example: React.lazy vs Imported-component
However, you may not load only components - you may load anything
import {useImported} from 'react-imported-component'
const MyCalendarComponent = () => {
const {
moment,
loading
} = useImported(() => import("moment"));
return loading ? "..." : <span>today is {moment(Date.now).format()}</span>
}
// or we could make it a bit more interesting...
const MyCalendarComponent = () => {
const {
imported: format = x => "---", // default value is used while importing library
} = useImported(
() => import("moment"),
moment => x => moment(x).format // masking everything behind
);
return <span>today is {format(Date.now())</span>
}
What you could load using useImported
? Everything - imported
itself is using it to import components.
import {*} from 'react-imported-component';
importedComponent(importFunction, [options]): ComponentLoader
- main API, default export, HOC to create imported component.
`importFunction - function which resolves with Component to be imported.
options
- optional settings
options.async
- activates react suspense support. Will throw a Promise in a Loading State - use it with Suspense in a same way you use React.lazy.
options.LoadingComponent
- component to be shown in Loading state
options.ErrorComponent
- component to be shown in Error state. Will re-throw error if ErrorComponent is not set. Use ErrorBoundary to catch it.
options.onError
- function to consume the error, if one will thrown. Will rethrow a real error if not set.
options.exportPicker
- function to pick not default
export from a importFunction
options.render(Component, state, props)
- function to render the result. Could be used to tune the rendering.
[static] .preload
- static method to preload components.
lazy(importFunction)
- helper to mimic React.lazy behavior
useImported(importFunction, exportPicker?)
- code splitting hook
importFunction
- a function which resolves to default
or wildcard
import(T | {default:T})exportPicker
- function to pick "T" from the importimport {*} from 'react-imported-component/server';
whenComponentsReady():Promise
- will be resolved, when all components are loaded. Usually on the next "Promise" tick.drainHydrateMarks([stream])
- returns the currently used marks, and clears the list.printDrainHydrateMarks([stream])
- print our the drainHydrateMarks
.createLoadableStream
- creates a steamImportedStream
- wraps another component with import usage tracker.createLoadableTransformer
- creates nodejs StreamTransformergetLoadableTrackerCallback
- helper factory for the stream transformerimport {*} from 'react-imported-component/boot';
whenComponentsReady():Promise
, will be resolved, when all (loading right now) marks are loaded.rehydrateMarks([marks]):Promise
, loads marked async chunks.injectLoadableTracker
- helper factory for the stream transformerbabel
pluginyarn imported-components src src/imported.js
to extract all your imports into a run time chunk
(aka async-requires).React.lazy
with our lazy
, and React.Suspense
with our LazyBoundary
.printDrainHydrateMarks
to the server code code.rehydrateMarks
to the client codeThere are examples for webpack, parcel, and react-snap. Just follow them.
On the server:
{
"plugins": ["react-imported-component/babel", "babel-plugin-dynamic-import-node"/* might be optional for babel 7*/]
}
On the client:
{
"plugins": ["react-imported-component/babel"]
}
Imported-Component will hook into dynamic imports, providing extra information about files you want to load.
CLI command imported-components [sources ROOT] [targetFile.js]
(use .ts for TypeScript)
"generate-imported-component": "imported-components src src/imported.js"
When you will execute this command - all imports
among your codebase would be found and extracted to a file provided.
This will gave ability to orchestrate code-splitting later.
The current implementation will discover and use all
imports
, even // commented ones
imported
, lazy
or useImported
Without you using API provided nothing would work.
There are two ways to do it - in a single threaded way, and async
import { printDrainHydrateMarks, drainHydrateMarks } from 'react-imported-component';
// this action will "drain" all currently used(by any reason) marks
// AND print a script tag
const html = renderToString(<YourApp />) + printDrainHydrateMarks();
// OR return list of usedmarks, and yet again CLEAR the marks list.
const html = renderToString(<YourApp />) + "<script>const marks="+JSON.stringify(drainHydrateMarks())+"</script>";
import {createLoadableStream} 'react-imported-component';
let importedStream = createLoadableStream();
// ImportedStream is a async rendering "provider"
const stream = renderToStream(
<ImportedStream stream={importedStream}>
<YourApp />
</ImportedStream>
);
// you'd then pipe the stream into the response object until it's done
stream.pipe(res, { end: false });
// and finalize the response with closing HTML
stream.on('end', () =>
// print marks used in the file
res.end(`${printDrainHydrateMarks(importedStream)}</body></html>`),
)
However, the idea is just to use streams
to separate renders
const html = renderToString(<ImportedStream stream={importedStream}><YourApp /></ImportedStream>) + printDrainHydrateMarks(importedStream);
rehydrateMarks
to the client codeBefore rendering your application you have to ensure - all parts are loaded.
rehydrateMarks
will load everything you need, and provide a promise to await.
import { rehydrateMarks } from 'react-imported-component';
// this will trigger all marked imports, and await for competition.
rehydrateMarks().then(() => {
// better
ReactDOM.hydrate(<App />, document.getElementById('main'));
// or
ReactDOM.render(<App />, document.getElementById('main'));
});
rehydrateMarks
accepts a list of marks
from a server side(drainHydrateMarks
), loads all
necessary chunks and then resolves.
All other code splitting libraries are working a bit differently - they amend webpack
building process,
gathering information about how the final chunks are assembled, and injects the real scripts and styles to the server response,
thus all scripts, used to render something on the Server would be loaded in a parallel in on Client.
Literally - they are defined in the HTML.
React-imported-component
is different, it starts "working" when the bundle is loaded, thus
loading of chunks is deferred.
In the normals conditions
react-imported-component
would be "slower" than a "webpack" library.
However, it is not a problem, as long as (for now), script execution is single trhreaded, and even you if can load multiple scripts simultaneously - you can't run them in parallel*.
Just change your entry point, to utilize this limitation.
Let's call it - Scheduler optimization.
boot
and main
partsrehydrate
at the boot // index.js (boot)
import './src/imported'; // the file generated by "generate-imported-component" (.2)
import {rehydrateMarks} from 'react-imported-component/boot';
rehydrateMarks(); // just start loading what's needed
// load/execute the rest after letting the browser kick off chunk loading
// for example wrapping it in two Promises (1ms timeout or setImmediate)
Promise.resolve().then(() =>
Promise.resolve().then(() => {
// load the rest
require('./main');
// don't forget to `await rehydrateMarks()` before render
})
);
This will just start loading extra chunks before the main bundle got completely parsed and executed.
See examples/SSR/parcel-react-ssr/server-stream for details
head
, using async script tag. Not defer! We have to do it asyncloadableTracker
at server sideimport {createLoadableTransformer, getLoadableTrackerCallback} from 'react-imported-component/server';
const importedTracker = createLoadableTransformer(
loadableStream, // stream to observe
getLoadableTrackerCallback() // helper factory to create global tracker.
);
// pipe result of `renderToStream` throught it
const reactRenderStream = ReactDOM.renderToNodeStream(...).pipe(importedTracker);
loadableTracker
at client side // index.js
import './src/imported'; // the file generated by "generate-imported-component" (.2)
import {injectLoadableTracker} from 'react-imported-component/boot';
injectLoadableTracker();
// load the rest after letting the browser kick off chunk loading
// for example wrapping it in two Promises (1ms timeout or setImmediate)
Promise.resolve().then(() =>
Promise.resolve().then(() => {
require('./main')
})
);
This "hack", will first introduce all possible imports
to the imported-component
, then gave it a "tick"
to start loading required once, and only then execute the rest of the bundle.
While the rest(99%) of the bundle would make CPU busy - chunks would be loaded over the network.
This is utilizing the differences between
parse
(unenviable) phase of script, and execute one.
Just wrap "partial hydrated" component with another ImportedStream
so everything needed for it would be not automatically loaded with the main stream.
This library could support hybrid rendering (aka pre-rendering) compatible in two cases:
state hydration
, like getState
in react-snap. See our example.react-snap
example, just dump state
using setTimeout
.react-prerendered-component
to maintain a component state until async chunk is not loaded. See example below.You might not need to wait for all the chunks to be loaded before you can render you app - just use react-prerendered-component.
import imported from 'react-imported-component';
import {PrerenderedComponent} from "react-prerendered-component";
const AsyncComponent = imported(() => import('./myComponent.js'));
<PrerenderedComponent
// component will "go live" when chunk loading would be done
live={AsyncComponent.preload()}
>
// until component is not "live" prerendered HTML code would be used
// that's why you need to `preload`
<AsyncComponent/>
</PrerenderedComponent>
React-prerendered-component is another way to work with code splitting, which makes everything far better.
First class. Literally CSS-in-JS library, like styled-component
will do it by themselves, and there is nothing
to be managed by this library
This library does not support CSS as CSS, as long it's bundler independent. However, there is a bundler independent way to support CSS:
classNames
(just remove style-loader
from webpack configuration)used-styles
to inject used css files to the resulting HTML.In short (streamed example is NOT short)
const markup = ReactDOM.renderToString(<App />)
const usedStyles = getUsedStyles(markup, lookup);
If you need streamed
example with reduced TTFB -
please refer to used-styles documentation, or our parcel-bundler stream server example.
There is no build in timeouts to display Error or Loading states. You could control everything by yourself
Suspense
:P.You may use component api if you need it by any reason.
import {ComponentLoader} from 'react-imported-component';
const MyPage = () => (
<ComponentLoader
loadable={() => import('./Page.js')}
// all fields are optional, and matches the same field of importedComponent.
LoadingComponent={Loading}
ErrorComponent={Error}
onError
exportPicker
render
async
/>
);
It was usually a headache - async components and SSR, which is currently sync. React-imported-component break this cycle, making ServerSide rendering sync, and providing comprehensive ways to rehydrate rendered tree on client. It will detect server-side environment and precache all used components.
It does not matter how do you bundle your application - it could be even browser. The secrect sause is a cli command, to extract all your imports into imports map, and use it later to load chunks by request.
There is design limitation with React.lazy support from RHL size, so they could not be reloaded without
state loss if lazy
is created not in the user space. At it would be created inside imported.
If React-Hot-Loader is detected lazy
switches to imported async
mode, this behaves absolutely the same.
Another loaders exists, and the only difference is in API, and how they manage (or not manage) SSR.
MIT
© 2010 - cnpmjs.org x YWFE | Home | YWFE