forked from forcedotcom/commerce-on-lightning-components
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsearchProductGrid.js
More file actions
278 lines (256 loc) · 8.7 KB
/
searchProductGrid.js
File metadata and controls
278 lines (256 loc) · 8.7 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
/*
* 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 } from 'experience/styling';
import { EVENT, KEY_CODE } from './constants';
import { i18n } from './labels';
/**
* @typedef {import('../searchProductCard/searchProductCard').ProductCardConfiguration} ProductCardConfiguration
*/
/**
* @typedef {import('../searchProductCard/searchProductCard').ProductCardData} ProductCardData
*/
/**
* Generates an SLDS CSS class representing margin of a given spacing.
* @param {string} spacing The defined spacing
* @param {('vertical' | 'horizontal')} direction The direction to use
* @returns {string} The margin class
*/
function generateClassForSpacing(spacing, direction) {
return ['none', 'small', 'medium', 'large'].includes(spacing) ? `slds-m-${direction}_${spacing}` : '';
}
/**
* An event fired when the add to cart button is clicked.
* @event SearchProductGrid#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 SearchProductGrid#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.
*/
/**
* The layout UI configuration.
* @typedef {object} ProductGridConfiguration
* @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 {ProductCardConfiguration} cardConfiguration
* The card layout configuration.
*/
/**
* Representation of Builder Field Item
* @typedef {object} BuilderFieldItem
* @property {string} name
* The name of the field.
* @property {string} fontSize
* The font size of the field.
* Accepted values are: "small", "medium", and "large"
* @property {string} fontColor
* Font color for the field, as 'rgb', 'rgba' or 'hex' CSS value.
*/
/**
* @fires SearchProductGrid#showproduct
* @fires SearchProductGrid#addproducttocart
*/
export default class SearchProductGrid extends LightningElement {
static renderMode = 'light';
/**
* Gets or sets the product layout configuration.
* @type {?ProductGridConfiguration}
*/
@api
configuration;
/**
* Gets or sets the card collection display-data.
* @type {?ProductCardData[]}
*/
@api
displayData;
/**
* Gets the normalized card collection display-data.
* @type {ProductCardData[]}
* @readonly
* @private
*/
get normalizedDisplayData() {
return this.displayData ?? [];
}
/**
* Gets the SLDS classes to apply the spacing for the product layout.
* @type {string}
* @readonly
* @private
*/
get layoutSpacingClasses() {
const list = this?.querySelector('ul');
const spacingRow = list && getComputedStyle(list).getPropertyValue('--ref-c-search-product-grid-spacing-row');
const spacingCol =
list && getComputedStyle(list).getPropertyValue('--ref-c-search-product-grid-spacing-column');
const row = generateClassForSpacing(spacingRow || '', 'vertical');
const col = generateClassForSpacing(spacingCol || '', 'horizontal');
return `${row} ${col}`.trim();
}
/**
* Gets the custom styles to apply to the elements of the product layout.
* @type {string}
* @readonly
* @private
*/
get layoutCustomStyles() {
const gridMaxColumnsDisplayed = this.configuration?.gridMaxColumnsDisplayed || 4;
const cardBasis = gridMaxColumnsDisplayed > 0 ? 100 / gridMaxColumnsDisplayed : 25;
return generateStyleProperties({
'--ref-c-search-product-grid-container-basis': `${Math.round(cardBasis * 100) / 100}%`,
});
}
/**
* Gets the grid specific class for the un-ordered list container if the
* layout is 'grid', otherwise it returns empty string.
* @type {string}
* @readonly
* @private
*/
get layoutContainerClass() {
return this.isGridLayout ? 'product-grid-container' : '';
}
/**
* Gets whether the layout is grid or not.
* @type {boolean}
* @readonly
* @private
*/
get isGridLayout() {
return this.configuration?.layout === 'grid';
}
/**
* Arial label for the list.
* @type {string}
* @readonly
* @private
*/
get ariaLabelForSearchResults() {
return i18n.searchResults;
}
/**
* Product card configuration.
* @type {?ProductCardConfiguration}
* @readonly
* @private
*/
get cardConfiguration() {
return this.configuration?.cardConfiguration;
}
/**
* Handles the `addproducttocart` event which adds the product to the cart.
* @param {CustomEvent} event An "addproducttocart" received from a product card
* @private
* @fires SearchProductGrid#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 card
* @private
* @fires SearchProductGrid#showproduct
*/
handleNavigateToProductPage(event) {
event.stopPropagation();
this.dispatchEvent(
new CustomEvent(EVENT.SHOW_PRODUCT_EVT, {
detail: event.detail,
})
);
}
/**
* Handles key downs on the list.
*
* - Home moves focus to first item.
* - End moves focus to last item.
* - Up arrow moves focus to previous item.
* - Down arrow moves focus to next item.
*
* When the Add to Cart button is present, user can navigate
* the list using the Home, End, and Tab (default behavior) keys.
*
* When the Add to Cart button isn’t present, user can navigate
* the list using the Home, End, Tab (default behavior), Up and Down keys.
* @param {KeyboardEvent} event The keyboard event
* @private
*/
handleKeyDown(event) {
const { code } = event;
if (event.target instanceof HTMLElement) {
const id = event.target.dataset.id;
const index = this.normalizedDisplayData.findIndex((product) => product.id === id);
const callToActionButtonEnabled = this.configuration?.cardConfiguration.showCallToActionButton;
switch (code) {
case KEY_CODE.ARROW_DOWN:
if (!callToActionButtonEnabled) {
event.preventDefault();
this.focusListItem(index, +1);
}
break;
case KEY_CODE.ARROW_UP:
if (!callToActionButtonEnabled) {
event.preventDefault();
this.focusListItem(index, -1);
}
break;
case KEY_CODE.HOME:
event.preventDefault();
this.focusListItem(0, 0);
break;
case KEY_CODE.END:
event.preventDefault();
this.focusListItem(0, -1);
break;
default:
break;
}
}
}
/**
* Focuses a list item.
* @param {number} baseIndex The base index position.
* @param {number} steps The number of steps from the baseIndex position.
* @private
*/
focusListItem(baseIndex, steps) {
const itemCount = this.normalizedDisplayData.length;
let newActiveIndex = (baseIndex + steps) % itemCount;
if (newActiveIndex < 0) {
newActiveIndex = itemCount - 1;
}
Array.from(this.querySelectorAll('c-search-product-card')).at(newActiveIndex)?.focus();
}
}