@evenicanpm/storefront-core 1.0.0 → 1.0.2
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 +3 -2
- package/src/api-manager/datasources/d365/d365-address.datasource.ts +1 -1
- package/src/api-manager/datasources/d365/d365-user.datasource.ts +0 -19
- package/src/api-manager/datasources/e4/e4-cart.datasource.ts +2 -2
- package/src/api-manager/datasources/e4/e4-product.datasource.ts +19 -4
- package/src/api-manager/datasources/e4/e4.datasource.ts +1 -2
- package/src/api-manager/datasources/e4/e4.remaps.ts +24 -0
- package/src/api-manager/datasources/e4/e4.translator.ts +17 -0
- package/src/api-manager/datasources/e4/graphqlRequestSdk.ts +131 -2168
- package/src/api-manager/datasources/e4/{e4-user.datasource.ts → user/e4-user.datasource.ts} +5 -7
- package/src/api-manager/datasources/e4/user/e4-user.remaps.ts +4 -0
- package/src/api-manager/datasources/e4/user/e4-user.translator.ts +10 -0
- package/src/api-manager/index.ts +21 -6
- package/src/api-manager/schemas/product.schema.ts +1 -1
- package/src/api-manager/services/address/queries/get-states.ts +1 -1
- package/src/api-manager/services/create-query.ts +10 -3
- package/src/api-manager/types/Datasource.ts +9 -9
- package/src/components/Blocks/Components/ProductCarousel/index.tsx +6 -6
- package/src/components/_components/navbar/category-based-menu/components/categories.tsx +1 -1
- package/src/components/_components/navbar/mega-menu/mega-menu.tsx +1 -1
- package/src/components/_components/navbar/nav-list/nav-item-child.tsx +2 -2
- package/src/components/_components/product-dimensions/product-dimensions.tsx +114 -0
- package/src/components/_components/product-quantity-buttons/product-quantity-buttons.tsx +88 -0
- package/src/components/_components/section-header/section-header.tsx +1 -1
- package/src/components/_components/settings/setting.tsx +1 -1
- package/src/components/_components/wishlist-modal/TODO.md +10 -0
- package/src/components/_components/wishlist-modal/add-to-wishlist-button.tsx +68 -0
- package/src/components/_components/wishlist-modal/add-to-wishlist-dialog.tsx +161 -0
- package/src/components/_components/wishlist-modal/remove-from-wishlist-dialog.tsx +174 -0
- package/src/components/_components/wishlist-modal/wishlist-modal-item.tsx +65 -0
- package/src/components/countries-input.tsx +1 -0
- package/src/hooks/use-cart.tsx +82 -0
- package/src/hooks/use-variants.tsx +85 -0
- package/src/pages/account/addresses/address-form.tsx +289 -0
- package/src/pages/account/addresses/address-item.tsx +104 -0
- package/src/pages/account/dashboard-header.tsx +123 -0
- package/src/pages/account/navigation.tsx +84 -0
- package/src/pages/account/no-records.tsx +20 -0
- package/src/pages/account/orders/icons/delivery.tsx +14 -0
- package/src/pages/account/orders/icons/package-box.tsx +13 -0
- package/src/pages/account/orders/icons/truck-filled.tsx +14 -0
- package/src/pages/account/orders/order-progress.tsx +111 -0
- package/src/pages/account/orders/order-row.tsx +61 -0
- package/src/pages/account/orders/order-summary.tsx +83 -0
- package/src/pages/account/orders/ordered-products.tsx +114 -0
- package/src/pages/account/profile/profile-button.test.tsx +59 -0
- package/src/pages/account/profile/profile-button.tsx +50 -0
- package/src/pages/account/profile/user-info.tsx +59 -0
- package/src/pages/account/styles.ts +32 -0
- package/src/pages/account/table-row.tsx +19 -0
- package/src/pages/account/wishlist/create-new-list.tsx +167 -0
- package/src/pages/account/wishlist/create-wishlist-button.tsx +40 -0
- package/src/pages/account/wishlist/wishlist-item.tsx +82 -0
- package/src/pages/blog/pagination.tsx +38 -0
- package/src/pages/cart/cart-item.tsx +312 -0
- package/src/pages/cart/checkout-form.tsx +122 -0
- package/src/pages/cart/coupon-entry.tsx +90 -0
- package/src/pages/cart/estimate-shipping.tsx +183 -0
- package/src/pages/cart/wrapper.tsx +30 -0
- package/src/pages/checkout/checkout-alt-form/address-card.tsx +73 -0
- package/src/pages/checkout/checkout-alt-form/checkout-form.tsx +133 -0
- package/src/pages/checkout/checkout-alt-form/checkout-step.tsx +120 -0
- package/src/pages/checkout/checkout-alt-form/customer-information.tsx +94 -0
- package/src/pages/checkout/checkout-alt-form/delivery-address.tsx +170 -0
- package/src/pages/checkout/checkout-alt-form/delivery-date.tsx +114 -0
- package/src/pages/checkout/checkout-alt-form/delivery-options.tsx +186 -0
- package/src/pages/checkout/checkout-alt-form/edit-address-form.tsx +130 -0
- package/src/pages/checkout/checkout-alt-form/heading.tsx +50 -0
- package/src/pages/checkout/checkout-alt-form/index.ts +1 -0
- package/src/pages/checkout/checkout-alt-form/new-address-form.tsx +294 -0
- package/src/pages/checkout/checkout-alt-form/node.tsx +9 -0
- package/src/pages/checkout/checkout-alt-form/payment-details.tsx +344 -0
- package/src/pages/checkout/checkout-alt-form/safe-card-preview-data.tsx +36 -0
- package/src/pages/checkout/checkout-alt-form/types.ts +20 -0
- package/src/pages/checkout/checkout-alt-summary/cart-item.tsx +39 -0
- package/src/pages/checkout/checkout-alt-summary/checkout-alt-summary.tsx +40 -0
- package/src/pages/checkout/checkout-alt-summary/index.ts +1 -0
- package/src/pages/checkout/checkout-alt-summary/list-item.tsx +31 -0
- package/src/pages/confirmation/address.tsx +22 -0
- package/src/pages/confirmation/confirmation-summary.tsx +52 -0
- package/src/pages/confirmation/ordered-products.tsx +108 -0
- package/src/pages/product-details/available-shops.tsx +48 -0
- package/src/pages/product-details/bopis/find-in-store-button.tsx +63 -0
- package/src/pages/product-details/bopis/find-in-store-modal.tsx +257 -0
- package/src/pages/product-details/bopis/pickup-option-select.tsx +127 -0
- package/src/pages/product-details/bopis/search-header.tsx +69 -0
- package/src/pages/product-details/checkbox-label.tsx +20 -0
- package/src/pages/product-details/currency.ts +64 -0
- package/src/pages/product-details/frequently-bought.tsx +90 -0
- package/src/pages/product-details/frequently-product-card.tsx +60 -0
- package/src/pages/product-details/product-comment.tsx +44 -0
- package/src/pages/product-details/product-description.tsx +22 -0
- package/src/pages/product-details/product-filter-card.tsx +257 -0
- package/src/pages/product-details/product-intro/product-intro-images.tsx +87 -0
- package/src/pages/product-details/product-intro/product-intro.tsx +250 -0
- package/src/pages/product-details/product-review.tsx +131 -0
- package/src/pages/product-details/product-tabs.tsx +51 -0
- package/src/pages/product-details/related-products.tsx +42 -0
- package/src/pages/product-details/types.ts +11 -0
- package/src/pages/product-list/breadcrumbs.tsx +39 -0
- package/src/pages/product-list/checkbox-label.tsx +20 -0
- package/src/pages/product-list/facet-group.tsx +125 -0
- package/src/pages/product-list/facet.tsx +36 -0
- package/src/pages/product-list/list-filter.tsx +40 -0
- package/src/pages/product-list/pagination.tsx +80 -0
- package/src/pages/product-list/product-list-context.tsx +302 -0
- package/src/pages/product-list/product-list-state.ts +187 -0
- package/src/pages/product-list/product-rating.tsx +16 -0
- package/src/pages/product-list/quick-view-dialog-content.tsx +205 -0
- package/src/pages/product-list/quick-view-dialog.tsx +54 -0
- package/src/pages/product-list/range-filter.tsx +125 -0
- package/src/pages/product-list/scrollbar.tsx +38 -0
- package/src/pages/product-list/search-bar.tsx +162 -0
- package/src/pages/product-list/selected-facets.tsx +80 -0
- package/src/pages/product-list/side-nav.tsx +49 -0
- package/src/pages/product-list/swatch.tsx +80 -0
- package/src/pages/product-list/types.ts +18 -0
- package/src/pages/product-list/use-product-list.ts +12 -0
- package/src/pages/product-list/useCategoryFilter.tsx +26 -0
- package/src/pages/product-list/utils/facet-helpers.ts +5 -0
- package/src/pages/product-list/utils/generate-breadcrumbs.ts +30 -0
- package/src/pages/product-list/utils/getCategoryFilterFromSlug.ts +153 -0
- package/src/pages/product-list/utils/product-list-helper.ts +111 -0
- package/src/pages/product-list/utils/product-list-types.ts +41 -0
- package/src/pages/product-list/utils/search-for-category.ts +76 -0
- package/src/pages/product-list/utils/sort-options.ts +44 -0
- package/src/pages/product-list/utils/use-previous-refiners.ts +14 -0
- package/src/pages/quickorder/order-upload.tsx +150 -0
- package/src/pages/quickorder/quick-order-form.tsx +343 -0
- package/src/pages/quickorder/quick-order-row.tsx +144 -0
- package/tsconfig.json +1 -0
- /package/src/{components/_components/hooks/useOverflowDetect.ts → hooks/use-overflow-detect.ts} +0 -0
- /package/src/{components/_components/hooks/useSettings.ts → hooks/use-settings.ts} +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@evenicanpm/storefront-core",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Core module for D365/e4 Headless Storefront",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
@@ -31,6 +31,7 @@
|
|
|
31
31
|
"@tanstack/react-query": "^5.76.1",
|
|
32
32
|
"next": "^15.2.1",
|
|
33
33
|
"next-auth": "^4.24.11",
|
|
34
|
-
"typescript": "^5.8.3"
|
|
34
|
+
"typescript": "^5.8.3",
|
|
35
|
+
"object-mapper": "^6.2.0"
|
|
35
36
|
}
|
|
36
37
|
}
|
|
@@ -70,7 +70,7 @@ class D365AddressDatasource extends D365DatasourceBase implements AddressApi {
|
|
|
70
70
|
}
|
|
71
71
|
|
|
72
72
|
const updatedCustomer = await updateAsync(context as any, customer);
|
|
73
|
-
const rec = updatedCustomer
|
|
73
|
+
const rec = updatedCustomer?.Addresses?.[idx];
|
|
74
74
|
if (!rec || rec.RecordId == null) {
|
|
75
75
|
throw new Error(
|
|
76
76
|
`Failed to update address Id=${address.Id}. Updated address record with a matching id not found.`,
|
|
@@ -282,22 +282,3 @@ class D365UserDatasource extends D365DatasourceBase implements UserApi {
|
|
|
282
282
|
}
|
|
283
283
|
}
|
|
284
284
|
export default D365UserDatasource;
|
|
285
|
-
|
|
286
|
-
type TokenData = {
|
|
287
|
-
aud: string;
|
|
288
|
-
iss: string;
|
|
289
|
-
exp: number;
|
|
290
|
-
nbf: number;
|
|
291
|
-
oid: string;
|
|
292
|
-
sub: string;
|
|
293
|
-
emails: string[];
|
|
294
|
-
email?: string;
|
|
295
|
-
newUser: boolean;
|
|
296
|
-
given_name: string;
|
|
297
|
-
family_name: string;
|
|
298
|
-
tfp: string;
|
|
299
|
-
scp: string;
|
|
300
|
-
azp: string;
|
|
301
|
-
ver: string;
|
|
302
|
-
iat: number;
|
|
303
|
-
};
|
|
@@ -244,8 +244,8 @@ const cart: CartApi = {
|
|
|
244
244
|
SalesLines: [],
|
|
245
245
|
};
|
|
246
246
|
},
|
|
247
|
-
getCartLinesInventory: function
|
|
248
|
-
|
|
247
|
+
getCartLinesInventory: function(
|
|
248
|
+
_input: cartSchema.InventorySearchCartLinesCriteriaInput,
|
|
249
249
|
): Promise<ProductWarehouseInventoryInformation> {
|
|
250
250
|
throw new Error("Function not implemented.");
|
|
251
251
|
},
|
|
@@ -12,7 +12,8 @@ import {
|
|
|
12
12
|
import * as translator from "./e4.translator";
|
|
13
13
|
import getGraphqlClient from "../../lib/get-graphql-client";
|
|
14
14
|
import { ProductApi } from "../../types/Datasource";
|
|
15
|
-
|
|
15
|
+
// See TODO below
|
|
16
|
+
//import { generateCategoryFilterString } from "./e4.translator";
|
|
16
17
|
|
|
17
18
|
const product: ProductApi = {
|
|
18
19
|
async getProductById(
|
|
@@ -61,7 +62,9 @@ const product: ProductApi = {
|
|
|
61
62
|
const { data, errors } = await e4Api.productTypeaheadSearchByCategory({
|
|
62
63
|
input: {
|
|
63
64
|
search: input.searchText,
|
|
64
|
-
|
|
65
|
+
// TODO: investigate why this was added..
|
|
66
|
+
// it's throwing a type error.
|
|
67
|
+
//categoryId: await generateCategoryFilterString(input.category ?? 0),
|
|
65
68
|
top: 10,
|
|
66
69
|
skip: 0,
|
|
67
70
|
},
|
|
@@ -152,10 +155,22 @@ const product: ProductApi = {
|
|
|
152
155
|
): Promise<ProductSearchResult[]> {
|
|
153
156
|
throw new Error(`Function not implemented.${input}`);
|
|
154
157
|
},
|
|
155
|
-
getProductPrices
|
|
158
|
+
async getProductPrices(
|
|
156
159
|
input: productSchema.ProductPriceInput,
|
|
157
160
|
): Promise<productSchema.ProductPrice[]> {
|
|
158
|
-
|
|
161
|
+
const e4Api = await getGraphqlClient();
|
|
162
|
+
const { data, errors } = await e4Api.GetProductsByIds({
|
|
163
|
+
ids: input.productIds?.map(String),
|
|
164
|
+
});
|
|
165
|
+
|
|
166
|
+
if (errors) {
|
|
167
|
+
throw new Error("Error getting products");
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
const translatedData = translator.productPricesTransformValidate(
|
|
171
|
+
data?.getProductsByIds as Product[],
|
|
172
|
+
);
|
|
173
|
+
return translatedData;
|
|
159
174
|
},
|
|
160
175
|
};
|
|
161
176
|
|
|
@@ -3,7 +3,7 @@ import getGraphqlClient from "../../lib/get-graphql-client";
|
|
|
3
3
|
import { Category as E4Category } from "./graphqlRequestSdk";
|
|
4
4
|
import * as translator from "./e4.translator";
|
|
5
5
|
// Data source files
|
|
6
|
-
import user from "./e4-user.datasource";
|
|
6
|
+
import user from "./user/e4-user.datasource";
|
|
7
7
|
import session from "./e4-session.datasource";
|
|
8
8
|
import { cart } from "./e4-cart.datasource";
|
|
9
9
|
import order from "./e4-order.datasource";
|
|
@@ -14,7 +14,6 @@ import organization from "./e4-organization.datasource";
|
|
|
14
14
|
|
|
15
15
|
const E4Datasource: PrimaryDatasource = {
|
|
16
16
|
name: "e4",
|
|
17
|
-
|
|
18
17
|
user,
|
|
19
18
|
session,
|
|
20
19
|
cart,
|
|
@@ -63,6 +63,30 @@ export const productMap = {
|
|
|
63
63
|
},
|
|
64
64
|
};
|
|
65
65
|
|
|
66
|
+
export const productPricesMap = {
|
|
67
|
+
id: [
|
|
68
|
+
{
|
|
69
|
+
key: "ProductId",
|
|
70
|
+
transform: (id: string) => {
|
|
71
|
+
if (id !== null) return parseInt(id);
|
|
72
|
+
},
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
key: "ListingId",
|
|
76
|
+
transform: (id: string) => {
|
|
77
|
+
if (id !== null) return parseInt(id);
|
|
78
|
+
},
|
|
79
|
+
},
|
|
80
|
+
],
|
|
81
|
+
price: [
|
|
82
|
+
{ key: "Price", default: 0 },
|
|
83
|
+
{ key: "BasePrice", default: 0 },
|
|
84
|
+
{ key: "AdjustedPrice", default: 0 },
|
|
85
|
+
{ key: "CustomerContextualPrice", default: 0 },
|
|
86
|
+
],
|
|
87
|
+
sku: "ItemId",
|
|
88
|
+
};
|
|
89
|
+
|
|
66
90
|
export const productDetailsMap = {
|
|
67
91
|
...productMap,
|
|
68
92
|
MasterProductId: "MasterProductId",
|
|
@@ -4,6 +4,7 @@ import {
|
|
|
4
4
|
productSchema,
|
|
5
5
|
ProductDetails,
|
|
6
6
|
SearchByCriteriaInput,
|
|
7
|
+
ProductPrice,
|
|
7
8
|
} from "@/api-manager/schemas/product.schema";
|
|
8
9
|
import { Address } from "@/api-manager/schemas/address.schema";
|
|
9
10
|
import { User } from "@/api-manager/schemas/user.schema";
|
|
@@ -31,12 +32,14 @@ import {
|
|
|
31
32
|
cartMap,
|
|
32
33
|
productDetailsMap,
|
|
33
34
|
productMap,
|
|
35
|
+
productPricesMap,
|
|
34
36
|
addressReverseMap,
|
|
35
37
|
countriesMap,
|
|
36
38
|
countryMap,
|
|
37
39
|
deliveryOptionsMap,
|
|
38
40
|
} from "./e4.remaps";
|
|
39
41
|
import { CategoryHierarchy } from "@/lib/category-helpers";
|
|
42
|
+
import { productPriceSchema } from "@/api-manager/schemas/d365.schema";
|
|
40
43
|
|
|
41
44
|
interface TransformedRefinerValue {
|
|
42
45
|
RefinerRecordId: number;
|
|
@@ -338,6 +341,20 @@ export const productTransformValidate = (
|
|
|
338
341
|
return translatedData;
|
|
339
342
|
};
|
|
340
343
|
|
|
344
|
+
export const productPricesTransformValidate = (
|
|
345
|
+
products: Product[],
|
|
346
|
+
): ProductPrice[] => {
|
|
347
|
+
const translatedData = products.map(
|
|
348
|
+
(p) => merge(p, productPricesMap) as ProductPrice,
|
|
349
|
+
);
|
|
350
|
+
try {
|
|
351
|
+
translatedData.map((pp: ProductPrice) => productPriceSchema.parse(pp));
|
|
352
|
+
} catch (e) {
|
|
353
|
+
console.warn("ProductPrice data does not match retail-proxy schema", e);
|
|
354
|
+
}
|
|
355
|
+
return translatedData;
|
|
356
|
+
};
|
|
357
|
+
|
|
341
358
|
export const productWithCategoryTransformValidate = (
|
|
342
359
|
productData: Product,
|
|
343
360
|
): ProductSearchResult => {
|