@internetarchive/collection-browser 4.5.1-alpha-webdev8221.0 → 4.5.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 (69) hide show
  1. package/dist/index.js.map +1 -1
  2. package/dist/src/app-root.js +683 -683
  3. package/dist/src/app-root.js.map +1 -1
  4. package/dist/src/collection-browser.js +766 -766
  5. package/dist/src/collection-browser.js.map +1 -1
  6. package/dist/src/collection-facets/facet-row.js +143 -143
  7. package/dist/src/collection-facets/facet-row.js.map +1 -1
  8. package/dist/src/collection-facets/facets-template.js +24 -24
  9. package/dist/src/collection-facets/facets-template.js.map +1 -1
  10. package/dist/src/data-source/collection-browser-data-source-interface.js.map +1 -1
  11. package/dist/src/data-source/collection-browser-data-source.js.map +1 -1
  12. package/dist/src/restoration-state-handler.js.map +1 -1
  13. package/dist/src/styles/tile-action-styles.js +43 -43
  14. package/dist/src/styles/tile-action-styles.js.map +1 -1
  15. package/dist/src/tiles/base-tile-component.js +11 -11
  16. package/dist/src/tiles/base-tile-component.js.map +1 -1
  17. package/dist/src/tiles/grid/item-tile.js +138 -138
  18. package/dist/src/tiles/grid/item-tile.js.map +1 -1
  19. package/dist/src/tiles/hover/hover-pane-controller.js +31 -29
  20. package/dist/src/tiles/hover/hover-pane-controller.js.map +1 -1
  21. package/dist/src/tiles/list/tile-list-compact-header.js +62 -62
  22. package/dist/src/tiles/list/tile-list-compact-header.js.map +1 -1
  23. package/dist/src/tiles/list/tile-list-compact.js +123 -123
  24. package/dist/src/tiles/list/tile-list-compact.js.map +1 -1
  25. package/dist/src/tiles/list/tile-list.js +310 -310
  26. package/dist/src/tiles/list/tile-list.js.map +1 -1
  27. package/dist/src/tiles/models.js.map +1 -1
  28. package/dist/src/tiles/tile-dispatcher.js +286 -286
  29. package/dist/src/tiles/tile-dispatcher.js.map +1 -1
  30. package/dist/src/tiles/tile-display-value-provider.js.map +1 -1
  31. package/dist/src/utils/date-filter-field.js.map +1 -1
  32. package/dist/test/collection-browser.test.js +203 -203
  33. package/dist/test/collection-browser.test.js.map +1 -1
  34. package/dist/test/collection-facets/facet-row.test.js +31 -31
  35. package/dist/test/collection-facets/facet-row.test.js.map +1 -1
  36. package/dist/test/tiles/grid/item-tile.test.js +77 -77
  37. package/dist/test/tiles/grid/item-tile.test.js.map +1 -1
  38. package/dist/test/tiles/hover/hover-pane-controller.test.js +54 -27
  39. package/dist/test/tiles/hover/hover-pane-controller.test.js.map +1 -1
  40. package/dist/test/tiles/list/tile-list.test.js +134 -134
  41. package/dist/test/tiles/list/tile-list.test.js.map +1 -1
  42. package/dist/test/tiles/tile-dispatcher.test.js +92 -92
  43. package/dist/test/tiles/tile-dispatcher.test.js.map +1 -1
  44. package/index.ts +29 -29
  45. package/package.json +1 -1
  46. package/src/app-root.ts +1284 -1284
  47. package/src/collection-browser.ts +3165 -3165
  48. package/src/collection-facets/facet-row.ts +309 -309
  49. package/src/collection-facets/facets-template.ts +85 -85
  50. package/src/data-source/collection-browser-data-source-interface.ts +351 -351
  51. package/src/data-source/collection-browser-data-source.ts +1474 -1474
  52. package/src/restoration-state-handler.ts +550 -550
  53. package/src/styles/tile-action-styles.ts +59 -59
  54. package/src/tiles/base-tile-component.ts +124 -124
  55. package/src/tiles/grid/item-tile.ts +347 -347
  56. package/src/tiles/hover/hover-pane-controller.ts +630 -628
  57. package/src/tiles/list/tile-list-compact-header.ts +112 -112
  58. package/src/tiles/list/tile-list-compact.ts +278 -278
  59. package/src/tiles/list/tile-list.ts +718 -718
  60. package/src/tiles/models.ts +21 -21
  61. package/src/tiles/tile-dispatcher.ts +637 -637
  62. package/src/tiles/tile-display-value-provider.ts +133 -133
  63. package/src/utils/date-filter-field.ts +11 -11
  64. package/test/collection-browser.test.ts +2639 -2639
  65. package/test/collection-facets/facet-row.test.ts +421 -421
  66. package/test/tiles/grid/item-tile.test.ts +520 -520
  67. package/test/tiles/hover/hover-pane-controller.test.ts +454 -418
  68. package/test/tiles/list/tile-list.test.ts +576 -576
  69. package/test/tiles/tile-dispatcher.test.ts +320 -320
