@ikas/storefront-next 4.0.0-alpha.5 → 4.0.0-alpha.50

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ikas/storefront-next",
3
- "version": "4.0.0-alpha.5",
3
+ "version": "4.0.0-alpha.50",
4
4
  "description": "Next.js specific functions for ikas storefront themes.",
5
5
  "author": "Umut Ozan Yıldırım",
6
6
  "license": "ISC",
@@ -16,24 +16,24 @@
16
16
  "build": "rm -rf build && rollup -c"
17
17
  },
18
18
  "peerDependencies": {
19
- "next": "canary",
20
- "@ikas/storefront-config": "^4.0.0-alpha.5",
21
- "@ikas/storefront-providers": "^4.0.0-alpha.5",
22
- "@ikas/storefront-models": "^4.0.0-alpha.5",
23
- "@ikas/storefront-api": "^4.0.0-alpha.5",
24
- "@ikas/storefront-assets": "^4.0.0-alpha.5",
19
+ "next": "12.2.0",
20
+ "@ikas/storefront-config": "^4.0.0-alpha.50",
21
+ "@ikas/storefront-providers": "^4.0.0-alpha.50",
22
+ "@ikas/storefront-models": "^4.0.0-alpha.50",
23
+ "@ikas/storefront-api": "^4.0.0-alpha.50",
24
+ "@ikas/storefront-assets": "^4.0.0-alpha.50",
25
25
  "axios": "^0.21.0",
26
26
  "lodash": "^4.17.21",
27
27
  "archiver": "^5.3.0",
28
28
  "cors": "^2.8.5"
29
29
  },
