gt-next 5.2.0-alpha.3 → 5.2.0-alpha.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (52) hide show
  1. package/dist/config-dir/I18NConfiguration.d.ts +34 -37
  2. package/dist/config-dir/I18NConfiguration.d.ts.map +1 -1
  3. package/dist/config-dir/I18NConfiguration.js +77 -75
  4. package/dist/config-dir/I18NConfiguration.js.map +1 -1
  5. package/dist/config-dir/TranslationManager.d.ts +5 -16
  6. package/dist/config-dir/TranslationManager.d.ts.map +1 -1
  7. package/dist/config-dir/TranslationManager.js +9 -36
  8. package/dist/config-dir/TranslationManager.js.map +1 -1
  9. package/dist/config-dir/loadTranslation.js +2 -2
  10. package/dist/config-dir/loadTranslation.js.map +1 -1
  11. package/dist/config-dir/props/InitGTProps.d.ts +0 -2
  12. package/dist/config-dir/props/InitGTProps.d.ts.map +1 -1
  13. package/dist/config-dir/props/defaultInitGTProps.d.ts +0 -1
  14. package/dist/config-dir/props/defaultInitGTProps.d.ts.map +1 -1
  15. package/dist/config-dir/props/defaultInitGTProps.js +0 -1
  16. package/dist/config-dir/props/defaultInitGTProps.js.map +1 -1
  17. package/dist/config.d.ts +0 -2
  18. package/dist/config.d.ts.map +1 -1
  19. package/dist/config.js +16 -29
  20. package/dist/config.js.map +1 -1
  21. package/dist/dictionary/getDictionary.d.ts.map +1 -1
  22. package/dist/dictionary/getDictionary.js +11 -4
  23. package/dist/dictionary/getDictionary.js.map +1 -1
  24. package/dist/errors/createErrors.d.ts +6 -3
  25. package/dist/errors/createErrors.d.ts.map +1 -1
  26. package/dist/errors/createErrors.js +14 -9
  27. package/dist/errors/createErrors.js.map +1 -1
  28. package/dist/provider/GTProvider.d.ts +1 -1
  29. package/dist/provider/GTProvider.d.ts.map +1 -1
  30. package/dist/provider/GTProvider.js +17 -168
  31. package/dist/provider/GTProvider.js.map +1 -1
  32. package/dist/server-dir/buildtime/T.d.ts +3 -17
  33. package/dist/server-dir/buildtime/T.d.ts.map +1 -1
  34. package/dist/server-dir/buildtime/T.js +53 -74
  35. package/dist/server-dir/buildtime/T.js.map +1 -1
  36. package/dist/server-dir/buildtime/getDict.d.ts +2 -5
  37. package/dist/server-dir/buildtime/getDict.d.ts.map +1 -1
  38. package/dist/server-dir/buildtime/getDict.js +19 -160
  39. package/dist/server-dir/buildtime/getDict.js.map +1 -1
  40. package/dist/server-dir/buildtime/getGT.d.ts +3 -5
  41. package/dist/server-dir/buildtime/getGT.d.ts.map +1 -1
  42. package/dist/server-dir/buildtime/getGT.js +23 -26
  43. package/dist/server-dir/buildtime/getGT.js.map +1 -1
  44. package/dist/server-dir/runtime/_Tx.d.ts +32 -2
  45. package/dist/server-dir/runtime/_Tx.d.ts.map +1 -1
  46. package/dist/server-dir/runtime/_Tx.js +89 -58
  47. package/dist/server-dir/runtime/_Tx.js.map +1 -1
  48. package/dist/server-dir/runtime/tx.d.ts +2 -4
  49. package/dist/server-dir/runtime/tx.d.ts.map +1 -1
  50. package/dist/server-dir/runtime/tx.js +8 -9
  51. package/dist/server-dir/runtime/tx.js.map +1 -1
  52. package/package.json +2 -2
@@ -1,6 +1,6 @@
1
- import { RenderMethod, TranslatedChildren, TranslatedContent, Children } from 'gt-react/internal';
1
+ import { RenderMethod, TranslatedChildren, TranslatedContent } from 'gt-react/internal';
2
2
  import { Content, JsxChildren } from 'generaltranslation/internal';
