@capillarytech/creatives-library 9.0.44 → 9.0.45

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.
@@ -200,6 +200,370 @@ describe('ViberPreviewContent', () => {
200
200
 
201
201
  expect(screen.getByText('Click Here')).toBeTruthy();
202
202
  });
203
+
204
+ it('should not render button when buttonText has only whitespace', () => {
205
+ const props = {
206
+ ...defaultProps,
207
+ content: {
208
+ viberPreviewContent: {
209
+ messageContent: 'Message',
210
+ buttonText: ' ',
211
+ },
212
+ },
213
+ };
214
+
215
+ const { container } = render(
216
+ <TestWrapper>
217
+ <ComponentToRender {...props} />
218
+ </TestWrapper>
219
+ );
220
+
221
+ expect(container.querySelector('.viber-button-base')).toBeFalsy();
222
+ });
223
+ });
224
+
225
+ describe('Carousel Content', () => {
226
+ it('should render no content when carousel is selected but cards are empty', () => {
227
+ const props = {
228
+ ...defaultProps,
229
+ content: {
230
+ viberPreviewContent: {
231
+ type: 'CAROUSEL',
232
+ cards: [
233
+ {
234
+ text: '',
235
+ mediaUrl: '',
236
+ buttons: [
237
+ { title: '', action: '' },
238
+ ],
239
+ },
240
+ {
241
+ text: ' ',
242
+ mediaUrl: ' ',
243
+ buttons: [
244
+ { title: ' ', action: 'https://example.com/2' },
245
+ ],
246
+ },
247
+ ],
248
+ },
249
+ },
250
+ };
251
+
252
+ render(
253
+ <TestWrapper>
254
+ <ComponentToRender {...props} />
255
+ </TestWrapper>
256
+ );
257
+
258
+ expect(screen.getByText('No content available')).toBeTruthy();
259
+ });
260
+
261
+ it('should render carousel cards when type is CAROUSEL', () => {
262
+ const props = {
263
+ ...defaultProps,
264
+ content: {
265
+ viberPreviewContent: {
266
+ type: 'CAROUSEL',
267
+ cards: [
268
+ {
269
+ text: 'Card 1 text',
270
+ mediaUrl: 'https://image.url/card1.jpg',
271
+ buttons: [
272
+ { title: 'Button 1', action: 'https://example.com/1' },
273
+ ],
274
+ },
275
+ {
276
+ text: 'Card 2 text',
277
+ mediaUrl: 'https://image.url/card2.jpg',
278
+ buttons: [
279
+ { title: 'Button 2', action: 'https://example.com/2' },
280
+ ],
281
+ },
282
+ ],
283
+ },
284
+ },
285
+ };
286
+
287
+ render(
288
+ <TestWrapper>
289
+ <ComponentToRender {...props} />
290
+ </TestWrapper>
291
+ );
292
+
293
+ expect(screen.getByText('Card 1 text')).toBeTruthy();
294
+ expect(screen.getByText('Card 2 text')).toBeTruthy();
295
+ expect(screen.getByText('Button 1')).toBeTruthy();
296
+ expect(screen.getByText('Button 2')).toBeTruthy();
297
+ });
298
+
299
+ it('should not render empty carousel button placeholder', () => {
300
+ const props = {
301
+ ...defaultProps,
302
+ content: {
303
+ viberPreviewContent: {
304
+ type: 'CAROUSEL',
305
+ cards: [
306
+ {
307
+ text: 'Card 1 text',
308
+ mediaUrl: 'https://image.url/card1.jpg',
309
+ buttons: [
310
+ { title: '', action: 'https://example.com/1' },
311
+ { title: ' ', action: 'https://example.com/2' },
312
+ ],
313
+ },
314
+ ],
315
+ },
316
+ },
317
+ };
318
+
319
+ const { container } = render(
320
+ <TestWrapper>
321
+ <ComponentToRender {...props} />
322
+ </TestWrapper>
323
+ );
324
+
325
+ expect(container.querySelector('.viber-carousel-preview .button')).toBeNull();
326
+ });
327
+
328
+ it('should show carousel shell when showCarouselEditorPreview is true even if cards are empty', () => {
329
+ const props = {
330
+ ...defaultProps,
331
+ content: {
332
+ viberPreviewContent: {
333
+ type: 'CAROUSEL',
334
+ showCarouselEditorPreview: true,
335
+ cards: [
336
+ { text: '', mediaUrl: '', buttons: [{ title: '', action: '' }] },
337
+ { text: '', mediaUrl: '', buttons: [{ title: '', action: '' }] },
338
+ ],
339
+ },
340
+ },
341
+ };
342
+
343
+ const { container } = render(
344
+ <TestWrapper>
345
+ <ComponentToRender {...props} />
346
+ </TestWrapper>
347
+ );
348
+
349
+ expect(screen.queryByText('No content available')).toBeNull();
350
+ expect(container.querySelector('.viber-carousel-preview .scroll')).toBeTruthy();
351
+ expect(container.querySelector('.viber-carousel-message-box-placeholder')).toBeTruthy();
352
+ });
353
+
354
+ it('should render carousel message text in message box when type is CAROUSEL', () => {
355
+ const props = {
356
+ ...defaultProps,
357
+ content: {
358
+ viberPreviewContent: {
359
+ type: 'CAROUSEL',
360
+ messageContent: 'Carousel intro copy',
361
+ cards: [
362
+ {
363
+ text: 'Card text',
364
+ mediaUrl: 'https://image.url/c.jpg',
365
+ buttons: [{ title: 'Go', action: 'https://example.com' }],
366
+ },
367
+ ],
368
+ },
369
+ },
370
+ };
371
+
372
+ const { container } = render(
373
+ <TestWrapper>
374
+ <ComponentToRender {...props} />
375
+ </TestWrapper>
376
+ );
377
+
378
+ expect(container.querySelector('.viber-carousel-message-box-text')).toHaveTextContent('Carousel intro copy');
379
+ expect(screen.queryByText('Carousel intro copy')).toBeTruthy();
380
+ });
381
+
382
+ it('should hide account icon when carousel is shown', () => {
383
+ const props = {
384
+ ...defaultProps,
385
+ content: {
386
+ viberPreviewContent: {
387
+ type: 'CAROUSEL',
388
+ cards: [
389
+ {
390
+ text: 'Carousel card line',
391
+ mediaUrl: '',
392
+ buttons: [{ title: 'Open link', action: 'https://x.com' }],
393
+ },
394
+ ],
395
+ },
396
+ },
397
+ };
398
+
399
+ const { container } = render(
400
+ <TestWrapper>
401
+ <ComponentToRender {...props} />
402
+ </TestWrapper>
403
+ );
404
+
405
+ expect(container.querySelector('.viber-account-icon')).toBeNull();
406
+ });
407
+
408
+ it('should use image placeholder when carousel card mediaUrl is whitespace only', () => {
409
+ const props = {
410
+ ...defaultProps,
411
+ content: {
412
+ viberPreviewContent: {
413
+ type: 'CAROUSEL',
414
+ cards: [
415
+ {
416
+ text: 'Only text',
417
+ mediaUrl: ' ',
418
+ buttons: [{ title: 'Btn', action: 'https://example.com' }],
419
+ },
420
+ ],
421
+ },
422
+ },
423
+ };
424
+
425
+ const { container } = render(
426
+ <TestWrapper>
427
+ <ComponentToRender {...props} />
428
+ </TestWrapper>
429
+ );
430
+
431
+ expect(container.querySelector('.viber-carousel-preview .image-placeholder')).toBeTruthy();
432
+ expect(container.querySelector('.viber-carousel-preview .image')).toBeNull();
433
+ });
434
+
435
+ it('should render at most two carousel buttons per card', () => {
436
+ const props = {
437
+ ...defaultProps,
438
+ content: {
439
+ viberPreviewContent: {
440
+ type: 'CAROUSEL',
441
+ cards: [
442
+ {
443
+ text: 'Card',
444
+ mediaUrl: 'https://image.url/c.jpg',
445
+ buttons: [
446
+ { title: 'One', action: 'https://a.com' },
447
+ { title: 'Two', action: 'https://b.com' },
448
+ { title: 'Three', action: 'https://c.com' },
449
+ ],
450
+ },
451
+ ],
452
+ },
453
+ },
454
+ };
455
+
456
+ const { container } = render(
457
+ <TestWrapper>
458
+ <ComponentToRender {...props} />
459
+ </TestWrapper>
460
+ );
461
+
462
+ expect(container.querySelectorAll('.viber-carousel-preview .button')).toHaveLength(2);
463
+ expect(screen.getByText('One')).toBeTruthy();
464
+ expect(screen.getByText('Two')).toBeTruthy();
465
+ expect(screen.queryByText('Three')).toBeNull();
466
+ });
467
+
468
+ it('should apply secondary class to second carousel button', () => {
469
+ const props = {
470
+ ...defaultProps,
471
+ content: {
472
+ viberPreviewContent: {
473
+ type: 'CAROUSEL',
474
+ cards: [
475
+ {
476
+ text: 'Card',
477
+ mediaUrl: 'https://image.url/c.jpg',
478
+ buttons: [
479
+ { title: 'Primary', action: 'https://a.com' },
480
+ { title: 'Secondary', action: 'https://b.com' },
481
+ ],
482
+ },
483
+ ],
484
+ },
485
+ },
486
+ };
487
+
488
+ const { container } = render(
489
+ <TestWrapper>
490
+ <ComponentToRender {...props} />
491
+ </TestWrapper>
492
+ );
493
+
494
+ const buttons = container.querySelectorAll('.viber-carousel-preview .button');
495
+ expect(buttons[0].className).toContain('button');
496
+ expect(buttons[0].className).not.toContain('button-secondary');
497
+ expect(buttons[1].className).toContain('button-secondary');
498
+ });
499
+
500
+ it('should show carousel when only a button title is present on a card', () => {
501
+ const props = {
502
+ ...defaultProps,
503
+ content: {
504
+ viberPreviewContent: {
505
+ type: 'CAROUSEL',
506
+ cards: [
507
+ {
508
+ text: '',
509
+ mediaUrl: '',
510
+ buttons: [{ title: 'Tap me', action: 'https://example.com' }],
511
+ },
512
+ ],
513
+ },
514
+ },
515
+ };
516
+
517
+ render(
518
+ <TestWrapper>
519
+ <ComponentToRender {...props} />
520
+ </TestWrapper>
521
+ );
522
+
523
+ expect(screen.getByText('Tap me')).toBeTruthy();
524
+ expect(screen.queryByText('No content available')).toBeNull();
525
+ });
526
+
527
+ it('should show one placeholder card when editor preview and cards array is empty', () => {
528
+ const props = {
529
+ ...defaultProps,
530
+ content: {
531
+ viberPreviewContent: {
532
+ type: 'CAROUSEL',
533
+ showCarouselEditorPreview: true,
534
+ cards: [],
535
+ },
536
+ },
537
+ };
538
+
539
+ const { container } = render(
540
+ <TestWrapper>
541
+ <ComponentToRender {...props} />
542
+ </TestWrapper>
543
+ );
544
+
545
+ expect(container.querySelectorAll('.viber-carousel-preview .card')).toHaveLength(1);
546
+ });
547
+
548
+ it('should show no content when CAROUSEL has empty cards and no editor preview flag', () => {
549
+ const props = {
550
+ ...defaultProps,
551
+ content: {
552
+ viberPreviewContent: {
553
+ type: 'CAROUSEL',
554
+ cards: [],
555
+ },
556
+ },
557
+ };
558
+
559
+ render(
560
+ <TestWrapper>
561
+ <ComponentToRender {...props} />
562
+ </TestWrapper>
563
+ );
564
+
565
+ expect(screen.getByText('No content available')).toBeTruthy();
566
+ });
203
567
  });
