@akinon/projectzero 1.101.0-rc.76 → 1.101.0-snapshot-ZERO-3615-20250924121313

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 (65) hide show
  1. package/CHANGELOG.md +5 -238
  2. package/app-template/.env.example +0 -1
  3. package/app-template/CHANGELOG.md +304 -5040
  4. package/app-template/README.md +1 -25
  5. package/app-template/package.json +19 -21
  6. package/app-template/public/locales/en/checkout.json +0 -6
  7. package/app-template/public/locales/en/common.json +1 -48
  8. package/app-template/public/locales/tr/checkout.json +0 -6
  9. package/app-template/public/locales/tr/common.json +1 -48
  10. package/app-template/src/app/[commerce]/[locale]/[currency]/basket/page.tsx +82 -9
  11. package/app-template/src/app/[commerce]/[locale]/[currency]/category/[pk]/page.tsx +4 -17
  12. package/app-template/src/app/[commerce]/[locale]/[currency]/flat-page/[pk]/page.tsx +1 -12
  13. package/app-template/src/app/[commerce]/[locale]/[currency]/group-product/[pk]/page.tsx +11 -29
  14. package/app-template/src/app/[commerce]/[locale]/[currency]/landing-page/[pk]/page.tsx +1 -12
  15. package/app-template/src/app/[commerce]/[locale]/[currency]/product/[pk]/page.tsx +10 -28
  16. package/app-template/src/app/[commerce]/[locale]/[currency]/special-page/[pk]/page.tsx +1 -12
  17. package/app-template/src/app/api/form/[...id]/route.ts +7 -1
  18. package/app-template/src/assets/fonts/pz-icon.css +0 -3
  19. package/app-template/src/components/__tests__/link.test.tsx +0 -2
  20. package/app-template/src/components/accordion.tsx +19 -22
  21. package/app-template/src/components/currency-select.tsx +0 -1
  22. package/app-template/src/components/file-input.tsx +7 -27
  23. package/app-template/src/components/generate-form-fields.tsx +4 -43
  24. package/app-template/src/components/input.tsx +2 -9
  25. package/app-template/src/components/modal.tsx +16 -32
  26. package/app-template/src/components/pagination.tsx +0 -1
  27. package/app-template/src/components/price.tsx +1 -1
  28. package/app-template/src/components/select.tsx +26 -38
  29. package/app-template/src/components/types/index.ts +1 -25
  30. package/app-template/src/hooks/index.ts +0 -2
  31. package/app-template/src/plugins.js +1 -3
  32. package/app-template/src/settings.js +2 -8
  33. package/app-template/src/types/index.ts +0 -17
  34. package/app-template/src/views/account/address-form.tsx +4 -8
  35. package/app-template/src/views/account/contact-form.tsx +1 -1
  36. package/app-template/src/views/account/content-header.tsx +2 -2
  37. package/app-template/src/views/account/faq/faq-tabs.tsx +2 -8
  38. package/app-template/src/views/basket/basket-item.tsx +14 -22
  39. package/app-template/src/views/basket/summary.tsx +7 -10
  40. package/app-template/src/views/breadcrumb.tsx +2 -2
  41. package/app-template/src/views/category/category-info.tsx +0 -1
  42. package/app-template/src/views/category/filters/index.tsx +1 -1
  43. package/app-template/src/views/checkout/summary.tsx +0 -10
  44. package/app-template/src/views/guest-login/index.tsx +1 -6
  45. package/app-template/src/views/header/action-menu.tsx +1 -1
  46. package/app-template/src/views/header/search/index.tsx +5 -17
  47. package/app-template/src/views/product/product-info.tsx +263 -62
  48. package/app-template/src/views/product/slider.tsx +73 -86
  49. package/app-template/src/widgets/footer-menu.tsx +2 -6
  50. package/commands/plugins.ts +16 -63
  51. package/dist/commands/plugins.js +16 -57
  52. package/package.json +1 -1
  53. package/app-template/.github/instructions/routing.instructions.md +0 -603
  54. package/app-template/src/app/[commerce]/[locale]/[currency]/product/[pk]/loading.tsx +0 -67
  55. package/app-template/src/app/api/image-proxy/route.ts +0 -1
  56. package/app-template/src/app/api/similar-product-list/route.ts +0 -1
  57. package/app-template/src/app/api/similar-products/route.ts +0 -1
  58. package/app-template/src/hooks/use-product-cart.ts +0 -77
  59. package/app-template/src/hooks/use-stock-alert.ts +0 -74
  60. package/app-template/src/utils/variant-validation.ts +0 -41
  61. package/app-template/src/views/basket/basket-content.tsx +0 -106
  62. package/app-template/src/views/checkout/steps/payment/options/store-credit.tsx +0 -121
  63. package/app-template/src/views/product/product-actions.tsx +0 -165
  64. package/app-template/src/views/product/product-share.tsx +0 -56
  65. package/app-template/src/views/product/product-variants.tsx +0 -26
