forked from forcedotcom/commerce-on-lightning-components
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsearchResults.js
More file actions
803 lines (726 loc) · 22.2 KB
/
searchResults.js
File metadata and controls
803 lines (726 loc) · 22.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
/*
* Copyright (c) 2023, salesforce.com, inc.
* All rights reserved.
* SPDX-License-Identifier: Apache-2.0
* For full license text, see the LICENSE file in the repo
* root or https://opensource.org/licenses/apache-2-0/
*/
import { api, LightningElement } from 'lwc';
import { generateStyleProperties, generateThemeTextSizeProperty } from 'experience/styling';
import { computeConfiguration, transformDataWithConfiguration } from './searchResultsUtils';
import { EVENT, DEFAULTS } from './constants';
/**
* Gets the associated dxp CSS font size property for the given text size.
* @param {string} textSize
* The size of heading to be reflected by the returned CSS class.
* Valid values are: "small", "medium", and "large"
* @returns {string}
* The dxp CSS property matching the requested size, if one exists; 'initial' otherwise.
*/
function dxpTextSize(textSize) {
const themeSize = generateThemeTextSizeProperty(`heading-${textSize}`);
return themeSize ? `var(${themeSize}-font-size)` : 'initial';
}
/**
* @typedef {import('../searchProductCard/searchProductCard').FieldValueData} FieldValueData
*/
/**
* @typedef {import('../searchProductCard/searchProductCard').FieldValueDetailData} FieldValueDetailData
*/
/**
* @typedef {import('../searchProductCard/searchProductCard').ProductSearchMediaData} ProductSearchMediaData
*/
/**
* @typedef {import('../searchProductCard/searchProductCard').PurchaseQuantityRuleData} PurchaseQuantityRuleData
*/
/**
* @typedef {import('../searchProductCard/searchProductCard').ProductSearchPricesData} ProductSearchPricesData
*/
/**
* @typedef {import('../searchProductCard/searchProductCard').ProductAttributeSetSummary} ProductAttributeSetSummary
*/
/**
* @typedef {import('../searchProductCard/searchProductCard').ProductSellingModelInformationData} ProductSellingModelInformationData
*/
/**
* @typedef {import('../searchProductGrid/searchProductGrid').ProductGridConfiguration} ProductGridConfiguration
*/
/**
* @typedef {object} ProductSearchResultSummary
* @property {FiltersPanelDetail} filtersPanel
* The UI representation of the filters panel.
* @property {ProductCardDetail[]} cardCollection
* The UI representation of a product card's details.
* @property {?string} locale
* The locale of the search results.
* @property {number} pageSize
* The current page size of the search results.
* @property {number} total
* The total number of search results.
* @property {?string} categoryName
* The product category name, if this is not an actual search
* result, but a category listing.
* @property {?string} description
* A search result description for UI display purposes.
*/
/**
* @typedef {object} FiltersPanelDetail
* @property {?CategoryInfoTree} categories
* The UI representation of the category tree.
* @property {?SearchFacet[]} facets
* The search facet display-data.
*/
/**
* UI Representation for the category tree
* @typedef {object} CategoryInfoTree
* @property {?CategoryInfoTreeAncestorNode[]} ancestorCategories
* The list of categories that are ancestors to the current selected category
* @property {?CategoryInfoTreeNode} selectedCategory
* The category that is currently selected
*/
/**
* Tree node representation for a single category and its sub-categories.
* @typedef {object} CategoryInfoTreeNode
* @property {?string} id
* The id of the tree node
* @property {?string} label
* The label of the tree node.
* @property {?string} categoryName
* The category name of the tree node.
* @property {?Array<CategoryInfoTreeNode>} items
* The child nodes of the tree node
*/
/**
* @typedef {object} CategoryInfoTreeAncestorNode
* @property {?string} id
* The id of the tree node
* @property {?string} label
* The label of the tree node.
* @property {?string} categoryName
* The category name of the tree node.
* @property {?string} backActionAssistiveText
* The assistive text of the tree node's back action.
*/
/**
* The search facet display-data.
* @typedef {object} SearchFacet
* @property {?string} id
* The client-side generated unique identifier
* @property {?string} facetType
* Type of the facet (so far we have DISTINCT_VALUE).
* @property {?string} nameOrId
* ID or internal name of the facet.
* @property {?string} attributeType
* Type of the search attribute underlying the facet
* (STANDARD, CUSTOM, PRODUCT_ATTRIBUTE or PRODUCT_CATEGORY).
* @property {?string} displayName
* Display name of the facet.
* @property {?string} displayType
* Display name of the facet. (SINGLE_SELECT, MULTI_SELECT, CATEGORY_TREE or
* DATE_PICKER)
* @property {?number} displayRank
* Display rank for the facet.
* @property {DistinctFacetValue[]} values
* The values of the facet
*/
/**
* The facet display-data for checkbox.
* @typedef {object} DistinctFacetValue
* @property {string} id
* ID or internal name of the facet value.
* @property {string} name
* Display Name of the facet value with product count.
* @property {boolean} checked
* Whether the value is selected.
* @property {boolean} focusOnInit
* Whether to show the focus when initially displayed.
* @property {number} productCount
* Number of products in search results under this category
*/
/**
* The product card display-data.
* @typedef {object} ProductCardDetail
* @property {?string} id
* ID or internal name of the product card item.
* @property {?string} name
* Name of the product card item.
* @property {({[key: string]: FieldValueData} | Array<FieldValueDetailData>)} fields
* The fields belonging to the product card item.
* @property {ProductSearchMediaData} image
* The image display-data.
* @property {ProductSearchPricesData} prices
* The prices display-data.
* @property {?string} productClass
* Type of the product, Variation, VariationParent, or Simple.
* @property {?PurchaseQuantityRuleData} purchaseQuantityRule
* Represents a rule that restricts the quantity of a product that may be purchased.
* @property {?ProductAttributeSetSummary} variationAttributeSet
* A product variation attribute set
* @property {?ProductSellingModelInformationData} productSellingModelInformation
* A product's selling model information.
* @property {?string} urlName
* The product's URL name.
*/
/**
* @typedef {object} CardContentMappingItem
* @property {string} name
* The product name property to card name property mapping.
* @property {string} label
* The product label to card label property mapping.
* @property {boolean} showLabel
* Whether to display the label property.
* @property {?('small' | 'medium' | 'large')} fontSize
* The card's font size configuration.
* @property {?string} fontColor
* The card's font color configuration.
*/
/**
* @typedef {object} ResultsConfiguration
* @property {ProductGridConfiguration} layoutConfiguration
* The product grid layout configuration.
*/
/**
* @typedef {object} BuilderLayoutConfiguration
* @property {?string} layout
* The layout for the card collection.
* Supported (case-sensitive) values are:
* - "grid"
* The products will be displayed in grid column layout.
* The property gridMaxColumnsDisplayed defines the max no. of columns.
* - "list"
* The products will be displayed as a list.
* @property {?number} gridMaxColumnsDisplayed
* The maximum columns to be displayed in the grid.
* @property {?boolean} addToCartDisabled
* Whether the "Add to Cart" action should be disabled.
* @property {?BuilderCardConfiguration} builderCardConfiguration
* The card layout configuration.
*/
/**
* @typedef {{[key: string]: *}} BuilderCardConfiguration
*/
/**
* An event fired when the add to cart button is clicked.
* @event SearchResults#addproducttocart
* @type {CustomEvent}
* @property {object} detail CustomEvent details
* @property {string} detail.productId
* The unique identifier of the product to be added to the cart.
* @property {number} detail.quantity
* The quantity of the product to be added to the cart.
*/
/**
* An event fired when the user indicates a desire to view the details of a product.
* @event SearchResults#showproduct
* @type {CustomEvent}
* @property {object} detail CustomEvent details
* @property {string} detail.productId
* The unique identifier of the product.
* @property {string} detail.productName
* The name of the product.
*/
/**
* An event fired when the user indicates a desire change page.
* @event SearchResults#updatecurrentpage
* @type {CustomEvent}
* @param {number} pageNumber
* The page to go to.
*/
/**
* Presentational component for the search results.
* @fires SearchResults#addproductotcart
* @fires SearchResults#showproduct
* @fires SearchResults#updatecurrentpage
*/
export default class SearchResults extends LightningElement {
static renderMode = 'light';
/**
* Defaults to `'1'`
* @type {string}
* @private
*/
_currentPage = '1';
/**
* Defaults to `1`
* @type {number}
* @private
*/
_currentPageNumber = 1;
/**
* Results passed from the parent searchResults cmp
* Transforms the data according to the card configuration.
* @type {?ProductSearchResultSummary}
*/
@api
searchResults;
/**
* The layout of the results tiles.
* @type {?('grid' | 'list')}
*/
@api
resultsLayout;
/**
* The size of the spacing between the grid columns.
* @type {?('small' | 'medium' | 'large'| 'none')}
*/
@api
gridColumnSpacing;
/**
* The size of the spacing between the grid rows.
* @type {?('small' | 'medium' | 'large'| 'none')}
*/
@api
gridRowSpacing;
/**
* The maximum number of grid columns to be displayed.
* Accepted values are between 1 and 8.
* @type {?number}
*/
@api
gridMaxColumnsDisplayed;
/**
* The size of the spacing between the list rows.
* @type {?('small' | 'medium' | 'large'| 'none')}
*/
@api
listRowSpacing;
/**
* Whether to display the product image.
* @type {boolean}
* @default false
*/
@api
showProductImage = false;
/**
* Whether to display the negotiated price.
* @type {boolean}
* @default false
*/
@api
showNegotiatedPrice = false;
/**
* The font size of the page title field.
* @type {?('small' | 'medium' | 'large')}
*/
@api
negotiatedPriceTextSize;
/**
* Font color for the negotiated price text field, as 'rgb', 'rgba' or 'hex' CSS value.
* @type {?string}
*/
@api
negotiatedPriceTextColor;
/**
* Whether to display the original price.
* @type {boolean}
* @default false
*/
@api
showOriginalPrice = false;
/**
* The font size of the page title field.
* @type {?('small' | 'medium' | 'large')}
*/
@api
originalPriceTextSize;
/**
* Font color for the original price text field, as 'rgb', 'rgba' or 'hex' CSS value.
* @type {?string}
*/
@api
originalPriceTextColor;
/**
* Whether to display the action button.
* @type {boolean}
* @default false
*/
@api
showCallToActionButton = false;
/**
* The text for the add to cart button
* @type {?string}
*/
@api
addToCartButtonText;
/**
* The button style for add to cart button
* @type {?('primary' | 'secondary' | 'tertiary')}
*/
@api
addToCartButtonStyle;
/**
* The text for the add to cart button when cart is processing
* @type {?string}
*/
@api
addToCartButtonProcessingText;
/**
* The text for the view options button
* @type {?string}
*/
@api
viewOptionsButtonText;
/**
* The product fields to display in the product card component.
* @type {?CardContentMappingItem}
*/
@api
cardContentMapping;
/**
* Font color for the card background field, as 'rgb', 'rgba' or 'hex' CSS value.
* @type {?string}
*/
@api
cardBackgroundColor;
/**
* The alignment of the results cards.
* @type {?('right' | 'center' | 'left')}
*/
@api
cardAlignment;
/**
* Font color for the card border field, as 'rgb', 'rgba' or 'hex' CSS value.
* @type {?string}
*/
@api
cardBorderColor;
/**
* The value of the border radius for the results card.
* @type {?string}
*/
@api
cardBorderRadius;
/**
* Font color for the card divider field, as 'rgb', 'rgba' or 'hex' CSS value.
* @type {?string}
*/
@api
cardDividerColor;
/**
* The current page number of the results.
* @type {?string}
*/
@api
set currentPage(newCurrentPage) {
this._currentPage = newCurrentPage;
const newPageAsNumber = parseInt(newCurrentPage, 10);
if (!Number.isNaN(newPageAsNumber)) {
this._currentPageNumber = newPageAsNumber;
}
}
get currentPage() {
return this._currentPage;
}
/**
* @type {('small' | 'medium' | 'large'| 'none')}
* @private
* @readonly
* @default
*/
get _gridColumnSpacing() {
return this.gridColumnSpacing ?? DEFAULTS.gridColumnSpacing;
}
/**
* @type {('small' | 'medium' | 'large'| 'none')}
* @readonly
* @private
* @default
*/
get _gridRowSpacing() {
return this.gridRowSpacing ?? DEFAULTS.gridRowSpacing;
}
/**
* @type {number}
* @readonly
* @private
* @default
*/
get _gridMaxColumnsDisplayed() {
return this.gridMaxColumnsDisplayed ?? DEFAULTS.gridMaxColumnsDisplayed;
}
/**
* @type {('small' | 'medium' | 'large'| 'none')}
* @readonly
* @private
* @default
*/
get _listRowSpacing() {
return this.listRowSpacing ?? DEFAULTS.listRowSpacing;
}
/**
* @type {('small' | 'medium' | 'large')}
* @private
* @readonly
* @default
*/
get _negotiatedPriceTextSize() {
return this.negotiatedPriceTextSize ?? DEFAULTS.negotiatedPriceTextSize;
}
/**
* @type {string}
* @private
* @readonly
* @default
*/
get _negotiatedPriceTextColor() {
return this.negotiatedPriceTextColor ?? DEFAULTS.negotiatedPriceTextColor;
}
/**
* @type {('small' | 'medium' | 'large')}
* @private
* @readonly
* @default
*/
get _originalPriceTextSize() {
return this.originalPriceTextSize ?? DEFAULTS.originalPriceTextSize;
}
/**
* @type {string}
* @private
* @readonly
* @default
*/
get _originalPriceTextColor() {
return this.originalPriceTextColor ?? DEFAULTS.originalPriceTextColor;
}
/**
* If an empty array - don't show any fields.
* @type {CardContentMappingItem[]}
* @private
* @readonly
* @default
*/
get _cardContentMapping() {
return Array.isArray(this.cardContentMapping) ? this.cardContentMapping : [];
}
/**
* @type {string}
* @private
* @readonly
* @default
*/
get _cardBackgroundColor() {
return this.cardBackgroundColor ?? DEFAULTS.cardBackgroundColor;
}
/**
* @type {'right' | 'center' | 'left'}
* @private
* @readonly
* @default
*/
get _cardAlignment() {
return this.cardAlignment ?? DEFAULTS.cardAlignment;
}
/**
* @type {string}
* @private
* @readonly
* @default
*/
get _cardBorderColor() {
return this.cardBorderColor ?? DEFAULTS.cardBorderColor;
}
/**
* The value of the border radius for the results card.
* @type {string}
* @private
* @readonly
* @default
*/
get _cardBorderRadius() {
return this.cardBorderRadius ?? DEFAULTS.cardBorderRadius;
}
get _cardDividerColor() {
return this.cardDividerColor ?? DEFAULTS.cardDividerColor;
}
/**
* Normalized search results
* @type {ProductSearchResultSummary}
* @readonly
* @private
*/
get normalizedSearchResults() {
return transformDataWithConfiguration(this.searchResults, this.cardConfiguration);
}
/**
* @type {('grid' | 'list')}
* @private
* @readonly
* @default
*/
get _resultsLayout() {
return this.resultsLayout ?? DEFAULTS.resultsLayout;
}
/**
* Object containing the configuration settings for the card layout
* @type {BuilderCardConfiguration}
* @readonly
* @private
*/
get cardConfiguration() {
return {
showProductImage: this.showProductImage,
showNegotiatedPrice: this.showNegotiatedPrice,
showOriginalPrice: this.showOriginalPrice,
showCallToActionButton: this.showCallToActionButton,
addToCartButtonText: this.addToCartButtonText,
addToCartButtonProcessingText: this.addToCartButtonProcessingText,
viewOptionsButtonText: this.viewOptionsButtonText,
cardContentMapping: this._cardContentMapping,
};
}
/**
* Gets the computed results configuration.
* @type {ResultsConfiguration}
* @readonly
* @private
*/
get resultsConfiguration() {
return computeConfiguration({
layout: this._resultsLayout,
gridMaxColumnsDisplayed: this._gridMaxColumnsDisplayed,
builderCardConfiguration: this.cardConfiguration,
addToCartDisabled: false,
});
}
/**
* Sets the custom CSS properties for components in the subtree.
* @type {string}
* @readonly
* @private
*/
get customCssProperties() {
const isGridLayout = this._resultsLayout === 'grid';
return generateStyleProperties({
'--ref-c-search-product-grid-spacing-row': isGridLayout ? this._gridRowSpacing : this._listRowSpacing,
...(isGridLayout
? {
'--ref-c-search-product-grid-spacing-column': this._gridColumnSpacing,
}
: {}),
...(isGridLayout
? {}
: {
'--ref-c-search-product-grid-list-color-border': this._cardDividerColor,
}),
'--ref-c-search-product-card-button-variant': this.addToCartButtonStyle || 'primary',
'--ref-c-search-product-card-container-color-background': this._cardBackgroundColor,
'--ref-c-search-product-card-container-color-border': this._cardBorderColor,
'--ref-c-search-product-card-container-radius-border': this._cardBorderRadius,
...(isGridLayout
? {
'--ref-c-search-product-card-content-align-self': this._cardAlignment,
}
: {}),
...(isGridLayout
? {
'--ref-c-search-product-card-content-justify-self': this._cardAlignment,
}
: {}),
'--ref-c-product-pricing-negotiated-price-label-color': this._negotiatedPriceTextColor,
'--ref-c-product-pricing-negotiated-price-label-size': dxpTextSize(this._negotiatedPriceTextSize),
'--ref-c-product-pricing-original-price-label-color': this._originalPriceTextColor,
'--ref-c-product-pricing-original-price-label-size': dxpTextSize(this._originalPriceTextSize),
});
}
/**
* The size of the page as per the results, otherwise default to 20.
* @type {number}
* @readonly
* @private
* @default
*/
get pageSize() {
return this.searchResults?.pageSize ?? 20;
}
/**
* The total count of product items.
* @type {number}
* @readonly
* @private
* @default
*/
get totalItemCount() {
return this.searchResults?.total ?? 0;
}
/**
* Checks if this paging control is valid to show
* @type {boolean}
* @readonly
* @private
*/
get showPagingControl() {
const totalPages = Math.ceil(this.totalItemCount / this.pageSize);
return totalPages > 1;
}
/**
* Handles the `addproducttocart` event which adds the product to the cart.
* @param {CustomEvent} event An 'addproducttocart' received from a product grid
* @private
* @fires SearchResults#addproducttocart
*/
handleAddToCart(event) {
event.stopPropagation();
this.dispatchEvent(
new CustomEvent(EVENT.ADD_PRODUCT_TO_CART_EVT, {
detail: event.detail,
})
);
}
/**
* Handles the `showproduct` event which navigates to a product detail page.
* @param {CustomEvent} event A 'showproduct' received from a product grid
* @private
* @fires SearchResults#showproduct
*/
handleNavigateToProductPage(event) {
event.stopPropagation();
this.dispatchEvent(
new CustomEvent(EVENT.SHOW_PRODUCT_EVT, {
detail: event.detail,
})
);
}
/**
* Handles the `pageprevious` event.
* @param {CustomEvent} event A 'pageprevious' received from a paging control
* @private
* @fires SearchResults#updatecurrentpage
*/
handlePreviousPageEvent(event) {
event.stopPropagation();
const previousPageNumber = this._currentPageNumber - 1;
this.dispatchUpdateCurrentPageEvent(previousPageNumber);
}
/**
* Handles the `pagenext` event which
* @param {CustomEvent} event A 'pagenext' received from a paging control
* @private
* @fires SearchResults#updatecurrentpage
*/
handleNextPageEvent(event) {
event.stopPropagation();
const nextPageNumber = this._currentPageNumber + 1;
this.dispatchUpdateCurrentPageEvent(nextPageNumber);
}
/**
* Handles the `pagegoto` event which
* @param {CustomEvent} event A 'pagegoto' received from a paging control
* @private
* @fires SearchResults#updatecurrentpage
*/
handleGotoPageEvent(event) {
event.stopPropagation();
const pageNumber = event.detail.pageNumber;
this.dispatchUpdateCurrentPageEvent(pageNumber);
}
dispatchUpdateCurrentPageEvent(newPageNumber) {
this.dispatchEvent(
new CustomEvent(EVENT.UPDATE_CURRENT_PAGE_EVT, {
detail: {
newPageNumber,
},
})
);
}
}