34 lines
No EOL
1.1 KiB
JavaScript
34 lines
No EOL
1.1 KiB
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.useSSR = void 0;
|
|
var _react = require("react");
|
|
var _context = require("./context.js");
|
|
const useSSR = (initialI18nStore, initialLanguage, props = {}) => {
|
|
const {
|
|
i18n: i18nFromProps
|
|
} = props;
|
|
const {
|
|
i18n: i18nFromContext
|
|
} = (0, _react.useContext)(_context.I18nContext) || {};
|
|
const i18n = i18nFromProps || i18nFromContext || (0, _context.getI18n)();
|
|
if (i18n.options?.isClone) return;
|
|
if (initialI18nStore && !i18n.initializedStoreOnce) {
|
|
i18n.services.resourceStore.data = initialI18nStore;
|
|
i18n.options.ns = Object.values(initialI18nStore).reduce((mem, lngResources) => {
|
|
Object.keys(lngResources).forEach(ns => {
|
|
if (mem.indexOf(ns) < 0) mem.push(ns);
|
|
});
|
|
return mem;
|
|
}, i18n.options.ns);
|
|
i18n.initializedStoreOnce = true;
|
|
i18n.isInitialized = true;
|
|
}
|
|
if (initialLanguage && !i18n.initializedLanguageOnce) {
|
|
i18n.changeLanguage(initialLanguage);
|
|
i18n.initializedLanguageOnce = true;
|
|
}
|
|
};
|
|
exports.useSSR = useSSR; |