@@ -12,30 +12,6 @@ Run `cp .env.example .env && yarn` command at project root and all dependencies
12
12
 
13
13
  - `SITEMAP_S3_BUCKET_NAME`: S3 bucket name for XML sitemaps (e.g., "0fb534"). This is required for the sitemap route to function correctly.
14
14
 
15
- ### Optional Environment Variables
16
-
17
- - `NEXT_PUBLIC_ENABLE_IMAGE_SEARCH`: Set to `true` to enable image search feature for all users. If not set or `false`, the feature will only be visible to users who have enabled it via localStorage.
18
-
19
- ## Image Search Feature
20
-
21
- The image search functionality allows users to search for similar products by uploading images or cropping existing product images.
22
-
23
- ### Feature Visibility Control
24
-
25
- The image search feature can be controlled in two ways:
26
-
27
- 1. **Environment Variable (Global)**: Set `NEXT_PUBLIC_ENABLE_IMAGE_SEARCH=true` to enable for all users
28
- 2. **localStorage (Individual Users)**: Users can enable it locally using browser developer tools
29
-
30
- ````
31
-
32
- ### Feature Locations
33
-
34
- When enabled, the image search feature appears in:
35
-
36
- - **Header Search**: Camera icon next to the search input
37
- - **Product Detail Page**: "View Similar Styles" button on product images
38
-
39
15
  ### Build
40
16
 
41
17
  To build the app, run the following command:
@@ -43,7 +19,7 @@ To build the app, run the following command:
43
19
  ```bash
44
20
  cd projectzeronext # Project root
45
21
  yarn build
46
- ````
22
+ ```
47
23
 
48
24
  ### Develop
49
25
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "projectzeronext",
3
- "version": "1.101.0-rc.76",
3
+ "version": "1.100.0",
4
4
  "private": true,
5
5
  "license": "MIT",
6
6
  "scripts": {
@@ -24,24 +24,22 @@
24
24
  "test:middleware": "jest middleware-matcher.test.ts --bail"
25
25
  },