@@ -1,718 +1,718 @@
1
- import { css, html, nothing, PropertyValues, TemplateResult } from 'lit';
2
- import { ifDefined } from 'lit/directives/if-defined.js';
3
- import { join } from 'lit/directives/join.js';
4
- import { map } from 'lit/directives/map.js';
5
- import { unsafeHTML } from 'lit/directives/unsafe-html.js';
6
- import { customElement, property, state } from 'lit/decorators.js';
7
- import { msg, str } from '@lit/localize';
8
- import DOMPurify from 'dompurify';
9
-
10
- import type { SortParam } from '@internetarchive/search-service';
11
- import { suppressedCollections } from '../../models';
12
- import type { CollectionTitles } from '../../data-source/models';
13
- import { BaseTileComponent } from '../base-tile-component';
14
-
15
- import { formatCount, NumberFormat } from '../../utils/format-count';
16
- import type { DateFormat } from '../../utils/format-date';
17
- import { isFirstMillisecondOfUTCYear } from '../../utils/local-date-from-utc';
18
- import { tileActionStyles } from '../../styles/tile-action-styles';
19
-
20
- import '../image-block';
21
- import '../review-block';
22
- import '../text-snippet-block';
23
- import '../tile-mediatype-icon';
24
-
25
- @customElement('tile-list')
26
- export class TileList extends BaseTileComponent {
27
- /*
28
- * Reactive properties inherited from BaseTileComponent:
29
- * - model?: TileModel;
30
- * - tileActions: TileAction[] = [];
31
- * - currentWidth?: number;
32
- * - currentHeight?: number;
33
- * - baseNavigationUrl?: string;
34
- * - baseImageUrl?: string;
35
- * - collectionPagePath?: string;
36
- * - sortParam: SortParam | null = null;
37
- * - defaultSortParam: SortParam | null = null;
38
- * - creatorFilter?: string;
39
- * - mobileBreakpoint?: number;
40
- * - loggedIn = false;
41
- * - suppressBlurring = false;
42
- * - useLocalTime = false;
43
- */
44
-
45
- @property({ type: Object })
46
- collectionTitles?: CollectionTitles;
47
-
48
- @state() private collectionLinks: (TemplateResult | typeof nothing)[] = [];
49
-
50
- render() {
51
- return html`
52
- <div id="list-line" class="${this.classSize}">
53
- ${this.classSize === 'mobile'
54
- ? this.mobileTemplate
55
- : this.desktopTemplate}
56
- </div>
57
- `;
58
- }
59
-
60
- /**
61
- * Templates
62
- */
63
- private get mobileTemplate() {
64
- return html`
65
- <div id="list-line-top">
66
- <div id="list-line-left">
67
- ${this.imageBlockTemplate} ${this.renderTileActions('list-detail')}
68
- </div>
69
- <div id="list-line-right">
70
- <div id="title-line">
71
- <div id="title">${this.titleTemplate}</div>
72
- ${this.iconRightTemplate}
73
- </div>
74
- </div>
75
- </div>
76
- <div id="list-line-bottom">${this.detailsTemplate}</div>
77
- `;
78
- }
79
-
80
- private get desktopTemplate() {
81
- return html`
82
- <div id="list-line-left">
83
- ${this.imageBlockTemplate} ${this.renderTileActions('list-detail')}
84
- </div>
85
- <div id="list-line-right">
86
- <div id="title-line">
87
- <div id="title">${this.titleTemplate}</div>
88
- ${this.iconRightTemplate}
89
- </div>
90
- ${this.detailsTemplate}
91
- </div>
92
- `;
93
- }
94
-
95
- private get imageBlockTemplate() {
96
- if (!this.model) return nothing;
97
-
98
- const isCollection = this.model.mediatype === 'collection';
99
- const href = this.displayValueProvider.itemPageUrl(
100
- this.model.identifier,
101
- isCollection,
102
- );
103
-
104
- return html`<a
105
- id="image-link"
106
- title=${msg(str`View ${this.model?.title}`)}
107
- href=${href}
108
- >
109
- <image-block
110
- .model=${this.model}
111
- .baseImageUrl=${this.baseImageUrl}
112
- .isCompactTile=${false}
113
- .isListTile=${true}
114
- .viewSize=${this.classSize}
115
- .loggedIn=${this.loggedIn}
116
- .suppressBlurring=${this.suppressBlurring}
117
- >
118
- </image-block>
119
- </a> `;
120
- }
121
-
122
- private get detailsTemplate() {
123
- return html`
124
- ${this.itemLineTemplate} ${this.creatorTemplate}
125
- <div id="dates-line">
126
- ${this.datePublishedTemplate} ${this.dateSortByTemplate}
127
- ${this.webArchivesCaptureDatesTemplate}
128
- </div>
129
- <div id="views-line">
130
- ${this.viewsTemplate} ${this.ratingTemplate} ${this.reviewsTemplate}
131
- </div>
132
- ${this.topicsTemplate} ${this.collectionsTemplate}
133
- ${this.descriptionTemplate} ${this.textSnippetsTemplate}
134
- ${this.reviewBlockTemplate}
135
- `;
136
- }
137
-
138
- // Data templates
139
- private get iconRightTemplate() {
140
- return html`
141
- <a
142
- id="icon-right"
143
- href=${this.mediatypeURL}
144
- title=${msg(str`See more: ${this.model?.mediatype}`)}
145
- >
146
- <tile-mediatype-icon .model=${this.model}> </tile-mediatype-icon>
147
- </a>
148
- `;
149
- }
150
-
151
- private get titleTemplate() {
152
- if (!this.model?.title) {
153
- return nothing;
154
- }
155
-
156
- // If the model has a server-specified href, use it
157
- // Otherwise construct a details link using the identifier
158
- return this.model?.href
159
- ? html`<a href="${this.baseNavigationUrl}${this.model.href}"
160
- >${this.model.title ?? this.model.identifier}</a
161
- >`
162
- : this.detailsLink(
163
- this.model.identifier,
164
- this.model.title,
165
- this.model.mediatype === 'collection',
166
- );
167
- }
168
-
169
- private get itemLineTemplate() {
170
- const source = this.sourceTemplate;
171
- const volume = this.volumeTemplate;
172
- const issue = this.issueTemplate;
173
- if (!source && !volume && !issue) {
174
- return nothing;
175
- }
176
- return html` <div id="item-line">${source} ${volume} ${issue}</div> `;
177
- }
178
-
179
- private get sourceTemplate() {
180
- if (!this.model?.source) {
181
- return nothing;
182
- }
183
- return html`
184
- <div id="source" class="metadata">
185
- ${this.labelTemplate(msg('Source'))}
186
- ${this.searchLink('source', this.model.source)}
187
- </div>
188
- `;
189
- }
190
-
191
- private get volumeTemplate() {
192
- return this.metadataTemplate(this.model?.volume, msg('Volume'));
193
- }
194
-
195
- private get issueTemplate() {
196
- return this.metadataTemplate(this.model?.issue, msg('Issue'));
197
- }
198
-
199
- private get creatorTemplate() {
200
- // "Archivist since" if account
201
- if (this.model?.mediatype === 'account') {
202
- return html`
203
- <div id="creator" class="metadata">
204
- <span class="label"
205
- >${this.displayValueProvider.accountLabel ?? nothing}</span
206
- >
207
- </div>
208
- `;
209
- }
210
- // "Creator" if not account tile
211
- if (!this.model?.creators || this.model.creators.length === 0) {
212
- return nothing;
213
- }
214
- return html`
215
- <div id="creator" class="metadata">
216
- ${this.labelTemplate(msg('By'))}
217
- ${join(
218
- map(this.model.creators, id => this.searchLink('creator', id)),
219
- ', ',
220
- )}
221
- </div>
222
- `;
223
- }
224
-
225
- private get datePublishedTemplate() {
226
- // If we're showing a date published of Jan 1 at midnight, only show the year.
227
- // This is because items with only a year for their publication date are normalized to
228
- // Jan 1 at midnight timestamps in the search engine documents.
229
- const date: Date | undefined = this.model?.datePublished;
230
- let format: DateFormat = 'long';
231
- if (isFirstMillisecondOfUTCYear(date)) {
232
- format = 'year-only';
233
- }
234
-
235
- return this.metadataTemplate(
236
- this.getFormattedDate(date, format),
237
- msg('Published'),
238
- );
239
- }
240
-
241
- // Show date label/value when sorted by date type
242
- // Except datePublished which is always shown
243
- private get dateSortByTemplate() {
244
- if (
245
- this.effectiveSort &&
246
- (this.effectiveSort.field === 'addeddate' ||
247
- this.effectiveSort.field === 'reviewdate' ||
248
- this.effectiveSort.field === 'publicdate')
249
- ) {
250
- return this.metadataTemplate(
251
- this.getFormattedDate(this.date, 'long'),
252
- this.displayValueProvider.dateLabel,
253
- );
254
- }
255
- return nothing;
256
- }
257
-
258
- private get viewsTemplate() {
259
- const isWeeklySort = this.effectiveSort?.field === 'week';
260
- const viewCount = isWeeklySort
261
- ? this.model?.weeklyViewCount // weekly views
262
- : this.model?.viewCount; // all-time views
263
- if (viewCount == null) return nothing;
264
-
265
- // when its a search-tile, we don't have any stats to show
266
- if (this.model?.mediatype === 'search') {
267
- return this.metadataTemplate('(Favorited search query)', '');
268
- }
269
-
270
- return this.metadataTemplate(
271
- `${formatCount(viewCount, this.formatSize)}`,
272
- this.displayValueProvider.viewsLabel,
273
- );
274
- }
275
-
276
- private get ratingTemplate() {
277
- return this.metadataTemplate(this.model?.averageRating, msg('Avg Rating'));
278
- }
279
-
280
- private get reviewsTemplate() {
281
- return this.metadataTemplate(this.model?.commentCount, msg('Reviews'));
282
- }
283
-
284
- private get topicsTemplate() {
285
- if (!this.model?.subjects || this.model.subjects.length === 0) {
286
- return nothing;
287
- }
288
- return html`
289
- <div id="topics" class="metadata">
290
- ${this.labelTemplate(msg('Topics'))}
291
- ${join(
292
- map(this.model.subjects, id => this.searchLink('subject', id)),
293
- ', ',
294
- )}
295
- </div>
296
- `;
297
- }
298
-
299
- private get collectionsTemplate() {
300
- if (!this.collectionLinks || this.collectionLinks.length === 0) {
301
- return nothing;
302
- }
303
- return html`
304
- <div id="collections" class="metadata">
305
- ${this.labelTemplate(msg('Collections'))}
306
- ${join(this.collectionLinks, ', ')}
307
- </div>
308
- `;
309
- }
310
-
311
- private get descriptionTemplate() {
312
- return this.metadataTemplate(
313
- // Sanitize away any HTML tags and convert line breaks to spaces.
314
- unsafeHTML(
315
- DOMPurify.sanitize(this.model?.description?.replace(/\n/g, ' ') ?? ''),
316
- ),
317
- '',
318
- 'description',
319
- );
320
- }
321
-
322
- private get reviewBlockTemplate(): TemplateResult | typeof nothing {
323
- if (!this.model?.review) return nothing;
324
-
325
- const { reviewtitle, reviewbody, stars } = this.model.review;
326
- return html`
327
- <review-block
328
- viewsize="list"
329
- title=${ifDefined(reviewtitle)}
330
- body=${ifDefined(reviewbody)}
331
- starRating=${ifDefined(stars)}
332
- >
333
- </review-block>
334
- `;
335
- }
336
-
337
- private get textSnippetsTemplate(): TemplateResult | typeof nothing {
338
- if (!this.hasSnippets) return nothing;
339
-
340
- return html`<text-snippet-block
341
- viewsize="list"
342
- .snippets=${this.model?.snippets}
343
- ></text-snippet-block>`;
344
- }
345
-
346
- private get hasSnippets(): boolean {
347
- return !!this.model?.snippets?.length;
348
- }
349
-
350
- private get webArchivesCaptureDatesTemplate():
351
- | TemplateResult
352
- | typeof nothing {
353
- if (!this.model?.captureDates || !this.model.title) return nothing;
354
-
355
- return html`
356
- <ul class="capture-dates">
357
- ${map(
358
- this.model.captureDates,
359
- date =>
360
- html`<li>
361
- ${this.displayValueProvider.webArchivesCaptureLink(
362
- this.model!.title,
363
- date,
364
- )}
365
- </li>`,
366
- )}
367
- </ul>
368
- `;
369
- }
370
-
371
- // Utility functions
372
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
373
- private metadataTemplate(text: any, label = '', id?: string) {
374
- if (!text) return nothing;
375
- return html`
376
- <div id=${ifDefined(id)} class="metadata">
377
- ${this.labelTemplate(label)} ${text}
378
- </div>
379
- `;
380
- }
381
-
382
- private labelTemplate(label: string) {
383
- return html` ${label
384
- ? html`<span class="label">${label}: </span>`
385
- : nothing}`;
386
- }
387
-
388
- private searchLink(field: string, searchTerm: string) {
389
- if (!field || !searchTerm) {
390
- return nothing;
391
- }
392
- const query = encodeURIComponent(`${field}:"${searchTerm}"`);
393
- // No whitespace after closing tag
394
- // Note: single ' for href='' to wrap " in query var gets changed back by yarn format
395
- return html`<a
396
- href="${this.baseNavigationUrl}/search?query=${query}"
397
- rel="nofollow"
398
- >
399
- ${DOMPurify.sanitize(searchTerm)}</a
400
- >`;
401
- }
402
-
403
- private detailsLink(
404
- identifier?: string,
405
- text?: string,
406
- isCollection = false,
407
- ): TemplateResult | typeof nothing {
408
- if (!identifier) return nothing;
409
-
410
- const linkText = text ?? identifier;
411
- const linkHref = this.displayValueProvider.itemPageUrl(
412
- identifier,
413
- isCollection,
414
- );
415
-
416
- return html`<a href=${linkHref}> ${DOMPurify.sanitize(linkText)} </a>`;
417
- }
418
-
419
- /** The URL of this item's mediatype collection, if defined. */
420
- private get mediatypeURL(): string | typeof nothing {
421
- // NB: baseNavigationUrl can be an empty string
422
- if (this.baseNavigationUrl === undefined || !this.model?.mediatype)
423
- return nothing;
424
-
425
- // Need special handling for certain mediatypes that don't have a top-level collection page
426
- switch (this.model.mediatype) {
427
- case 'collection':
428
- return `${this.baseNavigationUrl}/search?query=mediatype:collection&sort=-downloads`;
429
- case 'account':
430
- return nothing;
431
- default:
432
- return this.displayValueProvider.itemPageUrl(
433
- this.model.mediatype,
434
- true,
435
- );
436
- }
437
- }
438
-
439
- protected updated(changed: PropertyValues): void {
440
- if (changed.has('model') || changed.has('collectionTitles')) {
441
- this.buildCollectionLinks();
442
- }
443
- }
444
-
445
- private async buildCollectionLinks() {
446
- if (!this.model?.collections || this.model.collections.length === 0) {
447
- return;
448
- }
449
-
450
- // Note: quirk of Lit: need to replace collectionLinks array,
451
- // otherwise it will not re-render. Can't simply alter the array.
452
- this.collectionLinks = [];
453
- const newCollectionLinks: (TemplateResult | typeof nothing)[] = [];
454
- for (const collection of this.model.collections) {
455
- // Don't include favorites or collections that are meant to be suppressed
456
- if (
457
- !suppressedCollections[collection] &&
458
- !collection.startsWith('fav-')
459
- ) {
460
- newCollectionLinks.push(
461
- this.detailsLink(
462
- collection,
463
- this.collectionTitles?.get(collection) ?? collection,
464
- true,
465
- ),
466
- );
467
- }
468
- }
469
- this.collectionLinks = newCollectionLinks;
470
- }
471
-
472
- /*
473
- * TODO: fix field names to match model in src/collection-browser.ts
474
- * private get dateSortSelector()
475
- * @see src/models.ts
476
- */
477
- private get date(): Date | undefined {
478
- switch (this.effectiveSort?.field) {
479
- case 'date':
480
- return this.model?.datePublished;
481
- case 'reviewdate':
482
- return this.model?.dateReviewed;
483
- case 'addeddate':
484
- return this.model?.dateAdded;
485
- default:
486
- return this.model?.dateArchived; // publicdate
487
- }
488
- }
489
-
490
- /**
491
- * Returns the active sort param if one is set, or the default sort param otherwise.
492
- */
493
- private get effectiveSort(): SortParam | null {
494
- return this.sortParam ?? this.defaultSortParam;
495
- }
496
-
497
- private get classSize(): string {
498
- if (
499
- this.mobileBreakpoint &&
500
- this.currentWidth &&
501
- this.currentWidth < this.mobileBreakpoint
502
- ) {
503
- return 'mobile';
504
- }
505
- return 'desktop';
506
- }
507
-
508
- private get formatSize(): NumberFormat {
509
- if (
510
- this.mobileBreakpoint &&
511
- this.currentWidth &&
512
- this.currentWidth < this.mobileBreakpoint
513
- ) {
514
- return 'short';
515
- }
516
- return 'long';
517
- }
518
-
519
- static get styles() {
520
- return [
521
- tileActionStyles,
522
- css`
523
- html {
524
- font-size: unset;
525
- }
526
-
527
- div {
528
- font-size: 14px;
529
- }
530
-
531
- div a {
532
- text-decoration: none;
533
- }
534
-
535
- div a:link {
536
- color: var(--ia-theme-link-color, #4b64ff);
537
- }
538
-
539
- .label {
540
- font-weight: bold;
541
- }
542
-
543
- #list-line.mobile {
544
- --infiniteScrollerRowGap: 20px;
545
- --infiniteScrollerRowHeight: auto;
546
- }
547
-
548
- #list-line.desktop {
549
- --infiniteScrollerRowGap: 30px;
550
- --infiniteScrollerRowHeight: auto;
551
- }
552
-
553
- /* fields */
554
- #icon-right {
555
- width: 20px;
556
- padding-top: 5px;
557
- --iconHeight: 20px;
558
- --iconWidth: 20px;
559
- --iconTextAlign: right;
560
- margin-top: -8px;
561
- text-align: right;
562
- }
563
-
564
- #title {
565
- color: #4b64ff;
566
- text-decoration: none;
567
- font-size: 22px;
568
- font-weight: bold;
569
- /* align top of text with image */
570
- line-height: 25px;
571
- margin-top: -4px;
572
- padding-bottom: 2px;
573
- flex-grow: 1;
574
-
575
- display: -webkit-box;
576
- -webkit-box-orient: vertical;
577
- -webkit-line-clamp: 3;
578
- overflow: hidden;
579
- overflow-wrap: anywhere;
580
- }
581
-
582
- .metadata {
583
- line-height: 20px;
584
- }
585
-
586
- #description,
587
- #creator,
588
- #topics,
589
- #source {
590
- text-align: left;
591
- overflow: hidden;
592
- text-overflow: ellipsis;
593
- -webkit-box-orient: vertical;
594
- display: -webkit-box;
595
- word-break: break-word;
596
- -webkit-line-clamp: 3; /* number of lines to show */
597
- line-clamp: 3;
598
-
599
- /*
600
- * Safari doesn't always respect the line-clamping rules above,
601
- * so we add this to ensure these fields still get truncated
602
- */
603
- max-height: 60px;
604
- }
605
-
606
- #collections {
607
- display: -webkit-box;
608
- -webkit-box-orient: vertical;
609
- -webkit-line-clamp: 3;
610
- overflow: hidden;
611
- overflow-wrap: anywhere;
612
- }
613
-
614
- #collections > a {
615
- display: inline-block;
616
- }
617
-
618
- #icon {
619
- padding-top: 5px;
620
- }
621
-
622
- #description {
623
- padding-top: 10px;
624
- }
625
-
626
- /* Top level container */
627
- #list-line {
628
- display: flex;
629
- }
630
-
631
- #list-line.mobile {
632
- flex-direction: column;
633
- }
634
-
635
- #list-line.desktop {
636
- column-gap: 10px;
637
- }
638
-
639
- #list-line-top {
640
- display: flex;
641
- column-gap: 7px;
642
- }
643
-
644
- #list-line-bottom {
645
- padding-top: 4px;
646
- }
647
-
648
- #list-line-right,
649
- #list-line-top,
650
- #list-line-bottom {
651
- width: 100%;
652
- }
653
-
654
- /*
655
- * If the container becomes very tiny, don't let the thumbnail side take
656
- * up too much space. Shouldn't make a difference on ordinary viewport sizes.
657
- */
658
- #list-line-left {
659
- max-width: 25%;
660
-
661
- display: flex;
662
- flex-direction: column;
663
- row-gap: 5px;
664
- }
665
-
666
- div a:hover {
667
- text-decoration: underline;
668
- }
669
-
670
- /* Lines containing multiple div as row */
671
- #item-line,
672
- #dates-line,
673
- #views-line,
674
- #title-line {
675
- display: flex;
676
- flex-direction: row;
677
- column-gap: 10px;
678
- }
679
-
680
- /*
681
- * With the exception of the title line, allow these to wrap if
682
- * the space becomes too small to accommodate them together.
683
- *
684
- * The title line is excluded because it contains the mediatype icon
685
- * which we don't want to wrap.
686
- */
687
- #item-line,
688
- #dates-line,
689
- #views-line {
690
- flex-wrap: wrap;
691
- }
692
-
693
- .capture-dates {
694
- margin: 0;
695
- padding: 0;
696
- list-style-type: none;
697
- }
698
-
699
- .capture-dates a:link {
700
- text-decoration: none;
701
- color: var(--ia-theme-link-color, #4b64ff);
702
- }
703
- .capture-dates a:hover {
704
- text-decoration: underline;
705
- }
706
-
707
- /*
708
- * Tile-list (extended) action row sits under the thumbnail in the left
709
- * column. The image-block above already has its own bottom padding via
710
- * the parent's row-gap, so we don't need extra spacing here.
711
- */
712
- .tile-actions.list-detail {
713
- width: 100%;
714
- }
715
- `,
716
- ];
717
- }
718
- }
1
+ import { css, html, nothing, PropertyValues, TemplateResult } from 'lit';
2
+ import { ifDefined } from 'lit/directives/if-defined.js';
3
+ import { join } from 'lit/directives/join.js';
4
+ import { map } from 'lit/directives/map.js';
5
+ import { unsafeHTML } from 'lit/directives/unsafe-html.js';
6
+ import { customElement, property, state } from 'lit/decorators.js';
7
+ import { msg, str } from '@lit/localize';
8
+ import DOMPurify from 'dompurify';
9
+
10
+ import type { SortParam } from '@internetarchive/search-service';
11
+ import { suppressedCollections } from '../../models';
12
+ import type { CollectionTitles } from '../../data-source/models';
13
+ import { BaseTileComponent } from '../base-tile-component';
14
+
15
+ import { formatCount, NumberFormat } from '../../utils/format-count';
16
+ import type { DateFormat } from '../../utils/format-date';
17
+ import { isFirstMillisecondOfUTCYear } from '../../utils/local-date-from-utc';
18
+ import { tileActionStyles } from '../../styles/tile-action-styles';
19
+
20
+ import '../image-block';
21
+ import '../review-block';
22
+ import '../text-snippet-block';
23
+ import '../tile-mediatype-icon';
24
+
25
+ @customElement('tile-list')
26
+ export class TileList extends BaseTileComponent {
27
+ /*
28
+ * Reactive properties inherited from BaseTileComponent:
29
+ * - model?: TileModel;
30
+ * - tileActions: TileAction[] = [];
31
+ * - currentWidth?: number;
32
+ * - currentHeight?: number;
33
+ * - baseNavigationUrl?: string;
34
+ * - baseImageUrl?: string;
35
+ * - collectionPagePath?: string;
36
+ * - sortParam: SortParam | null = null;
37
+ * - defaultSortParam: SortParam | null = null;
38
+ * - creatorFilter?: string;
39
+ * - mobileBreakpoint?: number;
40
+ * - loggedIn = false;
41
+ * - suppressBlurring = false;
42
+ * - useLocalTime = false;
43
+ */
44
+
45
+ @property({ type: Object })
46
+ collectionTitles?: CollectionTitles;
47
+
48
+ @state() private collectionLinks: (TemplateResult | typeof nothing)[] = [];
49
+
50
+ render() {
51
+ return html`
52
+ <div id="list-line" class="${this.classSize}">
53
+ ${this.classSize === 'mobile'
54
+ ? this.mobileTemplate
55
+ : this.desktopTemplate}
56
+ </div>
57
+ `;
58
+ }
59
+
60
+ /**
61
+ * Templates
62
+ */
63
+ private get mobileTemplate() {
64
+ return html`
65
+ <div id="list-line-top">
66
+ <div id="list-line-left">
67
+ ${this.imageBlockTemplate} ${this.renderTileActions('list-detail')}
68
+ </div>
69
+ <div id="list-line-right">
70
+ <div id="title-line">
71
+ <div id="title">${this.titleTemplate}</div>
72
+ ${this.iconRightTemplate}
73
+ </div>
74
+ </div>
75
+ </div>
76
+ <div id="list-line-bottom">${this.detailsTemplate}</div>
77
+ `;
78
+ }
79
+
80
+ private get desktopTemplate() {
81
+ return html`
82
+ <div id="list-line-left">
83
+ ${this.imageBlockTemplate} ${this.renderTileActions('list-detail')}
84
+ </div>
85
+ <div id="list-line-right">
86
+ <div id="title-line">
87
+ <div id="title">${this.titleTemplate}</div>
88
+ ${this.iconRightTemplate}
89
+ </div>
90
+ ${this.detailsTemplate}
91
+ </div>
92
+ `;
93
+ }
94
+
95
+ private get imageBlockTemplate() {
96
+ if (!this.model) return nothing;
97
+
98
+ const isCollection = this.model.mediatype === 'collection';
99
+ const href = this.displayValueProvider.itemPageUrl(
100
+ this.model.identifier,
101
+ isCollection,
102
+ );
103
+
104
+ return html`<a
105
+ id="image-link"
106
+ title=${msg(str`View ${this.model?.title}`)}
107
+ href=${href}
108
+ >
109
+ <image-block
110
+ .model=${this.model}
111
+ .baseImageUrl=${this.baseImageUrl}
112
+ .isCompactTile=${false}
113
+ .isListTile=${true}
114
+ .viewSize=${this.classSize}
115
+ .loggedIn=${this.loggedIn}
116
+ .suppressBlurring=${this.suppressBlurring}
117
+ >
118
+ </image-block>
119
+ </a> `;
120
+ }
121
+
122
+ private get detailsTemplate() {
123
+ return html`
124
+ ${this.itemLineTemplate} ${this.creatorTemplate}
125
+ <div id="dates-line">
126
+ ${this.datePublishedTemplate} ${this.dateSortByTemplate}
127
+ ${this.webArchivesCaptureDatesTemplate}
128
+ </div>
129
+ <div id="views-line">
130
+ ${this.viewsTemplate} ${this.ratingTemplate} ${this.reviewsTemplate}
131
+ </div>
132
+ ${this.topicsTemplate} ${this.collectionsTemplate}
133
+ ${this.descriptionTemplate} ${this.textSnippetsTemplate}
134
+ ${this.reviewBlockTemplate}
135
+ `;
136
+ }
137
+
138
+ // Data templates
139
+ private get iconRightTemplate() {
140
+ return html`
141
+ <a
142
+ id="icon-right"
143
+ href=${this.mediatypeURL}
144
+ title=${msg(str`See more: ${this.model?.mediatype}`)}
145
+ >
146
+ <tile-mediatype-icon .model=${this.model}> </tile-mediatype-icon>
147
+ </a>
148
+ `;
149
+ }
150
+
151
+ private get titleTemplate() {
152
+ if (!this.model?.title) {
153
+ return nothing;
154
+ }
155
+
156
+ // If the model has a server-specified href, use it
157
+ // Otherwise construct a details link using the identifier
158
+ return this.model?.href
159
+ ? html`<a href="${this.baseNavigationUrl}${this.model.href}"
160
+ >${this.model.title ?? this.model.identifier}</a
161
+ >`
162
+ : this.detailsLink(
163
+ this.model.identifier,
164
+ this.model.title,
165
+ this.model.mediatype === 'collection',
166
+ );
167
+ }
168
+
169
+ private get itemLineTemplate() {
170
+ const source = this.sourceTemplate;
171
+ const volume = this.volumeTemplate;
172
+ const issue = this.issueTemplate;
173
+ if (!source && !volume && !issue) {
174
+ return nothing;
175
+ }
176
+ return html` <div id="item-line">${source} ${volume} ${issue}</div> `;
177
+ }
178
+
179
+ private get sourceTemplate() {
180
+ if (!this.model?.source) {
181
+ return nothing;
182
+ }
183
+ return html`
184
+ <div id="source" class="metadata">
185
+ ${this.labelTemplate(msg('Source'))}
186
+ ${this.searchLink('source', this.model.source)}
187
+ </div>
188
+ `;
189
+ }
190
+
191
+ private get volumeTemplate() {
192
+ return this.metadataTemplate(this.model?.volume, msg('Volume'));
193
+ }
194
+
195
+ private get issueTemplate() {
196
+ return this.metadataTemplate(this.model?.issue, msg('Issue'));
197
+ }
198
+
199
+ private get creatorTemplate() {
200
+ // "Archivist since" if account
201
+ if (this.model?.mediatype === 'account') {
202
+ return html`
203
+ <div id="creator" class="metadata">
204
+ <span class="label"
205
+ >${this.displayValueProvider.accountLabel ?? nothing}</span
206
+ >
207
+ </div>
208
+ `;
209
+ }
210
+ // "Creator" if not account tile
211
+ if (!this.model?.creators || this.model.creators.length === 0) {
212
+ return nothing;
213
+ }
214
+ return html`
215
+ <div id="creator" class="metadata">
216
+ ${this.labelTemplate(msg('By'))}
217
+ ${join(
218
+ map(this.model.creators, id => this.searchLink('creator', id)),
219
+ ', ',
220
+ )}
221
+ </div>
222
+ `;
223
+ }
224
+
225
+ private get datePublishedTemplate() {
226
+ // If we're showing a date published of Jan 1 at midnight, only show the year.
227
+ // This is because items with only a year for their publication date are normalized to
228
+ // Jan 1 at midnight timestamps in the search engine documents.
229
+ const date: Date | undefined = this.model?.datePublished;
230
+ let format: DateFormat = 'long';
231
+ if (isFirstMillisecondOfUTCYear(date)) {
232
+ format = 'year-only';
233
+ }
234
+
235
+ return this.metadataTemplate(
236
+ this.getFormattedDate(date, format),
237
+ msg('Published'),
238
+ );
239
+ }
240
+
241
+ // Show date label/value when sorted by date type
242
+ // Except datePublished which is always shown
243
+ private get dateSortByTemplate() {
244
+ if (
245
+ this.effectiveSort &&
246
+ (this.effectiveSort.field === 'addeddate' ||
247
+ this.effectiveSort.field === 'reviewdate' ||
248
+ this.effectiveSort.field === 'publicdate')
249
+ ) {
250
+ return this.metadataTemplate(
251
+ this.getFormattedDate(this.date, 'long'),
252
+ this.displayValueProvider.dateLabel,
253
+ );
254
+ }
255
+ return nothing;
256
+ }
257
+
258
+ private get viewsTemplate() {
259
+ const isWeeklySort = this.effectiveSort?.field === 'week';
260
+ const viewCount = isWeeklySort
261
+ ? this.model?.weeklyViewCount // weekly views
262
+ : this.model?.viewCount; // all-time views
263
+ if (viewCount == null) return nothing;
264
+
265
+ // when its a search-tile, we don't have any stats to show
266
+ if (this.model?.mediatype === 'search') {
267
+ return this.metadataTemplate('(Favorited search query)', '');
268
+ }
269
+
270
+ return this.metadataTemplate(
271
+ `${formatCount(viewCount, this.formatSize)}`,
272
+ this.displayValueProvider.viewsLabel,
273
+ );
274
+ }
275
+
276
+ private get ratingTemplate() {
277
+ return this.metadataTemplate(this.model?.averageRating, msg('Avg Rating'));
278
+ }
279
+
280
+ private get reviewsTemplate() {
281
+ return this.metadataTemplate(this.model?.commentCount, msg('Reviews'));
282
+ }
283
+
284
+ private get topicsTemplate() {
285
+ if (!this.model?.subjects || this.model.subjects.length === 0) {
286
+ return nothing;
287
+ }
288
+ return html`
289
+ <div id="topics" class="metadata">
290
+ ${this.labelTemplate(msg('Topics'))}
291
+ ${join(
292
+ map(this.model.subjects, id => this.searchLink('subject', id)),
293
+ ', ',
294
+ )}
295
+ </div>
296
+ `;
297
+ }
298
+
299
+ private get collectionsTemplate() {
300
+ if (!this.collectionLinks || this.collectionLinks.length === 0) {
301
+ return nothing;
302
+ }
303
+ return html`
304
+ <div id="collections" class="metadata">
305
+ ${this.labelTemplate(msg('Collections'))}
306
+ ${join(this.collectionLinks, ', ')}
307
+ </div>
308
+ `;
309
+ }
310
+
311
+ private get descriptionTemplate() {
312
+ return this.metadataTemplate(
313
+ // Sanitize away any HTML tags and convert line breaks to spaces.
314
+ unsafeHTML(
315
+ DOMPurify.sanitize(this.model?.description?.replace(/\n/g, ' ') ?? ''),
316
+ ),
317
+ '',
318
+ 'description',
319
+ );
320
+ }
321
+
322
+ private get reviewBlockTemplate(): TemplateResult | typeof nothing {
323
+ if (!this.model?.review) return nothing;
324
+
325
+ const { reviewtitle, reviewbody, stars } = this.model.review;
326
+ return html`
327
+ <review-block
328
+ viewsize="list"
329
+ title=${ifDefined(reviewtitle)}
330
+ body=${ifDefined(reviewbody)}
331
+ starRating=${ifDefined(stars)}
332
+ >
333
+ </review-block>
334
+ `;
335
+ }
336
+
337
+ private get textSnippetsTemplate(): TemplateResult | typeof nothing {
338
+ if (!this.hasSnippets) return nothing;
339
+
340
+ return html`<text-snippet-block
341
+ viewsize="list"
342
+ .snippets=${this.model?.snippets}
343
+ ></text-snippet-block>`;
344
+ }
345
+
346
+ private get hasSnippets(): boolean {
347
+ return !!this.model?.snippets?.length;
348
+ }
349
+
350
+ private get webArchivesCaptureDatesTemplate():
351
+ | TemplateResult
352
+ | typeof nothing {
353
+ if (!this.model?.captureDates || !this.model.title) return nothing;
354
+
355
+ return html`
356
+ <ul class="capture-dates">
357
+ ${map(
358
+ this.model.captureDates,
359
+ date =>
360
+ html`<li>
361
+ ${this.displayValueProvider.webArchivesCaptureLink(
362
+ this.model!.title,
363
+ date,
364
+ )}
365
+ </li>`,
366
+ )}
367
+ </ul>
368
+ `;
369
+ }
370
+
371
+ // Utility functions
372
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
373
+ private metadataTemplate(text: any, label = '', id?: string) {
374
+ if (!text) return nothing;
375
+ return html`
376
+ <div id=${ifDefined(id)} class="metadata">
377
+ ${this.labelTemplate(label)} ${text}
378
+ </div>
379
+ `;
380
+ }
381
+
382
+ private labelTemplate(label: string) {
383
+ return html` ${label
384
+ ? html`<span class="label">${label}: </span>`
385
+ : nothing}`;
386
+ }
387
+
388
+ private searchLink(field: string, searchTerm: string) {
389
+ if (!field || !searchTerm) {
390
+ return nothing;
391
+ }
392
+ const query = encodeURIComponent(`${field}:"${searchTerm}"`);
393
+ // No whitespace after closing tag
394
+ // Note: single ' for href='' to wrap " in query var gets changed back by yarn format
395
+ return html`<a
396
+ href="${this.baseNavigationUrl}/search?query=${query}"
397
+ rel="nofollow"
398
+ >
399
+ ${DOMPurify.sanitize(searchTerm)}</a
400
+ >`;
401
+ }
402
+
403
+ private detailsLink(
404
+ identifier?: string,
405
+ text?: string,
406
+ isCollection = false,
407
+ ): TemplateResult | typeof nothing {
408
+ if (!identifier) return nothing;
409
+
410
+ const linkText = text ?? identifier;
411
+ const linkHref = this.displayValueProvider.itemPageUrl(
412
+ identifier,
413
+ isCollection,
414
+ );
415
+
416
+ return html`<a href=${linkHref}> ${DOMPurify.sanitize(linkText)} </a>`;
417
+ }
418
+
419
+ /** The URL of this item's mediatype collection, if defined. */
420
+ private get mediatypeURL(): string | typeof nothing {
421
+ // NB: baseNavigationUrl can be an empty string
422
+ if (this.baseNavigationUrl === undefined || !this.model?.mediatype)
423
+ return nothing;
424
+
425
+ // Need special handling for certain mediatypes that don't have a top-level collection page
426
+ switch (this.model.mediatype) {
427
+ case 'collection':
428
+ return `${this.baseNavigationUrl}/search?query=mediatype:collection&sort=-downloads`;
429
+ case 'account':
430
+ return nothing;
431
+ default:
432
+ return this.displayValueProvider.itemPageUrl(
433
+ this.model.mediatype,
434
+ true,
435
+ );
436
+ }
437
+ }
438
+
439
+ protected updated(changed: PropertyValues): void {
440
+ if (changed.has('model') || changed.has('collectionTitles')) {
441
+ this.buildCollectionLinks();
442
+ }
443
+ }
444
+
445
+ private async buildCollectionLinks() {
446
+ if (!this.model?.collections || this.model.collections.length === 0) {
447
+ return;
448
+ }
449
+
450
+ // Note: quirk of Lit: need to replace collectionLinks array,
451
+ // otherwise it will not re-render. Can't simply alter the array.
452
+ this.collectionLinks = [];
453
+ const newCollectionLinks: (TemplateResult | typeof nothing)[] = [];
454
+ for (const collection of this.model.collections) {
455
+ // Don't include favorites or collections that are meant to be suppressed
456
+ if (
457
+ !suppressedCollections[collection] &&
458
+ !collection.startsWith('fav-')
459
+ ) {
460
+ newCollectionLinks.push(
461
+ this.detailsLink(
462
+ collection,
463
+ this.collectionTitles?.get(collection) ?? collection,
464
+ true,
465
+ ),
466
+ );
467
+ }
468
+ }
469
+ this.collectionLinks = newCollectionLinks;
470
+ }
471
+
472
+ /*
473
+ * TODO: fix field names to match model in src/collection-browser.ts
474
+ * private get dateSortSelector()
475
+ * @see src/models.ts
476
+ */
477
+ private get date(): Date | undefined {
478
+ switch (this.effectiveSort?.field) {
479
+ case 'date':
480
+ return this.model?.datePublished;
481
+ case 'reviewdate':
482
+ return this.model?.dateReviewed;
483
+ case 'addeddate':
484
+ return this.model?.dateAdded;
485
+ default:
486
+ return this.model?.dateArchived; // publicdate
487
+ }
488
+ }
489
+
490
+ /**
491
+ * Returns the active sort param if one is set, or the default sort param otherwise.
492
+ */
493
+ private get effectiveSort(): SortParam | null {
494
+ return this.sortParam ?? this.defaultSortParam;
495
+ }
496
+
497
+ private get classSize(): string {
498
+ if (
499
+ this.mobileBreakpoint &&
500
+ this.currentWidth &&
501
+ this.currentWidth < this.mobileBreakpoint
502
+ ) {
503
+ return 'mobile';
504
+ }
505
+ return 'desktop';
506
+ }
507
+
508
+ private get formatSize(): NumberFormat {
509
+ if (
510
+ this.mobileBreakpoint &&
511
+ this.currentWidth &&
512
+ this.currentWidth < this.mobileBreakpoint
513
+ ) {
514
+ return 'short';
515
+ }
516
+ return 'long';
517
+ }
518
+
519
+ static get styles() {
520
+ return [
521
+ tileActionStyles,
522
+ css`
523
+ html {
524
+ font-size: unset;
525
+ }
526
+
527
+ div {
528
+ font-size: 14px;
529
+ }
530
+
531
+ div a {
532
+ text-decoration: none;
533
+ }
534
+
535
+ div a:link {
536
+ color: var(--ia-theme-link-color, #4b64ff);
537
+ }
538
+
539
+ .label {
540
+ font-weight: bold;
541
+ }
542
+
543
+ #list-line.mobile {
544
+ --infiniteScrollerRowGap: 20px;
545
+ --infiniteScrollerRowHeight: auto;
546
+ }
547
+
548
+ #list-line.desktop {
549
+ --infiniteScrollerRowGap: 30px;
550
+ --infiniteScrollerRowHeight: auto;
551
+ }
552
+
553
+ /* fields */
554
+ #icon-right {
555
+ width: 20px;
556
+ padding-top: 5px;
557
+ --iconHeight: 20px;
558
+ --iconWidth: 20px;
559
+ --iconTextAlign: right;
560
+ margin-top: -8px;
561
+ text-align: right;
562
+ }
563
+
564
+ #title {
565
+ color: #4b64ff;
566
+ text-decoration: none;
567
+ font-size: 22px;
568
+ font-weight: bold;
569
+ /* align top of text with image */
570
+ line-height: 25px;
571
+ margin-top: -4px;
572
+ padding-bottom: 2px;
573
+ flex-grow: 1;
574
+
575
+ display: -webkit-box;
576
+ -webkit-box-orient: vertical;
577
+ -webkit-line-clamp: 3;
578
+ overflow: hidden;
579
+ overflow-wrap: anywhere;
580
+ }
581
+
582
+ .metadata {
583
+ line-height: 20px;
584
+ }
585
+
586
+ #description,
587
+ #creator,
588
+ #topics,
589
+ #source {
590
+ text-align: left;
591
+ overflow: hidden;
592
+ text-overflow: ellipsis;
593
+ -webkit-box-orient: vertical;
594
+ display: -webkit-box;
595
+ word-break: break-word;
596
+ -webkit-line-clamp: 3; /* number of lines to show */
597
+ line-clamp: 3;
598
+
599
+ /*
600
+ * Safari doesn't always respect the line-clamping rules above,
601
+ * so we add this to ensure these fields still get truncated
602
+ */
603
+ max-height: 60px;
604
+ }
605
+
606
+ #collections {
607
+ display: -webkit-box;
608
+ -webkit-box-orient: vertical;
609
+ -webkit-line-clamp: 3;
610
+ overflow: hidden;
611
+ overflow-wrap: anywhere;
612
+ }
613
+
614
+ #collections > a {
615
+ display: inline-block;
616
+ }
617
+
618
+ #icon {
619
+ padding-top: 5px;
620
+ }
621
+
622
+ #description {
623
+ padding-top: 10px;
624
+ }
625
+
626
+ /* Top level container */
627
+ #list-line {
628
+ display: flex;
629
+ }
630
+
631
+ #list-line.mobile {
632
+ flex-direction: column;
633
+ }
634
+
635
+ #list-line.desktop {
636
+ column-gap: 10px;
637
+ }
638
+
639
+ #list-line-top {
640
+ display: flex;
641
+ column-gap: 7px;
642
+ }
643
+
644
+ #list-line-bottom {
645
+ padding-top: 4px;
646
+ }
647
+
648
+ #list-line-right,
649
+ #list-line-top,
650
+ #list-line-bottom {
651
+ width: 100%;
652
+ }
653
+
654
+ /*
655
+ * If the container becomes very tiny, don't let the thumbnail side take
656
+ * up too much space. Shouldn't make a difference on ordinary viewport sizes.
657
+ */
658
+ #list-line-left {
659
+ max-width: 25%;
660
+
661
+ display: flex;
662
+ flex-direction: column;
663
+ row-gap: 5px;
664
+ }
665
+
666
+ div a:hover {
667
+ text-decoration: underline;
668
+ }
669
+
670
+ /* Lines containing multiple div as row */
671
+ #item-line,
672
+ #dates-line,
673
+ #views-line,
674
+ #title-line {
675
+ display: flex;
676
+ flex-direction: row;
677
+ column-gap: 10px;
678
+ }
679
+
680
+ /*
681
+ * With the exception of the title line, allow these to wrap if
682
+ * the space becomes too small to accommodate them together.
683
+ *
684
+ * The title line is excluded because it contains the mediatype icon
685
+ * which we don't want to wrap.
686
+ */
687
+ #item-line,
688
+ #dates-line,
689
+ #views-line {
690
+ flex-wrap: wrap;
691
+ }
692
+
693
+ .capture-dates {
694
+ margin: 0;
695
+ padding: 0;
696
+ list-style-type: none;
697
+ }
698
+
699
+ .capture-dates a:link {
700
+ text-decoration: none;
701
+ color: var(--ia-theme-link-color, #4b64ff);
702
+ }
703
+ .capture-dates a:hover {
704
+ text-decoration: underline;
705
+ }
706
+
707
+ /*
708
+ * Tile-list (extended) action row sits under the thumbnail in the left
709
+ * column. The image-block above already has its own bottom padding via
710
+ * the parent's row-gap, so we don't need extra spacing here.
711
+ */
712
+ .tile-actions.list-detail {
713
+ width: 100%;
714
+ }
715
+ `,
716
+ ];
717
+ }
718
+ }