Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
@cerner/terra-aggregate-translations
Advanced tools
The terra-aggregate-translations pre-build tool assists with creating the translation, intl loader and translation loader files that are configured for the specified locales. This tool is offered as a CLI script and as a setup function.
This module provides the aggregate-translations
pre-build tool to assist with creating the translation and loader files needed for internationalized Terra components to render correctly.
The terra-aggregate-translations
pre-build tool will aggregate the translations, and create the intl loader and translation loader files that are configured for the specified locales. This tool is offered as a CLI script and as a setup function.
This script globs the specified translation directory regex pattern(s) to locate the translation directories. Then,
for each specified locale, the message-translation pairs from each translation json is extracted and added to the locale's message hash. When all messages have been extracted, the aggregate-translations
script will create a single translation javascript file for each locale that exports the messages
object, areTranslationsLoaded
boolean and locale
string. When a translation is missing for a region-specific locale, the message will fallback to the translation defined by the base locale. When a translation file is requested by terra-i18n's I18nProvider
, this information is returned and used to provide the locale information.
Once all of the translation files are created for the specified locales, the script will create an intl loader and translation loader that is specific to the specified locales. This is utilized by the by terra-i18n's I18nLoader
to load on-demand locale information.
Translations are expected to be provided in a key / value format in a JSON file. A sample translations file looks like the following:
en.json
{
"MyApp.alert.dismiss": "Dismiss",
"MyApp.alert.info": "Information.",
"MyApp.alert.error": "Error.",
"MyApp.alert.warning": "Warning.",
"MyApp.alert.alert": "Alert.",
"MyApp.alert.advisory": "Advisory.",
"MyApp.alert.success": "Success."
}
custom directories
to the list of default search patterns
to get an intermediate list of directories to search
excludes
option from the intermediate list of directories to search
aggregate-translations
OptionsOption | CLI Option | Type | Description | Default |
---|---|---|---|---|
baseDir | -b, --baseDir | Path | Directory to search from and to prepend to the output directory. | current working directory |
directories | -d, --directories | Array of Strings | Translation directory regex pattern(s) to glob, in addition to the default search patterns. | [ ] |
excludes | -e, --excludes | Array of Strings | Translation directory regex pattern(s) to glob exclude from the search patterns. | [ ] |
outputFileSystem | N/A | File System Module | The filesystem to use to write the translation and loader files. Note: The file system provide must support mkdirp . | fs-extra |
locales | -l, --locales | Array of Strings | The list of locale codes to aggregate. Note: 'en' is always added if not specified. | terra-supported locales |
outputDir | -o, --ouputDir | String | Output directory for the translation and loader files | ./aggregated-translations |
configPath | -c, --config | String | The path to the terra i18n configuration file | undefined |
format | -f, --format | String | The format of syntax to output the translations with. Possible values are 'es5' and 'es6' | 'es5' |
The aggregate-translations
setup function can be used as follows:
// webpack config file
const aggregateTranslations = require('@cerner/terra-aggregate-translations');
const aggregateOptions = {
baseDir: __dirname,
excludes: ['./node_modules/packageToExclude'],
locales: ['en', 'en-US'],
format: 'es6',
};
aggregateTranslations(aggregateOptions);
module.exports = // ...webpack config;
The aggregate-translations
CLI is supplied as a bin script, called tt-aggregate-translations
, and can be used as follows:
scripts: {
// ...other scripts
"aggregate-translations": "tt-aggregate-translations -l ['en','es'] -e ./node_modules/packageToExclude",
"start:build": "npm run aggregate-translations && npm run start"
}
Both the setup function and CLI methods allow for the configuration options to be loaded via a config file. The aggregate-translations
tool will always attempt to load this config by default. If no config path is provided, the aggregate-translations tool will attempt to load the configuration from ./terraI18n.config.js
. If this file does not exist, the default configuration is used.
Add a terra-i18n config file like:
module.exports = {
locales: ['en', 'en-US'],
};
Then, to load the config someplace other than ./terraI18n.config.js
, simply add the config path as follows:
// using setup approach
aggregateTranslations({ configPath: './config/terraI18n.config.js' });
// using CLI approach
"aggregate-translations": "tt-aggregate-translations -c ./config/terraI18n.config.js",
To provide the aggregated-translations files and loaders as modules to the terra-i18n component, the translated output directory must be supplied the webpack resolve.modules
key before 'node_modules' resolution:
resolve: {
modules: [path.resolve(__dirname, 'aggregated-translations'), 'node_modules'],
},
This resolve.modules
configuration indicates module resolving occurs in this order:
./aggregated_translations
(or indicated output directory)./node_modules
The aggregate-translations script has the ability to compile with ES6 syntax by setting the format prop to 'es6'. To get these to work properly with Jest and the rest of your configuration, you need to add the babel-plugin-syntax-dynamic-import plugin to your babel configuration. Since we are not using Babel 7 in Terra, you need to use version 6.18.0 to be compatible with our code base.
If you are using Rails/Webpacker, you can generate the aggregate-translation files and ensure they resolve correctly when running webpack with the following config setup in app/config/webpack/environment.js
file.
const { environment } = require('@rails/webpacker')
const aggregateTranslations = require('@cerner/terra-aggregate-translations');
// generate the 'aggregated-translations' in 'tmp'
aggregateTranslations({
format: 'es6',
outputDir: 'tmp/aggregated-translations'
});
// add the 'aggregated-translations' module to the environment
environment.resolvedModules.append('aggregated-translations', 'tmp/aggregated-translations')
module.exports = environment
This package was developed and tested using Node 10 up to Node 14. Consumers using Node 16 or greater are advised to use it at their own risk since those versions are not officially supported due to lack of thorough testing.
Copyright 2019 - present Cerner Innovation, Inc.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
FAQs
The terra-aggregate-translations pre-build tool assists with creating the translation, intl loader and translation loader files that are configured for the specified locales. This tool is offered as a CLI script and as a setup function.
The npm package @cerner/terra-aggregate-translations receives a total of 24 weekly downloads. As such, @cerner/terra-aggregate-translations popularity was classified as not popular.
We found that @cerner/terra-aggregate-translations demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 7 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.