26
26
  "dependencies": {
27
- "@akinon/next": "1.101.0-rc.76",
28
- "@akinon/pz-akifast": "1.101.0-rc.76",
29
- "@akinon/pz-b2b": "1.101.0-rc.76",
30
- "@akinon/pz-basket-gift-pack": "1.101.0-rc.76",
31
- "@akinon/pz-bkm": "1.101.0-rc.76",
32
- "@akinon/pz-checkout-gift-pack": "1.101.0-rc.76",
33
- "@akinon/pz-click-collect": "1.101.0-rc.76",
34
- "@akinon/pz-credit-payment": "1.101.0-rc.76",
35
- "@akinon/pz-gpay": "1.101.0-rc.76",
36
- "@akinon/pz-hepsipay": "1.101.0-rc.76",
37
- "@akinon/pz-masterpass": "1.101.0-rc.76",
38
- "@akinon/pz-one-click-checkout": "1.101.0-rc.76",
39
- "@akinon/pz-otp": "1.101.0-rc.76",
40
- "@akinon/pz-pay-on-delivery": "1.101.0-rc.76",
41
- "@akinon/pz-saved-card": "1.101.0-rc.76",
42
- "@akinon/pz-similar-products": "1.101.0-rc.76",
43
- "@akinon/pz-tabby-extension": "1.101.0-rc.76",
44
- "@akinon/pz-tamara-extension": "1.101.0-rc.76",
27
+ "@akinon/next": "1.100.0",
28
+ "@akinon/pz-akifast": "1.100.0",
29
+ "@akinon/pz-b2b": "1.100.0",
30
+ "@akinon/pz-basket-gift-pack": "1.100.0",
31
+ "@akinon/pz-bkm": "1.100.0",
32
+ "@akinon/pz-checkout-gift-pack": "1.100.0",
33
+ "@akinon/pz-click-collect": "1.100.0",
34
+ "@akinon/pz-credit-payment": "1.100.0",
35
+ "@akinon/pz-gpay": "1.100.0",
36
+ "@akinon/pz-masterpass": "1.100.0",
37
+ "@akinon/pz-one-click-checkout": "1.100.0",
38
+ "@akinon/pz-otp": "1.100.0",
39
+ "@akinon/pz-pay-on-delivery": "1.100.0",
40
+ "@akinon/pz-saved-card": "1.100.0",
41
+ "@akinon/pz-tabby-extension": "1.100.0",
42
+ "@akinon/pz-tamara-extension": "1.100.0",
45
43
  "@hookform/resolvers": "2.9.0",
46
44
  "@next/third-parties": "14.1.0",
47
45
  "@react-google-maps/api": "2.17.1",
@@ -64,7 +62,7 @@
64
62
  "yup": "0.32.11"
65
63
  },
66
64
  "devDependencies": {
67
- "@akinon/eslint-plugin-projectzero": "1.101.0-rc.76",
65
+ "@akinon/eslint-plugin-projectzero": "1.100.0",
68
66
  "@semantic-release/changelog": "6.0.2",
69
67
  "@semantic-release/exec": "6.0.3",
70
68
  "@semantic-release/git": "10.0.1",
@@ -92,7 +90,7 @@
92
90
  "jest-environment-jsdom": "29.7.0",
93
91
  "lint-staged": "13.1.0",
94
92
  "prettier": "2.6.2",
95
- "react-number-format": "5.4.3",
93
+ "react-number-format": "5.3.4",
96
94
  "sass": "1.49.9",
97
95
  "semantic-release": "19.0.5",
98
96
  "server-only": "0.0.1",
@@ -37,7 +37,6 @@
37
37
  "subtotal": "Subtotal",
38
38
  "shipping": "Shipping",
39
39
  "discounts_total": "Discounts Total",
40
- "loyalty_money_total": "Loyalty Money Total",
41
40
  "total": "Total",
42
41
  "delivery_info": "Delivery Info",
43
42
  "change": "change",
@@ -139,11 +138,6 @@
139
138
  "payments": "Payments",
140
139
  "per_month": "Per Month",
141
140
  "total": "Total"
142
- },
143
- "store_credit": {
144
- "use_my_store_credits": "Use my pz-zero credits",
145
- "available_balance": "Available Balance",
146
- "insufficient_balance": "Your pz-zero credits are not sufficient to pay for the order, please select an additional payment method to cover the balance of <Amount/>"
147
141
  }
148
142
  },
