wickes-css2 2.111.0-develop.5 → 2.111.0-dont-forget-widget.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.
Files changed (54) hide show
  1. package/Readme.md +1 -1
  2. package/build/css/pdp-main-before-combine.css +1 -1
  3. package/build/css/pdp-main-non-critical.css +1 -1
  4. package/build/css/pdp-main.css +1 -1
  5. package/build/js/basket.min.js +1 -1
  6. package/build/js/bloomreach-widget.min.js +1 -1
  7. package/build/js/bundle.min.js +1 -1
  8. package/build/js/checkout.min.js +1 -1
  9. package/build/js/emulation.min.js +689 -54
  10. package/build/js/general.bundle.min.js +1 -1
  11. package/build/js/merged-checkout.min.js +1 -1
  12. package/build/js/page/bloomreach-widget/bloomreach-recommendation-carousel-widget.js +223 -0
  13. package/build/js/page/bloomreach-widget/bloomreach-widget.js +319 -0
  14. package/build/js/page/{bloomreach-widget.js → bloomreach-widget/complete-your-project-widget.js} +214 -387
  15. package/build/js/page/bloomreach-widget/dont-forget-widget.js +33 -0
  16. package/build/js/page/bloomreach-widget/why-not-add-widget.js +30 -0
  17. package/build/js/pdp.bundle.min.js +1 -1
  18. package/build/js/plp.bundle.min.js +1 -1
  19. package/build/js/project-list.min.js +1 -1
  20. package/package.json +1 -1
  21. package/src/components/bloomreach/complete-card.hbs +4 -32
  22. package/src/components/bloomreach/complete-your-project-skeleton.hbs +21 -0
  23. package/src/components/bloomreach/complete-your-project.hbs +4 -21
  24. package/src/components/bloomreach/why-not-add-card-skeleton.hbs +14 -0
  25. package/src/components/bloomreach/why-not-add-card.hbs +86 -0
  26. package/src/components/bloomreach/why-not-add-content.hbs +41 -0
  27. package/src/components/bloomreach/why-not-add-skeleton.hbs +9 -0
  28. package/src/components/bloomreach/why-not-add.hbs +4 -0
  29. package/src/components/pdp-price-actions.hbs +2 -2
  30. package/src/components/price-block-v2.hbs +2 -0
  31. package/src/components/reviews-rating.hbs +22 -0
  32. package/src/js/components/general/cart-slider.js +5 -0
  33. package/src/js/emulation/bloomreach-widget-loading.js +2 -2
  34. package/src/js/emulation/complete-your-project-loading.js +16 -0
  35. package/src/js/emulation/dont-forget-loading.js +18 -0
  36. package/src/js/emulation/mock.js +611 -3
  37. package/src/js/emulation/why-not-add-loading.js +16 -0
  38. package/src/js/emulation/why-not-add.js +28 -0
  39. package/src/js/page/bloomreach-widget/bloomreach-recommendation-carousel-widget.js +223 -0
  40. package/src/js/page/bloomreach-widget/bloomreach-widget.js +319 -0
  41. package/src/js/page/{bloomreach-widget.js → bloomreach-widget/complete-your-project-widget.js} +214 -387
  42. package/src/js/page/bloomreach-widget/dont-forget-widget.js +33 -0
  43. package/src/js/page/bloomreach-widget/why-not-add-widget.js +30 -0
  44. package/src/page_product-details-bloomreach.html +1 -1
  45. package/src/page_product-details-with-global-search-v2.html +2 -1
  46. package/src/page_product-details-with-why-not-add-single.html +131 -0
  47. package/src/scss/components/bloomreach/_bloomreach.scss +3 -0
  48. package/src/scss/components/bloomreach/_complete-card.scss +0 -38
  49. package/src/scss/components/bloomreach/_reviews.scss +60 -0
  50. package/src/scss/components/bloomreach/_why-not-add-card.scss +270 -0
  51. package/src/scss/components/bloomreach/_why-not-add.scss +172 -0
  52. package/src/sitemap.html +10 -4
  53. package/src/components/.DS_Store +0 -0
  54. package/src/js/page/.DS_Store +0 -0
@@ -4997,9 +4997,9 @@ var Wick = window.Wick || {};
4997
4997
  $(document).ready(function () {
4998
4998
  window.setTimeout(function () {
4999
4999
  var $container = $('[data-complete-widget]');
5000
- var contextKey = $container.data('context-key');
5000
+ var contextKey = $container.data('mock-key');
5001
5001
  var payloadData = Wick.FEMock.dataBloomreach[contextKey];
5002
- Wick.BloomreachWidget.init(payloadData);
5002
+ Wick.BloomreachWidget.init('completeYourProject', payloadData);
5003
5003
  }, 3000);
5004
5004
  });
5005
5005
 
@@ -5348,6 +5348,22 @@ $(document).ready(function () {
5348
5348
  },{}],47:[function(require,module,exports){
5349
5349
  "use strict";
5350
5350
 
5351
+ var Wick = window.Wick || {};
5352
+ $(document).ready(function () {
5353
+ var $container = $('[data-complete-widget]');
5354
+ if (!$container.length) {
5355
+ return;
5356
+ }
5357
+ window.setTimeout(function () {
5358
+ var mockDataKey = $container.data('mock-key');
5359
+ var payloadData = Wick.FEMock.dataBloomreach[mockDataKey];
5360
+ Wick.BloomreachWidget.init('completeYourProject', payloadData);
5361
+ }, 3000);
5362
+ });
5363
+
5364
+ },{}],48:[function(require,module,exports){
5365
+ "use strict";
5366
+
5351
5367
  function simulateHybrisSendingHtml() {
5352
5368
  var htmlFromHybris = Wick.FEMock.cartPDP;
5353
5369
  var event = new CustomEvent('productAddedToCart', {
@@ -5370,7 +5386,7 @@ $(document).ready(function () {
5370
5386
  bindResolveEvent(['CLOSE_JUST_ADDED', 'CLOSE_MINI_BASKET', 'MINI_BASKET_CHECKOUT', 'MINI_BASKET_VIEW_BASKET']);
5371
5387
  });
5372
5388
 
5373
- },{}],48:[function(require,module,exports){
5389
+ },{}],49:[function(require,module,exports){
5374
5390
  "use strict";
5375
5391
 
5376
5392
  var DS_EL = {
@@ -5501,7 +5517,7 @@ $(document).ready(function () {
5501
5517
  initDateSelection();
5502
5518
  });
5503
5519
 
5504
- },{}],49:[function(require,module,exports){
5520
+ },{}],50:[function(require,module,exports){
5505
5521
  "use strict";
5506
5522
 
5507
5523
  var Wick = Wick || {};
@@ -5592,7 +5608,25 @@ $(document).ready(function () {
5592
5608
  Wick.DefaultStoreProto.init();
5593
5609
  });
5594
5610
 
5595
- },{}],50:[function(require,module,exports){
5611
+ },{}],51:[function(require,module,exports){
5612
+ "use strict";
5613
+
5614
+ var Wick = window.Wick || {};
5615
+ Wick.DontForgetWidgetLoader = {
5616
+ load: function load() {
5617
+ var $container = $('[data-dont-forget-widget]').last();
5618
+ if (!$container.length) {
5619
+ return;
5620
+ }
5621
+ var mockDataKey = $container.attr('data-mock-key');
5622
+ var payloadData = Wick.FEMock.dataBloomreach[mockDataKey];
5623
+ window.setTimeout(function () {
5624
+ Wick.BloomreachWidget.init('dontForget', payloadData);
5625
+ }, 1000);
5626
+ }
5627
+ };
5628
+
5629
+ },{}],52:[function(require,module,exports){
5596
5630
  "use strict";
5597
5631
 
5598
5632
  var errorPoductId = '321312';
@@ -5634,7 +5668,7 @@ $(document).ready(function () {
5634
5668
  initLocalFavouriteProductEvent();
5635
5669
  });
5636
5670
 
5637
- },{}],51:[function(require,module,exports){
5671
+ },{}],53:[function(require,module,exports){
5638
5672
  "use strict";
5639
5673
 
5640
5674
  var _showMoreLess = require("../page/utils/show-more-less");
@@ -5760,7 +5794,7 @@ function waitFor(getter, cb, opts) {
5760
5794
  });
5761
5795
  })();
5762
5796
 
5763
- },{"../page/utils/show-more-less":97}],52:[function(require,module,exports){
5797
+ },{"../page/utils/show-more-less":101}],54:[function(require,module,exports){
5764
5798
  "use strict";
5765
5799
 
5766
5800
  var Wick = Wick || {};
@@ -5799,7 +5833,7 @@ Wick.DeliveryDetails = function () {
5799
5833
  bindEvents();
5800
5834
  }();
5801
5835
 
5802
- },{}],53:[function(require,module,exports){
5836
+ },{}],55:[function(require,module,exports){
5803
5837
  "use strict";
5804
5838
 
5805
5839
  var Wick = Wick || {};
@@ -5827,7 +5861,7 @@ Wick.FooterСurrentYear = function () {
5827
5861
  init();
5828
5862
  }();
5829
5863
 
5830
- },{}],54:[function(require,module,exports){
5864
+ },{}],56:[function(require,module,exports){
5831
5865
  "use strict";
5832
5866
 
5833
5867
  var Wick = Wick || {};
@@ -6141,7 +6175,7 @@ Wick.Forms = function () {
6141
6175
  };
6142
6176
  }();
6143
6177
 
6144
- },{}],55:[function(require,module,exports){
6178
+ },{}],57:[function(require,module,exports){
6145
6179
  "use strict";
6146
6180
 
6147
6181
  var Wick = Wick || {};
@@ -6180,7 +6214,7 @@ $(document).ready(function () {
6180
6214
  Wick.GenerateProjectIdLocal.init();
6181
6215
  });
6182
6216
 
6183
- },{}],56:[function(require,module,exports){
6217
+ },{}],58:[function(require,module,exports){
6184
6218
  "use strict";
6185
6219
 
6186
6220
  function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
@@ -6391,7 +6425,7 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
6391
6425
  $(document).ready(initGiftCardMock);
6392
6426
  })();
