@nuskin/ns-product-lib 2.7.1-cx24-3684.1 → 2.7.1
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +31 -2
- package/package.json +2 -2
- package/src/product.js +5 -1
- package/src/productData.js +25 -24
package/CHANGELOG.md
CHANGED
@@ -1,9 +1,38 @@
|
|
1
|
-
## [2.7.1
|
1
|
+
## [2.7.1](https://code.tls.nuskin.io/ns-am/product/js-libs/ns-product-lib/compare/v2.7.0...v2.7.1) (2023-04-15)
|
2
2
|
|
3
3
|
|
4
4
|
### Fix
|
5
5
|
|
6
|
-
*
|
6
|
+
* updating text in unit testing ([65393d6](https://code.tls.nuskin.io/ns-am/product/js-libs/ns-product-lib/commit/65393d6492b0696a24daa56f79b768cc38e1c7ae))
|
7
|
+
|
8
|
+
# [2.8.0-cx24-3705.2](https://code.tls.nuskin.io/ns-am/product/js-libs/ns-product-lib/compare/v2.8.0-cx24-3705.1...v2.8.0-cx24-3705.2) (2023-04-14)
|
9
|
+
|
10
|
+
|
11
|
+
### Update
|
12
|
+
|
13
|
+
* setting correct title if multiple variants ([583e74d](https://code.tls.nuskin.io/ns-am/product/js-libs/ns-product-lib/commit/583e74d41acc7213cd86a48df9076a453da8bb93))
|
14
|
+
|
15
|
+
# [2.8.0-cx24-3705.1](https://code.tls.nuskin.io/ns-am/product/js-libs/ns-product-lib/compare/v2.7.0...v2.8.0-cx24-3705.1) (2023-04-14)
|
16
|
+
|
17
|
+
|
18
|
+
### Update
|
19
|
+
|
20
|
+
* setting correct title if multiple variants ([9574804](https://code.tls.nuskin.io/ns-am/product/js-libs/ns-product-lib/commit/9574804094f65261ff45c9658ba4e4d4baf0bdf2))
|
21
|
+
|
22
|
+
## [2.7.1-cx24-3879.2](https://code.tls.nuskin.io/ns-am/product/js-libs/ns-product-lib/compare/v2.7.1-cx24-3879.1...v2.7.1-cx24-3879.2) (2023-04-13)
|
23
|
+
|
24
|
+
|
25
|
+
### Fix
|
26
|
+
|
27
|
+
* Payload for subscription products are missing when added to cart from MySite homepage ([20b0ed2](https://code.tls.nuskin.io/ns-am/product/js-libs/ns-product-lib/commit/20b0ed2661b4d213147cef9e77d268b167b49421))
|
28
|
+
|
29
|
+
## [2.7.1-cx24-3879.1](https://code.tls.nuskin.io/ns-am/product/js-libs/ns-product-lib/compare/v2.7.0...v2.7.1-cx24-3879.1) (2023-04-13)
|
30
|
+
|
31
|
+
|
32
|
+
### Fix
|
33
|
+
|
34
|
+
* Payload for subscription products are missing when added to cart from MySite homepage ([7b7ac3b](https://code.tls.nuskin.io/ns-am/product/js-libs/ns-product-lib/commit/7b7ac3bd7c0b196aa9a7e97e885f7e296ef7e97d))
|
35
|
+
* Payload for subscription products are missing when added to cart from MySite homepage ([d49957f](https://code.tls.nuskin.io/ns-am/product/js-libs/ns-product-lib/commit/d49957f44d9ce6b6469b0bc94bc8f8050d00f35a))
|
7
36
|
|
8
37
|
# [2.7.0](https://code.tls.nuskin.io/ns-am/product/js-libs/ns-product-lib/compare/v2.6.2...v2.7.0) (2023-04-05)
|
9
38
|
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@nuskin/ns-product-lib",
|
3
|
-
"version": "2.7.1
|
3
|
+
"version": "2.7.1",
|
4
4
|
"description": "This project contains shared Product models and code between the backend and frontend.",
|
5
5
|
"main": "src/index.js",
|
6
6
|
"scripts": {
|
@@ -33,7 +33,7 @@
|
|
33
33
|
"dependencies": {
|
34
34
|
"@nuskin/configuration-sdk": "2.2.3",
|
35
35
|
"@nuskin/ns-common-lib": "1.4.5",
|
36
|
-
"@nuskin/ns-util": "4.2
|
36
|
+
"@nuskin/ns-util": "4.3.2",
|
37
37
|
"axios": "0.27.2",
|
38
38
|
"qs": "6.11.0"
|
39
39
|
},
|
package/src/product.js
CHANGED
@@ -337,7 +337,11 @@ const Product = function (productData) {
|
|
337
337
|
return this.addCvWithType(csvKey, productStatus.csv[csvKey]);
|
338
338
|
}, this);
|
339
339
|
}
|
340
|
-
|
340
|
+
//only remap the orderTypes for legacy (which we'll know when equinoxProductId is blank)
|
341
|
+
if(this.equinoxProductId == "") {
|
342
|
+
this.orderTypes = ProductUtils.mergeOrderTypes(this.orderTypes, productStatus.orderType);
|
343
|
+
}
|
344
|
+
|
341
345
|
if (productStatus.childSkus) {
|
342
346
|
this.childSkus = productStatus.childSkus;
|
343
347
|
}
|
package/src/productData.js
CHANGED
@@ -48,11 +48,11 @@ const ProductData = {
|
|
48
48
|
},
|
49
49
|
|
50
50
|
/**
|
51
|
-
*
|
52
|
-
* @param {string[]} skus
|
53
|
-
* @param {string} locale
|
54
|
-
* @param {ConfigMap} config
|
55
|
-
* @returns
|
51
|
+
*
|
52
|
+
* @param {string[]} skus
|
53
|
+
* @param {string} locale
|
54
|
+
* @param {ConfigMap} config
|
55
|
+
* @returns
|
56
56
|
*/
|
57
57
|
searchEquinoxProduct: async function (skus, locale, config) {
|
58
58
|
let skuFilter = [];
|
@@ -140,7 +140,6 @@ const ProductData = {
|
|
140
140
|
const discountedPrice = eventName ? computedPrice : eqVariant.priceFacets["Regular Price"];
|
141
141
|
const productCVPrice = eventName ? CVPrice : eqVariant.priceFacets.CV;
|
142
142
|
const productPVPrice = eventName ? PVPrice : eqVariant.priceFacets.PV;
|
143
|
-
const wholeSalePrice = eventName ? defaultProductPrice : eqVariant.priceFacets["Wholesale Price"];
|
144
143
|
|
145
144
|
return {
|
146
145
|
"sku": eqVariant.identifier,
|
@@ -253,12 +252,12 @@ const ProductData = {
|
|
253
252
|
"price": discountedPrice,
|
254
253
|
"priceMap": {
|
255
254
|
"WRTL": productPrice,
|
256
|
-
"WADW-WRTL":
|
257
|
-
"WADR":
|
258
|
-
"RTL":
|
259
|
-
"WWHL":
|
260
|
-
"WADW":
|
261
|
-
"WHL":
|
255
|
+
"WADW-WRTL": eqVariant.priceFacets["Regular Price"],
|
256
|
+
"WADR": eqVariant.priceFacets["Regular Price"],
|
257
|
+
"RTL": eqVariant.priceFacets["Regular Price"],
|
258
|
+
"WWHL": eqVariant.priceFacets["Wholesale Price"],
|
259
|
+
"WADW": eqVariant.priceFacets["Wholesale Price"],
|
260
|
+
"WHL": eqVariant.priceFacets["Wholesale Price"]
|
262
261
|
},
|
263
262
|
"cvMap": {
|
264
263
|
"WWHL": productCVPrice,
|
@@ -365,7 +364,7 @@ const ProductData = {
|
|
365
364
|
let product = (productData.type && productData.type === "kit") ? productData : productData.sku[count];
|
366
365
|
let imageURL = product.properties.imageURL ? product.properties.imageURL : '';
|
367
366
|
let thumbnailImage = imageURL ? imageURL + '?width=40' : ''
|
368
|
-
|
367
|
+
let productTitle = productData.properties.name
|
369
368
|
|
370
369
|
if (productData.sku && productData.sku.length > 1) {
|
371
370
|
// exclude base product from variants
|
@@ -373,6 +372,10 @@ const ProductData = {
|
|
373
372
|
variants[variant.identifier] = this.eqProductVariantMapper(variant);
|
374
373
|
return variant;
|
375
374
|
});
|
375
|
+
const productArr = productData.sku.filter(p => p.default === true)
|
376
|
+
productTitle = productArr[0].properties.name;
|
377
|
+
product = productArr[0]
|
378
|
+
|
376
379
|
}
|
377
380
|
|
378
381
|
const {
|
@@ -387,8 +390,6 @@ const ProductData = {
|
|
387
390
|
const discountedPrice = eventName ? computedPrice : product.priceFacets["Regular Price"];
|
388
391
|
const productCVPrice = eventName ? CVPrice : product.priceFacets.CV;
|
389
392
|
const productPVPrice = eventName ? PVPrice : product.priceFacets.PV;
|
390
|
-
const wholeSalePrice = eventName ? defaultProductPrice : product.priceFacets["Wholesale Price"];
|
391
|
-
|
392
393
|
|
393
394
|
product.childSkus = await this.fetchChildSkus(product);
|
394
395
|
product.availableQuantity = mapAvailableQuantity(product);
|
@@ -396,7 +397,7 @@ const ProductData = {
|
|
396
397
|
...product,
|
397
398
|
"sku": product.identifier,
|
398
399
|
"globalProductID": productData.identifier,
|
399
|
-
"title":
|
400
|
+
"title": productTitle,
|
400
401
|
"country": product.properties.market,
|
401
402
|
"language": "en",
|
402
403
|
"shortDescr": productData.properties.description,
|
@@ -432,13 +433,13 @@ const ProductData = {
|
|
432
433
|
"priceType": "WRTL",
|
433
434
|
"price": discountedPrice,
|
434
435
|
"priceMap": {
|
435
|
-
"WRTL": productPrice,
|
436
|
-
"WADW-WRTL":
|
437
|
-
"WADR":
|
438
|
-
"RTL":
|
439
|
-
"WADW":
|
440
|
-
"WHL":
|
441
|
-
"WWHL":
|
436
|
+
"WRTL": productPrice,
|
437
|
+
"WADW-WRTL": product.priceFacets["Regular Price"],
|
438
|
+
"WADR": product.priceFacets["Regular Price"],
|
439
|
+
"RTL": product.priceFacets["Regular Price"],
|
440
|
+
"WADW": product.priceFacets["Wholesale Price"],
|
441
|
+
"WHL": product.priceFacets["Wholesale Price"],
|
442
|
+
"WWHL": product.priceFacets["Wholesale Price"]
|
442
443
|
},
|
443
444
|
"cvMap": {
|
444
445
|
"WWHL": productCVPrice,
|
@@ -513,7 +514,7 @@ const ProductData = {
|
|
513
514
|
};
|
514
515
|
},
|
515
516
|
|
516
|
-
mapEquinoxSKUExists: function(exists) {
|
517
|
+
mapEquinoxSKUExists: function (exists) {
|
517
518
|
// this could be avoided if only we are using response mapper
|
518
519
|
// for equinox products that exists.
|
519
520
|
// @todo: clean-up
|