babel-plugin-universal-import
Installation
yarn add babel-plugin-universal-import
.babelrc:
{
"presets": [whatever you usually have],
"plugins": ["universal-import"]
}
What it does
Taking from the test snapshots, it does this:
universal(import('./Foo.js'))
↓ ↓ ↓ ↓ ↓ ↓
import { importCss as _importCss } from 'babel-plugin-universal-import/importCss.js'
import _path from 'path'
import { universalImport as _universalImport } from 'babel-plugin-universal-import/universalImport.js'
universal(_universalImport({
chunkName: () => 'Foo',
path: () => _path.join(__dirname, './Foo.js'),
resolve: () => require.resolveWeak('./Foo.js'),
load: () => Promise.all([import( './Foo.js'), _importCss('Foo')]),
id: './Foo.js',
file: 'parentFile.js',
}))
And if you're using dynamic imports:
universal(({ page }) => import(`../async/${page}`))
↓ ↓ ↓ ↓ ↓ ↓
import { importCss as _importCss } from 'babel-plugin-universal-import/importCss.js'
import _path from 'path'
import { universalImport as _universalImport } from 'babel-plugin-universal-import/universalImport.js'
universal(({ page }) => _universalImport({
chunkName: () => `async/${page}`,
path: () => _path.join(__dirname, `../async/${page}`),
resolve: () => require.resolveWeak(`../async/${page}`),
load: () => Promise.all([import( `../async/${page}`), _importCss(`async/${page}`)]),
id: '../async/${page}',
file: 'parentFile.js',
}));
It names all your chunks using magic comments 🔮 behind the scenes and is derived from the imported file. This works with both static and dynamic import paths, as you can see above.
Otherwise, what it's doing is providing all the different types of requires/paths/imports/etc needed by tools like react-universal-component to universally render your component.
The targeted use-case for all this is dynamic imports where you can pass a page
prop to the resulting component, thereby allowing you to create one <UniversalComponent page={page} />
for a large number your components. This is a major upgrade to the previous way of having to make a hash of a million async components in a wrapping component. You no longer have to think about Universal Components as anything different than your other components that use simple HoCs.
Perhaps the coolest part however is that it also attempts to import a separate CSS file along with js chunks for optimum chunk sizes, caching and performance. Look in what Promise.all
does.
And maybe even cooler to some: you don't have to do universal(() => import())
. I.e. you don't have to wrap it in a function any longer when using react-universal-component
, similar to dynamic(import())
in Next.js...unless of course you're making use of the awesome props feature, as showcased via the page
prop.
Babel Server Or Webpack < 2.2.20
If your compiling the server with Babel, you may need to add this babel-plugin as well: babel-plugin-dynamic-import-webpack. And if you're using a version of Webpack before 2.2.0, you also must add it.
Caveat
Lastly, to the discerning eye, you may be wondering if the return of import()
is still thenable?? It is! However, if you don't call .then
on it, somewhere (perhaps in the components like react-universal-component that you pass it to), then it won't perform the import. Since most of us are using modules, which we need to do something with in the then
callback, that's not a problem. But if you happen to be importing a module that does its own setup, such as attaches something to the window
object, well then you just need to call .then()
to trigger it. That's a rare case these days, which is why we decided to go with the simplicity seen here. And yes, async await works too.
Contributing
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.