6393
6427
 
6394
- },{}],57:[function(require,module,exports){
6428
+ },{}],59:[function(require,module,exports){
6395
6429
  "use strict";
6396
6430
 
6397
6431
  var suggestions = [{
@@ -6530,7 +6564,7 @@ $(document).ready(function () {
6530
6564
  initLocalSearchBar();
6531
6565
  });
6532
6566
 
6533
- },{}],58:[function(require,module,exports){
6567
+ },{}],60:[function(require,module,exports){
6534
6568
  "use strict";
6535
6569
 
6536
6570
  var Wick = Wick || {};
@@ -6566,7 +6600,7 @@ Wick.GoogleMapsStoreInfo = function () {
6566
6600
  init();
6567
6601
  }();
6568
6602
 
6569
- },{}],59:[function(require,module,exports){
6603
+ },{}],61:[function(require,module,exports){
6570
6604
  "use strict";
6571
6605
 
6572
6606
  var Wick = Wick || {};
@@ -6622,7 +6656,7 @@ $(document).ready(function () {
6622
6656
  init();
6623
6657
  });
6624
6658
 
6625
- },{}],60:[function(require,module,exports){
6659
+ },{}],62:[function(require,module,exports){
6626
6660
  "use strict";
6627
6661
 
6628
6662
  function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
@@ -7220,7 +7254,7 @@ if (!Array.prototype.reduce) {
7220
7254
  });
7221
7255
  }
7222
7256
 
7223
- },{}],61:[function(require,module,exports){
7257
+ },{}],63:[function(require,module,exports){
7224
7258
  "use strict";
7225
7259
 
7226
7260
  $(document).ready(function () {
@@ -10891,7 +10925,7 @@ $(document).ready(function () {
10891
10925
  }, 100);
10892
10926
  });
10893
10927
 
10894
- },{}],62:[function(require,module,exports){
10928
+ },{}],64:[function(require,module,exports){
10895
10929
  "use strict";
10896
10930
 
10897
10931
  var Wick = Wick || {};
@@ -10927,7 +10961,7 @@ Wick.orders = function () {
10927
10961
  initialize();
10928
10962
  }();
10929
10963
 
10930
- },{}],63:[function(require,module,exports){
10964
+ },{}],65:[function(require,module,exports){
10931
10965
  "use strict";
10932
10966
 
10933
10967
  var Wick = Wick || {};
@@ -11788,7 +11822,7 @@ Wick.MainNavData = function () {
11788
11822
  };
11789
11823
  }();
11790
11824
 
11791
- },{}],64:[function(require,module,exports){
11825
+ },{}],66:[function(require,module,exports){
11792
11826
  "use strict";
11793
11827
 
11794
11828
  window.Wick = window.Wick || {};
@@ -12868,7 +12902,7 @@ Wick.MiniBasketData = function () {
12868
12902
  };
12869
12903
  }();
12870
12904
 
12871
- },{}],65:[function(require,module,exports){
12905
+ },{}],67:[function(require,module,exports){
12872
12906
  "use strict";
12873
12907
 
12874
12908
  var Wick = Wick || {};
@@ -12903,7 +12937,7 @@ Wick.ShoppingCart = function () {
12903
12937
  };
12904
12938
  }();
12905
12939
 
12906
- },{}],66:[function(require,module,exports){
12940
+ },{}],68:[function(require,module,exports){
12907
12941
  "use strict";
12908
12942
 
12909
12943
  $(document).ready(function () {
@@ -12919,7 +12953,7 @@ $(document).ready(function () {
12919
12953
  });
12920
12954
  });
12921
12955
 
12922
- },{}],67:[function(require,module,exports){
12956
+ },{}],69:[function(require,module,exports){
12923
12957
  "use strict";
12924
12958
 
12925
12959
  var Wick = window.Wick || {};
@@ -12932,6 +12966,566 @@ Wick.FEMock = {
12932
12966
  }));
12933
12967
  },