204
568
 
205
569
  describe('Account and Brand Name', () => {
@@ -6,6 +6,10 @@ import {
6
6
  mapRcsSuggestionForTestMeta,
7
7
  typeMatches,
8
8
  unwrapEntity,
9
+ getTrimmedText,
10
+ hasTrimmedText,
11
+ getCarouselButtonsWithTitles,
12
+ getCarouselButtonSlotCount,
9
13
  } from '../utils';
10
14
 
11
15
  describe('CommonTestAndPreview/utils', () => {
@@ -148,4 +152,49 @@ describe('CommonTestAndPreview/utils', () => {
148
152
  expect(unwrapEntity(response)).toBe(response);
149
153
  });
150
154
  });
155
+
156
+ describe('getTrimmedText / hasTrimmedText', () => {
157
+ it('trims string values', () => {
158
+ expect(getTrimmedText(' hello ')).toBe('hello');
159
+ });
160
+
161
+ it('treats null/undefined as empty', () => {
162
+ expect(getTrimmedText(null)).toBe('');
163
+ expect(getTrimmedText(undefined)).toBe('');
164
+ expect(hasTrimmedText(' ')).toBe(false);
165
+ expect(hasTrimmedText('ok')).toBe(true);
166
+ });
167
+ });
168
+
169
+ describe('getCarouselButtonsWithTitles', () => {
170
+ it('returns up to 2 buttons with non-empty titles', () => {
171
+ expect(getCarouselButtonsWithTitles({
172
+ buttons: [
173
+ { title: ' A ' },
174
+ { title: '' },
175
+ { title: 'B' },
176
+ { title: 'C' },
177
+ ],
178
+ })).toEqual([{ title: ' A ' }, { title: 'B' }]);
179
+ });
180
+
181
+ it('returns empty array when card has no titled buttons', () => {
182
+ expect(getCarouselButtonsWithTitles({})).toEqual([]);
183
+ expect(getCarouselButtonsWithTitles(undefined)).toEqual([]);
184
+ });
185
+ });
186
+
187
+ describe('getCarouselButtonSlotCount', () => {
188
+ it('returns the max titled-button count across cards, capped at 2', () => {
189
+ expect(getCarouselButtonSlotCount([
190
+ { buttons: [{ title: 'A' }] },
191
+ { buttons: [{ title: 'A' }, { title: 'B' }, { title: 'C' }] },
192
+ ])).toBe(2);
193
+ });
194
+
195
+ it('returns 0 when no cards have titled buttons', () => {
196
+ expect(getCarouselButtonSlotCount([])).toBe(0);
197
+ expect(getCarouselButtonSlotCount([{ buttons: [{ title: ' ' }] }])).toBe(0);
198
+ });
199
+ });
151
200
  });
