worked on GarageApp stuff
This commit is contained in:
parent
60aaf17af3
commit
eb606572b0
51919 changed files with 2168177 additions and 18 deletions
81
node_modules/react-i18next/dist/commonjs/context.js
generated
vendored
Normal file
81
node_modules/react-i18next/dist/commonjs/context.js
generated
vendored
Normal file
|
|
@ -0,0 +1,81 @@
|
|||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.composeInitialProps = exports.ReportNamespaces = exports.I18nContext = void 0;
|
||||
Object.defineProperty(exports, "getDefaults", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _defaults.getDefaults;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "getI18n", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _i18nInstance.getI18n;
|
||||
}
|
||||
});
|
||||
exports.getInitialProps = void 0;
|
||||
Object.defineProperty(exports, "initReactI18next", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _initReactI18next.initReactI18next;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "setDefaults", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _defaults.setDefaults;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, "setI18n", {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return _i18nInstance.setI18n;
|
||||
}
|
||||
});
|
||||
var _react = require("react");
|
||||
var _defaults = require("./defaults.js");
|
||||
var _i18nInstance = require("./i18nInstance.js");
|
||||
var _initReactI18next = require("./initReactI18next.js");
|
||||
const I18nContext = exports.I18nContext = (0, _react.createContext)();
|
||||
class ReportNamespaces {
|
||||
constructor() {
|
||||
this.usedNamespaces = {};
|
||||
}
|
||||
addUsedNamespaces(namespaces) {
|
||||
namespaces.forEach(ns => {
|
||||
if (!this.usedNamespaces[ns]) this.usedNamespaces[ns] = true;
|
||||
});
|
||||
}
|
||||
getUsedNamespaces() {
|
||||
return Object.keys(this.usedNamespaces);
|
||||
}
|
||||
}
|
||||
exports.ReportNamespaces = ReportNamespaces;
|
||||
const composeInitialProps = ForComponent => async ctx => {
|
||||
const componentsInitialProps = (await ForComponent.getInitialProps?.(ctx)) ?? {};
|
||||
const i18nInitialProps = getInitialProps();
|
||||
return {
|
||||
...componentsInitialProps,
|
||||
...i18nInitialProps
|
||||
};
|
||||
};
|
||||
exports.composeInitialProps = composeInitialProps;
|
||||
const getInitialProps = () => {
|
||||
const i18n = (0, _i18nInstance.getI18n)();
|
||||
const namespaces = i18n.reportNamespaces?.getUsedNamespaces() ?? [];
|
||||
const ret = {};
|
||||
const initialI18nStore = {};
|
||||
i18n.languages.forEach(l => {
|
||||
initialI18nStore[l] = {};
|
||||
namespaces.forEach(ns => {
|
||||
initialI18nStore[l][ns] = i18n.getResourceBundle(l, ns) || {};
|
||||
});
|
||||
});
|
||||
ret.initialI18nStore = initialI18nStore;
|
||||
ret.initialLanguage = i18n.language;
|
||||
return ret;
|
||||
};
|
||||
exports.getInitialProps = getInitialProps;
|
||||
Loading…
Add table
Add a link
Reference in a new issue