12934
12968
  dataBloomreach: {
12969
+ dontForgetRecommendations: {
12970
+ recommendedProducts: [{
12971
+ baseProduct: {
12972
+ code: '153731',
12973
+ name: 'Wickes Trade Paint Roller Set - 9in',
12974
+ url: '/Wickes-Trade-Paint-Roller-Set---9in/p/153731',
12975
+ purchasable: true,
12976
+ productType: 'ProductModel',
12977
+ isBaseProduct: false,
12978
+ availabilityRestriction: 'NO_RESTRICTIONS',
12979
+ fulfilmentType: 'STANDARD',
12980
+ stock: {
12981
+ stockLevelStatus: {
12982
+ code: 'inStock'
12983
+ }
12984
+ },
12985
+ fulfillmentAttributes: {
12986
+ type: 'STANDARD'
12987
+ },
12988
+ potentialPromotions: [{
12989
+ customAttributes: {
12990
+ overlayText: '15% off',
12991
+ overlayBackgroundColor: 'yellow',
12992
+ overlayTextColor: 'gray'
12993
+ }
12994
+ }],
12995
+ images: [{
12996
+ imageType: 'PRIMARY',
12997
+ format: 'product',
12998
+ url: 'https://placehold.co/68x68?text=roller',
12999
+ altText: 'Wickes Trade Paint Roller Set - 9in'
13000
+ }],
13001
+ externalAverageRating: 5,
13002
+ externalReviewCount: 100,
13003
+ displayPrice: {
13004
+ currencyIso: 'GBP',
13005
+ value: 9999,
13006
+ priceType: 'BUY',
13007
+ formattedValue: '£9,999.00',
13008
+ formattedPriceWithoutCurrencySymbol: '9999',
13009
+ currencySymbol: '£',
13010
+ vatRatePercentage: 20,
13011
+ valueInPence: 999900,
13012
+ wasPrice: 3000
13013
+ },
13014
+ displayPriceExclusiveVat: {
13015
+ currencyIso: 'GBP',
13016
+ value: 9998,
13017
+ priceType: 'BUY',
13018
+ formattedValue: '£9,998.00',
13019
+ formattedPriceWithoutCurrencySymbol: '9998',
13020
+ currencySymbol: '£',
13021
+ valueInPence: 999800,
13022
+ wasPrice: 2500
13023
+ }
13024
+ }
13025
+ }, {
13026
+ baseProduct: {
13027
+ code: '349137',
13028
+ name: 'Wickes Microfibre Paint Roller Sleeve - 9in',
13029
+ url: '/Wickes-Microfibre-Paint-Roller-Sleeve---9in/p/349137',
13030
+ purchasable: true,
13031
+ productType: 'ProductModel',
13032
+ isBaseProduct: false,
13033
+ availabilityRestriction: 'NO_RESTRICTIONS',
13034
+ fulfilmentType: 'STANDARD',
13035
+ stock: {
13036
+ stockLevelStatus: {
13037
+ code: 'inStock'
13038
+ }
13039
+ },
13040
+ fulfillmentAttributes: {
13041
+ type: 'STANDARD'
13042
+ },
13043
+ potentialPromotions: [{
13044
+ customAttributes: {
13045
+ overlayText: 'Multi-buy',
13046
+ overlayBackgroundColor: 'green',
13047
+ overlayTextColor: 'gray'
13048
+ }
13049
+ }],
13050
+ images: [{
13051
+ imageType: 'PRIMARY',
13052
+ format: 'product',
13053
+ url: 'https://placehold.co/68x68?text=sleeve',
13054
+ altText: 'Wickes Microfibre Paint Roller Sleeve - 9in'
13055
+ }],
13056
+ externalAverageRating: 4.2,
13057
+ externalReviewCount: 48,
13058
+ displayPrice: {
13059
+ currencyIso: 'GBP',
13060
+ value: 7.5,
13061
+ priceType: 'BUY',
13062
+ formattedValue: '£7.50',
13063
+ formattedPriceWithoutCurrencySymbol: '7.50',
13064
+ currencySymbol: '£',
13065
+ vatRatePercentage: 20,
13066
+ valueInPence: 750
13067
+ },
13068
+ displayPriceExclusiveVat: {
13069
+ currencyIso: 'GBP',
13070
+ value: 6.25,
13071
+ priceType: 'BUY',
13072
+ formattedValue: '£6.25',
13073
+ formattedPriceWithoutCurrencySymbol: '6.25',
13074
+ currencySymbol: '£',
13075
+ valueInPence: 625
13076
+ }
13077
+ }
13078
+ }, {
13079
+ baseProduct: {
13080
+ code: '221048',
13081
+ name: 'Wickes Paint Tray - 9in',
13082
+ url: '/Wickes-Paint-Tray---9in/p/221048',
13083
+ purchasable: true,
13084
+ productType: 'ProductModel',
13085
+ isBaseProduct: false,
13086
+ availabilityRestriction: 'NO_RESTRICTIONS',
13087
+ fulfilmentType: 'STANDARD',
13088
+ stock: {
13089
+ stockLevelStatus: {
13090
+ code: 'inStock'
13091
+ }
13092
+ },
13093
+ fulfillmentAttributes: {
13094
+ type: 'STANDARD'
13095
+ },
13096
+ potentialPromotions: [{
13097
+ customAttributes: {
13098
+ overlayText: 'Offer Ends Wednesday',
13099
+ overlayBackgroundColor: 'red',
13100
+ overlayTextColor: 'white'
13101
+ }
13102
+ }],
13103
+ images: [{
13104
+ imageType: 'PRIMARY',
13105
+ format: 'product',
13106
+ url: 'https://placehold.co/68x68?text=tray',
13107
+ altText: 'Wickes Paint Tray - 9in'
13108
+ }],
13109
+ externalAverageRating: 3.8,
13110
+ externalReviewCount: 19,
13111
+ displayPrice: {
13112
+ currencyIso: 'GBP',
13113
+ value: 4,
13114
+ priceType: 'BUY',
13115
+ formattedValue: '£4',
13116
+ formattedPriceWithoutCurrencySymbol: '4',
13117
+ currencySymbol: '£',
13118
+ vatRatePercentage: 20,
13119
+ valueInPence: 400
13120
+ },
13121
+ displayPriceExclusiveVat: {
13122
+ currencyIso: 'GBP',
13123
+ value: 3.33,
13124
+ priceType: 'BUY',
13125
+ formattedValue: '£3.33',
13126
+ formattedPriceWithoutCurrencySymbol: '3.33',
13127
+ currencySymbol: '£',
13128
+ valueInPence: 333
13129
+ }
13130
+ }
13131
+ }, {
13132
+ baseProduct: {
13133
+ code: '654221',
13134
+ name: 'Wickes Professional Masking Tape - 48mm x 50m',
13135
+ url: '/Wickes-Professional-Masking-Tape---48mm-x-50m/p/654221',
13136
+ purchasable: true,
13137
+ productType: 'ProductModel',
13138
+ isBaseProduct: false,
13139
+ availabilityRestriction: 'NO_RESTRICTIONS',
13140
+ fulfilmentType: 'STANDARD',
13141
+ stock: {
13142
+ stockLevelStatus: {
13143
+ code: 'inStock'
13144
+ }
13145
+ },
13146
+ fulfillmentAttributes: {
13147
+ type: 'STANDARD'
13148
+ },
13149
+ potentialPromotions: [{
13150
+ customAttributes: {
13151
+ overlayText: 'Online Only',
13152
+ overlayBackgroundColor: 'blue',
13153
+ overlayTextColor: 'white'
13154
+ }
13155
+ }],
13156
+ images: [{
13157
+ imageType: 'PRIMARY',
13158
+ format: 'product',
13159
+ url: 'https://placehold.co/68x68?text=tape',
13160
+ altText: 'Wickes Professional Masking Tape - 48mm x 50m'
13161
+ }],
13162
+ externalAverageRating: 4.6,
13163
+ externalReviewCount: 72,
13164
+ displayPrice: {
13165
+ currencyIso: 'GBP',
13166
+ value: 5.5,
13167
+ priceType: 'BUY',
13168
+ formattedValue: '£5.50',
13169
+ formattedPriceWithoutCurrencySymbol: '5.50',
13170
+ currencySymbol: '£',
13171
+ vatRatePercentage: 20,
13172
+ valueInPence: 550
13173
+ },
13174
+ displayPriceExclusiveVat: {
13175
+ currencyIso: 'GBP',
13176
+ value: 4.58,
13177
+ priceType: 'BUY',
13178
+ formattedValue: '£4.58',
13179
+ formattedPriceWithoutCurrencySymbol: '4.58',
13180
+ currencySymbol: '£',
13181
+ valueInPence: 458
13182
+ }
13183
+ }
13184
+ }, {
13185
+ baseProduct: {
13186
+ code: '782913',
13187
+ name: 'Wickes Dust Sheet Cotton Twill - 3.6m x 2.7m Extra Long Product Name For Two Line Truncation Test',
13188
+ url: '/Wickes-Dust-Sheet-Cotton-Twill---3-6m-x-2-7m/p/782913',
13189
+ purchasable: true,
13190
+ productType: 'ProductModel',
13191
+ isBaseProduct: false,
13192
+ availabilityRestriction: 'NO_RESTRICTIONS',
13193
+ fulfilmentType: 'STANDARD',
13194
+ stock: {
13195
+ stockLevelStatus: {
13196
+ code: 'inStock'
13197
+ }
13198
+ },
13199
+ fulfillmentAttributes: {
13200
+ type: 'STANDARD'
13201
+ },
13202
+ potentialPromotions: [{
13203
+ customAttributes: {
13204
+ overlayText: 'Clearance',
13205
+ overlayBackgroundColor: 'gray',
13206
+ overlayTextColor: 'white'
13207
+ }
13208
+ }],
13209
+ images: [{
13210
+ imageType: 'PRIMARY',
13211
+ format: 'product',
13212
+ url: 'https://placehold.co/68x68?text=sheet',
13213
+ altText: 'Wickes Dust Sheet Cotton Twill - 3.6m x 2.7m'
13214
+ }],
13215
+ externalAverageRating: 4.1,
13216
+ externalReviewCount: 34,
13217
+ displayPrice: {
13218
+ currencyIso: 'GBP',
13219
+ value: 12,
13220
+ priceType: 'BUY',
13221
+ formattedValue: '£12',
13222
+ formattedPriceWithoutCurrencySymbol: '12',
13223
+ currencySymbol: '£',
13224
+ vatRatePercentage: 20,
13225
+ valueInPence: 1200,
13226
+ wasPrice: 18
13227
+ },
13228
+ displayPriceExclusiveVat: {
13229
+ currencyIso: 'GBP',
13230
+ value: 10,
13231
+ priceType: 'BUY',
13232
+ formattedValue: '£10',
13233
+ formattedPriceWithoutCurrencySymbol: '10',
13234
+ currencySymbol: '£',
13235
+ valueInPence: 1000,
13236
+ wasPrice: 15
13237
+ }
13238
+ }
13239
+ }]
13240
+ },
13241
+ whyNotAddRecommendationsSingle: {
13242
+ recommendedProducts: [{
13243
+ baseProduct: {
13244
+ code: '153731',
13245
+ name: 'Wickes Trade Paint Roller Set - 9in',
13246
+ url: '/Wickes-Trade-Paint-Roller-Set---9in/p/153731',
13247
+ purchasable: true,
13248
+ productType: 'ProductModel',
13249
+ isBaseProduct: false,
13250
+ availabilityRestriction: 'NO_RESTRICTIONS',
13251
+ fulfilmentType: 'STANDARD',
13252
+ stock: {
13253
+ stockLevelStatus: {
13254
+ code: 'inStock'
13255
+ }
13256
+ },
13257
+ fulfillmentAttributes: {
13258
+ type: 'STANDARD'
13259
+ },
13260
+ images: [{
13261
+ imageType: 'PRIMARY',
13262
+ format: 'product',
13263
+ url: 'https://placehold.co/68x68?text=roller',
13264
+ altText: 'Wickes Trade Paint Roller Set - 9in'
13265
+ }],
13266
+ externalAverageRating: 5,
13267
+ externalReviewCount: 100,
13268
+ displayPrice: {
13269
+ currencyIso: 'GBP',
13270
+ value: 9999,
13271
+ priceType: 'BUY',
13272
+ formattedValue: '£9,999.00',
13273
+ formattedPriceWithoutCurrencySymbol: '16',
13274
+ currencySymbol: '£',
13275
+ vatRatePercentage: 20,
13276
+ valueInPence: 999900,
13277
+ wasPrice: 30
13278
+ },
13279
+ displayPriceExclusiveVat: {
13280
+ currencyIso: 'GBP',
13281
+ value: 9998,
13282
+ priceType: 'BUY',
13283
+ formattedValue: '£9,998.00',
13284
+ formattedPriceWithoutCurrencySymbol: '13.33',
13285
+ currencySymbol: '£',
13286
+ valueInPence: 999800,
13287
+ wasPrice: 25
13288
+ }
13289
+ }
13290
+ }]
13291
+ },
13292
+ whyNotAddRecommendations: {
13293
+ recommendedProducts: [{
13294
+ baseProduct: {
13295
+ code: '153731',
13296
+ name: 'Wickes Trade Paint Roller Set - 9in',
13297
+ url: '/Wickes-Trade-Paint-Roller-Set---9in/p/153731',
13298
+ purchasable: true,
13299
+ productType: 'ProductModel',
13300
+ isBaseProduct: false,
13301
+ availabilityRestriction: 'NO_RESTRICTIONS',
13302
+ fulfilmentType: 'STANDARD',
13303
+ stock: {
13304
+ stockLevelStatus: {
13305
+ code: 'inStock'
13306
+ }
13307
+ },
13308
+ fulfillmentAttributes: {
13309
+ type: 'STANDARD'
13310
+ },
13311
+ images: [{
13312
+ imageType: 'PRIMARY',
13313
+ format: 'product',
13314
+ url: 'https://placehold.co/68x68?text=roller',
13315
+ altText: 'Wickes Trade Paint Roller Set - 9in'
13316
+ }],
13317
+ externalAverageRating: 5,
13318
+ externalReviewCount: 100,
13319
+ displayPrice: {
13320
+ currencyIso: 'GBP',
13321
+ value: 9999,
13322
+ priceType: 'BUY',
13323
+ formattedValue: '£9,999.00',
13324
+ formattedPriceWithoutCurrencySymbol: '16',
13325
+ currencySymbol: '£',
13326
+ vatRatePercentage: 20,
13327
+ valueInPence: 999900,
13328
+ wasPrice: 3000
13329
+ },
13330
+ displayPriceExclusiveVat: {
13331
+ currencyIso: 'GBP',
13332
+ value: 9998,
13333
+ priceType: 'BUY',
13334
+ formattedValue: '£9,998.00',
13335
+ formattedPriceWithoutCurrencySymbol: '13.33',
13336
+ currencySymbol: '£',
13337
+ valueInPence: 999800,
13338
+ wasPrice: 2500
13339
+ }
13340
+ }
13341
+ }, {
13342
+ baseProduct: {
13343
+ code: '349137',
13344
+ name: 'Wickes Microfibre Paint Roller Sleeve - 9in',
13345
+ url: '/Wickes-Microfibre-Paint-Roller-Sleeve---9in/p/349137',
13346
+ purchasable: true,
13347
+ productType: 'ProductModel',
13348
+ isBaseProduct: false,
13349
+ availabilityRestriction: 'NO_RESTRICTIONS',
13350
+ fulfilmentType: 'STANDARD',
13351
+ stock: {
13352
+ stockLevelStatus: {
13353
+ code: 'inStock'
13354
+ }
13355
+ },
13356
+ fulfillmentAttributes: {
13357
+ type: 'STANDARD'
13358
+ },
13359
+ images: [{
13360
+ imageType: 'PRIMARY',
13361
+ format: 'product',
13362
+ url: 'https://placehold.co/68x68?text=sleeve',
13363
+ altText: 'Wickes Microfibre Paint Roller Sleeve - 9in'
13364
+ }],
13365
+ externalAverageRating: 4.2,
13366
+ externalReviewCount: 48,
13367
+ displayPrice: {
13368
+ currencyIso: 'GBP',
13369
+ value: 9999,
13370
+ priceType: 'BUY',
13371
+ formattedValue: '£7.5220',
13372
+ formattedPriceWithoutCurrencySymbol: '7.50',
13373
+ currencySymbol: '£',
13374
+ vatRatePercentage: 20,
13375
+ valueInPence: 999900
13376
+ },
13377
+ displayPriceExclusiveVat: {
13378
+ currencyIso: 'GBP',
13379
+ value: 9998,
13380
+ priceType: 'BUY',
13381
+ formattedValue: '£6.25',
13382
+ formattedPriceWithoutCurrencySymbol: '6.25',
13383
+ currencySymbol: '£',
13384
+ valueInPence: 999800
13385
+ }
13386
+ }
13387
+ }, {
13388
+ baseProduct: {
13389
+ code: '221048',
13390
+ name: 'Wickes Paint Tray - 9in',
13391
+ url: '/Wickes-Paint-Tray---9in/p/221048',
13392
+ purchasable: true,
13393
+ productType: 'ProductModel',
13394
+ isBaseProduct: false,
13395
+ availabilityRestriction: 'NO_RESTRICTIONS',
13396
+ fulfilmentType: 'STANDARD',
13397
+ stock: {
13398
+ stockLevelStatus: {
13399
+ code: 'inStock'
13400
+ }
13401
+ },
13402
+ fulfillmentAttributes: {
13403
+ type: 'STANDARD'
13404
+ },
13405
+ images: [{
13406
+ imageType: 'PRIMARY',
13407
+ format: 'product',
13408
+ url: 'https://placehold.co/68x68?text=tray',
13409
+ altText: 'Wickes Paint Tray - 9in'
13410
+ }],
13411
+ externalAverageRating: 3.8,
13412
+ externalReviewCount: 19,
13413
+ displayPrice: {
13414
+ currencyIso: 'GBP',
13415
+ value: 4,
13416
+ priceType: 'BUY',
13417
+ formattedValue: '£4',
13418
+ formattedPriceWithoutCurrencySymbol: '4',
13419
+ currencySymbol: '£',
13420
+ vatRatePercentage: 20,
13421
+ valueInPence: 400
13422
+ },
13423
+ displayPriceExclusiveVat: {
13424
+ currencyIso: 'GBP',
13425
+ value: 3.33,
13426
+ priceType: 'BUY',
13427
+ formattedValue: '£3.33',
13428
+ formattedPriceWithoutCurrencySymbol: '3.33',
13429
+ currencySymbol: '£',
13430
+ valueInPence: 333
13431
+ }
13432
+ }
13433
+ }, {
13434
+ baseProduct: {
13435
+ code: '654221',
13436
+ name: 'Wickes Professional Masking Tape - 48mm x 50m',
13437
+ url: '/Wickes-Professional-Masking-Tape---48mm-x-50m/p/654221',
13438
+ purchasable: true,
13439
+ productType: 'ProductModel',
13440
+ isBaseProduct: false,
13441
+ availabilityRestriction: 'NO_RESTRICTIONS',
13442
+ fulfilmentType: 'STANDARD',
13443
+ stock: {
13444
+ stockLevelStatus: {
13445
+ code: 'inStock'
13446
+ }
13447
+ },
13448
+ fulfillmentAttributes: {
13449
+ type: 'STANDARD'
13450
+ },
13451
+ images: [{
13452
+ imageType: 'PRIMARY',
13453
+ format: 'product',
13454
+ url: 'https://placehold.co/68x68?text=tape',
13455
+ altText: 'Wickes Professional Masking Tape - 48mm x 50m'
13456
+ }],
13457
+ externalAverageRating: 4.6,
13458
+ externalReviewCount: 72,
13459
+ displayPrice: {
13460
+ currencyIso: 'GBP',
13461
+ value: 5.5,
13462
+ priceType: 'BUY',
13463
+ formattedValue: '£5.50',
13464
+ formattedPriceWithoutCurrencySymbol: '5.50',
13465
+ currencySymbol: '£',
13466
+ vatRatePercentage: 20,
13467
+ valueInPence: 550
13468
+ },
13469
+ displayPriceExclusiveVat: {
13470
+ currencyIso: 'GBP',
13471
+ value: 4.58,
13472
+ priceType: 'BUY',
13473
+ formattedValue: '£4.58',
13474
+ formattedPriceWithoutCurrencySymbol: '4.58',
13475
+ currencySymbol: '£',
13476
+ valueInPence: 458
13477
+ }
13478
+ }
13479
+ }, {
13480
+ baseProduct: {
13481
+ code: '782913',
13482
+ name: 'Wickes Dust Sheet Cotton Twill - 3.6m x 2.7m Extra Long Product Name For Two Line Truncation Test',
13483
+ url: '/Wickes-Dust-Sheet-Cotton-Twill---3-6m-x-2-7m/p/782913',
13484
+ purchasable: true,
13485
+ productType: 'ProductModel',
13486
+ isBaseProduct: false,
13487
+ availabilityRestriction: 'NO_RESTRICTIONS',
13488
+ fulfilmentType: 'STANDARD',
13489
+ stock: {
13490
+ stockLevelStatus: {
13491
+ code: 'inStock'
13492
+ }
13493
+ },
13494
+ fulfillmentAttributes: {
13495
+ type: 'STANDARD'
13496
+ },
13497
+ images: [{
13498
+ imageType: 'PRIMARY',
13499
+ format: 'product',
13500
+ url: 'https://placehold.co/68x68?text=sheet',
13501
+ altText: 'Wickes Dust Sheet Cotton Twill - 3.6m x 2.7m'
13502
+ }],
13503
+ externalAverageRating: 4.1,
13504
+ externalReviewCount: 34,
13505
+ displayPrice: {
13506
+ currencyIso: 'GBP',
13507
+ value: 12,
13508
+ priceType: 'BUY',
13509
+ formattedValue: '£12',
13510
+ formattedPriceWithoutCurrencySymbol: '12',
13511
+ currencySymbol: '£',
13512
+ vatRatePercentage: 20,
13513
+ valueInPence: 1200,
13514
+ wasPrice: 18
13515
+ },
13516
+ displayPriceExclusiveVat: {
13517
+ currencyIso: 'GBP',
13518
+ value: 10,
13519
+ priceType: 'BUY',
13520
+ formattedValue: '£10',
13521
+ formattedPriceWithoutCurrencySymbol: '10',
13522
+ currencySymbol: '£',
13523
+ valueInPence: 1000,
13524
+ wasPrice: 15
13525
+ }
13526
+ }
13527
+ }]
13528
+ },
12935
13529
  completeYourProject3Recomendations: [{
12936
13530
  baseProduct: {
12937
13531
  code: '191018',
@@ -15634,11 +16228,11 @@ Wick.FEMock = {
15634
16228
  page: 2,
15635
16229
  html: '<article class="active-orders__item"><header class="order-header"><h3 class="order-header__title">Order 940564001</h3><div class="order-status completed"><svg class="svg-inline--fa fa-check-circle fa-w-16 icon" aria-hidden="true" focusable="false" data-prefix="fas" data-icon="check-circle" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" data-fa-i2svg=""><path fill="currentColor" d="M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z"></path></svg><span>Complete</span></div></header><section class="order-details"><div class="order-details__summary"><span class="order-details__price">£92.75</span> <span class="order-details__count">7 item(s)</span></div><time class="order-details__date" datetime="21st November 2024 4:32 PM">21st November 2024 4:32 PM</time></section><div class="view-more"><a class="link" href="/"><span>View More</span> <svg class="svg-inline--fa fa-arrow-right fa-w-14 icon" aria-hidden="true" focusable="false" data-prefix="fas" data-icon="arrow-right" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" data-fa-i2svg=""><path fill="currentColor" d="M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z"></path></svg></a></div></article><article class="active-orders__item"><header class="order-header"><h3 class="order-header__title">Order 940520002</h3><div class="order-status cancelled"><svg class="svg-inline--fa fa-times fa-w-10 icon" aria-hidden="true" focusable="false" data-prefix="far" data-icon="times" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512" data-fa-i2svg=""><path fill="currentColor" d="M207.6 256l107.72-107.72c6.23-6.23 6.23-16.34 0-22.58l-25.03-25.03c-6.23-6.23-16.34-6.23-22.58 0L160 208.4 52.28 100.68c-6.23-6.23-16.34-6.23-22.58 0L4.68 125.7c-6.23 6.23-6.23 16.34 0 22.58L112.4 256 4.68 363.72c-6.23 6.23-6.23 16.34 0 22.58l25.03 25.03c6.23 6.23 16.34 6.23 22.58 0L160 303.6l107.72 107.72c6.23 6.23 16.34 6.23 22.58 0l25.03-25.03c6.23-6.23 6.23-16.34 0-22.58L207.6 256z"></path></svg><span>Cancelled</span></div></header><section class="order-details"><div class="order-details__summary"><span class="order-details__price">£32.00</span> <span class="order-details__count">1 item(s)</span></div><time class="order-details__date" datetime="28th October 2024 7:29 AM">28th October 2024 7:29 AM</time></section><div class="view-more"><a class="link" href="/"><span>View More</span> <svg class="svg-inline--fa fa-arrow-right fa-w-14 icon" aria-hidden="true" focusable="false" data-prefix="fas" data-icon="arrow-right" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" data-fa-i2svg=""><path fill="currentColor" d="M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z"></path></svg></a></div></article>'
15636
16230
  }],
15637
- cartPDP: "\n <div class=\"custom-slider__wrap slider-mini-basket popover-mini-basket\">\n <div class=\"custom-slider__header\">\n <a href=\"#\" type=\"button\" class=\"link close-popup\">\n <span class=\"icon-wrap\">\n <svg class=\"svg-inline--fa fa-angle-left fa-w-6\" aria-hidden=\"true\" focusable=\"false\" data-prefix=\"far\" data-icon=\"angle-left\" role=\"img\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 192 512\" data-fa-i2svg=\"\">\n <path fill=\"currentColor\" d=\"M4.2 247.5L151 99.5c4.7-4.7 12.3-4.7 17 0l19.8 19.8c4.7 4.7 4.7 12.3 0 17L69.3 256l118.5 119.7c4.7 4.7 4.7 12.3 0 17L168 412.5c-4.7 4.7-12.3 4.7-17 0L4.2 264.5c-4.7-4.7-4.7-12.3 0-17z\"></path>\n </svg>\n </span>\n Continue Shopping\n </a>\n <a href=\"#\" type=\"button\" class=\"icon-wrap close-popup\">\n <svg class=\"svg-inline--fa fa-times fa-w-10 icon\" aria-hidden=\"true\" focusable=\"false\" data-prefix=\"far\" data-icon=\"times\" role=\"img\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 320 512\" data-fa-i2svg=\"\">\n <path fill=\"currentColor\" d=\"M207.6 256l107.72-107.72c6.23-6.23 6.23-16.34 0-22.58l-25.03-25.03c-6.23-6.23-16.34-6.23-22.58 0L160 208.4 52.28 100.68c-6.23-6.23-16.34-6.23-22.58 0L4.68 125.7c-6.23 6.23-6.23 16.34 0 22.58L112.4 256 4.68 363.72c-6.23 6.23-6.23 16.34 0 22.58l25.03 25.03c6.23 6.23 16.34 6.23 22.58 0L160 303.6l107.72 107.72c6.23 6.23 16.34 6.23 22.58 0l25.03-25.03c6.23-6.23 6.23-16.34 0-22.58L207.6 256z\"></path>\n </svg>\n </a>\n </div>\n <div class=\"custom-slider__message\">\n <span class=\"icon-wrap success\">\n <svg class=\"svg-inline--fa fa-check-circle fa-w-16\" aria-hidden=\"true\" focusable=\"false\" data-prefix=\"fas\" data-icon=\"check-circle\" role=\"img\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" data-fa-i2svg=\"\"><path fill=\"currentColor\" d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg><!-- <i class=\"fas fa-check-circle\"></i> Font Awesome fontawesome.com -->\n </span>\n \n <div class=\"messages popover-mini-basket__added\">\n <p class=\"messages__text\">\n <span>\n You've just added</span>\n </p>\n \n <span class=\"messages__notice\">\n Excluding items already in basket</span>\n </div>\n </div>\n <div class=\"products popover-mini-basket__cards-holder\">\n <div class=\"card product-card-preview\">\n <div class=\"products__item card__inner\" data-name=\"Blue Circle Ready To Use Postcrete - 20kg\" data-id=\"221100\" data-price=\"7.50\" data-brand=\"Blue Circle\" data-category=\"Building Materials/Cement &amp; Aggregates/Cement\" data-position=\"0\">\n <a href=\"/Blue-Circle-Ready-To-Use-Postcrete---20kg/p/221100\" class=\"card__img-wrap card__img-wrap_link products__image\">\n <img loading=\"lazy\" class=\"product-img\" src=\"//media.wickes.co.uk/is/image/wickes/B3182_221100_00?$thumbnail$\" alt=\"Blue Circle Ready To Use Postcrete - 20kg\" title=\"Blue Circle Ready To Use Postcrete - 20kg\">\n </a>\n \n <div class=\"products__details\">\n <a href=\"/Blue-Circle-Ready-To-Use-Postcrete---20kg/p/221100\" class=\"title product-card__title\">Blue Circle Ready To Use Postcrete - 20kg</a>\n <p class=\"item\">Added for delivery</p>\n <p class=\"item pdp-price__control-holder\">Qty:\n <span class=\"value product-card__quantity-value\">1</span>\n </p>\n <p class=\"price product-card__price-value\">\xA37.50</p>\n </div>\n </div>\n </div>\n </div>\n <div class=\"custom-slider__content\">\n <p>Product description Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean euismod bibendum laoreet. Proin gravida dolor sit amet lacus accumsan et viverra justo commodo. Proin sodales pulvinar sic tempor. Sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam fermentum, nulla luctus pharetra vulputate, felis tellus mollis orci, sed rhoncus pronin sapien nunc accuan eget. Product description Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean euismod bibendum laoreet. Proin gravida dolor sit amet lacus accumsan et viverra justo commodo. Proin sodales pulvinar sic tempor. Sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam fermentum, nulla luctus pharetra vulputate, felis tellus mollis orci, sed rhoncus pronin sapien nunc accuan eget.</p>\n </div>\n </div>\n <div class=\"custom-slider__footer\">\n <button class=\"btn btn_full btn-secondary close-popup\">Continue Shopping</button>\n <a href=\"/cart\" class=\"btn btn-action btn_full btn-view-basket-cta\" type=\"button\">View Basket</a>\n </div>\n ",
16231
+ cartPDP: "\n <div class=\"custom-slider__wrap slider-mini-basket popover-mini-basket\">\n <div class=\"custom-slider__header\">\n <a href=\"#\" type=\"button\" class=\"link close-popup\">\n <span class=\"icon-wrap\">\n <svg class=\"svg-inline--fa fa-angle-left fa-w-6\" aria-hidden=\"true\" focusable=\"false\" data-prefix=\"far\" data-icon=\"angle-left\" role=\"img\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 192 512\" data-fa-i2svg=\"\">\n <path fill=\"currentColor\" d=\"M4.2 247.5L151 99.5c4.7-4.7 12.3-4.7 17 0l19.8 19.8c4.7 4.7 4.7 12.3 0 17L69.3 256l118.5 119.7c4.7 4.7 4.7 12.3 0 17L168 412.5c-4.7 4.7-12.3 4.7-17 0L4.2 264.5c-4.7-4.7-4.7-12.3 0-17z\"></path>\n </svg>\n </span>\n Continue Shopping\n </a>\n <a href=\"#\" type=\"button\" class=\"icon-wrap close-popup\">\n <svg class=\"svg-inline--fa fa-times fa-w-10 icon\" aria-hidden=\"true\" focusable=\"false\" data-prefix=\"far\" data-icon=\"times\" role=\"img\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 320 512\" data-fa-i2svg=\"\">\n <path fill=\"currentColor\" d=\"M207.6 256l107.72-107.72c6.23-6.23 6.23-16.34 0-22.58l-25.03-25.03c-6.23-6.23-16.34-6.23-22.58 0L160 208.4 52.28 100.68c-6.23-6.23-16.34-6.23-22.58 0L4.68 125.7c-6.23 6.23-6.23 16.34 0 22.58L112.4 256 4.68 363.72c-6.23 6.23-6.23 16.34 0 22.58l25.03 25.03c6.23 6.23 16.34 6.23 22.58 0L160 303.6l107.72 107.72c6.23 6.23 16.34 6.23 22.58 0l25.03-25.03c6.23-6.23 6.23-16.34 0-22.58L207.6 256z\"></path>\n </svg>\n </a>\n </div>\n <div class=\"custom-slider__message\">\n <span class=\"icon-wrap success\">\n <svg class=\"svg-inline--fa fa-check-circle fa-w-16\" aria-hidden=\"true\" focusable=\"false\" data-prefix=\"fas\" data-icon=\"check-circle\" role=\"img\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" data-fa-i2svg=\"\"><path fill=\"currentColor\" d=\"M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z\"></path></svg><!-- <i class=\"fas fa-check-circle\"></i> Font Awesome fontawesome.com -->\n </span>\n \n <div class=\"messages popover-mini-basket__added\">\n <p class=\"messages__text\">\n <span>\n You've just added</span>\n </p>\n \n <span class=\"messages__notice\">\n Excluding items already in basket</span>\n </div>\n </div>\n <div class=\"products popover-mini-basket__cards-holder\">\n <div class=\"card product-card-preview\">\n <div class=\"products__item card__inner\" data-name=\"Blue Circle Ready To Use Postcrete - 20kg\" data-id=\"221100\" data-price=\"7.50\" data-brand=\"Blue Circle\" data-category=\"Building Materials/Cement &amp; Aggregates/Cement\" data-position=\"0\">\n <a href=\"/Blue-Circle-Ready-To-Use-Postcrete---20kg/p/221100\" class=\"card__img-wrap card__img-wrap_link products__image\">\n <img loading=\"lazy\" class=\"product-img\" src=\"//media.wickes.co.uk/is/image/wickes/B3182_221100_00?$thumbnail$\" alt=\"Blue Circle Ready To Use Postcrete - 20kg\" title=\"Blue Circle Ready To Use Postcrete - 20kg\">\n </a>\n \n <div class=\"products__details\">\n <a href=\"/Blue-Circle-Ready-To-Use-Postcrete---20kg/p/221100\" class=\"title product-card__title\">Blue Circle Ready To Use Postcrete - 20kg</a>\n <p class=\"item\">Added for delivery</p>\n <p class=\"item pdp-price__control-holder\">Qty:\n <span class=\"value product-card__quantity-value\">1</span>\n </p>\n <p class=\"price product-card__price-value\">\xA37.50</p>\n </div>\n </div>\n </div>\n </div>\n <div\n data-dont-forget-widget\n data-mock-key=\"dontForgetRecommendations\"\n ></div>\n </div>\n <div class=\"custom-slider__footer\">\n <button class=\"btn btn_full btn-secondary close-popup\">Continue Shopping</button>\n <a href=\"/cart\" class=\"btn btn-action btn_full btn-view-basket-cta\" type=\"button\">View Basket</a>\n </div>\n ",
15638
16232
  cartPDPError: "\n <div class=\"custom-slider__wrap slider-mini-basket popover-mini-basket\">\n <div class=\"custom-slider__header\">\n <button class=\"btn btn-link p-0 link close-popup\" type=\"button\">\n <span class=\"icon-wrap\">\n <svg class=\"svg-inline--fa fa-angle-left fa-w-6\" aria-hidden=\"true\" focusable=\"false\" data-prefix=\"far\" data-icon=\"angle-left\" role=\"img\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 192 512\" data-fa-i2svg=\"\">\n <path fill=\"currentColor\" d=\"M4.2 247.5L151 99.5c4.7-4.7 12.3-4.7 17 0l19.8 19.8c4.7 4.7 4.7 12.3 0 17L69.3 256l118.5 119.7c4.7 4.7 4.7 12.3 0 17L168 412.5c-4.7 4.7-12.3 4.7-17 0L4.2 264.5c-4.7-4.7-4.7-12.3 0-17z\"></path>\n </svg>\n </span>\n Continue Shopping\n </button>\n\n <button class=\"icon-wrap close-popup\" type=\"button\">\n <svg class=\"svg-inline--fa fa-times fa-w-10 icon\" aria-hidden=\"true\" focusable=\"false\" data-prefix=\"far\" data-icon=\"times\" role=\"img\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 320 512\" data-fa-i2svg=\"\">\n <path fill=\"currentColor\" d=\"M207.6 256l107.72-107.72c6.23-6.23 6.23-16.34 0-22.58l-25.03-25.03c-6.23-6.23-16.34-6.23-22.58 0L160 208.4 52.28 100.68c-6.23-6.23-16.34-6.23-22.58 0L4.68 125.7c-6.23 6.23-6.23 16.34 0 22.58L112.4 256 4.68 363.72c-6.23 6.23-6.23 16.34 0 22.58l25.03 25.03c6.23 6.23 16.34 6.23 22.58 0L160 303.6l107.72 107.72c6.23 6.23 16.34 6.23 22.58 0l25.03-25.03c6.23-6.23 6.23-16.34 0-22.58L207.6 256z\"></path>\n </svg>\n </button>\n </div>\n\n <div class=\"custom-slider__message\">\n <span class=\"icon-wrap error\">\n <svg class=\"svg-inline--fa fa-times-circle fa-w-16\" aria-hidden=\"true\" focusable=\"false\" data-prefix=\"fas\" data-icon=\"times-circle\" role=\"img\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\" data-fa-i2svg=\"\">\n <path fill=\"currentColor\" d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm121.6 313.1c4.7 4.7 4.7 12.3 0 17L338 377.6c-4.7 4.7-12.3 4.7-17 0L256 312l-65.1 65.6c-4.7 4.7-12.3 4.7-17 0L134.4 338c-4.7-4.7-4.7-12.3 0-17l65.6-65-65.6-65.1c-4.7-4.7-4.7-12.3 0-17l39.6-39.6c4.7-4.7 12.3-4.7 17 0l65 65.7 65.1-65.6c4.7-4.7 12.3-4.7 17 0l39.6 39.6c4.7 4.7 4.7 12.3 0 17L312 256l65.6 65.1z\"></path>\n </svg>\n </span>\n\n <div class=\"messages popover-mini-basket__not-added\">\n <p class=\"messages__text\">\n Invalid quantity entered. Please enter a number to the field \u2018quantity\u2019.\n </p>\n </div>\n </div>\n\n <div class=\"products popover-mini-basket__cards-holder\">\n <div class=\"card product-card-preview\">\n <div class=\"products__item card__inner\" data-name=\"Blue Circle Ready To Use Postcrete - 20kg\" data-id=\"221100\" data-price=\"7.50\" data-position=\"0\">\n <a href=\"/Blue-Circle-Ready-To-Use-Postcrete---20kg/p/221100\" class=\"card__img-wrap card__img-wrap_link products__image\">\n <img loading=\"lazy\" class=\"product-img\" src=\"//media.wickes.co.uk/is/image/wickes/B3182_221100_00?$thumbnail$\" alt=\"Blue Circle Ready To Use Postcrete - 20kg\" title=\"Blue Circle Ready To Use Postcrete - 20kg\">\n </a>\n\n <div class=\"products__details\">\n <a href=\"/Blue-Circle-Ready-To-Use-Postcrete---20kg/p/221100\" class=\"title product-card__title\">\n Blue Circle Ready To Use Postcrete - 20kg\n </a>\n\n <p class=\"price\">\n <span class=\"product-card__price-value\">\xA37.50</span>\n </p>\n </div>\n </div>\n </div>\n </div>\n\n <div class=\"custom-slider__content\"></div>\n </div>\n "
15639
16233
  };
15640
16234
 
15641
- },{}],68:[function(require,module,exports){
16235
+ },{}],70:[function(require,module,exports){
15642
16236
  "use strict";
15643
16237
 
15644
16238
  function getOrdersHtmlByCurrentPage(_ref) {
@@ -15701,7 +16295,7 @@ $(document).ready(function () {
15701
16295
  initMyOrdersEvent();
15702
16296
  });
15703
16297
 
15704
- },{}],69:[function(require,module,exports){
16298
+ },{}],71:[function(require,module,exports){
15705
16299
  "use strict";
15706
16300
 
15707
16301
  function initNotifyMeEmulation() {
@@ -15714,7 +16308,7 @@ $(document).ready(function () {
15714
16308
  initNotifyMeEmulation();
15715
16309
  });
15716
16310
 
15717
- },{}],70:[function(require,module,exports){
16311
+ },{}],72:[function(require,module,exports){
15718
16312
  "use strict";
15719
16313
 
15720
16314
  function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
@@ -15751,7 +16345,7 @@ Object.entries(paymentTypeSelectors).forEach(function (_ref) {
15751
16345
  });
15752
16346
  });
15753
16347
 
15754
- },{}],71:[function(require,module,exports){
16348
+ },{}],73:[function(require,module,exports){
15755
16349
  "use strict";
15756
16350
 
15757
16351
  var Wick = window.Wick = window.Wick || {};
@@ -15845,7 +16439,7 @@ $(document).ready(function () {
15845
16439
  }
15846
16440
  });
15847
16441
 
15848
- },{}],72:[function(require,module,exports){
16442
+ },{}],74:[function(require,module,exports){
15849
16443
  "use strict";
15850
16444
 
15851
16445
  function handleClickAndScroll(cta, elementToScroll) {
@@ -15865,7 +16459,7 @@ $(document).ready(function () {
15865
16459
  handleClickAndScroll('.pdp-price-sale__value .pdp-price__excluding-delivery', '.pdp__fulfilment');
15866
16460
  });
15867
16461
 
15868
- },{}],73:[function(require,module,exports){
16462
+ },{}],75:[function(require,module,exports){
15869
16463
  "use strict";
15870
16464
 
15871
16465
  var Wick = Wick || {};
@@ -15951,7 +16545,7 @@ $(document).ready(function () {
15951
16545
  initPersonalDetails();
15952
16546
  });
15953
16547
 
15954
- },{}],74:[function(require,module,exports){
16548
+ },{}],76:[function(require,module,exports){
15955
16549
  "use strict";
15956
16550
 
15957
16551
  function getHtmlByCurrentPage(_ref) {
@@ -15980,7 +16574,7 @@ $(document).ready(function () {
15980
16574
  initPLPLoadMoreFunctionality();
15981
16575
  });
15982
16576
 
15983
- },{}],75:[function(require,module,exports){
16577
+ },{}],77:[function(require,module,exports){
15984
16578
  "use strict";
15985
16579
 
15986
16580
  var Wick = window.Wick = window.Wick || {};
@@ -16198,7 +16792,7 @@ Wick.MiniBasket = function () {
16198
16792
  };
16199
16793
  }();
16200
16794
 
16201
- },{}],76:[function(require,module,exports){
16795
+ },{}],78:[function(require,module,exports){
16202
16796
  "use strict";
16203
16797
 
16204
16798
  var Wick = Wick || {};
@@ -16239,7 +16833,7 @@ $(document).ready(function () {
16239
16833
  Wick.ProductCounter.bind();
16240
16834
  });
16241
16835
 
16242
- },{}],77:[function(require,module,exports){
16836
+ },{}],79:[function(require,module,exports){
16243
16837
  "use strict";
16244
16838
 
16245
16839
  var Wick = Wick || {};
@@ -16274,7 +16868,7 @@ $(document).ready(function () {
16274
16868
  Wick.ProjectListMultiple.bindAll();
16275
16869
  });
16276
16870
 
16277
- },{}],78:[function(require,module,exports){
16871
+ },{}],80:[function(require,module,exports){
16278
16872
  "use strict";
16279
16873
 
16280
16874
  var Wick = window.Wick = window.Wick || {};
@@ -16561,7 +17155,7 @@ $(document).ready(function () {
16561
17155
  init();
16562
17156
  });
16563
17157
 
16564
- },{}],79:[function(require,module,exports){
17158
+ },{}],81:[function(require,module,exports){
16565
17159
  "use strict";
16566
17160
 
16567
17161
  function initProjectShadowList() {
@@ -16623,7 +17217,7 @@ $(document).ready(function () {
16623
17217
  initProjectShadowList();
16624
17218
  });
16625
17219
 
16626
- },{}],80:[function(require,module,exports){
17220
+ },{}],82:[function(require,module,exports){
16627
17221
  "use strict";
16628
17222
 
16629
17223
  function initQuizEmail() {
@@ -16643,7 +17237,7 @@ $(document).ready(function () {
16643
17237
  initQuizEmail();
16644
17238
  });
16645
17239
 
16646
- },{}],81:[function(require,module,exports){
17240
+ },{}],83:[function(require,module,exports){
16647
17241
  "use strict";
16648
17242
 
16649
17243
  var Wick = Wick || {};
@@ -16743,7 +17337,7 @@ Wick.ReferenceField = function () {
16743
17337
  init();
16744
17338
  }();
16745
17339
 
16746
- },{}],82:[function(require,module,exports){
17340
+ },{}],84:[function(require,module,exports){
16747
17341
  "use strict";
16748
17342
 
16749
17343
  var Wick = Wick || {};
@@ -16773,7 +17367,7 @@ Wick.RepaymentToggle = function () {
16773
17367
  bindEvents();
16774
17368
  }();
16775
17369
 
16776
- },{}],83:[function(require,module,exports){
17370
+ },{}],85:[function(require,module,exports){
16777
17371
  "use strict";
16778
17372
 
16779
17373
  $(document).on('click', '.filter-results__clear', function () {
@@ -16782,7 +17376,7 @@ $(document).on('click', '.filter-results__clear', function () {
16782
17376
  form.submit();
16783
17377
  });
16784
17378
 
16785
- },{}],84:[function(require,module,exports){
17379
+ },{}],86:[function(require,module,exports){
16786
17380
  "use strict";
16787
17381
 
16788
17382
  var Wick = Wick || {};
@@ -16808,7 +17402,7 @@ Wick.Selectable = function () {
16808
17402
  bindEvents();
16809
17403
  }();
16810
17404
 
16811
- },{}],85:[function(require,module,exports){
17405
+ },{}],87:[function(require,module,exports){
16812
17406
  "use strict";
16813
17407
 
16814
17408
  var Wick = Wick || {};
@@ -16891,7 +17485,7 @@ $(document).ready(function () {
16891
17485
  Wick.ShoppingList.bindAll();
16892
17486
  });
16893
17487
 
16894
- },{}],86:[function(require,module,exports){
17488
+ },{}],88:[function(require,module,exports){
16895
17489
  "use strict";
16896
17490
 
16897
17491
  var Wick = Wick || {};
@@ -16916,7 +17510,7 @@ Wick.SignUp = function () {
16916
17510
  });
16917
17511
  }();
16918
17512
 
16919
- },{}],87:[function(require,module,exports){
17513
+ },{}],89:[function(require,module,exports){
16920
17514
  "use strict";
16921
17515
 
16922
17516
  var _loader = require("../page/utils/loader");
@@ -16973,7 +17567,7 @@ $(document).ready(function () {
16973
17567
  initStoreLocatorLoadMore();
16974
17568
  });
16975
17569
 
16976
- },{"../page/utils/loader":96}],88:[function(require,module,exports){
17570
+ },{"../page/utils/loader":100}],90:[function(require,module,exports){
16977
17571
  "use strict";
16978
17572
 
16979
17573
  var Wick = window.Wick || {};
@@ -17014,7 +17608,7 @@ $(document).ready(function () {
17014
17608
  }, 250));
17015
17609
  });
17016
17610
 
17017
- },{}],89:[function(require,module,exports){
17611
+ },{}],91:[function(require,module,exports){
17018
17612
  "use strict";
17019
17613
 
17020
17614
  var Wick = Wick || {};
@@ -17036,7 +17630,7 @@ $(document).ready(function () {
17036
17630
  Wick.addListToBasket.addAllProjectList();
17037
17631
  });
17038
17632
 
17039
- },{}],90:[function(require,module,exports){
17633
+ },{}],92:[function(require,module,exports){
17040
17634
  "use strict";
17041
17635
 
17042
17636
  var Wick = window.Wick || {};
@@ -17048,7 +17642,7 @@ $(document).ready(function () {
17048
17642
  }
17049
17643
  });
17050
17644
 
17051
- },{}],91:[function(require,module,exports){
17645
+ },{}],93:[function(require,module,exports){
17052
17646
  "use strict";
17053
17647
 
17054
17648
  var Wick = Wick || {};
@@ -17086,7 +17680,7 @@ Wick.User = function () {
17086
17680
  };
17087
17681
  }();
17088
17682
 
17089
- },{}],92:[function(require,module,exports){
17683
+ },{}],94:[function(require,module,exports){
17090
17684
  "use strict";
17091
17685
 
17092
17686
  var suppressQuantityReportValidityOnBlur = false;
@@ -17113,14 +17707,55 @@ $(document).off('keydown.quantityValidation', '#quantity-field').on('keydown.qua
17113
17707
  }, 150);
17114
17708
  });