@@ -116,3 +116,23 @@ export const unwrapEntity = (response) => {
116
116
  if (response.entity === null) return null;
117
117
  return response;
118
118
  };
119
+
120
+ /** Trim string-like values; null/undefined become ''. */
121
+ export const getTrimmedText = (value = '') => (value ?? '').trim();
122
+
123
+ /** True when trimmed text is non-empty. */
124
+ export const hasTrimmedText = (value = '') => Boolean(getTrimmedText(value));
125
+
126
+ /** First up to 2 carousel buttons that have a non-empty title. */
127
+ export const getCarouselButtonsWithTitles = (card) => (
128
+ (card?.buttons ?? []).filter((button) => hasTrimmedText(button?.title)).slice(0, 2)
129
+ );
130
+
131
+ /**
132
+ * Max button slots to reserve across carousel cards (0–2), so cards align
133
+ * even when some cards have fewer titled buttons.
134
+ */
135
+ export const getCarouselButtonSlotCount = (cards = []) => {
136
+ const buttonCounts = cards.map((card) => getCarouselButtonsWithTitles(card).length);
137
+ return Math.min(2, Math.max(0, ...buttonCounts, 0));
138
+ };
@@ -160,7 +160,6 @@
160
160
  line-clamp: 3;
161
161
  }
