@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,637 +1,637 @@
1
- import { css, html, nothing, PropertyValues } from 'lit';
2
- import { customElement, property, query } from 'lit/decorators.js';
3
- import { classMap } from 'lit/directives/class-map.js';
4
- import { ifDefined } from 'lit/directives/if-defined.js';
5
- import { msg } from '@lit/localize';
6
- import type {
7
- SharedResizeObserverInterface,
8
- SharedResizeObserverResizeHandlerInterface,
9
- } from '@internetarchive/shared-resize-observer';
10
- import type { TileDisplayMode } from '../models';
11
- import type { CollectionTitles } from '../data-source/models';
12
- import './grid/collection-tile';
13
- import './grid/item-tile';
14
- import './grid/account-tile';
15
- import './grid/search-tile';
16
- import './hover/tile-hover-pane';
17
- import './list/tile-list';
18
- import './list/tile-list-compact';
19
- import './list/tile-list-compact-header';
20
- import type { TileHoverPane } from './hover/tile-hover-pane';
21
- import { BaseTileComponent } from './base-tile-component';
22
- import { LayoutType } from './models';
23
- import {
24
- HoverPaneController,
25
- HoverPaneControllerInterface,
26
- HoverPaneProperties,
27
- HoverPaneProviderInterface,
28
- } from './hover/hover-pane-controller';
29
- import { srOnlyStyle } from '../styles/sr-only';
30
- import { tileActionStyles } from '../styles/tile-action-styles';
31
-
32
- @customElement('tile-dispatcher')
33
- export class TileDispatcher
34
- extends BaseTileComponent
35
- implements
36
- SharedResizeObserverResizeHandlerInterface,
37
- HoverPaneProviderInterface
38
- {
39
- /*
40
- * Reactive properties inherited from BaseTileComponent:
41
- * - model?: TileModel;
42
- * - tileActions: TileAction[] = [];
43
- * - currentWidth?: number;
44
- * - currentHeight?: number;
45
- * - baseNavigationUrl?: string;
46
- * - baseImageUrl?: string;
47
- * - collectionPagePath?: string;
48
- * - sortParam: SortParam | null = null;
49
- * - defaultSortParam: SortParam | null = null;
50
- * - creatorFilter?: string;
51
- * - mobileBreakpoint?: number;
52
- * - loggedIn = false;
53
- * - suppressTileBlurring = false;
54
- * - useLocalTime = false;
55
- */
56
-
57
- @property({ type: String }) tileDisplayMode?: TileDisplayMode;
58
-
59
- @property({ type: Boolean }) isManageView = false;
60
-
61
- @property({ type: Object }) resizeObserver?: SharedResizeObserverInterface;
62
-
63
- @property({ type: Object })
64
- collectionTitles?: CollectionTitles;
65
-
66
- @property({ type: Boolean }) showTvClips = false;
67
-
68
- /** What type of simplified layout to use in grid mode, if any */
69
- @property({ type: String }) layoutType: LayoutType = 'default';
70
-
71
- /** Whether this tile should include a hover pane at all (for applicable tile modes) */
72
- @property({ type: Boolean }) enableHoverPane = false;
73
-
74
- @property({ type: String }) manageCheckTitle = msg(
75
- 'Remove this item from the list',
76
- );
77
-
78
- private hoverPaneController?: HoverPaneControllerInterface;
79
-
80
- @query('#container')
81
- private container!: HTMLDivElement;
82
-
83
- @query('tile-hover-pane')
84
- private hoverPane?: TileHoverPane;
85
-
86
- @query('.tile-link')
87
- private tileLinkElement?: HTMLAnchorElement;
88
-
89
- acquireFocus(): void {
90
- this.tileLinkElement?.focus();
91
- }
92
-
93
- releaseFocus(): void {
94
- this.tileLinkElement?.blur();
95
- }
96
-
97
- /** Maps each display mode to whether hover panes should appear in that mode */
98
- private static readonly HOVER_PANE_DISPLAY_MODES: Record<
99
- TileDisplayMode,
100
- boolean
101
- > = {
102
- grid: true,
103
- 'list-compact': true,
104
- 'list-detail': false,
105
- 'list-header': false,
106
- };
107
-
108
- render() {
109
- const isGridMode = this.tileDisplayMode === 'grid';
110
- const hasTileActions = isGridMode && this.showGridTileActions;
111
- const hoverPaneTemplate =
112
- this.hoverPaneController?.getTemplate() ?? nothing;
113
- const containerClasses = classMap({
114
- hoverable: isGridMode,
115
- 'has-tile-actions': hasTileActions,
116
- });
117
- return html`
118
- <div id="container" class=${containerClasses}>
119
- ${this.tileDisplayMode === 'list-header'
120
- ? this.headerTemplate
121
- : this.tileTemplate}
122
- ${this.gridTileActionsTemplate} ${this.manageCheckTemplate}
123
- ${hoverPaneTemplate}
124
- </div>
125
- `;
126
- }
127
-
128
- protected firstUpdated(): void {
129
- if (this.shouldPrepareHoverPane) {
130
- this.hoverPaneController = new HoverPaneController(this, {
131
- mobileBreakpoint: this.mobileBreakpoint,
132
- enableLongPress: false,
133
- });
134
- }
135
- }
136
-
137
- private get headerTemplate() {
138
- const { currentWidth, sortParam, defaultSortParam, mobileBreakpoint } =
139
- this;
140
- return html`
141
- <tile-list-compact-header
142
- class="header"
143
- .currentWidth=${currentWidth}
144
- .sortParam=${sortParam ?? defaultSortParam}
145
- .mobileBreakpoint=${mobileBreakpoint}
146
- .tileActions=${this.tileActions}
147
- >
148
- </tile-list-compact-header>
149
- `;
150
- }
151
-
152
- private get tileTemplate() {
153
- return html`
154
- ${this.tileDisplayMode === 'list-detail'
155
- ? this.tile
156
- : this.linkTileTemplate}
157
- `;
158
- }
159
-
160
- private get linkTileTemplate() {
161
- return html`
162
- <a
163
- href=${this.linkTileHref}
164
- aria-label=${this.model?.title ?? 'Untitled item'}
165
- aria-describedby="link-aria-description"
166
- aria-haspopup=${this.shouldPrepareHoverPane ? 'dialog' : 'false'}
167
- title=${this.shouldPrepareHoverPane
168
- ? nothing // Don't show title tooltips when we have the tile info popups
169
- : ifDefined(this.model?.title)}
170
- @click=${this.handleLinkClicked}
171
- @contextmenu=${this.handleLinkContextMenu}
172
- class="tile-link"
173
- >
174
- ${this.tile}
175
- </a>
176
- <div id="link-aria-description" class="sr-only">
177
- ${msg('Press Down Arrow to preview item details')}
178
- </div>
179
- `;
180
- }
181
-
182
- private get linkTileHref(): string | typeof nothing {
183
- if (!this.model?.identifier || this.baseNavigationUrl == null)
184
- return nothing;
185
-
186
- // Use the server-specified href if available.
187
- // Otherwise, construct a details page URL from the item identifier.
188
- if (this.model.href) {
189
- return `${this.baseNavigationUrl}${this.model.href}`;
190
- }
191
-
192
- return this.displayValueProvider.itemPageUrl(
193
- this.model.identifier,
194
- this.model.mediatype === 'collection',
195
- );
196
- }
197
-
198
- private get manageCheckTemplate() {
199
- if (!this.isManageView || this.tileDisplayMode !== 'grid') return nothing;
200
-
201
- return html`
202
- <div class="manage-check">
203
- <input
204
- type="checkbox"
205
- title=${this.manageCheckTitle}
206
- ?checked=${this.model?.checked}
207
- @change=${this.handleLinkClicked}
208
- />
209
- </div>
210
- `;
211
- }
212
-
213
- /**
214
- * Whether hover pane behavior should be prepared for this tile
215
- * (e.g., whether mouse listeners should be attached, etc.)
216
- */
217
- private get shouldPrepareHoverPane(): boolean {
218
- return (
219
- this.enableHoverPane &&
220
- !!this.tileDisplayMode &&
221
- TileDispatcher.HOVER_PANE_DISPLAY_MODES[this.tileDisplayMode] &&
222
- this.model?.mediatype !== 'search' && // don't show hover panes on search tiles
223
- !this.model?.captureDates // don't show hover panes on web archive tiles
224
- );
225
- }
226
-
227
- private get isHoverEnabled(): boolean {
228
- return window.matchMedia('(hover: hover)').matches;
229
- }
230
-
231
- /**
232
- * Whether the info button should be shown on this tile.
233
- * Only shown on touch/non-hover devices where a hover pane is available,
234
- * so the button always has something to toggle.
235
- */
236
- private get shouldShowInfoButton(): boolean {
237
- return !this.isHoverEnabled && this.shouldPrepareHoverPane;
238
- }
239
-
240
- /** @inheritdoc */
241
- getHoverPane(): TileHoverPane | undefined {
242
- return this.hoverPane;
243
- }
244
-
245
- /** @inheritdoc */
246
- getHoverPaneProps(): HoverPaneProperties {
247
- return this;
248
- }
249
-
250
- handleResize(entry: ResizeObserverEntry): void {
251
- this.currentWidth = entry.contentRect.width;
252
- this.currentHeight = entry.contentRect.height;
253
- }
254
-
255
- disconnectedCallback(): void {
256
- this.stopResizeObservation(this.resizeObserver);
257
- }
258
-
259
- private stopResizeObservation(observer?: SharedResizeObserverInterface) {
260
- observer?.removeObserver({
261
- handler: this,
262
- target: this.container,
263
- });
264
- }
265
-
266
- private startResizeObservation() {
267
- this.stopResizeObservation(this.resizeObserver);
268
- this.resizeObserver?.addObserver({
269
- handler: this,
270
- target: this.container,
271
- });
272
- }
273
-
274
- updated(props: PropertyValues) {
275
- if (props.has('resizeObserver')) {
276
- const previousObserver = props.get(
277
- 'resizeObserver',
278
- ) as SharedResizeObserverInterface;
279
- this.stopResizeObservation(previousObserver);
280
- this.startResizeObservation();
281
- }
282
- }
283
-
284
- /**
285
- * Handler for when the tile link is left-clicked. Emits the `resultSelected` event.
286
- * In manage view, it also checks/unchecks the tile.
287
- */
288
- private handleLinkClicked(e: Event): void {
289
- if (this.isManageView) {
290
- e.preventDefault();
291
- if (this.model) this.model.checked = !this.model.checked;
292
- }
293
-
294
- this.dispatchEvent(
295
- new CustomEvent('resultSelected', { detail: this.model }),
296
- );
297
- }
298
-
299
- /**
300
- * Handler for when the tile link is right-clicked.
301
- * In manage view, it opens the item in a new tab. Otherwise, does nothing.
302
- */
303
- private handleLinkContextMenu(e: Event): void {
304
- if (this.isManageView && this.linkTileHref !== nothing) {
305
- e.preventDefault();
306
- window.open(this.linkTileHref, '_blank');
307
- }
308
- }
309
-
310
- private tileInfoButtonPressed(
311
- e: CustomEvent<{ x: number; y: number }>,
312
- ): void {
313
- this.hoverPaneController?.toggleHoverPane({
314
- coords: e.detail,
315
- enableTouchBackdrop: true,
316
- });
317
- }
318
-
319
- /** Whether tile action buttons should be rendered in grid mode */
320
- private get showGridTileActions(): boolean {
321
- return (
322
- this.tileActions.length > 0 &&
323
- !this.isManageView &&
324
- this.tileDisplayMode === 'grid'
325
- );
326
- }
327
-
328
- /**
329
- * Template for the grid-mode action buttons. Rendered alongside the inner
330
- * tile link inside the dispatcher's shadow root so the action buttons can
331
- * suppress the hover pane on hover.
332
- */
333
- private get gridTileActionsTemplate() {
334
- if (!this.showGridTileActions) return nothing;
335
-
336
- return html`
337
- <div
338
- class="tile-actions grid-tile-actions"
339
- @mouseenter=${this.handleGridActionsMouseEnter}
340
- @mousemove=${(e: Event) => e.stopPropagation()}
341
- >
342
- ${this.tileActions.map(
343
- action => html`
344
- <button
345
- class="tile-action-btn"
346
- @click=${(e: Event) => this.handleTileActionClick(e, action)}
347
- >
348
- ${action.label}
349
- </button>
350
- `,
351
- )}
352
- </div>
353
- `;
354
- }
355
-
356
- /**
357
- * When the mouse enters the grid-mode tile actions area, dispatch a
358
- * synthetic mouseleave on the host to cancel the hover pane's show timer
359
- * and hide any visible pane.
360
- */
361
- private handleGridActionsMouseEnter = (): void => {
362
- this.dispatchEvent(new MouseEvent('mouseleave', { bubbles: false }));
363
- };
364
-
365
- private get tile() {
366
- const {
367
- model,
368
- collectionPagePath,
369
- baseNavigationUrl,
370
- currentWidth,
371
- currentHeight,
372
- sortParam,
373
- creatorFilter,
374
- mobileBreakpoint,
375
- defaultSortParam,
376
- } = this;
377
-
378
- if (!model) return nothing;
379
-
380
- switch (this.tileDisplayMode) {
381
- case 'grid':
382
- switch (model.mediatype) {
383
- case 'collection':
384
- return html`<collection-tile
385
- .model=${model}
386
- .collectionPagePath=${collectionPagePath}
387
- .baseImageUrl=${this.baseImageUrl}
388
- .currentWidth=${currentWidth}
389
- .currentHeight=${currentHeight}
390
- .creatorFilter=${creatorFilter}
391
- .suppressBlurring=${this.suppressBlurring}
392
- .isManageView=${this.isManageView}
393
- .layoutType=${this.layoutType}
394
- ?showInfoButton=${this.shouldShowInfoButton}
395
- @infoButtonPressed=${this.tileInfoButtonPressed}
396
- >
397
- </collection-tile>`;
398
- case 'account':
399
- return html`<account-tile
400
- .model=${model}
401
- .collectionPagePath=${collectionPagePath}
402
- .baseImageUrl=${this.baseImageUrl}
403
- .currentWidth=${currentWidth}
404
- .currentHeight=${currentHeight}
405
- .creatorFilter=${creatorFilter}
406
- .suppressBlurring=${this.suppressBlurring}
407
- .isManageView=${this.isManageView}
408
- ?showInfoButton=${this.shouldShowInfoButton}
409
- @infoButtonPressed=${this.tileInfoButtonPressed}
410
- >
411
- </account-tile>`;
412
- case 'search':
413
- return html`<search-tile
414
- .model=${model}
415
- .collectionPagePath=${collectionPagePath}
416
- .baseImageUrl=${this.baseImageUrl}
417
- .currentWidth=${currentWidth}
418
- .currentHeight=${currentHeight}
419
- .creatorFilter=${creatorFilter}
420
- .suppressBlurring=${this.suppressBlurring}
421
- .isManageView=${this.isManageView}
422
- ?showInfoButton=${false}
423
- @infoButtonPressed=${this.tileInfoButtonPressed}
424
- >
425
- </search-tile>`;
426
- default:
427
- return html`<item-tile
428
- .model=${model}
429
- .collectionPagePath=${collectionPagePath}
430
- .currentWidth=${this.currentWidth}
431
- .currentHeight=${this.currentHeight}
432
- .baseImageUrl=${this.baseImageUrl}
433
- .sortParam=${sortParam}
434
- .defaultSortParam=${defaultSortParam}
435
- .creatorFilter=${creatorFilter}
436
- .loggedIn=${this.loggedIn}
437
- .suppressBlurring=${this.suppressBlurring}
438
- .isManageView=${this.isManageView}
439
- .layoutType=${this.layoutType}
440
- ?showTvClips=${this.showTvClips}
441
- ?showInfoButton=${this.shouldShowInfoButton}
442
- ?useLocalTime=${this.useLocalTime}
443
- @infoButtonPressed=${this.tileInfoButtonPressed}
444
- >
445
- </item-tile>`;
446
- }
447
- case 'list-compact':
448
- return html`<tile-list-compact
449
- .model=${model}
450
- .collectionPagePath=${collectionPagePath}
451
- .currentWidth=${currentWidth}
452
- .currentHeight=${currentHeight}
453
- .baseNavigationUrl=${baseNavigationUrl}
454
- .sortParam=${sortParam}
455
- .defaultSortParam=${defaultSortParam}
456
- .creatorFilter=${creatorFilter}
457
- .mobileBreakpoint=${mobileBreakpoint}
458
- .baseImageUrl=${this.baseImageUrl}
459
- .loggedIn=${this.loggedIn}
460
- .suppressBlurring=${this.suppressBlurring}
461
- .tileActions=${this.isManageView ? [] : this.tileActions}
462
- ?useLocalTime=${this.useLocalTime}
463
- >
464
- </tile-list-compact>`;
465
- case 'list-detail':
466
- return html`<tile-list
467
- .model=${model}
468
- .collectionPagePath=${collectionPagePath}
469
- .collectionTitles=${this.collectionTitles}
470
- .currentWidth=${currentWidth}
471
- .currentHeight=${currentHeight}
472
- .baseNavigationUrl=${baseNavigationUrl}
473
- .sortParam=${sortParam}
474
- .defaultSortParam=${defaultSortParam}
475
- .creatorFilter=${creatorFilter}
476
- .mobileBreakpoint=${mobileBreakpoint}
477
- .baseImageUrl=${this.baseImageUrl}
478
- .loggedIn=${this.loggedIn}
479
- .suppressBlurring=${this.suppressBlurring}
480
- .tileActions=${this.isManageView ? [] : this.tileActions}
481
- ?useLocalTime=${this.useLocalTime}
482
- >
483
- </tile-list>`;
484
- default:
485
- return nothing;
486
- }
487
- }
488
-
489
- static get styles() {
490
- return [
491
- srOnlyStyle,
492
- tileActionStyles,
493
- css`
494
- :host {
495
- display: block;
496
- height: 100%;
497
- }
498
-
499
- collection-tile {
500
- --tileBorderColor: #555555;
501
- --tileBackgroundColor: #666666;
502
- --imageBlockBackgroundColor: #666666;
503
- }
504
-
505
- account-tile {
506
- --tileBorderColor: #dddddd;
507
- --imageBlockBackgroundColor: #fcf5e6;
508
- }
509
-
510
- item-tile {
511
- --tileBorderColor: #dddddd;
512
- --imageBlockBackgroundColor: #f1f1f4;
513
- }
514
-
515
- search-tile {
516
- --tileBorderColor: #555555;
517
- --tileBackgroundColor: #666666;
518
- --imageBlockBackgroundColor: #666666;
519
- --iconFillColor: #2c2c2c;
520
- }
521
-
522
- #container {
523
- position: relative;
524
- height: 100%;
525
- border-radius: 4px;
526
- }
527
-
528
- /*
529
- * When tile actions are present, the container takes on the role of
530
- * the tile's visual card so the tile content and action row appear
531
- * as a single unified element. The inner tile's own shadow/radius
532
- * are disabled via CSS variable overrides to avoid visual
533
- * duplication, and the action row sits as a footer inside the same
534
- * card.
535
- */
536
- #container.has-tile-actions {
537
- display: flex;
538
- flex-direction: column;
539
- overflow: hidden;
540
- box-shadow: var(--tileShadow, 1px 1px 2px 0);
541
- --tileBoxShadow: none;
542
- --tileCornerRadius: 0;
543
- }
544
-
545
- #container.has-tile-actions .tile-link {
546
- flex: 1;
547
- min-height: 0;
548
- overflow: hidden;
549
- border-radius: 0;
550
- }
551
-
552
- /* Normal hover shadow lives on the inner anchor for plain tiles */
553
- #container.hoverable:not(.has-tile-actions) a:focus,
554
- #container.hoverable:not(.has-tile-actions) a:hover {
555
- box-shadow: var(
556
- --tileHoverBoxShadow,
557
- 0 0 6px 2px rgba(8, 8, 32, 0.8)
558
- );
559
- transition: box-shadow 0.1s ease;
560
- }
561
-
562
- /*
563
- * When the container owns the card visuals, the hover shadow needs
564
- * to move up to the container so it wraps the action row too.
565
- */
566
- #container.hoverable.has-tile-actions:hover {
567
- box-shadow: var(
568
- --tileHoverBoxShadow,
569
- 0 0 6px 2px rgba(8, 8, 32, 0.8)
570
- );
571
- transition: box-shadow 0.1s ease;
572
- }
573
-
574
- a {
575
- display: block;
576
- height: 100%;
577
- color: unset;
578
- text-decoration: none;
579
- transition: transform 0.05s ease;
580
- border-radius: 4px;
581
- outline: none;
582
- }
583
-
584
- a :first-child {
585
- display: block;
586
- height: 100%;
587
- }
588
-
589
- .manage-check {
590
- position: absolute;
591
- right: 0;
592
- top: 0;
593
- border: 5px solid #2c2c2c;
594
- border-radius: 3px;
595
- background-color: #2c2c2c;
596
- z-index: 1;
597
- }
598
-
599
- .manage-check > input[type='checkbox'] {
600
- display: block;
601
- margin: 0;
602
- }
603
-
604
- #touch-backdrop {
605
- position: fixed;
606
- width: 100vw;
607
- height: 100vh;
608
- top: 0;
609
- left: 0;
610
- z-index: 2;
611
- background: transparent;
612
- }
613
-
614
- tile-hover-pane {
615
- position: absolute;
616
- top: 0;
617
- left: -9999px;
618
- z-index: 2;
619
- }
620
-
621
- /*
622
- * Grid-mode action row sits flush against the bottom of the card —
623
- * the buttons' own borders form the visible bottom edge. The outer
624
- * buttons get rounded bottom corners to match the container so the
625
- * red border traces cleanly around the card's bottom corners.
626
- */
627
- .grid-tile-actions .tile-action-btn:first-child {
628
- border-bottom-left-radius: 4px;
629
- }
630
-
631
- .grid-tile-actions .tile-action-btn:last-child {
632
- border-bottom-right-radius: 4px;
633
- }
634
- `,
635
- ];
636
- }
637
- }
1
+ import { css, html, nothing, PropertyValues } from 'lit';
2
+ import { customElement, property, query } from 'lit/decorators.js';
3
+ import { classMap } from 'lit/directives/class-map.js';
4
+ import { ifDefined } from 'lit/directives/if-defined.js';
5
+ import { msg } from '@lit/localize';
6
+ import type {
7
+ SharedResizeObserverInterface,
8
+ SharedResizeObserverResizeHandlerInterface,
9
+ } from '@internetarchive/shared-resize-observer';
10
+ import type { TileDisplayMode } from '../models';
11
+ import type { CollectionTitles } from '../data-source/models';
12
+ import './grid/collection-tile';
13
+ import './grid/item-tile';
14
+ import './grid/account-tile';
15
+ import './grid/search-tile';
16
+ import './hover/tile-hover-pane';
17
+ import './list/tile-list';
18
+ import './list/tile-list-compact';
19
+ import './list/tile-list-compact-header';
20
+ import type { TileHoverPane } from './hover/tile-hover-pane';
21
+ import { BaseTileComponent } from './base-tile-component';
22
+ import { LayoutType } from './models';
23
+ import {
24
+ HoverPaneController,
25
+ HoverPaneControllerInterface,
26
+ HoverPaneProperties,
27
+ HoverPaneProviderInterface,
28
+ } from './hover/hover-pane-controller';
29
+ import { srOnlyStyle } from '../styles/sr-only';
30
+ import { tileActionStyles } from '../styles/tile-action-styles';
31
+
32
+ @customElement('tile-dispatcher')
33
+ export class TileDispatcher
34
+ extends BaseTileComponent
35
+ implements
36
+ SharedResizeObserverResizeHandlerInterface,
37
+ HoverPaneProviderInterface
38
+ {
39
+ /*
40
+ * Reactive properties inherited from BaseTileComponent:
41
+ * - model?: TileModel;
42
+ * - tileActions: TileAction[] = [];
43
+ * - currentWidth?: number;
44
+ * - currentHeight?: number;
45
+ * - baseNavigationUrl?: string;
46
+ * - baseImageUrl?: string;
47
+ * - collectionPagePath?: string;
48
+ * - sortParam: SortParam | null = null;
49
+ * - defaultSortParam: SortParam | null = null;
50
+ * - creatorFilter?: string;
51
+ * - mobileBreakpoint?: number;
52
+ * - loggedIn = false;
53
+ * - suppressTileBlurring = false;
54
+ * - useLocalTime = false;
55
+ */
56
+
57
+ @property({ type: String }) tileDisplayMode?: TileDisplayMode;
58
+
59
+ @property({ type: Boolean }) isManageView = false;
60
+
61
+ @property({ type: Object }) resizeObserver?: SharedResizeObserverInterface;
62
+
63
+ @property({ type: Object })
64
+ collectionTitles?: CollectionTitles;
65
+
66
+ @property({ type: Boolean }) showTvClips = false;
67
+
68
+ /** What type of simplified layout to use in grid mode, if any */
69
+ @property({ type: String }) layoutType: LayoutType = 'default';
70
+
71
+ /** Whether this tile should include a hover pane at all (for applicable tile modes) */
72
+ @property({ type: Boolean }) enableHoverPane = false;
73
+
74
+ @property({ type: String }) manageCheckTitle = msg(
75
+ 'Remove this item from the list',
76
+ );
77
+
78
+ private hoverPaneController?: HoverPaneControllerInterface;
79
+
80
+ @query('#container')
81
+ private container!: HTMLDivElement;
82
+
83
+ @query('tile-hover-pane')
84
+ private hoverPane?: TileHoverPane;
85
+
86
+ @query('.tile-link')
87
+ private tileLinkElement?: HTMLAnchorElement;
88
+
89
+ acquireFocus(): void {
90
+ this.tileLinkElement?.focus();
91
+ }
92
+
93
+ releaseFocus(): void {
94
+ this.tileLinkElement?.blur();
95
+ }
96
+
97
+ /** Maps each display mode to whether hover panes should appear in that mode */
98
+ private static readonly HOVER_PANE_DISPLAY_MODES: Record<
99
+ TileDisplayMode,
100
+ boolean
101
+ > = {
102
+ grid: true,
103
+ 'list-compact': true,
104
+ 'list-detail': false,
105
+ 'list-header': false,
106
+ };
107
+
108
+ render() {
109
+ const isGridMode = this.tileDisplayMode === 'grid';
110
+ const hasTileActions = isGridMode && this.showGridTileActions;
111
+ const hoverPaneTemplate =
112
+ this.hoverPaneController?.getTemplate() ?? nothing;
113
+ const containerClasses = classMap({
114
+ hoverable: isGridMode,
115
+ 'has-tile-actions': hasTileActions,
116
+ });
117
+ return html`
118
+ <div id="container" class=${containerClasses}>
119
+ ${this.tileDisplayMode === 'list-header'
120
+ ? this.headerTemplate
121
+ : this.tileTemplate}
122
+ ${this.gridTileActionsTemplate} ${this.manageCheckTemplate}
123
+ ${hoverPaneTemplate}
124
+ </div>
125
+ `;
126
+ }
127
+
128
+ protected firstUpdated(): void {
129
+ if (this.shouldPrepareHoverPane) {
130
+ this.hoverPaneController = new HoverPaneController(this, {
131
+ mobileBreakpoint: this.mobileBreakpoint,
132
+ enableLongPress: false,
133
+ });
134
+ }
135
+ }
136
+
137
+ private get headerTemplate() {
138
+ const { currentWidth, sortParam, defaultSortParam, mobileBreakpoint } =
139
+ this;
140
+ return html`
141
+ <tile-list-compact-header
142
+ class="header"
143
+ .currentWidth=${currentWidth}
144
+ .sortParam=${sortParam ?? defaultSortParam}
145
+ .mobileBreakpoint=${mobileBreakpoint}
146
+ .tileActions=${this.tileActions}
147
+ >
148
+ </tile-list-compact-header>
149
+ `;
150
+ }
151
+
152
+ private get tileTemplate() {
153
+ return html`
154
+ ${this.tileDisplayMode === 'list-detail'
155
+ ? this.tile
156
+ : this.linkTileTemplate}
157
+ `;
158
+ }
159
+
160
+ private get linkTileTemplate() {
161
+ return html`
162
+ <a
163
+ href=${this.linkTileHref}
164
+ aria-label=${this.model?.title ?? 'Untitled item'}
165
+ aria-describedby="link-aria-description"
166
+ aria-haspopup=${this.shouldPrepareHoverPane ? 'dialog' : 'false'}
167
+ title=${this.shouldPrepareHoverPane
168
+ ? nothing // Don't show title tooltips when we have the tile info popups
169
+ : ifDefined(this.model?.title)}
170
+ @click=${this.handleLinkClicked}
171
+ @contextmenu=${this.handleLinkContextMenu}
172
+ class="tile-link"
173
+ >
174
+ ${this.tile}
175
+ </a>
176
+ <div id="link-aria-description" class="sr-only">
177
+ ${msg('Press Down Arrow to preview item details')}
178
+ </div>
179
+ `;
180
+ }
181
+
182
+ private get linkTileHref(): string | typeof nothing {
183
+ if (!this.model?.identifier || this.baseNavigationUrl == null)
184
+ return nothing;
185
+
186
+ // Use the server-specified href if available.
187
+ // Otherwise, construct a details page URL from the item identifier.
188
+ if (this.model.href) {
189
+ return `${this.baseNavigationUrl}${this.model.href}`;
190
+ }
191
+
192
+ return this.displayValueProvider.itemPageUrl(
193
+ this.model.identifier,
194
+ this.model.mediatype === 'collection',
195
+ );
196
+ }
197
+
198
+ private get manageCheckTemplate() {
199
+ if (!this.isManageView || this.tileDisplayMode !== 'grid') return nothing;
200
+
201
+ return html`
202
+ <div class="manage-check">
203
+ <input
204
+ type="checkbox"
205
+ title=${this.manageCheckTitle}
206
+ ?checked=${this.model?.checked}
207
+ @change=${this.handleLinkClicked}
208
+ />
209
+ </div>
210
+ `;
211
+ }
212
+
213
+ /**
214
+ * Whether hover pane behavior should be prepared for this tile
215
+ * (e.g., whether mouse listeners should be attached, etc.)
216
+ */
217
+ private get shouldPrepareHoverPane(): boolean {
218
+ return (
219
+ this.enableHoverPane &&
220
+ !!this.tileDisplayMode &&
221
+ TileDispatcher.HOVER_PANE_DISPLAY_MODES[this.tileDisplayMode] &&
222
+ this.model?.mediatype !== 'search' && // don't show hover panes on search tiles
223
+ !this.model?.captureDates // don't show hover panes on web archive tiles
224
+ );
225
+ }
226
+
227
+ private get isHoverEnabled(): boolean {
228
+ return window.matchMedia('(hover: hover)').matches;
229
+ }
230
+
231
+ /**
232
+ * Whether the info button should be shown on this tile.
233
+ * Only shown on touch/non-hover devices where a hover pane is available,
234
+ * so the button always has something to toggle.
235
+ */
236
+ private get shouldShowInfoButton(): boolean {
237
+ return !this.isHoverEnabled && this.shouldPrepareHoverPane;
238
+ }
239
+
240
+ /** @inheritdoc */
241
+ getHoverPane(): TileHoverPane | undefined {
242
+ return this.hoverPane;
243
+ }
244
+
245
+ /** @inheritdoc */
246
+ getHoverPaneProps(): HoverPaneProperties {
247
+ return this;
248
+ }
249
+
250
+ handleResize(entry: ResizeObserverEntry): void {
251
+ this.currentWidth = entry.contentRect.width;
252
+ this.currentHeight = entry.contentRect.height;
253
+ }
254
+
255
+ disconnectedCallback(): void {
256
+ this.stopResizeObservation(this.resizeObserver);
257
+ }
258
+
259
+ private stopResizeObservation(observer?: SharedResizeObserverInterface) {
260
+ observer?.removeObserver({
261
+ handler: this,
262
+ target: this.container,
263
+ });
264
+ }
265
+
266
+ private startResizeObservation() {
267
+ this.stopResizeObservation(this.resizeObserver);
268
+ this.resizeObserver?.addObserver({
269
+ handler: this,
270
+ target: this.container,
271
+ });
272
+ }
273
+
274
+ updated(props: PropertyValues) {
275
+ if (props.has('resizeObserver')) {
276
+ const previousObserver = props.get(
277
+ 'resizeObserver',
278
+ ) as SharedResizeObserverInterface;
279
+ this.stopResizeObservation(previousObserver);
280
+ this.startResizeObservation();
281
+ }
282
+ }
283
+
284
+ /**
285
+ * Handler for when the tile link is left-clicked. Emits the `resultSelected` event.
286
+ * In manage view, it also checks/unchecks the tile.
287
+ */
288
+ private handleLinkClicked(e: Event): void {
289
+ if (this.isManageView) {
290
+ e.preventDefault();
291
+ if (this.model) this.model.checked = !this.model.checked;
292
+ }
293
+
294
+ this.dispatchEvent(
295
+ new CustomEvent('resultSelected', { detail: this.model }),
296
+ );
297
+ }
298
+
299
+ /**
300
+ * Handler for when the tile link is right-clicked.
301
+ * In manage view, it opens the item in a new tab. Otherwise, does nothing.
302
+ */
303
+ private handleLinkContextMenu(e: Event): void {
304
+ if (this.isManageView && this.linkTileHref !== nothing) {
305
+ e.preventDefault();
306
+ window.open(this.linkTileHref, '_blank');
307
+ }
308
+ }
309
+
310
+ private tileInfoButtonPressed(
311
+ e: CustomEvent<{ x: number; y: number }>,
312
+ ): void {
313
+ this.hoverPaneController?.toggleHoverPane({
314
+ coords: e.detail,
315
+ enableTouchBackdrop: true,
316
+ });
317
+ }
318
+
319
+ /** Whether tile action buttons should be rendered in grid mode */
320
+ private get showGridTileActions(): boolean {
321
+ return (
322
+ this.tileActions.length > 0 &&
323
+ !this.isManageView &&
324
+ this.tileDisplayMode === 'grid'
325
+ );
326
+ }
327
+
328
+ /**
329
+ * Template for the grid-mode action buttons. Rendered alongside the inner
330
+ * tile link inside the dispatcher's shadow root so the action buttons can
331
+ * suppress the hover pane on hover.
332
+ */
333
+ private get gridTileActionsTemplate() {
334
+ if (!this.showGridTileActions) return nothing;
335
+
336
+ return html`
337
+ <div
338
+ class="tile-actions grid-tile-actions"
339
+ @mouseenter=${this.handleGridActionsMouseEnter}
340
+ @mousemove=${(e: Event) => e.stopPropagation()}
341
+ >
342
+ ${this.tileActions.map(
343
+ action => html`
344
+ <button
345
+ class="tile-action-btn"
346
+ @click=${(e: Event) => this.handleTileActionClick(e, action)}
347
+ >
348
+ ${action.label}
349
+ </button>
350
+ `,
351
+ )}
352
+ </div>
353
+ `;
354
+ }
355
+
356
+ /**
357
+ * When the mouse enters the grid-mode tile actions area, dispatch a
358
+ * synthetic mouseleave on the host to cancel the hover pane's show timer
359
+ * and hide any visible pane.
360
+ */
361
+ private handleGridActionsMouseEnter = (): void => {
362
+ this.dispatchEvent(new MouseEvent('mouseleave', { bubbles: false }));
363
+ };
364
+
365
+ private get tile() {
366
+ const {
367
+ model,
368
+ collectionPagePath,
369
+ baseNavigationUrl,
370
+ currentWidth,
371
+ currentHeight,
372
+ sortParam,
373
+ creatorFilter,
374
+ mobileBreakpoint,
375
+ defaultSortParam,
376
+ } = this;
377
+
378
+ if (!model) return nothing;
379
+
380
+ switch (this.tileDisplayMode) {
381
+ case 'grid':
382
+ switch (model.mediatype) {
383
+ case 'collection':
384
+ return html`<collection-tile
385
+ .model=${model}
386
+ .collectionPagePath=${collectionPagePath}
387
+ .baseImageUrl=${this.baseImageUrl}
388
+ .currentWidth=${currentWidth}
389
+ .currentHeight=${currentHeight}
390
+ .creatorFilter=${creatorFilter}
391
+ .suppressBlurring=${this.suppressBlurring}
392
+ .isManageView=${this.isManageView}
393
+ .layoutType=${this.layoutType}
394
+ ?showInfoButton=${this.shouldShowInfoButton}
395
+ @infoButtonPressed=${this.tileInfoButtonPressed}
396
+ >
397
+ </collection-tile>`;
398
+ case 'account':
399
+ return html`<account-tile
400
+ .model=${model}
401
+ .collectionPagePath=${collectionPagePath}
402
+ .baseImageUrl=${this.baseImageUrl}
403
+ .currentWidth=${currentWidth}
404
+ .currentHeight=${currentHeight}
405
+ .creatorFilter=${creatorFilter}
406
+ .suppressBlurring=${this.suppressBlurring}
407
+ .isManageView=${this.isManageView}
408
+ ?showInfoButton=${this.shouldShowInfoButton}
409
+ @infoButtonPressed=${this.tileInfoButtonPressed}
410
+ >
411
+ </account-tile>`;
412
+ case 'search':
413
+ return html`<search-tile
414
+ .model=${model}
415
+ .collectionPagePath=${collectionPagePath}
416
+ .baseImageUrl=${this.baseImageUrl}
417
+ .currentWidth=${currentWidth}
418
+ .currentHeight=${currentHeight}
419
+ .creatorFilter=${creatorFilter}
420
+ .suppressBlurring=${this.suppressBlurring}
421
+ .isManageView=${this.isManageView}
422
+ ?showInfoButton=${false}
423
+ @infoButtonPressed=${this.tileInfoButtonPressed}
424
+ >
425
+ </search-tile>`;
426
+ default:
427
+ return html`<item-tile
428
+ .model=${model}
429
+ .collectionPagePath=${collectionPagePath}
430
+ .currentWidth=${this.currentWidth}
431
+ .currentHeight=${this.currentHeight}
432
+ .baseImageUrl=${this.baseImageUrl}
433
+ .sortParam=${sortParam}
434
+ .defaultSortParam=${defaultSortParam}
435
+ .creatorFilter=${creatorFilter}
436
+ .loggedIn=${this.loggedIn}
437
+ .suppressBlurring=${this.suppressBlurring}
438
+ .isManageView=${this.isManageView}
439
+ .layoutType=${this.layoutType}
440
+ ?showTvClips=${this.showTvClips}
441
+ ?showInfoButton=${this.shouldShowInfoButton}
442
+ ?useLocalTime=${this.useLocalTime}
443
+ @infoButtonPressed=${this.tileInfoButtonPressed}
444
+ >
445
+ </item-tile>`;
446
+ }
447
+ case 'list-compact':
448
+ return html`<tile-list-compact
449
+ .model=${model}
450
+ .collectionPagePath=${collectionPagePath}
451
+ .currentWidth=${currentWidth}
452
+ .currentHeight=${currentHeight}
453
+ .baseNavigationUrl=${baseNavigationUrl}
454
+ .sortParam=${sortParam}
455
+ .defaultSortParam=${defaultSortParam}
456
+ .creatorFilter=${creatorFilter}
457
+ .mobileBreakpoint=${mobileBreakpoint}
458
+ .baseImageUrl=${this.baseImageUrl}
459
+ .loggedIn=${this.loggedIn}
460
+ .suppressBlurring=${this.suppressBlurring}
461
+ .tileActions=${this.isManageView ? [] : this.tileActions}
462
+ ?useLocalTime=${this.useLocalTime}
463
+ >
464
+ </tile-list-compact>`;
465
+ case 'list-detail':
466
+ return html`<tile-list
467
+ .model=${model}
468
+ .collectionPagePath=${collectionPagePath}
469
+ .collectionTitles=${this.collectionTitles}
470
+ .currentWidth=${currentWidth}
471
+ .currentHeight=${currentHeight}
472
+ .baseNavigationUrl=${baseNavigationUrl}
473
+ .sortParam=${sortParam}
474
+ .defaultSortParam=${defaultSortParam}
475
+ .creatorFilter=${creatorFilter}
476
+ .mobileBreakpoint=${mobileBreakpoint}
477
+ .baseImageUrl=${this.baseImageUrl}
478
+ .loggedIn=${this.loggedIn}
479
+ .suppressBlurring=${this.suppressBlurring}
480
+ .tileActions=${this.isManageView ? [] : this.tileActions}
481
+ ?useLocalTime=${this.useLocalTime}
482
+ >
483
+ </tile-list>`;
484
+ default:
485
+ return nothing;
486
+ }
487
+ }
488
+
489
+ static get styles() {
490
+ return [
491
+ srOnlyStyle,
492
+ tileActionStyles,
493
+ css`
494
+ :host {
495
+ display: block;
496
+ height: 100%;
497
+ }
498
+
499
+ collection-tile {
500
+ --tileBorderColor: #555555;
501
+ --tileBackgroundColor: #666666;
502
+ --imageBlockBackgroundColor: #666666;
503
+ }
504
+
505
+ account-tile {
506
+ --tileBorderColor: #dddddd;
507
+ --imageBlockBackgroundColor: #fcf5e6;
508
+ }
509
+
510
+ item-tile {
511
+ --tileBorderColor: #dddddd;
512
+ --imageBlockBackgroundColor: #f1f1f4;
513
+ }
514
+
515
+ search-tile {
516
+ --tileBorderColor: #555555;
517
+ --tileBackgroundColor: #666666;
518
+ --imageBlockBackgroundColor: #666666;
519
+ --iconFillColor: #2c2c2c;
520
+ }
521
+
522
+ #container {
523
+ position: relative;
524
+ height: 100%;
525
+ border-radius: 4px;
526
+ }
527
+
528
+ /*
529
+ * When tile actions are present, the container takes on the role of
530
+ * the tile's visual card so the tile content and action row appear
531
+ * as a single unified element. The inner tile's own shadow/radius
532
+ * are disabled via CSS variable overrides to avoid visual
533
+ * duplication, and the action row sits as a footer inside the same
534
+ * card.
535
+ */
536
+ #container.has-tile-actions {
537
+ display: flex;
538
+ flex-direction: column;
539
+ overflow: hidden;
540
+ box-shadow: var(--tileShadow, 1px 1px 2px 0);
541
+ --tileBoxShadow: none;
542
+ --tileCornerRadius: 0;
543
+ }
544
+
545
+ #container.has-tile-actions .tile-link {
546
+ flex: 1;
547
+ min-height: 0;
548
+ overflow: hidden;
549
+ border-radius: 0;
550
+ }
551
+
552
+ /* Normal hover shadow lives on the inner anchor for plain tiles */
553
+ #container.hoverable:not(.has-tile-actions) a:focus,
554
+ #container.hoverable:not(.has-tile-actions) a:hover {
555
+ box-shadow: var(
556
+ --tileHoverBoxShadow,
557
+ 0 0 6px 2px rgba(8, 8, 32, 0.8)
558
+ );
559
+ transition: box-shadow 0.1s ease;
560
+ }
561
+
562
+ /*
563
+ * When the container owns the card visuals, the hover shadow needs
564
+ * to move up to the container so it wraps the action row too.
565
+ */
566
+ #container.hoverable.has-tile-actions:hover {
567
+ box-shadow: var(
568
+ --tileHoverBoxShadow,
569
+ 0 0 6px 2px rgba(8, 8, 32, 0.8)
570
+ );
571
+ transition: box-shadow 0.1s ease;
572
+ }
573
+
574
+ a {
575
+ display: block;
576
+ height: 100%;
577
+ color: unset;
578
+ text-decoration: none;
579
+ transition: transform 0.05s ease;
580
+ border-radius: 4px;
581
+ outline: none;
582
+ }
583
+
584
+ a :first-child {
585
+ display: block;
586
+ height: 100%;
587
+ }
588
+
589
+ .manage-check {
590
+ position: absolute;
591
+ right: 0;
592
+ top: 0;
593
+ border: 5px solid #2c2c2c;
594
+ border-radius: 3px;
595
+ background-color: #2c2c2c;
596
+ z-index: 1;
597
+ }
598
+
599
+ .manage-check > input[type='checkbox'] {
600
+ display: block;
601
+ margin: 0;
602
+ }
603
+
604
+ #touch-backdrop {
605
+ position: fixed;
606
+ width: 100vw;
607
+ height: 100vh;
608
+ top: 0;
609
+ left: 0;
610
+ z-index: 2;
611
+ background: transparent;
612
+ }
613
+
614
+ tile-hover-pane {
615
+ position: absolute;
616
+ top: 0;
617
+ left: -9999px;
618
+ z-index: 2;
619
+ }
620
+
621
+ /*
622
+ * Grid-mode action row sits flush against the bottom of the card —
623
+ * the buttons' own borders form the visible bottom edge. The outer
624
+ * buttons get rounded bottom corners to match the container so the
625
+ * red border traces cleanly around the card's bottom corners.
626
+ */
627
+ .grid-tile-actions .tile-action-btn:first-child {
628
+ border-bottom-left-radius: 4px;
629
+ }
630
+
631
+ .grid-tile-actions .tile-action-btn:last-child {
632
+ border-bottom-right-radius: 4px;
633
+ }
634
+ `,
635
+ ];
636
+ }
637
+ }