17115
17709
 
17116
- },{}],93:[function(require,module,exports){
17710
+ },{}],95:[function(require,module,exports){
17117
17711
  "use strict";
17118
17712
 
17119
17713
  window.ACC = window.ACC || {};
17120
17714
  window.ACC.app = window.ACC.app || {};
17121
17715
  window.ACC.app.isVatToggleAvailable = !!$('.switch-vat input').length;
17122
17716
 
17123
- },{}],94:[function(require,module,exports){
17717
+ },{}],96:[function(require,module,exports){
17718
+ "use strict";
17719
+
17720
+ var Wick = window.Wick || {};
17721
+ $(document).ready(function () {
17722
+ var $container = $('[data-why-not-add-widget]');
17723
+ if (!$container.length) {
17724
+ return;
17725
+ }
17726
+ window.setTimeout(function () {
17727
+ var mockDataKey = $container.data('mock-key');
17728
+ var payloadData = Wick.FEMock.dataBloomreach[mockDataKey];
17729
+ Wick.BloomreachWidget.init('whyNotAdd', payloadData);
17730
+ }, 3000);
17731
+ });
17732
+
17733
+ },{}],97:[function(require,module,exports){
17734
+ "use strict";
17735
+
17736
+ var Wick = window.Wick || {};
17737
+ function simulateHybrisSendingHtml() {
17738
+ var htmlFromHybris = Wick.FEMock.cartPDP;
17739
+ window.dispatchEvent(new CustomEvent('productAddedToCart', {
17740
+ detail: {
17741
+ html: htmlFromHybris
17742
+ }
17743
+ }));
17744
+ }
17745
+ function bindWhyNotAddToCartEvent() {
17746
+ $(window).off('addToCart.whyNotAddEmulation').on('addToCart.whyNotAddEmulation', function (_ref) {
17747
+ var resolve = _ref.detail.resolve;
17748
+ setTimeout(function () {
17749
+ resolve();
17750
+ simulateHybrisSendingHtml();
17751
+ }, 3000);
17752
+ });
17753
+ }
17754
+ $(document).ready(function () {
17755
+ bindWhyNotAddToCartEvent();
17756
+ });
17757
+
17758
+ },{}],98:[function(require,module,exports){
17124
17759
  "use strict";
17125
17760
 
17126
17761
  var Wick = window.Wick = window.Wick || {};
@@ -17152,7 +17787,7 @@ Wick.Wismo = function () {
17152
17787
  });
17153
17788
  }();
