lp-loader
v1.0.0-pre.1
Published
Frictionless language packs for Webpack.
Downloads
146
Maintainers
Readme
LP-Loader for Webpack
Frictionless language packs for apps loaded and bundled with Webpack. Though
L
may stand for anything, may call itLabel
for general case.
A simple way to load on demand any set of data bundled with Webpack.
Works with Webpack 3 and 4.
What it does
Simple example of bundling language packs.
Say you have tree components in your application that you going to bundle with webpack.
- app/A
- app/B
- app/C
For every component you have specific language dictionaries:
app/A/dict/
en.json
ru.json
app/B/dict/
en.json
ru.json
app/C/dict/
en.json
ru.json
Say due to your app config webpack produces two bundles:
bundle-AB
- containsA
andB
componentsbundle-C
- separate bundle that containsC
component.
Using Lp-loader
you will get separate bundles for corresponding dictionaries:
bundle-AB.en.lp.js - will contain `ru` dictionaries for A and B
bundle-AB.ru.lp.js - will contain `en` dictionaries for A and B
bundle-C.en.lp.js - will contain `ru` dictionaries for C
bundle-C.ru.lp.js - will contain `en` dictionaries for C
Particular language bundle will be loaded dynamically on demand when it will be accessed from it's parent bundle code. If language is not used, language data bundles are not loaded.
Actually, LP-loader
can be used to bundle this way not only language packs, but any labeled sets of data or code that should be loaded dynamically on demand.
Install
yarn add lp-loader [--dev]
Configuration
This is the example with TypeScript based dictionaries, so you have to have following files:
app/A/
A.ts - component file
app/A/dict/
en.ts - dict for `english` language
ru.ts - dict for `russian` language
index.ts - lp-index file
Your lp-index file (app/A/dict/index.ts
) may be empty in case of JS
, but it should exist anyway, its loaded content will be generated while build. In case of TS
for correct typings code like this should be put inside:
type Dict = { /* Here goes a dictionary structure */ }
declare const getDict: (lang: string) => Promise<Dict>
export default getDict
In component file you import lp-index file
import getDict from './dict'
let lang = 'en'
// this is how you access dictionary data for particular language
getDict(lang).then(dict => ...)
In webpack.config
you should define loader for this files:
{
test: /dict(\\|\/)index.ts/, loaders: [
{ loader: 'lp-loader', options: { name: 'language.pack' } },
// determine transform loaders for lp-index files:
{ loader: 'ts-loader', options: tsLoaderOptions }
]
},
{
test: /\.ts$/,
loader: 'ts-loader',
// dont forget to exclude lp-index files from general loader rules:
exclude: [/dict(\\|\/)index.ts/],
options: tsLoaderOptions
},
Loader options:
export interface LoaderOptions {
/**
* Name of particular label kind, default is `lp`
* Should use different names for different kinds of content.
* Label name should not contain dots.
*/
name?: string,
/**
* Custom promise library name to be imported.
*/
promiseLib?: string,
/**
* Target ES format for exporting loading function.
* Default is es6.
*/
exportTarget?: 'es5' | 'es6'
/**
* Default is `exports.default = ...`
* If you seet empty string then export will be `exports = ` for ES5 format
*/
exportName?: string
/**
*
* Match labeled files (tests full path), RegExp or function,
* By default index.* files are excluded, you may override it with this option.
*/
include?: RegExp | ((filePath: string) => boolean),
/**
*
* Do not consider folders as labeled data. By default `false`
*/
excludeFolders?: boolean
}
How it works
It is quite simple. Loader finds chunk parents of the dictionary index, and generates special code to allow loading requested dictionary data on demand (via Promise
based API).
You may want to look at the example app code
Licence
WTF.