149
143
  "agreement": {
@@ -27,25 +27,7 @@
27
27
  "clean": "clean",
28
28
  "categories": "CATEGORIES",
29
29
  "view_all": "VIEW ALL",
30
- "not_found": "Search Results Not Found",
31
- "image_search": {
32
- "title": "Search by Image",
33
- "upload_image": "Upload an image to find similar products",
34
- "select_image": "Select Image",
35
- "crop_image": "Crop Image",
36
- "cancel_crop": "Cancel Crop",
37
- "apply_crop": "Apply Crop",
38
- "try_another": "Try Another Image",
39
- "search_image": "Search Image",
40
- "similar_products": "Similar Products",
41
- "loading_cropper": "Loading cropper...",
42
- "no_products": "No similar products found",
43
- "best_results": "For best results:",
44
- "tip_1": "Upload clear images of products",
45
- "tip_2": "Use images with simple backgrounds",
46
- "tip_3": "Focus on the main product",
47
- "tip_4": "Use the crop tool to focus on specific details"
48
- }
30
+ "not_found": "Search Results Not Found"
49
31
  },
50
32
  "page_404": {
51
33
  "title": "Page not found.",
@@ -89,34 +71,5 @@
89
71
  "file_input": {
90
72
  "select_file": "Select File",
91
73
  "no_file": "No file selected"
92
- },
93
- "product": {
94
- "no_products": "No products found",
95
- "new_image": "New Image",
96
- "view_similar_styles": "View Similar Styles",
97
- "clear_all_filters": "Clear All Filters",
98
- "reset_to_original": "Reset to Original",
99
- "similar_styles": "Similar Styles",
100
- "filters": "Filters",
101
- "active_filters": "Active Filters"
102
- },
103
- "similar_products": {
104
- "errors": {
105
- "file_size_too_large": "Image size should be less than 5MB",
106
- "invalid_image_file": "The selected file is not a valid image",
107
- "invalid_image_format": "Invalid image format detected",
108
- "search_failed": "Search failed. Please try again later",
109
- "connection_failed": "Image search failed. Please check your connection and try again",
110
- "invalid_image_properties": "Invalid image properties detected",
111
- "file_read_error": "Error reading the file",
112
- "processing_error": "Error processing image",
113
- "crop_processing_error": "Error processing cropped image"
114
- }
115
- },
116
- "forms": {
117
- "sending": "Sending...",
118
- "success": "Form submitted successfully!",
119
- "error": "An error occurred while submitting the form. Please try again.",
120
- "submit_error": "Form submit error:"
121
74
  }
122
75
  }
@@ -37,7 +37,6 @@
37
37
  "subtotal": "Ara toplam",
38
38
  "shipping": "Kargo",
39
39
  "discounts_total": "İndirimler Toplamı",
40
- "loyalty_money_total": "Sadakat Parası Toplamı",
41
40
  "total": "Toplam",
42
41
  "delivery_info": "Teslimat Bilgileri",
43
42
  "change": "değiştir",
@@ -139,11 +138,6 @@
139
138
  "payments": "Ödemeler",
140
139
  "per_month": "Her ay",
141
140
  "total": "Toplam"
142
- },
143
- "store_credit": {
144
- "use_my_store_credits": "pz-zero kredilerimi kullan",
145
- "available_balance": "Mevcut Bakiyem",
146
- "insufficient_balance": "pz-zero kredileriniz siparişi ödemek için yeterli değil, lütfen <Amount/> tutarını karşılamak için ek bir ödeme yöntemi seçin."
147
141
  }
148
142
  },
149
143
  "agreement": {
@@ -27,25 +27,7 @@
27
27
  "clean": "temizle",
28
28
  "categories": "KATEGORİLER",
29
29
  "view_all": "HEPSİNİ GÖSTER",
30
- "not_found": "Arama Sonuçları Bulunamadı",
31
- "image_search": {
32
- "title": "Görsel ile Ara",
33
- "upload_image": "Benzer ürünleri bulmak için bir görsel yükleyin",
34
- "select_image": "Görsel Seç",
35
- "crop_image": "Görsel Kırp",
36
- "cancel_crop": "Kırpmayı İptal Et",
37
- "apply_crop": "Kırpmayı Uygula",
38
- "try_another": "Başka Görsel Dene",
39
- "search_image": "Arama Görseli",
40
- "similar_products": "Benzer Ürünler",
41
- "loading_cropper": "Kırpıcı yükleniyor...",
42
- "no_products": "Benzer ürün bulunamadı",
43
- "best_results": "En iyi sonuçlar için:",
44
- "tip_1": "Net ürün görselleri yükleyin",
45
- "tip_2": "Basit arka planlı görseller kullanın",
46
- "tip_3": "Ana ürüne odaklanın",
47
- "tip_4": "Belirli detaylara odaklanmak için kırpma aracını kullanın"
48
- }
30
+ "not_found": "Arama Sonuçları Bulunamadı"
49
31
  },