30
30
  "devDependencies": {
31
- "@ikas/storefront-cmd": "^4.0.0-alpha.5",
32
- "@ikas/storefront-config": "^4.0.0-alpha.5",
33
- "@ikas/storefront-providers": "^4.0.0-alpha.5",
34
- "@ikas/storefront-models": "^4.0.0-alpha.5",
35
- "@ikas/storefront-api": "^4.0.0-alpha.5",
36
- "@ikas/storefront-assets": "^4.0.0-alpha.5",
31
+ "@ikas/storefront-cmd": "^4.0.0-alpha.50",
32
+ "@ikas/storefront-config": "^4.0.0-alpha.50",
33
+ "@ikas/storefront-providers": "^4.0.0-alpha.50",
34
+ "@ikas/storefront-models": "^4.0.0-alpha.50",
35
+ "@ikas/storefront-api": "^4.0.0-alpha.50",
36
+ "@ikas/storefront-assets": "^4.0.0-alpha.50",
37
37
  "@rollup/plugin-node-resolve": "^13.3.0",
38
38
  "@rollup/plugin-commonjs": "^22.0.0",
39
39
  "@rollup/plugin-json": "^4.1.0",
@@ -42,7 +42,7 @@
42
42
  "@types/node-fetch": "^2.5.7",
43
43
  "@types/cors": "^2.8.9",
44
44
  "@types/lodash": "^4.14.168",
45
- "next": "canary",
45
+ "next": "12.2.0",
46
46
  "prettier": "^2.2.1",
47
47
  "rollup": "^2.75.6",
48
48
  "rollup-plugin-terser": "^7.0.2",
@@ -4,6 +4,8 @@ import archiver from "archiver";
4
4
  import { NextApiRequest, NextApiResponse } from "next";
5
5
  import axios from "axios";
6
6
 
7
+ //@ts-ignore
8
+ import CheckoutDE from "@ikas/storefront-assets/checkout/de.js";
7
9
  //@ts-ignore
8
10
  import CheckoutEN from "@ikas/storefront-assets/checkout/en.js";
9
11
  //@ts-ignore
@@ -166,7 +168,7 @@ async function saveTheme(theme: any, localization: Record<string, any>) {
166
168
  // "Content-Type": "application/json",
167
169
  // },
168
170
  // });
169
- const responseJSON = await response.data();
171
+ const responseJSON = await response.data;
170
172
 
171
173
  if (responseJSON.data && responseJSON.data.saveTheme) {
172
174
  return responseJSON.data.saveTheme.uploadUrl as string;
@@ -290,6 +292,8 @@ function readLocalizationFiles(): Promise<Record<string, any>> {
290
292
 
291
293
  if (strippedLocale === "tr") {
292
294
  locales[strippedLocale]["checkout-page"] = CheckoutTR;
295
+ } else if (strippedLocale === "de") {
296
+ locales[strippedLocale]["checkout-page"] = CheckoutDE;
293
297
  } else {
294
298
  locales[strippedLocale]["checkout-page"] = CheckoutEN;
295
299
  }
@@ -21,7 +21,7 @@ import { IkasStorefrontConfig } from "@ikas/storefront-config";
21
21
  import {
22
22
  listCheckoutSettings,
23
23
  listMerchantSettings,
24
- IkasAPIClientConfig,
24
+ setAPIClientConfig,
25
25
  getStorefrontSettings,
26
26
  IkasStorefrontSettings,
27
27
  } from "@ikas/storefront-api";
@@ -98,19 +98,6 @@ export class IkasNextPageDataProvider {
98
98
  } catch {}
99
99
  }
100
100
 
101
- static setAPIClientConfig() {
102
- IkasAPIClientConfig.URL = IkasStorefrontConfig.getApiUrl() || "";
103
- IkasAPIClientConfig.HEADERS = {
104
- "x-api-key": IkasStorefrontConfig.getApiKey() || "",
105
- "x-sfid": IkasStorefrontConfig.getStorefrontId() || "",
106
- "x-sfrid": IkasStorefrontConfig.getStorefrontRoutingId() || "",
107
- };
108
-
109
- if (IkasStorefrontConfig.getCustomerToken()) {
110
- IkasAPIClientConfig.TOKEN = IkasStorefrontConfig.getCustomerToken() || "";
111
- }
112
- }
113
-
114
101
  static async getLocalSettings(locale: string): Promise<SettingsData | null> {
115
102
  let settings: IkasStorefrontSettings =
116
103
  await IkasNextPageDataProvider.readLocalSettingsFile();
@@ -187,6 +174,8 @@ export class IkasNextPageDataProvider {
187
174
  locale: "en",
188
175
  path: null,
189
176
  priceListId: null,
177
+ currencyCode: "USD",
178
+ currencySymbol: "$",
190
179
  },
191
180
  favicon: localTheme.settings.favicon,
192
181
  stockPreference: localTheme.settings.stockPreference,
@@ -348,6 +337,8 @@ export class IkasNextPageDataProvider {
348
337
  customerReviewSettings: customerReviewSettings,
349
338
  merchantSettings,
350
339
  });
340
+
341
+ setAPIClientConfig();
351
342
  }
352
343
 
353
344
  static async setTranslations(
@@ -448,13 +439,12 @@ export class IkasNextPageDataProvider {
448
439
  const isLocal = process.env.NEXT_PUBLIC_ENV === "local";
449
440
  const isProdEditor = !isLocal && isEditor;
450
441
 
451
- IkasNextPageDataProvider.setAPIClientConfig();
452
-
453
442
  IkasStorefrontConfig.init({
454
443
  apiUrl: process.env.NEXT_PUBLIC_GQL_URL,
455
444
  adminApiUrl: process.env.NEXT_PUBLIC_UPLOAD_GQL_URL,
456
445
  cdnUrl: process.env.NEXT_PUBLIC_IMG_BASE_URL,
457
446
  });
447
+ setAPIClientConfig();
458
448
 
459
449
  // Local editor - prod deploy - local build
460
450
  if (!isProdEditor) {
package/src/utils/i18n.ts CHANGED
@@ -42,6 +42,12 @@ export class I18NFileReader {
42
42
  "@ikas/storefront-assets/checkout/tr.js"
43
43
  );
44
44
  checkoutTranslation = imported.default;
45
+ } else if (this.locale === "de") {
46
+ const imported = await import(
47
+ //@ts-ignore
48
+ "@ikas/storefront-assets/checkout/de.js"
49
+ );
50
+ checkoutTranslation = imported.default;
45
51
  } else {
46
52
  const imported = await import(
47
53
  //@ts-ignore