162
162
  }
163
-
164
163
  }
165
164
 
166
165
  &.no-image .ant-card-meta {
@@ -168,6 +167,44 @@
168
167
  word-wrap: break-word;
169
168
  }
170
169
  }
170
+
171
+ &.viber-carousel-static {
172
+ height: auto;
173
+ min-height: 21.125rem;
174
+ overflow: visible;
175
+
176
+ .ant-card-body {
177
+ height: auto;
178
+ overflow: visible;
179
+ padding-bottom: $CAP_SPACE_12;
180
+
181
+ .ant-card-meta,
182
+ .ant-card-meta-detail,
183
+ .ant-card-meta-description {
184
+ height: auto;
185
+ max-height: none;
186
+ overflow: visible;
187
+ }
188
+
189
+ .truncate-text-viber {
190
+ .ant-card-meta-description {
191
+ display: block;
192
+ overflow: visible;
193
+ max-height: none;
194
+ -webkit-box-orient: unset;
195
+ -webkit-line-clamp: unset;
196
+ line-clamp: unset;
197
+ }
198
+ }
199
+
200
+ .content,
201
+ .cards,
202
+ .card {
203
+ overflow: visible;
204
+ height: auto;
205
+ }
206
+ }
207
+ }
171
208
 
172
209
 
173
210
  &.carousel-img-section {
@@ -1222,6 +1259,147 @@
1222
1259
  max-height: 11rem;
1223
1260
  margin-bottom: $CAP_SPACE_04;
1224
1261
  }