50
32
  "page_404": {
51
33
  "title": "Sayfa bulunamadı.",
@@ -89,34 +71,5 @@
89
71
  "file_input": {
90
72
  "select_file": "Dosya Seç",
91
73
  "no_file": "Dosya seçilmedi"
92
- },
93
- "product": {
94
- "no_products": "Ürün bulunamadı",
95
- "new_image": "Yeni Görsel",
96
- "view_similar_styles": "Benzer Stillere Göz At",
97
- "clear_all_filters": "Tüm Filtreleri Temizle",
98
- "reset_to_original": "Orjinale Dön",
99
- "similar_styles": "Benzer Stillere Göz At",
100
- "filters": "Filtreler",
101
- "active_filters": "Aktif Filtreler"
102
- },
103
- "similar_products": {
104
- "errors": {
105
- "file_size_too_large": "Görsel boyutu 5MB'dan küçük olmalıdır",
106
- "invalid_image_file": "Seçilen dosya geçerli bir görsel değil",
107
- "invalid_image_format": "Geçersiz görsel formatı tespit edildi",
108
- "search_failed": "Arama başarısız oldu. Lütfen daha sonra tekrar deneyin",
109
- "connection_failed": "Görsel arama başarısız oldu. Lütfen bağlantınızı kontrol edip tekrar deneyin",
110
- "invalid_image_properties": "Geçersiz görsel özellikleri tespit edildi",
111
- "file_read_error": "Dosya okuma hatası",
112
- "processing_error": "Görsel işleme hatası",
113
- "crop_processing_error": "Kırpılan görsel işleme hatası"
114
- }
115
- },
116
- "forms": {
117
- "sending": "Gönderiliyor...",
118
- "success": "Form başarıyla gönderildi!",
119
- "error": "Form gönderilirken bir hata oluştu. Lütfen tekrar deneyin.",
120
- "submit_error": "Form gönderme hatası:"
121
74
  }
122
75
  }
@@ -1,14 +1,87 @@
1
- import { BasketContent } from '@theme/views/basket/basket-content';
2
- import { getBasketData } from '@akinon/next/data/server/basket';
1
+ 'use client';
2
+
3
+ import { useEffect } from 'react';
4
+ import { ROUTES } from '@theme/routes';
5
+ import { useGetBasketQuery } from '@akinon/next/data/client/basket';
6
+ import { pushCartView } from '@theme/utils/gtm';
7
+ import { Button, LoaderSpinner, Link } from '@theme/components';
8
+ import { BasketItem, Summary } from '@theme/views/basket';
9
+ import { useLocalization } from '@akinon/next/hooks';
10
+ import PluginModule, { Component } from '@akinon/next/components/plugin-module';
3
11
  import settings from '@theme/settings';
4
12
 