17154
17789
 
17155
- },{}],95:[function(require,module,exports){
17790
+ },{}],99:[function(require,module,exports){
17156
17791
  "use strict";
17157
17792
 
17158
17793
  var Wick = Wick || {};
@@ -17231,7 +17866,7 @@ Wick.YourDetails = function () {
17231
17866
  });
17232
17867
  }();
17233
17868
 
17234
- },{}],96:[function(require,module,exports){
17869
+ },{}],100:[function(require,module,exports){
17235
17870
  "use strict";
17236
17871
 
17237
17872
  Object.defineProperty(exports, "__esModule", {
@@ -17257,7 +17892,7 @@ function hideLoader(loaderSelector) {
17257
17892
  $(defineLoaderWrapper(loaderSelector)).addClass(HIDDEN_CLASS_NAME);
17258
17893
  }
17259
17894
 
17260
- },{"../../../elements/loader.hbs":25}],97:[function(require,module,exports){
17895
+ },{"../../../elements/loader.hbs":25}],101:[function(require,module,exports){
17261
17896
  "use strict";
17262
17897
 
17263
17898
  Object.defineProperty(exports, "__esModule", {
@@ -17494,4 +18129,4 @@ function createShowMoreLess() {
17494
18129
  };
17495
18130
  }
17496
18131
 
17497
- },{"../../../elements/btn.hbs":24}]},{},[26,27,28,29,30,31,32,33,34,35,36,37,38,39,44,40,41,42,43,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95]);
18132
+ },{"../../../elements/btn.hbs":24}]},{},[26,27,28,29,30,31,32,33,34,35,36,37,38,39,44,40,41,42,43,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99]);