From 9c3b10e5ea6e028ea9b6bb717e8be7c157369216 Mon Sep 17 00:00:00 2001 From: Christoph Reiter <reiter.christoph@gmail.com> Date: Thu, 8 Aug 2019 14:37:18 +0200 Subject: [PATCH] Port to new i18next wrapper --- packages/notification/package.json | 1 - packages/notification/rollup.config.js | 8 +++++++- packages/notification/src/i18n.js | 27 ++------------------------ packages/notification/vendor/common | 2 +- 4 files changed, 10 insertions(+), 28 deletions(-) diff --git a/packages/notification/package.json b/packages/notification/package.json index 46ba0618..26902720 100644 --- a/packages/notification/package.json +++ b/packages/notification/package.json @@ -25,7 +25,6 @@ "vpu-common": "file:./vendor/common" }, "dependencies": { - "i18next": "^17.0.3", "lit-element": "^2.1.0" }, "scripts": { diff --git a/packages/notification/rollup.config.js b/packages/notification/rollup.config.js index 5b589a6b..92e6250b 100644 --- a/packages/notification/rollup.config.js +++ b/packages/notification/rollup.config.js @@ -1,3 +1,4 @@ +import path from 'path'; import resolve from 'rollup-plugin-node-resolve'; import commonjs from 'rollup-plugin-commonjs'; import postcss from 'rollup-plugin-postcss'; @@ -19,7 +20,12 @@ export default { }, plugins: [ multiEntry(), - resolve(), + resolve({ + customResolveOptions: { + // ignore node_modules from vendored packages + moduleDirectory: path.join(process.cwd(), 'node_modules') + } + }), commonjs({ include: 'node_modules/**' }), diff --git a/packages/notification/src/i18n.js b/packages/notification/src/i18n.js index a2380632..02c88eb4 100644 --- a/packages/notification/src/i18n.js +++ b/packages/notification/src/i18n.js @@ -1,29 +1,6 @@ -import i18next from 'i18next'; +import {createInstance} from 'vpu-common/i18next.js'; import de from './i18n/de/translation.json'; import en from './i18n/en/translation.json'; -const i18n = i18next.createInstance(); - -i18n.init({ - lng: 'de', - fallbackLng: ['de'], - debug: false, - initImmediate: false, // Don't init async - resources: { - en: {translation: en}, - de: {translation: de} - }, -}); - -console.assert(i18n.isInitialized); - -function dateTimeFormat(date, options) { - return new Intl.DateTimeFormat(i18n.languages, options).format(date); -} - -function numberFormat(number, options) { - return new Intl.NumberFormat(i18n.languages, options).format(number); -} - -export {i18n, dateTimeFormat, numberFormat}; +export const i18n = createInstance({en: en, de: de}, 'de', 'en'); \ No newline at end of file diff --git a/packages/notification/vendor/common b/packages/notification/vendor/common index b30eaa64..378256b0 160000 --- a/packages/notification/vendor/common +++ b/packages/notification/vendor/common @@ -1 +1 @@ -Subproject commit b30eaa6475ccc65b5f99d2ead86ddbe2b8e015a7 +Subproject commit 378256b0ae92712fd5b8feed3a987cd014617c0b -- GitLab