5
- export default async function Page() {
6
- const { basket } = await getBasketData();
13
+ export default function Page() {
14
+ const { data: basket, isLoading, isSuccess } = useGetBasketQuery();
15
+ const { t } = useLocalization();
16
+ const multiBasket = settings.plugins?.multiBasket ?? false;
17
+
18
+ useEffect(() => {
19
+ if (isSuccess) {
20
+ const products = basket.basketitem_set.map((basketItem) => ({
21
+ ...basketItem.product
22
+ }));
23
+ pushCartView(products);
24
+ }
25
+ }, [basket, isSuccess]);
26
+
27
+ return (
28
+ <div className="max-w-screen-xl p-4 flex flex-col text-primary-800 lg:p-8 xl:flex-row xl:mx-auto">
29
+ {isLoading && (
30
+ <div className="flex justify-center w-full">
31
+ <LoaderSpinner />
32
+ </div>
33
+ )}
34
+ {isSuccess &&
35
+ (basket && basket.basketitem_set && basket.basketitem_set.length > 0 ? (
36
+ <>
37
+ <div className="flex-1 xl:mr-16">
38
+ <div className="flex items-center justify-between py-2 border-b border-gray-200 lg:py-3">
39
+ <h2 className="text-xl lg:text-2xl font-light">
40
+ {t('basket.my_cart')}
41
+ </h2>
42
+ <Link
43
+ href={ROUTES.HOME}
44
+ className="text-xs hover:text-secondary-500"
45
+ >
46
+ {t('basket.back_to_shopping')}
47
+ </Link>
48
+ </div>
49
+ <ul>
50
+ {multiBasket ? (
51
+ <PluginModule
52
+ component={Component.MultiBasket}
53
+ props={{ BasketItem }}
54
+ />
55
+ ) : (
56
+ basket.basketitem_set.map((basketItem, index) => (
57
+ <BasketItem basketItem={basketItem} key={index} />
58
+ ))
59
+ )}
60
+ </ul>
61
+ </div>
62
+ <Summary basket={basket} />
63
+ </>
64
+ ) : (
65
+ <div className="flex flex-col items-center container max-w-screen-sm py-4 px-4 xs:py-6 xs:px-6 sm:py-8 sm:px-8 lg:max-w-screen-xl">
66
+ <h1
67
+ className="w-full text-xl font-light text-secondary text-center sm:text-2xl"
68
+ data-testid="basket-empty"
69
+ >
70
+ {t('basket.empty.title')}
71
+ </h1>
7
72
 
8
- const multiBasket: boolean =
9
- typeof settings.plugins?.multiBasket === 'boolean'
10
- ? settings.plugins.multiBasket
11
- : false;
73
+ <div className="w-full text-sm text-black-800 text-center my-4 mb-2 sm:text-base">
74
+ <p>{t('basket.empty.content_first')}</p>
75
+ <p>{t('basket.empty.content_second')}.</p>
76
+ </div>
12
77
 
13
- return <BasketContent initialBasket={basket} multiBasket={multiBasket} />;
78
+ <Link href={ROUTES.HOME} passHref>
79
+ <Button className="px-10 mt-2" appearance="filled">
80
+ {t('basket.empty.button')}
81
+ </Button>
82
+ </Link>
83
+ </div>
84
+ ))}
85
+ </div>
86
+ );
14
87
  }
@@ -2,25 +2,12 @@ import { getCategoryData } from '@akinon/next/data/server';
2
2
  import { withSegmentDefaults } from '@akinon/next/hocs/server';
3
3
  import { PageProps } from '@akinon/next/types';
4
4
  import CategoryLayout from '@theme/views/category/layout';
5
- import { notFound } from 'next/navigation';
6
5
 
7
6
  async function Page({ params, searchParams }: PageProps<{ pk: number }>) {
8
- let categoryData;
9
-
10
- try {
11
- categoryData = await getCategoryData({
12
- pk: params.pk,
13
- searchParams
14
- });
15
- } catch (error) {
16
- return notFound();
17
- }
18
-
19
- if (!categoryData || !categoryData.data) {
20
- return notFound();
21
- }
22
-
23
- const { data, breadcrumbData } = categoryData;
7
+ const { data, breadcrumbData } = await getCategoryData({
8
+ pk: params.pk,
9
+ searchParams
10
+ });
24
11
 
25
12
  return (
26
13
  <>
@@ -1,20 +1,9 @@
1
1
  import { getFlatPageData } from '@akinon/next/data/server';
2
2
  import { withSegmentDefaults } from '@akinon/next/hocs/server';
3
3
  import { PageProps } from '@akinon/next/types';
4
- import { notFound } from 'next/navigation';
5
4
 
6
5
  async function Page({ params }: PageProps<{ pk: number }>) {
7
- let data;
8
-
9
- try {
10
- data = await getFlatPageData({ pk: params.pk });
11
- } catch (error) {
12
- return notFound();
13
- }
14
-
15
- if (!data || !data.flat_page) {
16
- return notFound();
17
- }
6
+ const data = await getFlatPageData({ pk: params.pk });
18
7
 
19
8
  return (
20
9
  <div className="container mx-auto py-6">
@@ -4,7 +4,6 @@ import { getProductData, getWidgetData } from '@akinon/next/data/server';
4
4
  import { withSegmentDefaults } from '@akinon/next/hocs/server';
5
5
  import { PageProps, Metadata } from '@akinon/next/types';
6
6
  import { generateJsonLd } from '@theme/utils/generate-jsonld';
7
- import { notFound } from 'next/navigation';
8
7
 
9
8
  export async function generateMetadata({
10
9
  params,
@@ -13,19 +12,14 @@ export async function generateMetadata({
13
12
  let result: Metadata = {};
14
13
 
15
14
  try {
16
- const productData = await getProductData({
15
+ const {
16
+ data: { product }
17
+ } = await getProductData({
17
18
  pk: params.pk,
18
19
  searchParams,
19
20
  groupProduct: true
20
21
  });
21
22
 
22
- // If product data is not found, return empty metadata
23
- if (!productData || !productData.data || !productData.data.product) {
24
- return result;
25
- }
26
-
27
- const { product } = productData.data;
28
-
29
23
  result = {
30
24
  title: product.name,
31
25
  description: String(product.attributes.description),
@@ -48,27 +42,15 @@ export async function generateMetadata({
48
42
  }
49
43
 
50
44
  async function Page({ params, searchParams }: PageProps<{ pk: number }>) {
51
- let productData;
52
- let deliveryReturn;
53
-
54
- try {
55
- [productData, deliveryReturn] = await Promise.all([
56
- getProductData({
57
- pk: params.pk,
58
- searchParams,
59
- groupProduct: true
60
- }),
61
- getWidgetData({ slug: 'product-delivery-returns' })
62
- ]);
63
- } catch (error) {
64
- return notFound();
65
- }
66
-
67
- if (!productData || !productData.data || !productData.data.product) {
68
- return notFound();
69
- }
45
+ const [{ data, breadcrumbData }, deliveryReturn] = await Promise.all([
46
+ getProductData({
47
+ pk: params.pk,
48
+ searchParams,
49
+ groupProduct: true
50
+ }),
51
+ getWidgetData({ slug: 'product-delivery-returns' })
52
+ ]);
70
53
 
71
- const { data, breadcrumbData } = productData;
72
54
  const jsonLd = generateJsonLd(data.product);
73
55
 
74
56
  return (
@@ -1,20 +1,9 @@
1
1
  import { getLandingPageData } from '@akinon/next/data/server';
2
2
  import { withSegmentDefaults } from '@akinon/next/hocs/server';
3
3
  import { PageProps } from '@akinon/next/types';
4
- import { notFound } from 'next/navigation';
5
4
 
6
5
  async function Page({ params }: PageProps<{ pk: number }>) {
7
- let data;
8
-
9
- try {
10
- data = await getLandingPageData({ pk: params.pk });
11
- } catch (error) {
12
- return notFound();
13
- }
14
-
15
- if (!data || !data.landing_page) {
16
- return notFound();
17
- }
6
+ const data = await getLandingPageData({ pk: params.pk });
18
7
 
19
8
  const content = data.landing_page;
20
9
 
@@ -4,7 +4,6 @@ import { PageProps, Metadata } from '@akinon/next/types';
4
4
  import { generateJsonLd } from '@theme/utils/generate-jsonld';
5
5
  import { AccordionWrapper, ProductInfo } from '@theme/views/product';
6
6
  import ProductLayout from '@theme/views/product/layout';
7
- import { notFound } from 'next/navigation';
8
7
 
9
8
  export async function generateMetadata({
10
9
  params,
@@ -13,17 +12,13 @@ export async function generateMetadata({
13
12
  let result: Metadata = {};
14
13
 
15
14
  try {
16
- const productData = await getProductData({
15
+ const {
16
+ data: { product }
17
+ } = await getProductData({
17
18
  pk: params.pk,
18
19
  searchParams
19
20
  });
20
21
 
21
- if (!productData || !productData.data || !productData.data.product) {
22
- return result;
23
- }
24
-
25
- const { product } = productData.data;
26
-
27
22
  result = {
28
23
  title: product.name,
29
24
  description: String(product.attributes.description),
@@ -46,27 +41,14 @@ export async function generateMetadata({
46
41
  }
47
42
 
48
43
  async function Page({ params, searchParams }: PageProps<{ pk: number }>) {
49
- let productData;
50
- let deliveryReturn;
51
-
52
- try {
53
- [productData, deliveryReturn] = await Promise.all([
54
- getProductData({
55
- pk: params.pk,
56
- searchParams
57
- }),
58
- getWidgetData({ slug: 'product-delivery-returns' })
59
- ]);
60
- } catch (error) {
61
- return notFound();
62
- }
63
-
64
- // If product data is not found, return 404
65
- if (!productData || !productData.data || !productData.data.product) {
66
- return notFound();
67
- }
44
+ const [{ data, breadcrumbData }, deliveryReturn] = await Promise.all([
45
+ getProductData({
46
+ pk: params.pk,
47
+ searchParams
48
+ }),
49
+ getWidgetData({ slug: 'product-delivery-returns' })
50
+ ]);
68
51
 
69
- const { data, breadcrumbData } = productData;
70
52
  const jsonLd = generateJsonLd(data.product);
71
53
 
72
54
  return (
@@ -4,20 +4,9 @@ import { PageProps } from '@akinon/next/types';
4
4
  import CategoryLayout from '@theme/views/category/layout';
5
5
  import SpecialPageBanner from '@theme/widgets/special-page-banner';
6
6
  import SpecialPageCarousel from '@theme/widgets/special-page-carousel';
7
- import { notFound } from 'next/navigation';
8
7
 
9
8
  async function Page({ params, searchParams }: PageProps<{ pk: number }>) {
10
- let data;
11
-
12
- try {
13
- data = await getSpecialPageData({ pk: params.pk, searchParams });
14
- } catch (error) {
15
- return notFound();
16
- }
17
-
18
- if (!data) {
19
- return notFound();
20
- }
9
+ const data = await getSpecialPageData({ pk: params.pk, searchParams });
21
10
 
22
11
  return (
23
12
  <>
@@ -1 +1,7 @@
1
- export * from '@akinon/next/api/form';
1
+ import { NextResponse } from 'next/server';
2
+
3
+ export async function POST() {
4
+ // TODO: Handle Form Data
5
+
6
+ return NextResponse.json({ message: 'ok' });
7
+ }
@@ -152,6 +152,3 @@ url("./pz-icon.svg?db4ba799c4ca72f4bb855458e0cd19ee#pz-icon") format("svg");
152
152
  .pz-icon-whatsapp:before {
153
153
  content: "\f12c";
154
154
  }
155
- .pz-icon-camera:before {
156
- content: "\f12d";
157
- }
@@ -30,8 +30,6 @@ describe('Link Component', () => {
30
30
  wrapper = container;
31
31
  });
32
32
 
33
- wrapper;
34
-
35
33
  it('should render without error', () => {
36
34
  const link = screen.getByRole('link');
37
35