3
- import { TaggedChildren, TranslationsObject } from 'gt-react/internal';
3
+ import { TranslationsObject } from 'gt-react/internal';
4
4
  type I18NConfigurationParams = {
5
5
  apiKey?: string;
6
6
  devApiKey?: string;
@@ -8,7 +8,6 @@ type I18NConfigurationParams = {
8
8
  runtimeUrl: string | undefined;
9
9
  cacheUrl: string | null;
10
10
  loadTranslationType: 'remote' | 'custom' | 'disabled';
11
- cacheExpiryTime?: number;
12
11
  defaultLocale: string;
13
12
  locales: string[];
14
13
  renderSettings: {
@@ -23,9 +22,9 @@ type I18NConfigurationParams = {
23
22
  };
24
23
  export default class I18NConfiguration {
25
24
  translationEnabled: boolean;
26
- serverRuntimeTranslationEnabled: boolean;
27
- clientRuntimeTranslationEnabled: boolean;
28
- loadTranslationEnabled: boolean;
25
+ developmentApiEnabled: boolean;
26
+ productionApiEnabled: boolean;
27
+ dictionaryEnabled: boolean;
29
28
  projectId?: string;
30
29
  apiKey?: string;
31
30
  devApiKey?: string;
@@ -46,20 +45,31 @@ export default class I18NConfiguration {
46
45
  private _queue;
47
46
  private _activeRequests;
48
47
  private _translationCache;
49
- private _taggedDictionary;
50
- private _template;
51
- private _usingPlugin;
52
- constructor({ apiKey, devApiKey, projectId, _versionId, runtimeUrl, cacheUrl, cacheExpiryTime, loadTranslationType, defaultLocale, locales, renderSettings, dictionary, maxConcurrentRequests, maxBatchSize, batchInterval, _usingPlugin, ...metadata }: I18NConfigurationParams);
48
+ constructor({ apiKey, devApiKey, projectId, _versionId, runtimeUrl, cacheUrl, loadTranslationType, defaultLocale, locales, renderSettings, dictionary, maxConcurrentRequests, maxBatchSize, batchInterval, _usingPlugin, ...metadata }: I18NConfigurationParams);
49
+ /**
50
+ * Get the rendering instructions
51
+ * @returns An object containing the current method and timeout.
52
+ * As of 1/22/25: method is "skeleton", "replace", "default".
53
+ * Timeout is a number or null, representing no assigned timeout.
54
+ */
55
+ getRenderSettings(): {
56
+ method: RenderMethod;
57
+ timeout?: number;
58
+ };
53
59
  /**
54
60
  * Gets config for dynamic translation on the client side.
55
61
  */
56
62
  getClientSideConfig(): {
57
63
  projectId: string | undefined;
58
- devApiKey: string | undefined;
59
- runtimeUrl: string | undefined;
60
64
  translationEnabled: boolean;
61
- runtimeTranslationEnabled: boolean;
65
+ runtimeUrl: string | undefined;
66
+ devApiKey: string | undefined;
62
67
  dictionaryEnabled: boolean;
68
+ renderSettings: {
69
+ method: RenderMethod;
70
+ timeout?: number;
71
+ };
72
+ runtimeTranslationEnabled: boolean;
63
73
  };
64
74
  /**
65
75
  * Gets the application's default locale
@@ -72,40 +82,27 @@ export default class I18NConfiguration {
72
82
  */
73
83
  getLocales(): string[];
74
84
  /**
75
- * @returns true if dictionaries are enabled
76
- */
77
- isDictionaryEnabled(): boolean;
78
- /**
79
- * @returns A boolean indicating whether automatic translation is enabled or disabled for this config
85
+ * @returns true if build time translation is enabled
80
86
  */
81
87
  isTranslationEnabled(): boolean;
82
88
  /**
83
- * Runtime translation is enabled on server side
84
- * @returns {boolean} A boolean indicating whether the dev runtime translation is enabled
89
+ * @returns true if dictionaries are enabled
85
90
  */
86
- isServerRuntimeTranslationEnabled(): boolean;
91
+ isDictionaryEnabled(): boolean;
87
92
  /**
88
- * Runtime translation for clientside
89
- * @returns {boolean} A boolean indicating whether the client runtime translation is enabled
93
+ * @returns true if development runtime translation API is enabled
90
94
  */
91
- isClientRuntimeTranslationEnabled(): boolean;
95
+ isDevelopmentApiEnabled(): boolean;
92
96
  /**
93
- * Get the rendering instructions
94
- * @returns An object containing the current method and timeout.
95
- * As of 1/22/25: method is "skeleton", "replace", "default".
96
- * Timeout is a number or null, representing no assigned timeout.
97
+ * @returns true if production runtime translation API is enabled
97
98
  */
98
- getRenderSettings(): {
99
- method: RenderMethod;
100
- timeout?: number;
101
- };
99
+ isProductionApiEnabled(): boolean;
102
100
  /**
103
101
  * Check if translation is required based on the user's locale
104
102
  * @param locale - The user's locale
105
103
  * @returns True if translation is required, otherwise false
106
104
  */
107
- requiresTranslation(locale: string): boolean;
108
- addGTIdentifier(children: Children): TaggedChildren;
105
+ requiresTranslation(locale: string): [boolean, boolean];
109
106
  /**
110
107
  * Get the translation dictionaries for this user's locale, if they exist
111
108
  * Globally shared cache or saved locally
@@ -114,7 +111,7 @@ export default class I18NConfiguration {
114
111
  */
115
112
  getCachedTranslations(locale: string): Promise<TranslationsObject>;
116
113
  /**
117
- * Retrieves translations for a given locale which are already cached locally
114
+ * Synchronously retrieves translations for a given locale which are already cached locally
118
115
  * @param {string} locale - The locale code.
119
116
  * @returns {TranslationsObject} The translations data or an empty object if not found.
120
117
  */
@@ -136,10 +133,10 @@ export default class I18NConfiguration {
136
133
  * @param params - Parameters for translation
137
134
  * @returns A promise that resolves when translation is complete
138
135
  */
139
- translateChildren(params: {
136
+ translateJsx(params: {
140
137
  source: JsxChildren;
141
138
  targetLocale: string;
142
- metadata: {
139
+ options: {
143
140
  hash: string;
144
141
  } & Record<string, any>;
145
142
  }): Promise<TranslatedChildren>;
@@ -1 +1 @@
1
- {"version":3,"file":"I18NConfiguration.d.ts","sourceRoot":"","sources":["../../src/config-dir/I18NConfiguration.ts"],"names":[],"mappings":"AAEA,OAAO,EAEL,YAAY,EACZ,kBAAkB,EAClB,iBAAiB,EACjB,QAAQ,EAGT,MAAM,mBAAmB,CAAC;AAE3B,OAAO,EAAE,OAAO,EAAE,WAAW,EAAE,MAAM,6BAA6B,CAAC;AACnE,OAAO,EAAE,cAAc,EAAE,kBAAkB,EAAE,MAAM,mBAAmB,CAAC;AACvE,KAAK,uBAAuB,GAAG;IAC7B,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,MAAM,GAAG,SAAS,CAAC;IAC/B,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB,mBAAmB,EAAE,QAAQ,GAAG,QAAQ,GAAG,UAAU,CAAC;IACtD,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,aAAa,EAAE,MAAM,CAAC;IACtB,OAAO,EAAE,MAAM,EAAE,CAAC;IAClB,cAAc,EAAE;QACd,MAAM,EAAE,YAAY,CAAC;QACrB,OAAO,CAAC,EAAE,MAAM,CAAC;KAClB,CAAC;IACF,qBAAqB,EAAE,MAAM,CAAC;IAC9B,YAAY,EAAE,MAAM,CAAC;IACrB,aAAa,EAAE,MAAM,CAAC;IACtB,YAAY,EAAE,OAAO,CAAC;IACtB,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;CACpB,CAAC;AAwBF,MAAM,CAAC,OAAO,OAAO,iBAAiB;IAEpC,kBAAkB,EAAE,OAAO,CAAC;IAC5B,+BAA+B,EAAE,OAAO,CAAC;IACzC,+BAA+B,EAAE,OAAO,CAAC;IACzC,sBAAsB,EAAE,OAAO,CAAQ;IAEvC,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,MAAM,GAAG,SAAS,CAAC;IAC/B,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB,UAAU,CAAC,EAAE,MAAM,CAAC;IAEpB,aAAa,EAAE,MAAM,CAAC;IACtB,OAAO,EAAE,MAAM,EAAE,CAAC;IAElB,cAAc,EAAE;QACd,MAAM,EAAE,YAAY,CAAC;QACrB,OAAO,CAAC,EAAE,MAAM,CAAC;KAClB,CAAC;IAEF,OAAO,CAAC,mBAAmB,CAAiC;IAE5D,QAAQ,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;IAE9B,qBAAqB,EAAE,MAAM,CAAC;IAC9B,YAAY,EAAE,MAAM,CAAC;IACrB,aAAa,EAAE,MAAM,CAAC;IACtB,OAAO,CAAC,MAAM,CAAoB;IAClC,OAAO,CAAC,eAAe,CAAS;IAEhC,OAAO,CAAC,iBAAiB,CAA4B;IAErD,OAAO,CAAC,iBAAiB,CAAmB;IAC5C,OAAO,CAAC,SAAS,CAAsD;IAEvE,OAAO,CAAC,YAAY,CAAU;gBAElB,EAEV,MAAM,EACN,SAAS,EACT,SAAS,EACT,UAAU,EACV,UAAU,EACV,QAAQ,EACR,eAAe,EACf,mBAAmB,EAEnB,aAAa,EACb,OAAO,EAEP,cAAc,EAEd,UAAU,EAEV,qBAAqB,EACrB,YAAY,EACZ,aAAa,EAEb,YAAY,EAEZ,GAAG,QAAQ,EACZ,EAAE,uBAAuB;IA+E1B;;OAEG;IACH,mBAAmB;;;;;;;;IAWnB;;;OAGG;IACH,gBAAgB,IAAI,MAAM;IAI1B;;;OAGG;IACH,UAAU,IAAI,MAAM,EAAE;IAItB;;OAEG;IACH,mBAAmB,IAAI,OAAO;IAI9B;;OAEG;IACH,oBAAoB,IAAI,OAAO;IAI/B;;;OAGG;IACH,iCAAiC,IAAI,OAAO;IAI5C;;;OAGG;IACH,iCAAiC,IAAI,OAAO;IAI5C;;;;;OAKG;IACH,iBAAiB,IAAI;QACnB,MAAM,EAAE,YAAY,CAAC;QACrB,OAAO,CAAC,EAAE,MAAM,CAAC;KAClB;IAID;;;;OAIG;IACH,mBAAmB,CAAC,MAAM,EAAE,MAAM,GAAG,OAAO;IAO5C,eAAe,CAAC,QAAQ,EAAE,QAAQ,GAAG,cAAc;IAInD;;;;;OAKG;IACG,qBAAqB,CAAC,MAAM,EAAE,MAAM,GAAG,OAAO,CAAC,kBAAkB,CAAC;IAMxE;;;;OAIG;IACH,qBAAqB,CAAC,MAAM,EAAE,MAAM,GAAG,kBAAkB;IAIzD;;;;OAIG;IACG,gBAAgB,CAAC,MAAM,EAAE;QAC7B,MAAM,EAAE,OAAO,CAAC;QAChB,YAAY,EAAE,MAAM,CAAC;QACrB,OAAO,EAAE;YAAE,IAAI,EAAE,MAAM,CAAA;SAAE,GAAG,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;KACjD,GAAG,OAAO,CAAC,iBAAiB,CAAC;IA2B9B;;;;OAIG;IACG,iBAAiB,CAAC,MAAM,EAAE;QAC9B,MAAM,EAAE,WAAW,CAAC;QACpB,YAAY,EAAE,MAAM,CAAC;QACrB,QAAQ,EAAE;YAAE,IAAI,EAAE,MAAM,CAAA;SAAE,GAAG,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;KAClD,GAAG,OAAO,CAAC,kBAAkB,CAAC;IA8B/B;;;OAGG;YACW,iBAAiB;IAsH/B;;OAEG;IACH,OAAO,CAAC,cAAc;CAYvB"}
1
+ {"version":3,"file":"I18NConfiguration.d.ts","sourceRoot":"","sources":["../../src/config-dir/I18NConfiguration.ts"],"names":[],"mappings":"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"}
@@ -65,12 +65,13 @@ var generaltranslation_1 = require("generaltranslation");
65
65
  var TranslationManager_1 = __importDefault(require("./TranslationManager"));
66
66
  var internal_1 = require("gt-react/internal");
67
67
  var createErrors_1 = require("../errors/createErrors");
68
+ var defaultInitGTProps_1 = __importDefault(require("./props/defaultInitGTProps"));
68
69
  var I18NConfiguration = /** @class */ (function () {
69
70
  function I18NConfiguration(_a) {
70
71
  // ----- CLOUD INTEGRATION ----- //
71
72
  var
72
73
  // Cloud integration
73
- apiKey = _a.apiKey, devApiKey = _a.devApiKey, projectId = _a.projectId, _versionId = _a._versionId, runtimeUrl = _a.runtimeUrl, cacheUrl = _a.cacheUrl, cacheExpiryTime = _a.cacheExpiryTime, loadTranslationType = _a.loadTranslationType,
74
+ apiKey = _a.apiKey, devApiKey = _a.devApiKey, projectId = _a.projectId, _versionId = _a._versionId, runtimeUrl = _a.runtimeUrl, cacheUrl = _a.cacheUrl, loadTranslationType = _a.loadTranslationType,
74
75
  // Locale info
75
76
  defaultLocale = _a.defaultLocale, locales = _a.locales,
76
77
  // Render method
@@ -82,30 +83,30 @@ var I18NConfiguration = /** @class */ (function () {
82
83
  // Internal
83
84
  _usingPlugin = _a._usingPlugin,
84
85
  // Other metadata
85
- metadata = __rest(_a, ["apiKey", "devApiKey", "projectId", "_versionId", "runtimeUrl", "cacheUrl", "cacheExpiryTime", "loadTranslationType", "defaultLocale", "locales", "renderSettings", "dictionary", "maxConcurrentRequests", "maxBatchSize", "batchInterval", "_usingPlugin"]);
86
- this.loadTranslationEnabled = true;
86
+ metadata = __rest(_a, ["apiKey", "devApiKey", "projectId", "_versionId", "runtimeUrl", "cacheUrl", "loadTranslationType", "defaultLocale", "locales", "renderSettings", "dictionary", "maxConcurrentRequests", "maxBatchSize", "batchInterval", "_usingPlugin"]);
87
87
  this.apiKey = apiKey;
88
88
  this.devApiKey = devApiKey;
89
89
  this.projectId = projectId;
90
90
  this.runtimeUrl = runtimeUrl;
91
91
  this.cacheUrl = cacheUrl;
92
92
  this._versionId = _versionId; // version id for the dictionary
93
- // ----- FEATURE FLAGS ----- //
94
- // runtime translations
95
- var _runtimeTranslation = !!(this.projectId &&
96
- this.runtimeUrl &&
97
- (this.apiKey ||
98
- (this.devApiKey && process.env.NODE_ENV === 'development')));
99
- // translation loader
100
- this.loadTranslationEnabled = !!(loadTranslationType === 'custom' ||
101
- (loadTranslationType === 'remote' && this.projectId && this.cacheUrl));
102
- this.translationEnabled =
103
- this.loadTranslationEnabled || _runtimeTranslation; // two types of tx: loader (remote/custom) and runtime
104
- // When we add <TX> for both client and server, there will not be discrepancy between server and client
105
- this.serverRuntimeTranslationEnabled = _runtimeTranslation;
106
- this.clientRuntimeTranslationEnabled =
107
- _runtimeTranslation && !!this.devApiKey;
108
- // ----- OTHER SETUP ----- //
93
+ // IS BUILDTIME TRANSLATION ENABLED
94
+ this.translationEnabled = !!(loadTranslationType === 'custom' ||
95
+ (loadTranslationType === 'remote' &&
96
+ this.projectId && // projectId required because it's part of the GET request
97
+ this.cacheUrl));
98
+ // IS RUNTIME TRANSLATION ENABLED
99
+ var runtimeApiEnabled = !!(this.runtimeUrl ===
100
+ defaultInitGTProps_1.default.runtimeUrl
101
+ ? this.projectId
102
+ : this.runtimeUrl);
103
+ this.developmentApiEnabled = !!(runtimeApiEnabled &&
104
+ this.devApiKey &&
105
+ process.env.NODE_ENV === 'development');
106
+ this.productionApiEnabled = !!(runtimeApiEnabled && this.apiKey);
107
+ // DICTIONARY ENABLED
108
+ this.dictionaryEnabled = _usingPlugin;
109
+ // ----- SETUP ----- //
109
110
  // Locales
110
111
  this.defaultLocale = defaultLocale;
111
112
  this.locales = locales;
@@ -123,13 +124,9 @@ var I18NConfiguration = /** @class */ (function () {
123
124
  this._translationManager.setConfig({
124
125
  cacheUrl: cacheUrl,
125
126
  projectId: projectId,
126
- cacheExpiryTime: cacheExpiryTime,
127
- loadTranslationEnabled: this.loadTranslationEnabled,
127
+ translationEnabled: this.translationEnabled,
128
128
  _versionId: _versionId,
129
129
  });
130
- // Cache of hashes to speed up <GTProvider>
131
- this._taggedDictionary = new Map();
132
- this._template = new Map();
133
130
  // Batching
134
131
  this.maxConcurrentRequests = maxConcurrentRequests;
135
132
  this.maxBatchSize = maxBatchSize;
@@ -138,22 +135,33 @@ var I18NConfiguration = /** @class */ (function () {
138
135
  this._activeRequests = 0;
139
136
  this._translationCache = new Map(); // cache for ongoing promises, so things aren't translated twice
140
137
  this._startBatching();
141
- // Internal
142
- this._usingPlugin = _usingPlugin;
143
138
  }
139
+ // ------ CONFIG ----- //
140
+ /**
141
+ * Get the rendering instructions
142
+ * @returns An object containing the current method and timeout.
143
+ * As of 1/22/25: method is "skeleton", "replace", "default".
144
+ * Timeout is a number or null, representing no assigned timeout.
145
+ */
146
+ I18NConfiguration.prototype.getRenderSettings = function () {
147
+ return this.renderSettings;
148
+ };
144
149
  /**
145
150
  * Gets config for dynamic translation on the client side.
146
151
  */
147
152
  I18NConfiguration.prototype.getClientSideConfig = function () {
153
+ var _a = this, projectId = _a.projectId, translationEnabled = _a.translationEnabled, runtimeUrl = _a.runtimeUrl, devApiKey = _a.devApiKey, developmentApiEnabled = _a.developmentApiEnabled, dictionaryEnabled = _a.dictionaryEnabled, renderSettings = _a.renderSettings;
148
154
  return {
149
- projectId: this.projectId,
150
- devApiKey: this.devApiKey,
151
- runtimeUrl: this.runtimeUrl,
152
- translationEnabled: this.translationEnabled,
153
- runtimeTranslationEnabled: this.clientRuntimeTranslationEnabled,
154
- dictionaryEnabled: this.isDictionaryEnabled(),
155
+ projectId: projectId,
156
+ translationEnabled: translationEnabled,
157
+ runtimeUrl: runtimeUrl,
158
+ devApiKey: devApiKey,
159
+ dictionaryEnabled: dictionaryEnabled,
160
+ renderSettings: renderSettings,
161
+ runtimeTranslationEnabled: developmentApiEnabled,
155
162
  };
156
163
  };
164
+ // ----- LOCALES ----- //
157
165
  /**
158
166
  * Gets the application's default locale
159
167
  * @returns {string} A BCP-47 locale tag
@@ -168,53 +176,45 @@ var I18NConfiguration = /** @class */ (function () {
168
176
  I18NConfiguration.prototype.getLocales = function () {
169
177
  return this.locales;
170
178
  };
179
+ // ----- FEATURE FLAGS ----- //
171
180
  /**
172
- * @returns true if dictionaries are enabled
173
- */
174
- I18NConfiguration.prototype.isDictionaryEnabled = function () {
175
- return this._usingPlugin;
176
- };
177
- /**
178
- * @returns A boolean indicating whether automatic translation is enabled or disabled for this config
181
+ * @returns true if build time translation is enabled
179
182
  */
180
183
  I18NConfiguration.prototype.isTranslationEnabled = function () {
181
184
  return this.translationEnabled;
182
185
  };
183
186
  /**
184
- * Runtime translation is enabled on server side
185
- * @returns {boolean} A boolean indicating whether the dev runtime translation is enabled
187
+ * @returns true if dictionaries are enabled
186
188
  */
187
- I18NConfiguration.prototype.isServerRuntimeTranslationEnabled = function () {
188
- return this.serverRuntimeTranslationEnabled;
189
+ I18NConfiguration.prototype.isDictionaryEnabled = function () {
190
+ return this.dictionaryEnabled;
189
191
  };
190
192
  /**
191
- * Runtime translation for clientside
192
- * @returns {boolean} A boolean indicating whether the client runtime translation is enabled
193
+ * @returns true if development runtime translation API is enabled
193
194
  */
194
- I18NConfiguration.prototype.isClientRuntimeTranslationEnabled = function () {
195
- return this.clientRuntimeTranslationEnabled;
195
+ I18NConfiguration.prototype.isDevelopmentApiEnabled = function () {
196
+ return this.developmentApiEnabled;
196
197
  };
197
198
  /**
198
- * Get the rendering instructions
199
- * @returns An object containing the current method and timeout.
200
- * As of 1/22/25: method is "skeleton", "replace", "default".
201
- * Timeout is a number or null, representing no assigned timeout.
199
+ * @returns true if production runtime translation API is enabled
202
200
  */
203
- I18NConfiguration.prototype.getRenderSettings = function () {
204
- return this.renderSettings;
201
+ I18NConfiguration.prototype.isProductionApiEnabled = function () {
202
+ return this.productionApiEnabled;
205
203
  };
204
+ // ----- UTILITY FUNCTIONS ----- //
206
205
  /**
207
206
  * Check if translation is required based on the user's locale
208
207
  * @param locale - The user's locale
209
208
  * @returns True if translation is required, otherwise false
210
209
  */
211
210
  I18NConfiguration.prototype.requiresTranslation = function (locale) {
212
- return (this.isTranslationEnabled() &&
213
- (0, generaltranslation_1.requiresTranslation)(this.defaultLocale, locale, this.locales));
214
- };
215
- I18NConfiguration.prototype.addGTIdentifier = function (children) {
216
- return (0, internal_1.addGTIdentifier)(children);
211
+ if (!this.translationEnabled)
212
+ return [false, false];
213
+ var translationRequired = (0, generaltranslation_1.requiresTranslation)(this.defaultLocale, locale, this.locales);
214
+ var dialectTranslationRequired = translationRequired && (0, generaltranslation_1.isSameLanguage)(locale, this.defaultLocale);
215
+ return [translationRequired, dialectTranslationRequired];
217
216
  };
217
+ // ----- CACHED TRANSLATIONS ----- //
218
218
  /**
219
219
  * Get the translation dictionaries for this user's locale, if they exist
220
220
  * Globally shared cache or saved locally
@@ -233,7 +233,7 @@ var I18NConfiguration = /** @class */ (function () {
233
233
  });
234
234
  };
235
235
  /**
236
- * Retrieves translations for a given locale which are already cached locally
236
+ * Synchronously retrieves translations for a given locale which are already cached locally
237
237
  * @param {string} locale - The locale code.
238
238
  * @returns {TranslationsObject} The translations data or an empty object if not found.
239
239
  */
@@ -241,6 +241,7 @@ var I18NConfiguration = /** @class */ (function () {
241
241
  var _a;
242
242
  return ((_a = this._translationManager) === null || _a === void 0 ? void 0 : _a.getRecentTranslations(locale)) || {};
243
243
  };
244
+ // ----- RUNTIME TRANSLATION ----- //
244
245
  /**
245
246
  * Translate content into language associated with a given locale
246
247
  * @param params - Parameters for translation
@@ -279,13 +280,13 @@ var I18NConfiguration = /** @class */ (function () {
279
280
  * @param params - Parameters for translation
280
281
  * @returns A promise that resolves when translation is complete
281
282
  */
282
- I18NConfiguration.prototype.translateChildren = function (params) {
283
+ I18NConfiguration.prototype.translateJsx = function (params) {
283
284
  return __awaiter(this, void 0, void 0, function () {
284
- var source, targetLocale, metadata, cacheKey, translationPromise;
285
+ var source, targetLocale, options, cacheKey, translationPromise;
285
286
  var _this = this;
286
287
  return __generator(this, function (_a) {
287
- source = params.source, targetLocale = params.targetLocale, metadata = params.metadata;
288
- cacheKey = constructCacheKey(targetLocale, metadata);
288
+ source = params.source, targetLocale = params.targetLocale, options = params.options;
289
+ cacheKey = constructCacheKey(targetLocale, options);
289
290
  if (this._translationCache.has(cacheKey)) {
290
291
  return [2 /*return*/, this._translationCache.get(cacheKey)];
291
292
  }
@@ -295,12 +296,11 @@ var I18NConfiguration = /** @class */ (function () {
295
296
  type: 'jsx',
296
297
  source: source,
297
298
  targetLocale: targetLocale,
298
- metadata: metadata,
299
+ metadata: options,
299
300
  resolve: resolve,
300
301
  reject: reject,
301
302
  });
302
303
  }).catch(function (error) {
303
- console.error(error);
304
304
  _this._translationCache.delete(cacheKey);
305
305
  throw new Error(error);
306
306
  });
@@ -325,7 +325,7 @@ var I18NConfiguration = /** @class */ (function () {
325
325
  case 1:
326
326
  _b.trys.push([1, 6, 7, 8]);
327
327
  fetchWithAbort = function (url, options, timeout) { return __awaiter(_this, void 0, void 0, function () {
328
- var controller, timeoutId, error_2;
328
+ var controller, timeoutId;
329
329
  return __generator(this, function (_a) {
330
330
  switch (_a.label) {
331
331
  case 0:
@@ -335,19 +335,14 @@ var I18NConfiguration = /** @class */ (function () {
335
335
  : setTimeout(function () { return controller.abort(); }, timeout);
336
336
  _a.label = 1;
337
337
  case 1:
338
- _a.trys.push([1, 3, 4, 5]);
338
+ _a.trys.push([1, , 3, 4]);
339
339
  return [4 /*yield*/, fetch(url, __assign(__assign({}, options), { signal: controller.signal }))];
340
340
  case 2: return [2 /*return*/, _a.sent()];
341
341
  case 3:
342
- error_2 = _a.sent();
343
- if (error_2 instanceof Error && error_2.name === 'AbortError')
344
- throw new Error('Request timed out'); // Handle the timeout case
345
- throw error_2; // Re-throw other errors
346
- case 4:
347
342
  if (timeoutId !== undefined)
348
343
  clearTimeout(timeoutId); // Ensure timeout is cleared
349
344
  return [7 /*endfinally*/];
350
- case 5: return [2 /*return*/];
345
+ case 4: return [2 /*return*/];
351
346
  }
352
347
  });
353
348
  }); };
@@ -415,13 +410,20 @@ var I18NConfiguration = /** @class */ (function () {
415
410
  return [3 /*break*/, 8];
416
411
  case 6:
417
412
  error_1 = _b.sent();
418
- console.error(error_1);
413
+ // Error logging
414
+ if (error_1 instanceof Error && error_1.name === 'AbortError') {
415
+ console.warn(createErrors_1.runtimeTranslationTimeoutWarning); // Warning for timeout
416
+ }
417
+ else {
418
+ console.error(error_1);
419
+ }
420
+ // Reject all promises
419
421
  batch.forEach(function (request) {
420
422
  // record translation error
421
423
  if (_this._translationManager) {
422
424
  _this._translationManager.setTranslations(request.targetLocale, request.metadata.hash, { state: 'error', error: 'Translation failed.', code: 500 });
423
425
  }
424
- return request.reject(new internal_1.GTTranslationError('Translation failed.', 500));
426
+ return request.reject(new internal_1.GTTranslationError('Translation failed:' + error_1, 500));
425
427
  });
426
428
  return [3 /*break*/, 8];
427
429
  case 7:
@@ -1 +1 @@
1
- {"version":3,"file":"I18NConfiguration.js","sourceRoot":"","sources":["../../src/config-dir/I18NConfiguration.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"I18NConfiguration.js","sourceRoot":"","sources":["../../src/config-dir/I18NConfiguration.ts"],"names":[],"mappings":"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"}
@@ -4,14 +4,12 @@ import { TranslationsObject, TranslationLoading, TranslationError, TranslationSu
4
4
  * @typedef {object} TranslationManagerConfig
5
5
  * @property {string} cacheUrl - The URL of the remote cache.
6
6
  * @property {string} projectId - The project identifier for translations.
7
- * @property {number} [cacheExpiryTime=60000] - The cache expiration time in milliseconds.
8
7
  */
9
8
  export type TranslationManagerConfig = {
10
9
  cacheUrl?: string | null;
11
10
  projectId?: string;
12
- cacheExpiryTime?: number;
13
11
  _versionId?: string;
14
- loadTranslationEnabled: boolean;
12
+ translationEnabled: boolean;
15
13
  };
16
14
  /**
17
15
  * Manages remote translations.
@@ -21,7 +19,6 @@ export declare class TranslationManager {
21
19
  private translationsMap;
22
20
  private fetchPromises;
23
21
  private requestedTranslations;
24
- private lastFetchTime;
25
22
  /**
26
23
  * Creates an instance of TranslationManager.
27
24
  * @constructor
@@ -38,31 +35,23 @@ export declare class TranslationManager {
38
35
  * @returns {Promise<TranslationsObject | undefined>} The fetched translations or undefined if not found.
39
36
  */
40
37
  private _fetchTranslations;
41
- /**
42
- * Checks if translations are expired based on the configured TTL.
43
- * @param {string} reference - The translation reference.
44
- * @returns {boolean} True if expired, false otherwise.
45
- */
46
- private _isExpired;
47
38
  /**
48
39
  * Retrieves translations for a given locale from the remote or local cache.
49
40
  * @param {string} locale - The locale code.
50
- * @returns {Promise<TranslationsObject | undefined>} The translations data or null if not found.
41
+ * @returns {Promise<TranslationsObject | undefined>} The translations data or undefined if not found.
51
42
  */
52
43
  getCachedTranslations(locale: string): Promise<TranslationsObject | undefined>;
53
44
  /**
54
- * Retrieves translations for a given locale which are already cached locally
45
+ * Retrieves translations for a given locale which are already cached locally.
55
46
  * @param {string} locale - The locale code.
56
- * @returns {Promise<TranslationsObject | undefined>} The translations data or null if not found.
47
+ * @returns {TranslationsObject | undefined} The translations data or undefined if not found.
57
48
  */
58
49
  getRecentTranslations(locale: string): TranslationsObject | undefined;
59
50
  /**
60
51
  * Sets a new translation entry.
61
52
  * @param {string} locale - The locale code.
62
53
  * @param {string} hash - The key for the new entry.
63
- * @param {string} [id=hash] - The id for the new entry, defaults to key if not provided.
64
- * @param {any} translation - The translation value.
65
- * @param {boolean} [isRuntimeTranslation=true] - Whether the translation was a runtime translation.
54
+ * @param {TranslationSuccess | TranslationLoading | TranslationError} translation - The translation value.
66
55
  * @returns {boolean} True if the entry was set successfully, false otherwise.
67
56
  */
68
57
  setTranslations(locale: string, hash: string, translation: TranslationSuccess | TranslationLoading | TranslationError): boolean;
@@ -1 +1 @@
1
- {"version":3,"file":"TranslationManager.d.ts","sourceRoot":"","sources":["../../src/config-dir/TranslationManager.ts"],"names":[],"mappings":"AAGA,OAAO,EACL,kBAAkB,EAClB,kBAAkB,EAClB,gBAAgB,EAChB,kBAAkB,EACnB,MAAM,mBAAmB,CAAC;AAG3B;;;;;;GAMG;AACH,MAAM,MAAM,wBAAwB,GAAG;IACrC,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACzB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,sBAAsB,EAAE,OAAO,CAAC;CACjC,CAAC;AAEF;;GAEG;AACH,qBAAa,kBAAkB;IAC7B,OAAO,CAAC,MAAM,CAA2B;IACzC,OAAO,CAAC,eAAe,CAAkC;IACzD,OAAO,CAAC,aAAa,CAAuD;IAC5E,OAAO,CAAC,qBAAqB,CAAuB;IACpD,OAAO,CAAC,aAAa,CAAsB;IAE3C;;;OAGG;;IAeH;;;OAGG;IACH,SAAS,CAAC,SAAS,EAAE,OAAO,CAAC,wBAAwB,CAAC,GAAG,IAAI;IAI7D;;;;OAIG;YACW,kBAAkB;IAqBhC;;;;OAIG;IACH,OAAO,CAAC,UAAU;IASlB;;;;OAIG;IACG,qBAAqB,CACzB,MAAM,EAAE,MAAM,GACb,OAAO,CAAC,kBAAkB,GAAG,SAAS,CAAC;IA6B1C;;;;OAIG;IACH,qBAAqB,CAAC,MAAM,EAAE,MAAM,GAAG,kBAAkB,GAAG,SAAS;IAMrE;;;;;;;;OAQG;IACH,eAAe,CACb,MAAM,EAAE,MAAM,EACd,IAAI,EAAE,MAAM,EACZ,WAAW,EAAE,kBAAkB,GAAG,kBAAkB,GAAG,gBAAgB,GACtE,OAAO;IAaV;;;OAGG;IACH,uBAAuB,CAAC,MAAM,EAAE,MAAM,GAAG,IAAI;IAK7C;;;;OAIG;IACH,uBAAuB,CAAC,MAAM,EAAE,MAAM,GAAG,OAAO;CAIjD;AAED,QAAA,MAAM,kBAAkB,oBAA2B,CAAC;AACpD,eAAe,kBAAkB,CAAC"}
1
+ {"version":3,"file":"TranslationManager.d.ts","sourceRoot":"","sources":["../../src/config-dir/TranslationManager.ts"],"names":[],"mappings":"AAGA,OAAO,EACL,kBAAkB,EAClB,kBAAkB,EAClB,gBAAgB,EAChB,kBAAkB,EACnB,MAAM,mBAAmB,CAAC;AAG3B;;;;;GAKG;AACH,MAAM,MAAM,wBAAwB,GAAG;IACrC,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACzB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,kBAAkB,EAAE,OAAO,CAAC;CAC7B,CAAC;AAEF;;GAEG;AACH,qBAAa,kBAAkB;IAC7B,OAAO,CAAC,MAAM,CAA2B;IACzC,OAAO,CAAC,eAAe,CAAkC;IACzD,OAAO,CAAC,aAAa,CAAuD;IAC5E,OAAO,CAAC,qBAAqB,CAAuB;IAEpD;;;OAGG;;IAaH;;;OAGG;IACH,SAAS,CAAC,SAAS,EAAE,OAAO,CAAC,wBAAwB,CAAC,GAAG,IAAI;IAI7D;;;;OAIG;YACW,kBAAkB;IAahC;;;;OAIG;IACG,qBAAqB,CACzB,MAAM,EAAE,MAAM,GACb,OAAO,CAAC,kBAAkB,GAAG,SAAS,CAAC;IA2B1C;;;;OAIG;IACH,qBAAqB,CAAC,MAAM,EAAE,MAAM,GAAG,kBAAkB,GAAG,SAAS;IAKrE;;;;;;OAMG;IACH,eAAe,CACb,MAAM,EAAE,MAAM,EACd,IAAI,EAAE,MAAM,EACZ,WAAW,EAAE,kBAAkB,GAAG,kBAAkB,GAAG,gBAAgB,GACtE,OAAO;IAWV;;;OAGG;IACH,uBAAuB,CAAC,MAAM,EAAE,MAAM,GAAG,IAAI;IAK7C;;;;OAIG;IACH,uBAAuB,CAAC,MAAM,EAAE,MAAM,GAAG,OAAO;CAIjD;AAED,QAAA,MAAM,kBAAkB,oBAA2B,CAAC;AACpD,eAAe,kBAAkB,CAAC"}