@akinon/projectzero 1.101.0 → 1.102.0-rc.77
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/CHANGELOG.md +233 -4
- package/app-template/.env.example +1 -0
- package/app-template/.github/instructions/routing.instructions.md +603 -0
- package/app-template/CHANGELOG.md +4980 -316
- package/app-template/README.md +25 -1
- package/app-template/package.json +19 -19
- package/app-template/public/locales/en/checkout.json +6 -0
- package/app-template/public/locales/en/common.json +48 -1
- package/app-template/public/locales/tr/checkout.json +6 -0
- package/app-template/public/locales/tr/common.json +48 -1
- package/app-template/src/app/[commerce]/[locale]/[currency]/basket/page.tsx +9 -82
- package/app-template/src/app/[commerce]/[locale]/[currency]/category/[pk]/page.tsx +17 -4
- package/app-template/src/app/[commerce]/[locale]/[currency]/flat-page/[pk]/page.tsx +12 -1
- package/app-template/src/app/[commerce]/[locale]/[currency]/group-product/[pk]/page.tsx +29 -11
- package/app-template/src/app/[commerce]/[locale]/[currency]/landing-page/[pk]/page.tsx +12 -1
- package/app-template/src/app/[commerce]/[locale]/[currency]/product/[pk]/loading.tsx +67 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/product/[pk]/page.tsx +28 -10
- package/app-template/src/app/[commerce]/[locale]/[currency]/special-page/[pk]/page.tsx +12 -1
- package/app-template/src/app/api/form/[...id]/route.ts +1 -7
- package/app-template/src/app/api/image-proxy/route.ts +1 -0
- package/app-template/src/app/api/similar-product-list/route.ts +1 -0
- package/app-template/src/app/api/similar-products/route.ts +1 -0
- package/app-template/src/assets/fonts/pz-icon.css +3 -0
- package/app-template/src/components/__tests__/link.test.tsx +2 -0
- package/app-template/src/components/accordion.tsx +22 -19
- package/app-template/src/components/currency-select.tsx +1 -0
- package/app-template/src/components/file-input.tsx +27 -7
- package/app-template/src/components/generate-form-fields.tsx +43 -4
- package/app-template/src/components/input.tsx +9 -2
- package/app-template/src/components/modal.tsx +32 -16
- package/app-template/src/components/pagination.tsx +1 -0
- package/app-template/src/components/price.tsx +1 -1
- package/app-template/src/components/select.tsx +38 -26
- package/app-template/src/components/types/index.ts +25 -1
- package/app-template/src/hooks/index.ts +2 -0
- package/app-template/src/hooks/use-product-cart.ts +77 -0
- package/app-template/src/hooks/use-stock-alert.ts +74 -0
- package/app-template/src/plugins.js +3 -1
- package/app-template/src/settings.js +8 -2
- package/app-template/src/types/index.ts +17 -0
- package/app-template/src/utils/variant-validation.ts +41 -0
- package/app-template/src/views/account/address-form.tsx +8 -4
- package/app-template/src/views/account/contact-form.tsx +1 -1
- package/app-template/src/views/account/content-header.tsx +2 -2
- package/app-template/src/views/account/faq/faq-tabs.tsx +8 -2
- package/app-template/src/views/basket/basket-content.tsx +106 -0
- package/app-template/src/views/basket/basket-item.tsx +22 -14
- package/app-template/src/views/basket/summary.tsx +10 -7
- package/app-template/src/views/breadcrumb.tsx +2 -2
- package/app-template/src/views/category/category-info.tsx +1 -0
- package/app-template/src/views/category/filters/index.tsx +1 -1
- package/app-template/src/views/checkout/steps/payment/options/store-credit.tsx +121 -0
- package/app-template/src/views/checkout/summary.tsx +10 -0
- package/app-template/src/views/guest-login/index.tsx +6 -1
- package/app-template/src/views/header/action-menu.tsx +1 -1
- package/app-template/src/views/header/search/index.tsx +17 -5
- package/app-template/src/views/product/product-actions.tsx +165 -0
- package/app-template/src/views/product/product-info.tsx +62 -263
- package/app-template/src/views/product/product-share.tsx +56 -0
- package/app-template/src/views/product/product-variants.tsx +26 -0
- package/app-template/src/views/product/slider.tsx +86 -73
- package/app-template/src/widgets/footer-menu.tsx +6 -2
- package/commands/plugins.ts +63 -16
- package/dist/commands/plugins.js +57 -16
- package/package.json +1 -1
package/commands/plugins.ts
CHANGED
|
@@ -29,7 +29,14 @@ async function checkVersion(pkg: PackageJson) {
|
|
|
29
29
|
|
|
30
30
|
if (!semver.satisfies(pkg.dependencies['@akinon/next'], latestVersion)) {
|
|
31
31
|
console.warn(
|
|
32
|
-
`\x1b[
|
|
32
|
+
`\x1b[43m Warning: The "${packageName}" package is currently at`,
|
|
33
|
+
`\x1b[41m version ${pkg.dependencies['@akinon/next']}`,
|
|
34
|
+
`\x1b[43m Please upgrade it to the latest version (${latestVersion}) to ensure plugin compatibility.`,
|
|
35
|
+
'\x1b[0m\n'
|
|
36
|
+
);
|
|
37
|
+
} else {
|
|
38
|
+
console.log(
|
|
39
|
+
`\x1b[42m Info: The package "${packageName}" is currently in the current version (${latestVersion}).`,
|
|
33
40
|
'\x1b[0m\n'
|
|
34
41
|
);
|
|
35
42
|
}
|
|
@@ -54,7 +61,27 @@ export default async () => {
|
|
|
54
61
|
}
|
|
55
62
|
}
|
|
56
63
|
|
|
57
|
-
|
|
64
|
+
function findPackageJson(): PackageJson {
|
|
65
|
+
const packageJsonPaths = [
|
|
66
|
+
path.resolve(rootDir, './package.json'),
|
|
67
|
+
path.resolve(rootDir, './apps/projectzeronext/package.json')
|
|
68
|
+
];
|
|
69
|
+
|
|
70
|
+
for (const packageJsonPath of packageJsonPaths) {
|
|
71
|
+
try {
|
|
72
|
+
const pkg = require(packageJsonPath);
|
|
73
|
+
if (pkg.dependencies['@akinon/next']) {
|
|
74
|
+
return pkg;
|
|
75
|
+
}
|
|
76
|
+
} catch (error) {
|
|
77
|
+
continue;
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
throw new Error('Could not find package.json with @akinon/next dependency');
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
const pkg = findPackageJson();
|
|
58
85
|
await checkVersion(pkg);
|
|
59
86
|
|
|
60
87
|
const pluginsFilePath = findPluginsFilePath();
|
|
@@ -69,45 +96,65 @@ export default async () => {
|
|
|
69
96
|
}
|
|
70
97
|
|
|
71
98
|
const definedPlugins = [
|
|
99
|
+
{
|
|
100
|
+
name: 'Akifast',
|
|
101
|
+
value: 'pz-akifast'
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
name: 'Apple Pay',
|
|
105
|
+
value: 'pz-apple-pay'
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
name: 'B2B',
|
|
109
|
+
value: 'pz-b2b'
|
|
110
|
+
},
|
|
72
111
|
{
|
|
73
112
|
name: 'Basket Gift Pack',
|
|
74
113
|
value: 'pz-basket-gift-pack'
|
|
75
114
|
},
|
|
76
115
|
{
|
|
77
|
-
name: '
|
|
78
|
-
value: 'pz-
|
|
116
|
+
name: 'BKM Express',
|
|
117
|
+
value: 'pz-bkm'
|
|
79
118
|
},
|
|
80
119
|
{
|
|
81
120
|
name: 'Checkout Gift Pack',
|
|
82
121
|
value: 'pz-checkout-gift-pack'
|
|
83
122
|
},
|
|
84
123
|
{
|
|
85
|
-
name: '
|
|
86
|
-
value: 'pz-
|
|
124
|
+
name: 'Click & Collect',
|
|
125
|
+
value: 'pz-click-collect'
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
name: 'Credit Payment',
|
|
129
|
+
value: 'pz-credit-payment'
|
|
87
130
|
},
|
|
88
131
|
{
|
|
89
132
|
name: 'Garanti Pay',
|
|
90
133
|
value: 'pz-gpay'
|
|
91
134
|
},
|
|
92
135
|
{
|
|
93
|
-
name: '
|
|
94
|
-
value: 'pz-
|
|
136
|
+
name: 'Masterpass',
|
|
137
|
+
value: 'pz-masterpass'
|
|
95
138
|
},
|
|
96
139
|
{
|
|
97
|
-
name: '
|
|
98
|
-
value: 'pz-
|
|
140
|
+
name: 'Multi Basket',
|
|
141
|
+
value: 'pz-multi-basket'
|
|
99
142
|
},
|
|
100
143
|
{
|
|
101
|
-
name: '
|
|
102
|
-
value: 'pz-
|
|
144
|
+
name: 'One Click Checkout',
|
|
145
|
+
value: 'pz-one-click-checkout'
|
|
103
146
|
},
|
|
104
147
|
{
|
|
105
|
-
name: '
|
|
106
|
-
value: 'pz-
|
|
148
|
+
name: 'Otp',
|
|
149
|
+
value: 'pz-otp'
|
|
107
150
|
},
|
|
108
151
|
{
|
|
109
|
-
name: '
|
|
110
|
-
value: 'pz-
|
|
152
|
+
name: 'Pay On Delivery',
|
|
153
|
+
value: 'pz-pay-on-delivery'
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
name: 'Saved Card',
|
|
157
|
+
value: 'pz-saved-card'
|
|
111
158
|
},
|
|
112
159
|
{
|
|
113
160
|
name: 'Tabby Payment Extension',
|
package/dist/commands/plugins.js
CHANGED
|
@@ -50,7 +50,10 @@ function checkVersion(pkg) {
|
|
|
50
50
|
const pkgInfo = (yield response.json());
|
|
51
51
|
const latestVersion = pkgInfo['dist-tags'].latest;
|
|
52
52
|
if (!semver_1.default.satisfies(pkg.dependencies['@akinon/next'], latestVersion)) {
|
|
53
|
-
console.warn(`\x1b[
|
|
53
|
+
console.warn(`\x1b[43m Warning: The "${packageName}" package is currently at`, `\x1b[41m version ${pkg.dependencies['@akinon/next']}`, `\x1b[43m Please upgrade it to the latest version (${latestVersion}) to ensure plugin compatibility.`, '\x1b[0m\n');
|
|
54
|
+
}
|
|
55
|
+
else {
|
|
56
|
+
console.log(`\x1b[42m Info: The package "${packageName}" is currently in the current version (${latestVersion}).`, '\x1b[0m\n');
|
|
54
57
|
}
|
|
55
58
|
}
|
|
56
59
|
catch (error) {
|
|
@@ -72,7 +75,25 @@ exports.default = () => __awaiter(void 0, void 0, void 0, function* () {
|
|
|
72
75
|
throw new Error('plugins.js was not found in either of the expected locations.');
|
|
73
76
|
}
|
|
74
77
|
}
|
|
75
|
-
|
|
78
|
+
function findPackageJson() {
|
|
79
|
+
const packageJsonPaths = [
|
|
80
|
+
path_1.default.resolve(rootDir, './package.json'),
|
|
81
|
+
path_1.default.resolve(rootDir, './apps/projectzeronext/package.json')
|
|
82
|
+
];
|
|
83
|
+
for (const packageJsonPath of packageJsonPaths) {
|
|
84
|
+
try {
|
|
85
|
+
const pkg = require(packageJsonPath);
|
|
86
|
+
if (pkg.dependencies['@akinon/next']) {
|
|
87
|
+
return pkg;
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
catch (error) {
|
|
91
|
+
continue;
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
throw new Error('Could not find package.json with @akinon/next dependency');
|
|
95
|
+
}
|
|
96
|
+
const pkg = findPackageJson();
|
|
76
97
|
yield checkVersion(pkg);
|
|
77
98
|
const pluginsFilePath = findPluginsFilePath();
|
|
78
99
|
let installedPlugins = [];
|
|
@@ -84,45 +105,65 @@ exports.default = () => __awaiter(void 0, void 0, void 0, function* () {
|
|
|
84
105
|
process.exit(1);
|
|
85
106
|
}
|
|
86
107
|
const definedPlugins = [
|
|
108
|
+
{
|
|
109
|
+
name: 'Akifast',
|
|
110
|
+
value: 'pz-akifast'
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
name: 'Apple Pay',
|
|
114
|
+
value: 'pz-apple-pay'
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
name: 'B2B',
|
|
118
|
+
value: 'pz-b2b'
|
|
119
|
+
},
|
|
87
120
|
{
|
|
88
121
|
name: 'Basket Gift Pack',
|
|
89
122
|
value: 'pz-basket-gift-pack'
|
|
90
123
|
},
|
|
91
124
|
{
|
|
92
|
-
name: '
|
|
93
|
-
value: 'pz-
|
|
125
|
+
name: 'BKM Express',
|
|
126
|
+
value: 'pz-bkm'
|
|
94
127
|
},
|
|
95
128
|
{
|
|
96
129
|
name: 'Checkout Gift Pack',
|
|
97
130
|
value: 'pz-checkout-gift-pack'
|
|
98
131
|
},
|
|
99
132
|
{
|
|
100
|
-
name: '
|
|
101
|
-
value: 'pz-
|
|
133
|
+
name: 'Click & Collect',
|
|
134
|
+
value: 'pz-click-collect'
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
name: 'Credit Payment',
|
|
138
|
+
value: 'pz-credit-payment'
|
|
102
139
|
},
|
|
103
140
|
{
|
|
104
141
|
name: 'Garanti Pay',
|
|
105
142
|
value: 'pz-gpay'
|
|
106
143
|
},
|
|
107
144
|
{
|
|
108
|
-
name: '
|
|
109
|
-
value: 'pz-
|
|
145
|
+
name: 'Masterpass',
|
|
146
|
+
value: 'pz-masterpass'
|
|
110
147
|
},
|
|
111
148
|
{
|
|
112
|
-
name: '
|
|
113
|
-
value: 'pz-
|
|
149
|
+
name: 'Multi Basket',
|
|
150
|
+
value: 'pz-multi-basket'
|
|
114
151
|
},
|
|
115
152
|
{
|
|
116
|
-
name: '
|
|
117
|
-
value: 'pz-
|
|
153
|
+
name: 'One Click Checkout',
|
|
154
|
+
value: 'pz-one-click-checkout'
|
|
118
155
|
},
|
|
119
156
|
{
|
|
120
|
-
name: '
|
|
121
|
-
value: 'pz-
|
|
157
|
+
name: 'Otp',
|
|
158
|
+
value: 'pz-otp'
|
|
122
159
|
},
|
|
123
160
|
{
|
|
124
|
-
name: '
|
|
125
|
-
value: 'pz-
|
|
161
|
+
name: 'Pay On Delivery',
|
|
162
|
+
value: 'pz-pay-on-delivery'
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
name: 'Saved Card',
|
|
166
|
+
value: 'pz-saved-card'
|
|
126
167
|
},
|
|
127
168
|
{
|
|
128
169
|
name: 'Tabby Payment Extension',
|