Compress and lazy load locales (#2603)
* Compress and lazy load locales * Remove index.html when loading the locales on the web * Fix locale output path for web build
This commit is contained in:
parent
63946f7561
commit
ac4cc4a611
|
@ -0,0 +1,96 @@
|
||||||
|
const { existsSync, readFileSync } = require('fs')
|
||||||
|
const { brotliCompressSync, constants } = require('zlib')
|
||||||
|
const { load: loadYaml } = require('js-yaml')
|
||||||
|
|
||||||
|
class ProcessLocalesPlugin {
|
||||||
|
constructor(options = {}) {
|
||||||
|
this.compress = !!options.compress
|
||||||
|
|
||||||
|
if (typeof options.inputDir !== 'string') {
|
||||||
|
throw new Error('ProcessLocalesPlugin: no input directory `inputDir` specified.')
|
||||||
|
} else if (!existsSync(options.inputDir)) {
|
||||||
|
throw new Error('ProcessLocalesPlugin: the specified input directory does not exist.')
|
||||||
|
}
|
||||||
|
this.inputDir = options.inputDir
|
||||||
|
|
||||||
|
if (typeof options.outputDir !== 'string') {
|
||||||
|
throw new Error('ProcessLocalesPlugin: no output directory `outputDir` specified.')
|
||||||
|
}
|
||||||
|
this.outputDir = options.outputDir
|
||||||
|
|
||||||
|
this.localeNames = []
|
||||||
|
|
||||||
|
this.loadLocales()
|
||||||
|
}
|
||||||
|
|
||||||
|
apply(compiler) {
|
||||||
|
compiler.hooks.thisCompilation.tap('ProcessLocalesPlugin', (compilation) => {
|
||||||
|
|
||||||
|
const { RawSource } = compiler.webpack.sources;
|
||||||
|
|
||||||
|
compilation.hooks.processAssets.tapPromise({
|
||||||
|
name: 'process-locales-plugin',
|
||||||
|
stage: compiler.webpack.Compilation.PROCESS_ASSETS_STAGE_ADDITIONAL
|
||||||
|
},
|
||||||
|
async (_assets) => {
|
||||||
|
const promises = []
|
||||||
|
|
||||||
|
for (const { locale, data } of this.locales) {
|
||||||
|
promises.push(new Promise((resolve) => {
|
||||||
|
if (Object.prototype.hasOwnProperty.call(data, 'Locale Name')) {
|
||||||
|
delete data['Locale Name']
|
||||||
|
}
|
||||||
|
|
||||||
|
let filename = `${this.outputDir}/${locale}.json`
|
||||||
|
let output = JSON.stringify(data)
|
||||||
|
|
||||||
|
if (this.compress) {
|
||||||
|
filename += '.br'
|
||||||
|
output = this.compressLocale(output)
|
||||||
|
}
|
||||||
|
|
||||||
|
compilation.emitAsset(
|
||||||
|
filename,
|
||||||
|
new RawSource(output),
|
||||||
|
{ minimized: true }
|
||||||
|
)
|
||||||
|
|
||||||
|
resolve()
|
||||||
|
}))
|
||||||
|
}
|
||||||
|
|
||||||
|
await Promise.all(promises)
|
||||||
|
|
||||||
|
this.locales = null
|
||||||
|
})
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
loadLocales() {
|
||||||
|
this.locales = []
|
||||||
|
|
||||||
|
const activeLocales = JSON.parse(readFileSync(`${this.inputDir}/activeLocales.json`))
|
||||||
|
|
||||||
|
for (const locale of activeLocales) {
|
||||||
|
const contents = readFileSync(`${this.inputDir}/${locale}.yaml`, 'utf-8')
|
||||||
|
const data = loadYaml(contents)
|
||||||
|
|
||||||
|
this.localeNames.push(data['Locale Name'] ?? locale)
|
||||||
|
this.locales.push({ locale, data })
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
compressLocale(data) {
|
||||||
|
const buffer = Buffer.from(data, 'utf-8')
|
||||||
|
|
||||||
|
return brotliCompressSync(buffer, {
|
||||||
|
params: {
|
||||||
|
[constants.BROTLI_PARAM_MODE]: constants.BROTLI_MODE_TEXT,
|
||||||
|
[constants.BROTLI_PARAM_QUALITY]: constants.BROTLI_MAX_QUALITY,
|
||||||
|
[constants.BROTLI_PARAM_SIZE_HINT]: buffer.byteLength
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = ProcessLocalesPlugin
|
|
@ -27,7 +27,9 @@ const config = {
|
||||||
optimization: {
|
optimization: {
|
||||||
minimizer: [
|
minimizer: [
|
||||||
'...', // extend webpack's list instead of overwriting it
|
'...', // extend webpack's list instead of overwriting it
|
||||||
new JsonMinimizerPlugin()
|
new JsonMinimizerPlugin({
|
||||||
|
exclude: /\/locales\/.*\.json/
|
||||||
|
})
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
node: {
|
node: {
|
||||||
|
@ -70,7 +72,7 @@ if (isDevMode) {
|
||||||
to: path.join(__dirname, '../dist/static'),
|
to: path.join(__dirname, '../dist/static'),
|
||||||
globOptions: {
|
globOptions: {
|
||||||
dot: true,
|
dot: true,
|
||||||
ignore: ['**/.*', '**/pwabuilder-sw.js', '**/dashFiles/**', '**/storyboards/**'],
|
ignore: ['**/.*', '**/locales/**', '**/pwabuilder-sw.js', '**/dashFiles/**', '**/storyboards/**'],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
]
|
]
|
||||||
|
|
|
@ -4,6 +4,7 @@ const HtmlWebpackPlugin = require('html-webpack-plugin')
|
||||||
const VueLoaderPlugin = require('vue-loader/lib/plugin')
|
const VueLoaderPlugin = require('vue-loader/lib/plugin')
|
||||||
const MiniCssExtractPlugin = require('mini-css-extract-plugin')
|
const MiniCssExtractPlugin = require('mini-css-extract-plugin')
|
||||||
const CssMinimizerPlugin = require('css-minimizer-webpack-plugin')
|
const CssMinimizerPlugin = require('css-minimizer-webpack-plugin')
|
||||||
|
const ProcessLocalesPlugin = require('./ProcessLocalesPlugin')
|
||||||
|
|
||||||
const { productName } = require('../package.json')
|
const { productName } = require('../package.json')
|
||||||
|
|
||||||
|
@ -151,6 +152,19 @@ if (isDevMode) {
|
||||||
__static: `"${path.join(__dirname, '../static').replace(/\\/g, '\\\\')}"`,
|
__static: `"${path.join(__dirname, '../static').replace(/\\/g, '\\\\')}"`,
|
||||||
})
|
})
|
||||||
)
|
)
|
||||||
|
} else {
|
||||||
|
const processLocalesPlugin = new ProcessLocalesPlugin({
|
||||||
|
compress: true,
|
||||||
|
inputDir: path.join(__dirname, '../static/locales'),
|
||||||
|
outputDir: 'static/locales',
|
||||||
|
})
|
||||||
|
|
||||||
|
config.plugins.push(
|
||||||
|
processLocalesPlugin,
|
||||||
|
new webpack.DefinePlugin({
|
||||||
|
'process.env.LOCALE_NAMES': JSON.stringify(processLocalesPlugin.localeNames)
|
||||||
|
})
|
||||||
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
module.exports = config
|
module.exports = config
|
||||||
|
|
|
@ -6,6 +6,7 @@ const CopyWebpackPlugin = require('copy-webpack-plugin')
|
||||||
const MiniCssExtractPlugin = require('mini-css-extract-plugin')
|
const MiniCssExtractPlugin = require('mini-css-extract-plugin')
|
||||||
const JsonMinimizerPlugin = require('json-minimizer-webpack-plugin')
|
const JsonMinimizerPlugin = require('json-minimizer-webpack-plugin')
|
||||||
const CssMinimizerPlugin = require('css-minimizer-webpack-plugin')
|
const CssMinimizerPlugin = require('css-minimizer-webpack-plugin')
|
||||||
|
const ProcessLocalesPlugin = require('./ProcessLocalesPlugin')
|
||||||
|
|
||||||
const { productName } = require('../package.json')
|
const { productName } = require('../package.json')
|
||||||
|
|
||||||
|
@ -105,7 +106,9 @@ const config = {
|
||||||
optimization: {
|
optimization: {
|
||||||
minimizer: [
|
minimizer: [
|
||||||
'...', // extend webpack's list instead of overwriting it
|
'...', // extend webpack's list instead of overwriting it
|
||||||
new JsonMinimizerPlugin(),
|
new JsonMinimizerPlugin({
|
||||||
|
exclude: /\/locales\/.*\.json/
|
||||||
|
}),
|
||||||
new CssMinimizerPlugin()
|
new CssMinimizerPlugin()
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -160,7 +163,17 @@ if (isDevMode) {
|
||||||
})
|
})
|
||||||
)
|
)
|
||||||
} else {
|
} else {
|
||||||
|
const processLocalesPlugin = new ProcessLocalesPlugin({
|
||||||
|
compress: false,
|
||||||
|
inputDir: path.join(__dirname, '../static/locales'),
|
||||||
|
outputDir: 'static/locales',
|
||||||
|
})
|
||||||
|
|
||||||
config.plugins.push(
|
config.plugins.push(
|
||||||
|
processLocalesPlugin,
|
||||||
|
new webpack.DefinePlugin({
|
||||||
|
'process.env.LOCALE_NAMES': JSON.stringify(processLocalesPlugin.localeNames)
|
||||||
|
}),
|
||||||
new CopyWebpackPlugin({
|
new CopyWebpackPlugin({
|
||||||
patterns: [
|
patterns: [
|
||||||
{
|
{
|
||||||
|
@ -172,7 +185,7 @@ if (isDevMode) {
|
||||||
to: path.join(__dirname, '../dist/web/static'),
|
to: path.join(__dirname, '../dist/web/static'),
|
||||||
globOptions: {
|
globOptions: {
|
||||||
dot: true,
|
dot: true,
|
||||||
ignore: ['**/.*', '**/pwabuilder-sw.js', '**/dashFiles/**', '**/storyboards/**'],
|
ignore: ['**/.*', '**/locales/**', '**/pwabuilder-sw.js', '**/dashFiles/**', '**/storyboards/**'],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
]
|
]
|
||||||
|
|
|
@ -58,7 +58,6 @@
|
||||||
"http-proxy-agent": "^4.0.1",
|
"http-proxy-agent": "^4.0.1",
|
||||||
"https-proxy-agent": "^5.0.0",
|
"https-proxy-agent": "^5.0.0",
|
||||||
"jquery": "^3.6.0",
|
"jquery": "^3.6.0",
|
||||||
"js-yaml": "^4.1.0",
|
|
||||||
"lodash.debounce": "^4.0.8",
|
"lodash.debounce": "^4.0.8",
|
||||||
"lodash.isequal": "^4.5.0",
|
"lodash.isequal": "^4.5.0",
|
||||||
"marked": "^4.0.17",
|
"marked": "^4.0.17",
|
||||||
|
@ -105,6 +104,7 @@
|
||||||
"eslint-plugin-standard": "^5.0.0",
|
"eslint-plugin-standard": "^5.0.0",
|
||||||
"eslint-plugin-vue": "^7.17.0",
|
"eslint-plugin-vue": "^7.17.0",
|
||||||
"html-webpack-plugin": "^5.3.2",
|
"html-webpack-plugin": "^5.3.2",
|
||||||
|
"js-yaml": "^4.1.0",
|
||||||
"json-minimizer-webpack-plugin": "^4.0.0",
|
"json-minimizer-webpack-plugin": "^4.0.0",
|
||||||
"mini-css-extract-plugin": "^2.2.2",
|
"mini-css-extract-plugin": "^2.2.2",
|
||||||
"npm-run-all": "^4.1.5",
|
"npm-run-all": "^4.1.5",
|
||||||
|
|
|
@ -138,7 +138,7 @@ export default Vue.extend({
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
currentLocale: function () {
|
currentLocale: function () {
|
||||||
return this.$store.getters.getCurrentLocale
|
return this.$i18n.locale
|
||||||
},
|
},
|
||||||
|
|
||||||
defaultPlayback: function () {
|
defaultPlayback: function () {
|
||||||
|
|
|
@ -111,7 +111,7 @@ export default Vue.extend({
|
||||||
},
|
},
|
||||||
|
|
||||||
localeOptions: function () {
|
localeOptions: function () {
|
||||||
return ['system'].concat(Object.keys(this.$i18n.messages))
|
return ['system'].concat(this.$i18n.allLocales)
|
||||||
},
|
},
|
||||||
|
|
||||||
localeNames: function () {
|
localeNames: function () {
|
||||||
|
@ -119,6 +119,7 @@ export default Vue.extend({
|
||||||
this.$t('Settings.General Settings.System Default')
|
this.$t('Settings.General Settings.System Default')
|
||||||
]
|
]
|
||||||
|
|
||||||
|
if (process.env.NODE_ENV === 'development') {
|
||||||
Object.entries(this.$i18n.messages).forEach(([locale, localeData]) => {
|
Object.entries(this.$i18n.messages).forEach(([locale, localeData]) => {
|
||||||
const localeName = localeData['Locale Name']
|
const localeName = localeData['Locale Name']
|
||||||
if (typeof localeName !== 'undefined') {
|
if (typeof localeName !== 'undefined') {
|
||||||
|
@ -127,6 +128,9 @@ export default Vue.extend({
|
||||||
names.push(locale)
|
names.push(locale)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
} else {
|
||||||
|
names.push(...process.env.LOCALE_NAMES)
|
||||||
|
}
|
||||||
|
|
||||||
return names
|
return names
|
||||||
},
|
},
|
||||||
|
|
|
@ -1,31 +1,88 @@
|
||||||
import Vue from 'vue'
|
import Vue from 'vue'
|
||||||
import VueI18n from 'vue-i18n'
|
import VueI18n from 'vue-i18n'
|
||||||
import yaml from 'js-yaml'
|
|
||||||
import fs from 'fs'
|
import fs from 'fs'
|
||||||
|
|
||||||
|
// List of locales approved for use
|
||||||
|
import activeLocales from '../../../static/locales/activeLocales.json'
|
||||||
|
|
||||||
const isDev = process.env.NODE_ENV === 'development'
|
const isDev = process.env.NODE_ENV === 'development'
|
||||||
|
|
||||||
Vue.use(VueI18n)
|
|
||||||
|
|
||||||
// List of locales approved for use
|
|
||||||
const activeLocales = ['en-US', 'en_GB', 'ar', 'bg', 'ca', 'cs', 'da', 'de-DE', 'el', 'es', 'es_AR', 'es-MX', 'et', 'eu', 'fi', 'fr-FR', 'gl', 'he', 'hu', 'hr', 'id', 'is', 'it', 'ja', 'ko', 'lt', 'nb_NO', 'nl', 'nn', 'pl', 'pt', 'pt-BR', 'pt-PT', 'ro', 'ru', 'sk', 'sl', 'sr', 'sv', 'tr', 'uk', 'vi', 'zh-CN', 'zh-TW']
|
|
||||||
const messages = {}
|
const messages = {}
|
||||||
/* eslint-disable-next-line */
|
|
||||||
const fileLocation = isDev ? 'static/locales/' : `${__dirname}/static/locales/`
|
|
||||||
|
|
||||||
// Take active locales and load respective YAML file
|
if (isDev) {
|
||||||
activeLocales.forEach((locale) => {
|
const { load } = require('js-yaml')
|
||||||
|
// Take active locales and load respective YAML file
|
||||||
|
activeLocales.forEach((locale) => {
|
||||||
try {
|
try {
|
||||||
// File location when running in dev
|
// File location when running in dev
|
||||||
const doc = yaml.load(fs.readFileSync(`${fileLocation}${locale}.yaml`))
|
const doc = load(fs.readFileSync(`static/locales/${locale}.yaml`))
|
||||||
messages[locale] = doc
|
messages[locale] = doc
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
console.error(e)
|
console.error(e)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
}
|
||||||
|
|
||||||
export default new VueI18n({
|
class CustomVueI18n extends VueI18n {
|
||||||
|
constructor(options) {
|
||||||
|
super(options)
|
||||||
|
this.allLocales = activeLocales
|
||||||
|
}
|
||||||
|
|
||||||
|
async loadLocale(locale) {
|
||||||
|
// we only lazy load locales for producation builds
|
||||||
|
if (!isDev) {
|
||||||
|
// don't need to load it if it's already loaded
|
||||||
|
if (this.availableLocales.includes(locale)) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if (!this.allLocales.includes(locale)) {
|
||||||
|
console.error(`Unable to load unknown locale: "${locale}"`)
|
||||||
|
}
|
||||||
|
|
||||||
|
if (process.env.IS_ELECTRON) {
|
||||||
|
const { brotliDecompressSync } = require('zlib')
|
||||||
|
// locales are only compressed in our production Electron builds
|
||||||
|
try {
|
||||||
|
// decompress brotli compressed json file and then load it
|
||||||
|
// eslint-disable-next-line node/no-path-concat
|
||||||
|
const compressed = fs.readFileSync(`${__dirname}/static/locales/${locale}.json.br`)
|
||||||
|
const data = JSON.parse(brotliDecompressSync(compressed).toString())
|
||||||
|
this.setLocaleMessage(locale, data)
|
||||||
|
} catch (err) {
|
||||||
|
console.error(err)
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
const url = new URL(window.location.href)
|
||||||
|
url.hash = ''
|
||||||
|
if (url.pathname.endsWith('index.html')) {
|
||||||
|
url.pathname = url.pathname.replace(/index\.html$/, '')
|
||||||
|
}
|
||||||
|
|
||||||
|
if (url.pathname) {
|
||||||
|
url.pathname += `/static/locales/${locale}.json`
|
||||||
|
} else {
|
||||||
|
url.pathname = `/static/locales/${locale}.json`
|
||||||
|
}
|
||||||
|
|
||||||
|
const response = await fetch(url)
|
||||||
|
const data = await response.json()
|
||||||
|
this.setLocaleMessage(locale, data)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Vue.use(CustomVueI18n)
|
||||||
|
|
||||||
|
const i18n = new CustomVueI18n({
|
||||||
locale: 'en-US',
|
locale: 'en-US',
|
||||||
fallbackLocale: { default: 'en-US' },
|
fallbackLocale: { default: 'en-US' },
|
||||||
messages: messages
|
messages
|
||||||
})
|
})
|
||||||
|
|
||||||
|
if (!isDev) {
|
||||||
|
i18n.loadLocale('en-US')
|
||||||
|
}
|
||||||
|
|
||||||
|
export default i18n
|
||||||
|
|
|
@ -281,7 +281,7 @@ const stateWithSideEffects = {
|
||||||
if (value === 'system') {
|
if (value === 'system') {
|
||||||
const systemLocaleName = (await dispatch('getSystemLocale')).replace('-', '_') // ex: en_US
|
const systemLocaleName = (await dispatch('getSystemLocale')).replace('-', '_') // ex: en_US
|
||||||
const systemLocaleLang = systemLocaleName.split('_')[0] // ex: en
|
const systemLocaleLang = systemLocaleName.split('_')[0] // ex: en
|
||||||
const targetLocaleOptions = Object.keys(i18n.messages).filter((locale) => { // filter out other languages
|
const targetLocaleOptions = i18n.allLocales.filter((locale) => { // filter out other languages
|
||||||
const localeLang = locale.replace('-', '_').split('_')[0]
|
const localeLang = locale.replace('-', '_').split('_')[0]
|
||||||
return localeLang.includes(systemLocaleLang)
|
return localeLang.includes(systemLocaleLang)
|
||||||
}).sort((a, b) => {
|
}).sort((a, b) => {
|
||||||
|
@ -317,6 +317,10 @@ const stateWithSideEffects = {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (process.env.NODE_ENV !== 'development') {
|
||||||
|
await i18n.loadLocale(targetLocale)
|
||||||
|
}
|
||||||
|
|
||||||
i18n.locale = targetLocale
|
i18n.locale = targetLocale
|
||||||
dispatch('getRegionData', {
|
dispatch('getRegionData', {
|
||||||
isDev: process.env.NODE_ENV === 'development',
|
isDev: process.env.NODE_ENV === 'development',
|
||||||
|
|
|
@ -60,7 +60,7 @@ export default Vue.extend({
|
||||||
},
|
},
|
||||||
|
|
||||||
locale: function () {
|
locale: function () {
|
||||||
return this.$store.getters.getCurrentLocale.replace('_', '-')
|
return this.$i18n.locale.replace('_', '-')
|
||||||
},
|
},
|
||||||
|
|
||||||
backendPreference: function () {
|
backendPreference: function () {
|
||||||
|
|
|
@ -0,0 +1,46 @@
|
||||||
|
[
|
||||||
|
"en-US",
|
||||||
|
"en_GB",
|
||||||
|
"ar",
|
||||||
|
"bg",
|
||||||
|
"ca",
|
||||||
|
"cs",
|
||||||
|
"da",
|
||||||
|
"de-DE",
|
||||||
|
"el",
|
||||||
|
"es",
|
||||||
|
"es_AR",
|
||||||
|
"es-MX",
|
||||||
|
"et",
|
||||||
|
"eu",
|
||||||
|
"fi",
|
||||||
|
"fr-FR",
|
||||||
|
"gl",
|
||||||
|
"he",
|
||||||
|
"hu",
|
||||||
|
"hr",
|
||||||
|
"id",
|
||||||
|
"is",
|
||||||
|
"it",
|
||||||
|
"ja",
|
||||||
|
"ko",
|
||||||
|
"lt",
|
||||||
|
"nb_NO",
|
||||||
|
"nl",
|
||||||
|
"nn",
|
||||||
|
"pl",
|
||||||
|
"pt",
|
||||||
|
"pt-BR",
|
||||||
|
"pt-PT",
|
||||||
|
"ro",
|
||||||
|
"ru",
|
||||||
|
"sk",
|
||||||
|
"sl",
|
||||||
|
"sr",
|
||||||
|
"sv",
|
||||||
|
"tr",
|
||||||
|
"uk",
|
||||||
|
"vi",
|
||||||
|
"zh-CN",
|
||||||
|
"zh-TW"
|
||||||
|
]
|
Loading…
Reference in New Issue