loadNamespaces.js 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. "use strict";
  2. var __assign = (this && this.__assign) || function () {
  3. __assign = Object.assign || function(t) {
  4. for (var s, i = 1, n = arguments.length; i < n; i++) {
  5. s = arguments[i];
  6. for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
  7. t[p] = s[p];
  8. }
  9. return t;
  10. };
  11. return __assign.apply(this, arguments);
  12. };
  13. var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
  14. function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
  15. return new (P || (P = Promise))(function (resolve, reject) {
  16. function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
  17. function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
  18. function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
  19. step((generator = generator.apply(thisArg, _arguments || [])).next());
  20. });
  21. };
  22. var __generator = (this && this.__generator) || function (thisArg, body) {
  23. var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
  24. return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
  25. function verb(n) { return function (v) { return step([n, v]); }; }
  26. function step(op) {
  27. if (f) throw new TypeError("Generator is already executing.");
  28. while (_) try {
  29. if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
  30. if (y = 0, t) op = [op[0] & 2, t.value];
  31. switch (op[0]) {
  32. case 0: case 1: t = op; break;
  33. case 4: _.label++; return { value: op[1], done: false };
  34. case 5: _.label++; y = op[1]; op = [0]; continue;
  35. case 7: op = _.ops.pop(); _.trys.pop(); continue;
  36. default:
  37. if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
  38. if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
  39. if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
  40. if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
  41. if (t[2]) _.ops.pop();
  42. _.trys.pop(); continue;
  43. }
  44. op = body.call(thisArg, _);
  45. } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
  46. if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
  47. }
  48. };
  49. var __importDefault = (this && this.__importDefault) || function (mod) {
  50. return (mod && mod.__esModule) ? mod : { "default": mod };
  51. };
  52. Object.defineProperty(exports, "__esModule", { value: true });
  53. var getConfig_1 = __importDefault(require("./getConfig"));
  54. var getPageNamespaces_1 = __importDefault(require("./getPageNamespaces"));
  55. var colorEnabled = process.env.NODE_DISABLE_COLORS == null &&
  56. process.env.NO_COLOR == null &&
  57. process.env.TERM !== 'dumb' &&
  58. process.env.FORCE_COLOR !== '0';
  59. function loadNamespaces(config) {
  60. var _a, _b;
  61. if (config === void 0) { config = {}; }
  62. return __awaiter(this, void 0, void 0, function () {
  63. var conf, localesToIgnore, __lang, page, namespaces, defaultLoader, pageNamespaces, color;
  64. return __generator(this, function (_c) {
  65. switch (_c.label) {
  66. case 0:
  67. conf = __assign(__assign({}, (0, getConfig_1.default)()), config);
  68. localesToIgnore = conf.localesToIgnore || ['default'];
  69. __lang = ((_a = conf.req) === null || _a === void 0 ? void 0 : _a.locale) ||
  70. conf.locale ||
  71. ((_b = conf.router) === null || _b === void 0 ? void 0 : _b.locale) ||
  72. conf.defaultLocale ||
  73. '';
  74. if (!conf.pathname) {
  75. console.warn('🚨 [next-translate] You forgot to pass the "pathname" inside "loadNamespaces" configuration');
  76. return [2, { __lang: __lang }];
  77. }
  78. if (localesToIgnore.includes(__lang))
  79. return [2, { __lang: __lang }];
  80. if (!conf.loaderName && conf.loader !== false) {
  81. console.warn('🚨 [next-translate] You can remove the "loadNamespaces" helper, unless you set "loader: false" in your i18n config file.');
  82. }
  83. page = removeTrailingSlash(conf.pathname.replace(/\/index$/, '')) || '/';
  84. return [4, (0, getPageNamespaces_1.default)(conf, page, conf)];
  85. case 1:
  86. namespaces = _c.sent();
  87. defaultLoader = function () { return Promise.resolve({}); };
  88. return [4, Promise.all(namespaces.map(function (ns) {
  89. return typeof conf.loadLocaleFrom === 'function'
  90. ? conf.loadLocaleFrom(__lang, ns).catch(function () { return ({}); })
  91. : defaultLoader(__lang, ns);
  92. }))];
  93. case 2:
  94. pageNamespaces = (_c.sent()) || [];
  95. if (conf.logBuild !== false && typeof window === 'undefined') {
  96. color = function (c) { return (colorEnabled ? "\u001B[36m".concat(c, "\u001B[0m") : c); };
  97. console.log(color('next-translate'), "- compiled page:", color(page), '- locale:', color(__lang), '- namespaces:', color(namespaces.join(', ')), '- used loader:', color(conf.loaderName || '-'));
  98. }
  99. return [2, {
  100. __lang: __lang,
  101. __namespaces: namespaces.reduce(function (obj, ns, i) {
  102. obj[ns] = pageNamespaces[i] || null;
  103. return obj;
  104. }, {}),
  105. }];
  106. }
  107. });
  108. });
  109. }
  110. exports.default = loadNamespaces;
  111. function removeTrailingSlash(path) {
  112. if (path === void 0) { path = ''; }
  113. return path.length > 1 && path.endsWith('/') ? path.slice(0, -1) : path;
  114. }