1262
+
1263
+ /* Listing carousel preview: always grow with content so title + buttons stay visible for any image */
1264
+ .cap-custom-card.ant-card.VIBER.viber-carousel-static {
1265
+ height: auto;
1266
+ min-height: 21.125rem;
1267
+ overflow: visible;
1268
+
1269
+ > .ant-card-body {
1270
+ height: auto;
1271
+ max-height: none;
1272
+ overflow: visible;
1273
+ padding-bottom: $CAP_SPACE_12;
1274
+ }
1275
+
1276
+ .ant-card-meta,
1277
+ .ant-card-meta-detail,
1278
+ .ant-card-meta-description,
1279
+ .truncate-text-viber,
1280
+ .truncate-text-viber .ant-card-meta-description {
1281
+ height: auto;
1282
+ max-height: none;
1283
+ overflow: visible;
1284
+ display: block;
1285
+ -webkit-line-clamp: unset;
1286
+ line-clamp: unset;
1287
+ -webkit-box-orient: unset;
1288
+ }
1289
+ }
1290
+
1291
+ .viber-carousel-static {
1292
+ .content {
1293
+ width: 100%;
1294
+ overflow: visible;
1295
+ display: flex;
1296
+ flex-direction: column;
1297
+ height: auto;
1298
+
1299
+ .message-box {
1300
+ width: 100%;
1301
+ height: auto;
1302
+ border-radius: $CAP_SPACE_04;
1303
+ background: $CAP_WHITE;
1304
+ margin-bottom: $CAP_SPACE_08;
1305
+ display: flex;
1306
+ align-items: flex-start;
1307
+
1308
+ .message {
1309
+ display: -webkit-box;
1310
+ width: 100%;
1311
+ color: $CAP_G01;
1312
+ line-height: 1.3;
1313
+ overflow: hidden;
1314
+ text-overflow: ellipsis;
1315
+ -webkit-line-clamp: 2;
1316
+ line-clamp: 2;
1317
+ -webkit-box-orient: vertical;
1318
+ white-space: normal;
1319
+ word-break: break-word;
1320
+ }
1321
+ }
1322
+
1323
+ .cards {
1324
+ display: flex;
1325
+ gap: $CAP_SPACE_08;
1326
+ overflow: visible;
1327
+ width: 100%;
1328
+ height: auto;
1329
+
1330
+ .card {
1331
+ flex: 1;
1332
+ min-width: 0;
1333
+ width: 100%;
1334
+ background: $CAP_WHITE;
1335
+ border-radius: $CAP_SPACE_04;
1336
+ overflow: visible;
1337
+ display: flex;
1338
+ flex-direction: column;
1339
+ height: auto;
1340
+
1341
+ .image {
1342
+ width: 100%;
1343
+ max-height: 11rem;
1344
+ margin-bottom: $CAP_SPACE_04;
1345
+ border-radius: $CAP_SPACE_04;
1346
+ display: block;
1347
+ flex-shrink: 0;
1348
+ }
1349
+
1350
+ .image-placeholder {
1351
+ width: 100%;
1352
+ height: 7.143rem;
1353
+ border-radius: $CAP_SPACE_04;
1354
+ background: $CAP_G07;
1355
+ }
1356
+
1357
+ .text {
1358
+ display: -webkit-box;
1359
+ color: $CAP_G01;
1360
+ margin: $CAP_SPACE_04 0;
1361
+ line-height: 1.3;
1362
+ overflow: hidden;
1363
+ text-overflow: ellipsis;
1364
+ white-space: normal;
1365
+ -webkit-line-clamp: 2;
1366
+ line-clamp: 2;
1367
+ -webkit-box-orient: vertical;
1368
+ flex-shrink: 0;
1369
+ width: 100%;
1370
+ visibility: visible;
1371
+ }
1372
+
1373
+ .buttons {
1374
+ display: flex;
1375
+ flex-direction: column;
1376
+ gap: $CAP_SPACE_04;
1377
+ flex-shrink: 0;
1378
+ width: 100%;
1379
+ visibility: visible;
1380
+
1381
+ .button {
1382
+ display: block;
1383
+ min-height: 1.5rem;
1384
+ border-radius: $CAP_SPACE_12;
1385
+ background: $CAP_PURPLE01;
1386
+ color: $CAP_WHITE;
1387
+ text-align: center;
1388
+ padding: 0.179rem $CAP_SPACE_08;
1389
+ white-space: normal;
1390
+ }
1391
+
1392
+ .button-secondary {
1393
+ color: $CAP_PURPLE01;
1394
+ background: transparent;
1395
+ border: none;
1396
+ box-shadow: none;
1397
+ }
1398
+ }
1399
+ }
1400
+ }
1401
+ }
1402
+ }
1225
1403
  .whatsapp-doc {
1226
1404
  width: 100%;
1227
1405
  max-height: 123px;
@@ -1485,7 +1663,7 @@
1485
1663
  .template-action-menu {
1486
1664
  padding: 4px 0px;
1487
1665
  .template-action-menu-item {
1488
- padding: 12px 24px;
1666
+ padding: $CAP_SPACE_12 $CAP_SPACE_24;
1489
1667
  }
1490
1668
  }
1491
1669
  }