@comicrelief/component-library 8.52.0 → 8.52.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.
- package/dist/components/Molecules/CTA/CTAMultiCard/__snapshots__/CTAMultiCard.test.js.snap +12 -12
- package/dist/components/Molecules/CTA/shared/CTACard.style.js +1 -1
- package/dist/components/Organisms/DynamicGallery/DynamicGallery.js +9 -3
- package/dist/components/Organisms/DynamicGallery/DynamicGallery.style.js +13 -16
- package/dist/components/Organisms/DynamicGallery/_DynamicGalleryColumn.js +37 -28
- package/dist/components/Organisms/DynamicGallery/_Lightbox.js +14 -18
- package/dist/components/Organisms/DynamicGallery/__snapshots__/DynamicGallery.test.js.snap +64 -111
- package/dist/components/Organisms/DynamicGallery/_types.js +4 -3
- package/dist/components/Organisms/DynamicGallery/_utils.js +29 -3
- package/package.json +1 -1
- package/src/components/Molecules/CTA/CTAMultiCard/__snapshots__/CTAMultiCard.test.js.snap +12 -12
- package/src/components/Molecules/CTA/shared/CTACard.style.js +1 -1
- package/src/components/Organisms/DynamicGallery/DynamicGallery.js +8 -2
- package/src/components/Organisms/DynamicGallery/DynamicGallery.style.js +7 -15
- package/src/components/Organisms/DynamicGallery/_DynamicGalleryColumn.js +49 -41
- package/src/components/Organisms/DynamicGallery/_Lightbox.js +21 -26
- package/src/components/Organisms/DynamicGallery/__snapshots__/DynamicGallery.test.js.snap +64 -111
- package/src/components/Organisms/DynamicGallery/_types.js +4 -3
- package/src/components/Organisms/DynamicGallery/_utils.js +40 -3
|
@@ -15,25 +15,25 @@ exports[`handle a Dynamic Gallery with mocked gallery nodes 1`] = `
|
|
|
15
15
|
object-fit: cover;
|
|
16
16
|
}
|
|
17
17
|
|
|
18
|
-
.
|
|
18
|
+
.c21 {
|
|
19
19
|
-webkit-transform: rotate(0);
|
|
20
20
|
-ms-transform: rotate(0);
|
|
21
21
|
transform: rotate(0);
|
|
22
22
|
fill: #000000;
|
|
23
23
|
}
|
|
24
24
|
|
|
25
|
-
.
|
|
25
|
+
.c23 {
|
|
26
26
|
-webkit-transform: rotate(180deg);
|
|
27
27
|
-ms-transform: rotate(180deg);
|
|
28
28
|
transform: rotate(180deg);
|
|
29
29
|
fill: #000000;
|
|
30
30
|
}
|
|
31
31
|
|
|
32
|
-
.
|
|
32
|
+
.c19 {
|
|
33
33
|
fill: #000000;
|
|
34
34
|
}
|
|
35
35
|
|
|
36
|
-
.
|
|
36
|
+
.c9 {
|
|
37
37
|
position: fixed;
|
|
38
38
|
top: 0;
|
|
39
39
|
left: 0;
|
|
@@ -55,7 +55,7 @@ exports[`handle a Dynamic Gallery with mocked gallery nodes 1`] = `
|
|
|
55
55
|
visibility: hidden;
|
|
56
56
|
}
|
|
57
57
|
|
|
58
|
-
.
|
|
58
|
+
.c10 {
|
|
59
59
|
position: absolute;
|
|
60
60
|
top: 0;
|
|
61
61
|
left: 0;
|
|
@@ -65,7 +65,7 @@ exports[`handle a Dynamic Gallery with mocked gallery nodes 1`] = `
|
|
|
65
65
|
z-index: 0;
|
|
66
66
|
}
|
|
67
67
|
|
|
68
|
-
.
|
|
68
|
+
.c11 {
|
|
69
69
|
display: block;
|
|
70
70
|
padding: 0.5rem;
|
|
71
71
|
background: transparent;
|
|
@@ -74,7 +74,7 @@ exports[`handle a Dynamic Gallery with mocked gallery nodes 1`] = `
|
|
|
74
74
|
margin-top: 72px;
|
|
75
75
|
}
|
|
76
76
|
|
|
77
|
-
.
|
|
77
|
+
.c12 {
|
|
78
78
|
display: -webkit-box;
|
|
79
79
|
display: -webkit-flex;
|
|
80
80
|
display: -ms-flexbox;
|
|
@@ -93,7 +93,7 @@ exports[`handle a Dynamic Gallery with mocked gallery nodes 1`] = `
|
|
|
93
93
|
border-radius: 1rem;
|
|
94
94
|
}
|
|
95
95
|
|
|
96
|
-
.
|
|
96
|
+
.c13 {
|
|
97
97
|
position: relative;
|
|
98
98
|
display: -webkit-box;
|
|
99
99
|
display: -webkit-flex;
|
|
@@ -113,7 +113,7 @@ exports[`handle a Dynamic Gallery with mocked gallery nodes 1`] = `
|
|
|
113
113
|
overflow: hidden;
|
|
114
114
|
}
|
|
115
115
|
|
|
116
|
-
.
|
|
116
|
+
.c13 > div {
|
|
117
117
|
display: -webkit-box;
|
|
118
118
|
display: -webkit-flex;
|
|
119
119
|
display: -ms-flexbox;
|
|
@@ -130,13 +130,13 @@ exports[`handle a Dynamic Gallery with mocked gallery nodes 1`] = `
|
|
|
130
130
|
transition: width 0.3s ease-in-out,height 0.3s ease-in-out;
|
|
131
131
|
}
|
|
132
132
|
|
|
133
|
-
.
|
|
133
|
+
.c13 img {
|
|
134
134
|
opacity: 0;
|
|
135
135
|
-webkit-transition: opacity 0.1s ease-out 0.3s;
|
|
136
136
|
transition: opacity 0.1s ease-out 0.3s;
|
|
137
137
|
}
|
|
138
138
|
|
|
139
|
-
.
|
|
139
|
+
.c14 {
|
|
140
140
|
position: absolute;
|
|
141
141
|
top: 50%;
|
|
142
142
|
left: 50%;
|
|
@@ -145,7 +145,7 @@ exports[`handle a Dynamic Gallery with mocked gallery nodes 1`] = `
|
|
|
145
145
|
transform: translate(-50%,-50%);
|
|
146
146
|
}
|
|
147
147
|
|
|
148
|
-
.
|
|
148
|
+
.c15 {
|
|
149
149
|
display: -webkit-box;
|
|
150
150
|
display: -webkit-flex;
|
|
151
151
|
display: -ms-flexbox;
|
|
@@ -162,7 +162,7 @@ exports[`handle a Dynamic Gallery with mocked gallery nodes 1`] = `
|
|
|
162
162
|
padding: 0 1rem;
|
|
163
163
|
}
|
|
164
164
|
|
|
165
|
-
.
|
|
165
|
+
.c16 {
|
|
166
166
|
position: absolute;
|
|
167
167
|
display: -webkit-box;
|
|
168
168
|
display: -webkit-flex;
|
|
@@ -185,25 +185,25 @@ exports[`handle a Dynamic Gallery with mocked gallery nodes 1`] = `
|
|
|
185
185
|
z-index: 10;
|
|
186
186
|
}
|
|
187
187
|
|
|
188
|
-
.
|
|
188
|
+
.c16 svg {
|
|
189
189
|
-webkit-transition: all 0.1s ease-out;
|
|
190
190
|
transition: all 0.1s ease-out;
|
|
191
191
|
}
|
|
192
192
|
|
|
193
|
-
.
|
|
193
|
+
.c16:hover svg {
|
|
194
194
|
fill: #E52630;
|
|
195
195
|
}
|
|
196
196
|
|
|
197
|
-
.
|
|
197
|
+
.c16:focus-visible {
|
|
198
198
|
outline: 2px solid #E52630;
|
|
199
199
|
}
|
|
200
200
|
|
|
201
|
-
.
|
|
201
|
+
.c17 {
|
|
202
202
|
top: 0;
|
|
203
203
|
right: 0;
|
|
204
204
|
}
|
|
205
205
|
|
|
206
|
-
.
|
|
206
|
+
.c20 {
|
|
207
207
|
top: 30%;
|
|
208
208
|
left: 0;
|
|
209
209
|
-webkit-transform: translate(0,-50%);
|
|
@@ -213,7 +213,7 @@ exports[`handle a Dynamic Gallery with mocked gallery nodes 1`] = `
|
|
|
213
213
|
border-bottom-left-radius: 0;
|
|
214
214
|
}
|
|
215
215
|
|
|
216
|
-
.
|
|
216
|
+
.c22 {
|
|
217
217
|
top: 30%;
|
|
218
218
|
right: 0;
|
|
219
219
|
-webkit-transform: translate(0,-50%);
|
|
@@ -223,7 +223,7 @@ exports[`handle a Dynamic Gallery with mocked gallery nodes 1`] = `
|
|
|
223
223
|
border-bottom-right-radius: 0;
|
|
224
224
|
}
|
|
225
225
|
|
|
226
|
-
.
|
|
226
|
+
.c18 {
|
|
227
227
|
position: absolute;
|
|
228
228
|
width: 1px;
|
|
229
229
|
height: 1px;
|
|
@@ -280,7 +280,7 @@ exports[`handle a Dynamic Gallery with mocked gallery nodes 1`] = `
|
|
|
280
280
|
gap: 1.1rem;
|
|
281
281
|
}
|
|
282
282
|
|
|
283
|
-
.
|
|
283
|
+
.c8 {
|
|
284
284
|
display: none;
|
|
285
285
|
}
|
|
286
286
|
|
|
@@ -292,7 +292,7 @@ exports[`handle a Dynamic Gallery with mocked gallery nodes 1`] = `
|
|
|
292
292
|
-webkit-flex-direction: column;
|
|
293
293
|
-ms-flex-direction: column;
|
|
294
294
|
flex-direction: column;
|
|
295
|
-
gap: 0.
|
|
295
|
+
gap: 0.9rem;
|
|
296
296
|
padding: 0;
|
|
297
297
|
margin: 0;
|
|
298
298
|
background: none;
|
|
@@ -302,15 +302,17 @@ exports[`handle a Dynamic Gallery with mocked gallery nodes 1`] = `
|
|
|
302
302
|
color: inherit;
|
|
303
303
|
}
|
|
304
304
|
|
|
305
|
+
.c3:focus-visible {
|
|
306
|
+
outline: 2px solid black;
|
|
307
|
+
outline-offset: 0.5rem;
|
|
308
|
+
border-radius: 1rem;
|
|
309
|
+
}
|
|
310
|
+
|
|
305
311
|
.c3 div:first-child {
|
|
306
312
|
-webkit-transition: all 0.1s ease-out;
|
|
307
313
|
transition: all 0.1s ease-out;
|
|
308
314
|
}
|
|
309
315
|
|
|
310
|
-
.c3:focus-visible {
|
|
311
|
-
outline: 2px solid #000000;
|
|
312
|
-
}
|
|
313
|
-
|
|
314
316
|
.c3 > div:first-child:hover {
|
|
315
317
|
box-shadow: 0px 3px 10px 0px rgba(0,0,0,0.4);
|
|
316
318
|
}
|
|
@@ -349,41 +351,33 @@ exports[`handle a Dynamic Gallery with mocked gallery nodes 1`] = `
|
|
|
349
351
|
padding: 0 1rem;
|
|
350
352
|
}
|
|
351
353
|
|
|
352
|
-
.c8:first-child {
|
|
353
|
-
margin-bottom: 0;
|
|
354
|
-
}
|
|
355
|
-
|
|
356
|
-
.c9 {
|
|
357
|
-
line-height: 1;
|
|
358
|
-
}
|
|
359
|
-
|
|
360
354
|
@media (min-width:1024px) {
|
|
361
|
-
.
|
|
355
|
+
.c21 {
|
|
362
356
|
fill: #000000;
|
|
363
357
|
}
|
|
364
358
|
}
|
|
365
359
|
|
|
366
360
|
@media (min-width:1024px) {
|
|
367
|
-
.
|
|
361
|
+
.c23 {
|
|
368
362
|
fill: #000000;
|
|
369
363
|
}
|
|
370
364
|
}
|
|
371
365
|
|
|
372
366
|
@media (min-width:1024px) {
|
|
373
|
-
.
|
|
367
|
+
.c11 {
|
|
374
368
|
margin-top: 84px;
|
|
375
369
|
}
|
|
376
370
|
}
|
|
377
371
|
|
|
378
372
|
@media (min-width:1024px) {
|
|
379
|
-
.
|
|
373
|
+
.c20 {
|
|
380
374
|
position: fixed;
|
|
381
375
|
top: 50%;
|
|
382
376
|
}
|
|
383
377
|
}
|
|
384
378
|
|
|
385
379
|
@media (min-width:1024px) {
|
|
386
|
-
.
|
|
380
|
+
.c22 {
|
|
387
381
|
position: fixed;
|
|
388
382
|
top: 50%;
|
|
389
383
|
}
|
|
@@ -412,12 +406,12 @@ exports[`handle a Dynamic Gallery with mocked gallery nodes 1`] = `
|
|
|
412
406
|
className="c2 gallery-column"
|
|
413
407
|
>
|
|
414
408
|
<button
|
|
415
|
-
aria-label="
|
|
409
|
+
aria-label=""
|
|
416
410
|
className="c3 gallery-node"
|
|
417
411
|
data-node-index={0}
|
|
418
412
|
onPointerUp={[Function]}
|
|
419
413
|
tabIndex={0}
|
|
420
|
-
title="
|
|
414
|
+
title=""
|
|
421
415
|
>
|
|
422
416
|
<div
|
|
423
417
|
className="c4 gallery-node-image"
|
|
@@ -428,7 +422,7 @@ exports[`handle a Dynamic Gallery with mocked gallery nodes 1`] = `
|
|
|
428
422
|
width="100%"
|
|
429
423
|
>
|
|
430
424
|
<img
|
|
431
|
-
alt="
|
|
425
|
+
alt=""
|
|
432
426
|
className="c6 lazyload"
|
|
433
427
|
data-src="image1.jpg"
|
|
434
428
|
height="auto"
|
|
@@ -439,30 +433,19 @@ exports[`handle a Dynamic Gallery with mocked gallery nodes 1`] = `
|
|
|
439
433
|
</div>
|
|
440
434
|
<div
|
|
441
435
|
className="c7"
|
|
442
|
-
|
|
443
|
-
<div
|
|
444
|
-
className="c8"
|
|
445
|
-
>
|
|
446
|
-
Image 1
|
|
447
|
-
</div>
|
|
448
|
-
<div
|
|
449
|
-
className="c9"
|
|
450
|
-
>
|
|
451
|
-
Caption 1
|
|
452
|
-
</div>
|
|
453
|
-
</div>
|
|
436
|
+
/>
|
|
454
437
|
</button>
|
|
455
438
|
</div>
|
|
456
439
|
<div
|
|
457
440
|
className="c2 gallery-column"
|
|
458
441
|
>
|
|
459
442
|
<button
|
|
460
|
-
aria-label="
|
|
443
|
+
aria-label=""
|
|
461
444
|
className="c3 gallery-node"
|
|
462
445
|
data-node-index={0}
|
|
463
446
|
onPointerUp={[Function]}
|
|
464
447
|
tabIndex={0}
|
|
465
|
-
title="
|
|
448
|
+
title=""
|
|
466
449
|
>
|
|
467
450
|
<div
|
|
468
451
|
className="c4 gallery-node-image"
|
|
@@ -473,7 +456,7 @@ exports[`handle a Dynamic Gallery with mocked gallery nodes 1`] = `
|
|
|
473
456
|
width="100%"
|
|
474
457
|
>
|
|
475
458
|
<img
|
|
476
|
-
alt="
|
|
459
|
+
alt=""
|
|
477
460
|
className="c6 lazyload"
|
|
478
461
|
data-src="image2.jpg"
|
|
479
462
|
height="auto"
|
|
@@ -484,30 +467,19 @@ exports[`handle a Dynamic Gallery with mocked gallery nodes 1`] = `
|
|
|
484
467
|
</div>
|
|
485
468
|
<div
|
|
486
469
|
className="c7"
|
|
487
|
-
|
|
488
|
-
<div
|
|
489
|
-
className="c8"
|
|
490
|
-
>
|
|
491
|
-
Image 2
|
|
492
|
-
</div>
|
|
493
|
-
<div
|
|
494
|
-
className="c9"
|
|
495
|
-
>
|
|
496
|
-
Caption 2
|
|
497
|
-
</div>
|
|
498
|
-
</div>
|
|
470
|
+
/>
|
|
499
471
|
</button>
|
|
500
472
|
</div>
|
|
501
473
|
<div
|
|
502
474
|
className="c2 gallery-column"
|
|
503
475
|
>
|
|
504
476
|
<button
|
|
505
|
-
aria-label="
|
|
477
|
+
aria-label=""
|
|
506
478
|
className="c3 gallery-node"
|
|
507
479
|
data-node-index={0}
|
|
508
480
|
onPointerUp={[Function]}
|
|
509
481
|
tabIndex={0}
|
|
510
|
-
title="
|
|
482
|
+
title=""
|
|
511
483
|
>
|
|
512
484
|
<div
|
|
513
485
|
className="c4 gallery-node-image"
|
|
@@ -518,7 +490,7 @@ exports[`handle a Dynamic Gallery with mocked gallery nodes 1`] = `
|
|
|
518
490
|
width="100%"
|
|
519
491
|
>
|
|
520
492
|
<img
|
|
521
|
-
alt="
|
|
493
|
+
alt=""
|
|
522
494
|
className="c6 lazyload"
|
|
523
495
|
data-src="image3.jpg"
|
|
524
496
|
height="auto"
|
|
@@ -529,46 +501,35 @@ exports[`handle a Dynamic Gallery with mocked gallery nodes 1`] = `
|
|
|
529
501
|
</div>
|
|
530
502
|
<div
|
|
531
503
|
className="c7"
|
|
532
|
-
|
|
533
|
-
<div
|
|
534
|
-
className="c8"
|
|
535
|
-
>
|
|
536
|
-
Image 3
|
|
537
|
-
</div>
|
|
538
|
-
<div
|
|
539
|
-
className="c9"
|
|
540
|
-
>
|
|
541
|
-
Caption 3
|
|
542
|
-
</div>
|
|
543
|
-
</div>
|
|
504
|
+
/>
|
|
544
505
|
</button>
|
|
545
506
|
</div>
|
|
546
507
|
<div
|
|
547
|
-
className="
|
|
508
|
+
className="c8"
|
|
548
509
|
>
|
|
549
510
|
No images to display
|
|
550
511
|
</div>
|
|
551
512
|
</div>
|
|
552
513
|
<div
|
|
553
|
-
className="
|
|
514
|
+
className="c9"
|
|
554
515
|
>
|
|
555
516
|
<div
|
|
556
|
-
className="
|
|
517
|
+
className="c10"
|
|
557
518
|
onPointerUp={[Function]}
|
|
558
519
|
/>
|
|
559
520
|
<dialog
|
|
560
521
|
aria-describedby="lightboxDescription"
|
|
561
522
|
aria-labelledby="lightboxTitle"
|
|
562
|
-
className="
|
|
523
|
+
className="c11"
|
|
563
524
|
>
|
|
564
525
|
<div
|
|
565
|
-
className="
|
|
526
|
+
className="c12"
|
|
566
527
|
>
|
|
567
528
|
<div
|
|
568
|
-
className="
|
|
529
|
+
className="c13 lightbox-image"
|
|
569
530
|
>
|
|
570
531
|
<div
|
|
571
|
-
className="
|
|
532
|
+
className="c14"
|
|
572
533
|
>
|
|
573
534
|
<span
|
|
574
535
|
className="css-1xdhyk6"
|
|
@@ -588,25 +549,21 @@ exports[`handle a Dynamic Gallery with mocked gallery nodes 1`] = `
|
|
|
588
549
|
<div
|
|
589
550
|
aria-atomic="true"
|
|
590
551
|
aria-live="polite"
|
|
591
|
-
className="
|
|
552
|
+
className="c15"
|
|
592
553
|
id="lightboxDescription"
|
|
593
|
-
|
|
594
|
-
<div
|
|
595
|
-
id="lightboxTitle"
|
|
596
|
-
/>
|
|
597
|
-
</div>
|
|
554
|
+
/>
|
|
598
555
|
<button
|
|
599
|
-
className="
|
|
556
|
+
className="c16 c17"
|
|
600
557
|
onClick={[Function]}
|
|
601
558
|
type="button"
|
|
602
559
|
>
|
|
603
560
|
<span
|
|
604
|
-
className="
|
|
561
|
+
className="c18"
|
|
605
562
|
>
|
|
606
563
|
Close
|
|
607
564
|
</span>
|
|
608
565
|
<svg
|
|
609
|
-
className="
|
|
566
|
+
className="c19"
|
|
610
567
|
height={16}
|
|
611
568
|
viewBox="0 0 96 96"
|
|
612
569
|
width={16}
|
|
@@ -618,17 +575,17 @@ exports[`handle a Dynamic Gallery with mocked gallery nodes 1`] = `
|
|
|
618
575
|
</svg>
|
|
619
576
|
</button>
|
|
620
577
|
<button
|
|
621
|
-
className="
|
|
578
|
+
className="c16 c20"
|
|
622
579
|
onClick={[Function]}
|
|
623
580
|
type="button"
|
|
624
581
|
>
|
|
625
582
|
<span
|
|
626
|
-
className="
|
|
583
|
+
className="c18"
|
|
627
584
|
>
|
|
628
585
|
Previous
|
|
629
586
|
</span>
|
|
630
587
|
<svg
|
|
631
|
-
className="
|
|
588
|
+
className="c21"
|
|
632
589
|
direction="left"
|
|
633
590
|
height={16}
|
|
634
591
|
viewBox="0 0 96 96"
|
|
@@ -643,17 +600,17 @@ exports[`handle a Dynamic Gallery with mocked gallery nodes 1`] = `
|
|
|
643
600
|
</svg>
|
|
644
601
|
</button>
|
|
645
602
|
<button
|
|
646
|
-
className="
|
|
603
|
+
className="c16 c22"
|
|
647
604
|
onClick={[Function]}
|
|
648
605
|
type="button"
|
|
649
606
|
>
|
|
650
607
|
<span
|
|
651
|
-
className="
|
|
608
|
+
className="c18"
|
|
652
609
|
>
|
|
653
610
|
Next
|
|
654
611
|
</span>
|
|
655
612
|
<svg
|
|
656
|
-
className="
|
|
613
|
+
className="c23"
|
|
657
614
|
direction="right"
|
|
658
615
|
height={16}
|
|
659
616
|
viewBox="0 0 96 96"
|
|
@@ -1025,11 +982,7 @@ exports[`renders an empty Dynamic Gallery with no options set 1`] = `
|
|
|
1025
982
|
aria-live="polite"
|
|
1026
983
|
className="c9"
|
|
1027
984
|
id="lightboxDescription"
|
|
1028
|
-
|
|
1029
|
-
<div
|
|
1030
|
-
id="lightboxTitle"
|
|
1031
|
-
/>
|
|
1032
|
-
</div>
|
|
985
|
+
/>
|
|
1033
986
|
<button
|
|
1034
987
|
className="c10 c11"
|
|
1035
988
|
onClick={[Function]}
|
|
@@ -11,8 +11,9 @@ var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
|
11
11
|
// so lives here to avoid circular dependencies
|
|
12
12
|
// eslint-disable-next-line import/prefer-default-export
|
|
13
13
|
const GalleryNodeType = exports.GalleryNodeType = _propTypes.default.shape({
|
|
14
|
-
title: _propTypes.default.string,
|
|
15
14
|
image: _propTypes.default.string.isRequired,
|
|
16
|
-
|
|
17
|
-
|
|
15
|
+
gridBody: _propTypes.default.node,
|
|
16
|
+
gridCaption: _propTypes.default.node,
|
|
17
|
+
lightboxBody: _propTypes.default.node,
|
|
18
|
+
lightboxCaption: _propTypes.default.node
|
|
18
19
|
});
|
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
+
var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard").default;
|
|
3
4
|
Object.defineProperty(exports, "__esModule", {
|
|
4
5
|
value: true
|
|
5
6
|
});
|
|
6
7
|
exports.default = createMockGalleryNodes;
|
|
8
|
+
exports.extractNodeText = extractNodeText;
|
|
9
|
+
var _react = _interopRequireWildcard(require("react"));
|
|
7
10
|
var _data = require("../../../styleguide/data/data");
|
|
8
11
|
/**
|
|
9
12
|
* mocking function to create nodes for the dynamic gallery
|
|
@@ -15,10 +18,33 @@ function createMockGalleryNodes() {
|
|
|
15
18
|
for (let i = 0; i < nodeCount; i += 1) {
|
|
16
19
|
nodes.push({
|
|
17
20
|
image: images[Math.floor(Math.random() * images.length)],
|
|
18
|
-
title: `image ${i}
|
|
19
|
-
|
|
20
|
-
|
|
21
|
+
title: /*#__PURE__*/_react.default.createElement("p", null, `image ${i}`),
|
|
22
|
+
gridCaption: /*#__PURE__*/_react.default.createElement("p", null, "Grid: Group age: 0-10"),
|
|
23
|
+
lightboxCaption: /*#__PURE__*/_react.default.createElement("p", null, "Lightbox: Group age: 0-10"),
|
|
24
|
+
gridBody: /*#__PURE__*/_react.default.createElement("p", null, "Grid: This is the body for image ", i, ". It can be used to display additional information about the image."),
|
|
25
|
+
lightboxBody: /*#__PURE__*/_react.default.createElement("p", null, "Lightbox: This is the body for image ", i, ". It can be used to display additional information about the image.")
|
|
21
26
|
});
|
|
22
27
|
}
|
|
23
28
|
return nodes;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
/**
|
|
32
|
+
* extract text from a react node;
|
|
33
|
+
* this is used to get usable strings from a styled text node from the CMS,
|
|
34
|
+
* if we need the plain string for eg alt text
|
|
35
|
+
*/
|
|
36
|
+
function extractNodeText(reactNode) {
|
|
37
|
+
let text = '';
|
|
38
|
+
if (typeof reactNode === 'string') {
|
|
39
|
+
text = reactNode;
|
|
40
|
+
} else if (typeof reactNode === 'number') {
|
|
41
|
+
text = reactNode.toString();
|
|
42
|
+
} else if (reactNode instanceof Array) {
|
|
43
|
+
reactNode.forEach(child => {
|
|
44
|
+
text += extractNodeText(child);
|
|
45
|
+
});
|
|
46
|
+
} else if ( /*#__PURE__*/(0, _react.isValidElement)(reactNode)) {
|
|
47
|
+
text += extractNodeText(reactNode.props.children);
|
|
48
|
+
}
|
|
49
|
+
return text;
|
|
24
50
|
}
|
package/package.json
CHANGED
|
@@ -14,7 +14,7 @@ exports[`handles data structure correctly 1`] = `
|
|
|
14
14
|
className="CTAMultiCardstyle__CardsContainer-sc-gsdqzv-3 gAuYUa"
|
|
15
15
|
>
|
|
16
16
|
<div
|
|
17
|
-
className="CTACardstyle__CardWrapper-sc-si8xx1-5
|
|
17
|
+
className="CTACardstyle__CardWrapper-sc-si8xx1-5 hKmRek"
|
|
18
18
|
>
|
|
19
19
|
<a
|
|
20
20
|
className="CTACardstyle__CardLink-sc-si8xx1-4 eIrLL"
|
|
@@ -95,7 +95,7 @@ exports[`handles data structure correctly 1`] = `
|
|
|
95
95
|
</a>
|
|
96
96
|
</div>
|
|
97
97
|
<div
|
|
98
|
-
className="CTACardstyle__CardWrapper-sc-si8xx1-5
|
|
98
|
+
className="CTACardstyle__CardWrapper-sc-si8xx1-5 hKmRek"
|
|
99
99
|
>
|
|
100
100
|
<div
|
|
101
101
|
className="CTACardstyle__CardLink-sc-si8xx1-4 lbrljd"
|
|
@@ -141,7 +141,7 @@ exports[`handles data structure correctly 1`] = `
|
|
|
141
141
|
</div>
|
|
142
142
|
</div>
|
|
143
143
|
<div
|
|
144
|
-
className="CTACardstyle__CardWrapper-sc-si8xx1-5
|
|
144
|
+
className="CTACardstyle__CardWrapper-sc-si8xx1-5 hKmRek"
|
|
145
145
|
>
|
|
146
146
|
<a
|
|
147
147
|
className="CTACardstyle__CardLink-sc-si8xx1-4 eIrLL"
|
|
@@ -222,7 +222,7 @@ exports[`handles data structure correctly 1`] = `
|
|
|
222
222
|
</a>
|
|
223
223
|
</div>
|
|
224
224
|
<div
|
|
225
|
-
className="CTACardstyle__CardWrapper-sc-si8xx1-5
|
|
225
|
+
className="CTACardstyle__CardWrapper-sc-si8xx1-5 hKmRek"
|
|
226
226
|
>
|
|
227
227
|
<a
|
|
228
228
|
className="CTACardstyle__CardLink-sc-si8xx1-4 eIrLL"
|
|
@@ -580,7 +580,7 @@ exports[`renders carousel mode correctly 1`] = `
|
|
|
580
580
|
className="CTAMultiCardstyle__CardsContainer-sc-gsdqzv-3 fqrDP"
|
|
581
581
|
>
|
|
582
582
|
<div
|
|
583
|
-
className="CTACardstyle__CardWrapper-sc-si8xx1-5
|
|
583
|
+
className="CTACardstyle__CardWrapper-sc-si8xx1-5 hQbghF"
|
|
584
584
|
>
|
|
585
585
|
<a
|
|
586
586
|
className="CTACardstyle__CardLink-sc-si8xx1-4 eIrLL"
|
|
@@ -661,7 +661,7 @@ exports[`renders carousel mode correctly 1`] = `
|
|
|
661
661
|
</a>
|
|
662
662
|
</div>
|
|
663
663
|
<div
|
|
664
|
-
className="CTACardstyle__CardWrapper-sc-si8xx1-5
|
|
664
|
+
className="CTACardstyle__CardWrapper-sc-si8xx1-5 hQbghF"
|
|
665
665
|
>
|
|
666
666
|
<div
|
|
667
667
|
className="CTACardstyle__CardLink-sc-si8xx1-4 lbrljd"
|
|
@@ -707,7 +707,7 @@ exports[`renders carousel mode correctly 1`] = `
|
|
|
707
707
|
</div>
|
|
708
708
|
</div>
|
|
709
709
|
<div
|
|
710
|
-
className="CTACardstyle__CardWrapper-sc-si8xx1-5
|
|
710
|
+
className="CTACardstyle__CardWrapper-sc-si8xx1-5 hQbghF"
|
|
711
711
|
>
|
|
712
712
|
<a
|
|
713
713
|
className="CTACardstyle__CardLink-sc-si8xx1-4 eIrLL"
|
|
@@ -788,7 +788,7 @@ exports[`renders carousel mode correctly 1`] = `
|
|
|
788
788
|
</a>
|
|
789
789
|
</div>
|
|
790
790
|
<div
|
|
791
|
-
className="CTACardstyle__CardWrapper-sc-si8xx1-5
|
|
791
|
+
className="CTACardstyle__CardWrapper-sc-si8xx1-5 hQbghF"
|
|
792
792
|
>
|
|
793
793
|
<a
|
|
794
794
|
className="CTACardstyle__CardLink-sc-si8xx1-4 eIrLL"
|
|
@@ -863,7 +863,7 @@ exports[`renders correctly with data prop 1`] = `
|
|
|
863
863
|
className="CTAMultiCardstyle__CardsContainer-sc-gsdqzv-3 fqrDP"
|
|
864
864
|
>
|
|
865
865
|
<div
|
|
866
|
-
className="CTACardstyle__CardWrapper-sc-si8xx1-5
|
|
866
|
+
className="CTACardstyle__CardWrapper-sc-si8xx1-5 hQbghF"
|
|
867
867
|
>
|
|
868
868
|
<a
|
|
869
869
|
className="CTACardstyle__CardLink-sc-si8xx1-4 eIrLL"
|
|
@@ -944,7 +944,7 @@ exports[`renders correctly with data prop 1`] = `
|
|
|
944
944
|
</a>
|
|
945
945
|
</div>
|
|
946
946
|
<div
|
|
947
|
-
className="CTACardstyle__CardWrapper-sc-si8xx1-5
|
|
947
|
+
className="CTACardstyle__CardWrapper-sc-si8xx1-5 hQbghF"
|
|
948
948
|
>
|
|
949
949
|
<div
|
|
950
950
|
className="CTACardstyle__CardLink-sc-si8xx1-4 lbrljd"
|
|
@@ -990,7 +990,7 @@ exports[`renders correctly with data prop 1`] = `
|
|
|
990
990
|
</div>
|
|
991
991
|
</div>
|
|
992
992
|
<div
|
|
993
|
-
className="CTACardstyle__CardWrapper-sc-si8xx1-5
|
|
993
|
+
className="CTACardstyle__CardWrapper-sc-si8xx1-5 hQbghF"
|
|
994
994
|
>
|
|
995
995
|
<a
|
|
996
996
|
className="CTACardstyle__CardLink-sc-si8xx1-4 eIrLL"
|
|
@@ -1071,7 +1071,7 @@ exports[`renders correctly with data prop 1`] = `
|
|
|
1071
1071
|
</a>
|
|
1072
1072
|
</div>
|
|
1073
1073
|
<div
|
|
1074
|
-
className="CTACardstyle__CardWrapper-sc-si8xx1-5
|
|
1074
|
+
className="CTACardstyle__CardWrapper-sc-si8xx1-5 hQbghF"
|
|
1075
1075
|
>
|
|
1076
1076
|
<a
|
|
1077
1077
|
className="CTACardstyle__CardLink-sc-si8xx1-4 eIrLL"
|