Skip to content

Commit a474b80

Browse files
committed
[Refactor] Support Incito3 offer click
1 parent d1170d8 commit a474b80

File tree

3 files changed

+25
-16
lines changed

3 files changed

+25
-16
lines changed

lib/kits/core-ui/components/common/offer-overview.ts

+16-3
Original file line numberDiff line numberDiff line change
@@ -202,11 +202,25 @@ const OfferOverview = ({
202202
const priceCurrency =
203203
offer.currency_code || offer.pricing?.currency || currency;
204204

205+
const totalQuantityByOffer = getTotalQuantityByOffer(
206+
storedPublicationOffers,
207+
product.id
208+
);
209+
210+
console.log('offer product:', offer, product);
211+
212+
const productPrice = calculateProductPrice(
213+
matchingOffer || product,
214+
totalQuantityByOffer
215+
);
216+
205217
return {
206218
...product,
207219
link: product.link || offer.webshop_link,
208220
price,
209-
formattedPrice: formatPrice(price, localeCode, priceCurrency),
221+
formattedPrice: productPrice
222+
? formatPrice(productPrice, localeCode, priceCurrency)
223+
: null,
210224
currency: priceCurrency,
211225
quantity: matchingOffer ? matchingOffer.quantity : 0
212226
};
@@ -224,7 +238,6 @@ const OfferOverview = ({
224238
const {localeCode, currency, priceFrom} = translations;
225239
const {offer: incitoOffer} = await fetchOffer({viewId, publicationId});
226240
offer = incitoOffer;
227-
offer.products = transformProducts(offer, products);
228241

229242
if (products?.length > 1) {
230243
offer.products = transformProducts(offer, products);
@@ -243,7 +256,7 @@ const OfferOverview = ({
243256
offer.hideOfferDetails = true;
244257
}
245258

246-
const hasPriceFrom = products.some((product, i, arr) => {
259+
const hasPriceFrom = products?.some((product, i, arr) => {
247260
if (i === 0) return false;
248261
return product.price !== arr[i - 1].price;
249262
});

lib/kits/core-ui/components/helpers/component.ts

+4-2
Original file line numberDiff line numberDiff line change
@@ -426,7 +426,9 @@ export const closeSidebar = () => {
426426
export const displayOfferMessage = (viewId, message) => {
427427
if (!message) return;
428428

429-
const offerContainer = document.querySelector(`[data-id="${viewId}"]`);
429+
const offerContainer = document.querySelector(
430+
`[data-id="${viewId}"][data-role="offer"][style]:not([style=""])`
431+
);
430432
const existingOverlayEl = offerContainer?.querySelector(
431433
'.sgn-offer-link-overlay'
432434
);
@@ -462,7 +464,7 @@ export const getLocaleCode = (countryId: string): string => {
462464

463465
export const calculateProductPrice = (offer, totalQuantityByOffer = 1) => {
464466
let productPrice = 0;
465-
const offerPrice = offer.pricing.price; // Individual price per piece
467+
const offerPrice = offer?.pricing?.price || offer?.price; // Individual price per piece
466468

467469
for (let i = offer?.quantity || 1; i >= 1; i--) {
468470
if (offer.pieceCount?.from > 1) {

lib/kits/core-ui/incito-publication.ts

+5-11
Original file line numberDiff line numberDiff line change
@@ -255,8 +255,9 @@ const IncitoPublication = (
255255
};
256256

257257
const clickOfferCell = async (viewId, publicationId, sgnViewer) => {
258-
const {products, link} =
258+
const {products} =
259259
sgnViewer.incito?.ids?.[viewId]?.['tjek.offer.v1'] || {};
260+
260261
dispatchOfferClickEvent({fetchOffer, viewId, publicationId, products});
261262

262263
const shoppingBtn = options.el?.querySelector('.sgn__offer-shopping');
@@ -279,11 +280,6 @@ const IncitoPublication = (
279280
} else if (
280281
scriptEls.offerClickBehavior === 'open_webshop_link_in_tab'
281282
) {
282-
if (!link) {
283-
displayOfferMessage(viewId, scriptEls.noOfferLinkMessage);
284-
return;
285-
}
286-
287283
const newWindowRef = window.open();
288284
const {offer} = await fetchOffer({viewId, publicationId});
289285

@@ -292,20 +288,18 @@ const IncitoPublication = (
292288
newWindowRef.location = offer.webshop_link;
293289
} else {
294290
newWindowRef.close();
291+
displayOfferMessage(viewId, scriptEls.noOfferLinkMessage);
295292
}
296293
}
297294
} else if (
298295
scriptEls.offerClickBehavior === 'redirect_to_webshop_link'
299296
) {
300-
if (!link) {
301-
displayOfferMessage(viewId, scriptEls.noOfferLinkMessage);
302-
return;
303-
}
304-
305297
const {offer} = await fetchOffer({viewId, publicationId});
306298

307299
if (offer.webshop_link) {
308300
location.href = offer.webshop_link;
301+
} else {
302+
displayOfferMessage(viewId, scriptEls.noOfferLinkMessage);
309303
}
310304
} else if (shoppingBtn) {
311305
const {offer} = await fetchOffer({viewId, publicationId});

0 commit comments

Comments
 (0)