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