@internetarchive/collection-browser 3.5.2-webdev-8162.2 → 3.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.
- package/.editorconfig +29 -29
- package/.github/workflows/ci.yml +27 -27
- package/.github/workflows/gh-pages-main.yml +39 -39
- package/.github/workflows/npm-publish.yml +39 -39
- package/.github/workflows/pr-preview.yml +38 -38
- package/.husky/pre-commit +4 -0
- package/.prettierignore +1 -1
- package/LICENSE +661 -661
- package/README.md +83 -83
- package/dist/src/app-root.js +606 -606
- package/dist/src/app-root.js.map +1 -1
- package/dist/src/tiles/grid/collection-tile.js +77 -77
- package/dist/src/tiles/grid/collection-tile.js.map +1 -1
- package/dist/src/tiles/grid/item-tile.js +137 -137
- package/dist/src/tiles/grid/item-tile.js.map +1 -1
- package/dist/src/tiles/hover/hover-pane-controller.d.ts +8 -0
- package/dist/src/tiles/hover/hover-pane-controller.js +41 -29
- package/dist/src/tiles/hover/hover-pane-controller.js.map +1 -1
- package/dist/src/tiles/models.js.map +1 -1
- package/dist/src/tiles/tile-dispatcher.js +215 -215
- package/dist/src/tiles/tile-dispatcher.js.map +1 -1
- package/dist/test/collection-browser.test.js +1 -1
- package/dist/test/collection-browser.test.js.map +1 -1
- package/eslint.config.mjs +53 -53
- package/index.html +24 -24
- package/local.archive.org.cert +86 -86
- package/local.archive.org.key +27 -27
- package/package.json +119 -121
- package/renovate.json +6 -6
- package/src/app-root.ts +1140 -1140
- package/src/tiles/grid/collection-tile.ts +163 -163
- package/src/tiles/grid/item-tile.ts +340 -340
- package/src/tiles/hover/hover-pane-controller.ts +627 -613
- package/src/tiles/models.ts +1 -1
- package/src/tiles/tile-dispatcher.ts +517 -517
- package/test/collection-browser.test.ts +1 -1
- package/tsconfig.json +25 -25
- package/web-dev-server.config.mjs +30 -30
- package/web-test-runner.config.mjs +41 -52
|
@@ -45,30 +45,30 @@ let ItemTile = class ItemTile extends BaseTileComponent {
|
|
|
45
45
|
'stats-only': this.simpleLayoutType === 'stats-only',
|
|
46
46
|
'snippets-only': this.simpleLayoutType === 'snippets-only',
|
|
47
47
|
});
|
|
48
|
-
return html `
|
|
49
|
-
<div class=${containerClasses}>
|
|
50
|
-
${this.infoButtonTemplate}
|
|
51
|
-
<div class="tile-details">
|
|
52
|
-
<div class="item-info">
|
|
53
|
-
${this.imageBlockTemplate}
|
|
54
|
-
|
|
55
|
-
<div id="title">
|
|
56
|
-
<h3 class="truncated" title=${ifDefined(itemTitle)}>
|
|
57
|
-
${itemTitle}
|
|
58
|
-
</h3>
|
|
59
|
-
</div>
|
|
60
|
-
|
|
61
|
-
${this.volumeIssueTemplate}
|
|
48
|
+
return html `
|
|
49
|
+
<div class=${containerClasses}>
|
|
50
|
+
${this.infoButtonTemplate}
|
|
51
|
+
<div class="tile-details">
|
|
52
|
+
<div class="item-info">
|
|
53
|
+
${this.imageBlockTemplate}
|
|
54
|
+
|
|
55
|
+
<div id="title">
|
|
56
|
+
<h3 class="truncated" title=${ifDefined(itemTitle)}>
|
|
57
|
+
${itemTitle}
|
|
58
|
+
</h3>
|
|
59
|
+
</div>
|
|
60
|
+
|
|
61
|
+
${this.volumeIssueTemplate}
|
|
62
62
|
${this.isSortedByDate
|
|
63
63
|
? this.sortedDateInfoTemplate
|
|
64
|
-
: this.creatorTemplate}
|
|
65
|
-
${this.webArchivesCaptureDatesTemplate} ${this.textSnippetsTemplate}
|
|
66
|
-
${this.reviewBlockTemplate}
|
|
67
|
-
</div>
|
|
68
|
-
|
|
69
|
-
${this.tileStatsTemplate}
|
|
70
|
-
</div>
|
|
71
|
-
</div>
|
|
64
|
+
: this.creatorTemplate}
|
|
65
|
+
${this.webArchivesCaptureDatesTemplate} ${this.textSnippetsTemplate}
|
|
66
|
+
${this.reviewBlockTemplate}
|
|
67
|
+
</div>
|
|
68
|
+
|
|
69
|
+
${this.tileStatsTemplate}
|
|
70
|
+
</div>
|
|
71
|
+
</div>
|
|
72
72
|
`;
|
|
73
73
|
}
|
|
74
74
|
/**
|
|
@@ -78,26 +78,26 @@ let ItemTile = class ItemTile extends BaseTileComponent {
|
|
|
78
78
|
const displayedCreator = this.displayValueProvider.firstCreatorMatchingFilter;
|
|
79
79
|
if (!displayedCreator)
|
|
80
80
|
return nothing;
|
|
81
|
-
return html `
|
|
82
|
-
<div class="created-by">
|
|
83
|
-
<span class="truncated" title=${displayedCreator}>
|
|
84
|
-
by ${displayedCreator}
|
|
85
|
-
</span>
|
|
86
|
-
</div>
|
|
81
|
+
return html `
|
|
82
|
+
<div class="created-by">
|
|
83
|
+
<span class="truncated" title=${displayedCreator}>
|
|
84
|
+
by ${displayedCreator}
|
|
85
|
+
</span>
|
|
86
|
+
</div>
|
|
87
87
|
`;
|
|
88
88
|
}
|
|
89
89
|
get imageBlockTemplate() {
|
|
90
|
-
return html `
|
|
91
|
-
<image-block
|
|
92
|
-
.model=${this.model}
|
|
93
|
-
.baseImageUrl=${this.baseImageUrl}
|
|
94
|
-
.loggedIn=${this.loggedIn}
|
|
95
|
-
.suppressBlurring=${this.suppressBlurring}
|
|
96
|
-
.isCompactTile=${false}
|
|
97
|
-
.isListTile=${false}
|
|
98
|
-
.viewSize=${'grid'}
|
|
99
|
-
>
|
|
100
|
-
</image-block>
|
|
90
|
+
return html `
|
|
91
|
+
<image-block
|
|
92
|
+
.model=${this.model}
|
|
93
|
+
.baseImageUrl=${this.baseImageUrl}
|
|
94
|
+
.loggedIn=${this.loggedIn}
|
|
95
|
+
.suppressBlurring=${this.suppressBlurring}
|
|
96
|
+
.isCompactTile=${false}
|
|
97
|
+
.isListTile=${false}
|
|
98
|
+
.viewSize=${'grid'}
|
|
99
|
+
>
|
|
100
|
+
</image-block>
|
|
101
101
|
`;
|
|
102
102
|
}
|
|
103
103
|
get sortedDateInfoTemplate() {
|
|
@@ -128,18 +128,18 @@ let ItemTile = class ItemTile extends BaseTileComponent {
|
|
|
128
128
|
return nothing;
|
|
129
129
|
}
|
|
130
130
|
const formattedDate = this.getFormattedDate(sortedValue.value, format);
|
|
131
|
-
return html `
|
|
132
|
-
<div class="date-sorted-by truncated">
|
|
133
|
-
<span>${sortedValue.field} ${formattedDate}</span>
|
|
134
|
-
</div>
|
|
131
|
+
return html `
|
|
132
|
+
<div class="date-sorted-by truncated">
|
|
133
|
+
<span>${sortedValue.field} ${formattedDate}</span>
|
|
134
|
+
</div>
|
|
135
135
|
`;
|
|
136
136
|
}
|
|
137
137
|
get infoButtonTemplate() {
|
|
138
138
|
// ⓘ is an information icon
|
|
139
139
|
return this.showInfoButton
|
|
140
|
-
? html `<button class="info-button" @click=${this.infoButtonPressed}>
|
|
141
|
-
ⓘ
|
|
142
|
-
<span class="sr-only">${msg('More info')}</span>
|
|
140
|
+
? html `<button class="info-button" @click=${this.infoButtonPressed}>
|
|
141
|
+
ⓘ
|
|
142
|
+
<span class="sr-only">${msg('More info')}</span>
|
|
143
143
|
</button>`
|
|
144
144
|
: nothing;
|
|
145
145
|
}
|
|
@@ -147,44 +147,44 @@ let ItemTile = class ItemTile extends BaseTileComponent {
|
|
|
147
147
|
if (!this.model?.review)
|
|
148
148
|
return nothing;
|
|
149
149
|
const { reviewtitle, reviewbody, stars } = this.model.review;
|
|
150
|
-
return html `
|
|
151
|
-
<review-block
|
|
152
|
-
viewsize="grid"
|
|
153
|
-
title=${ifDefined(reviewtitle)}
|
|
154
|
-
body=${ifDefined(reviewbody)}
|
|
155
|
-
starRating=${ifDefined(stars)}
|
|
156
|
-
>
|
|
157
|
-
</review-block>
|
|
150
|
+
return html `
|
|
151
|
+
<review-block
|
|
152
|
+
viewsize="grid"
|
|
153
|
+
title=${ifDefined(reviewtitle)}
|
|
154
|
+
body=${ifDefined(reviewbody)}
|
|
155
|
+
starRating=${ifDefined(stars)}
|
|
156
|
+
>
|
|
157
|
+
</review-block>
|
|
158
158
|
`;
|
|
159
159
|
}
|
|
160
160
|
get textSnippetsTemplate() {
|
|
161
161
|
if (!this.hasSnippets || this.simpleLayoutType === 'stats-only')
|
|
162
162
|
return nothing;
|
|
163
|
-
return html `
|
|
164
|
-
<text-snippet-block viewsize="grid" .snippets=${this.model?.snippets}>
|
|
165
|
-
</text-snippet-block>
|
|
163
|
+
return html `
|
|
164
|
+
<text-snippet-block viewsize="grid" .snippets=${this.model?.snippets}>
|
|
165
|
+
</text-snippet-block>
|
|
166
166
|
`;
|
|
167
167
|
}
|
|
168
168
|
get volumeIssueTemplate() {
|
|
169
169
|
if (!this.model?.volume || !this.model?.issue)
|
|
170
170
|
return nothing;
|
|
171
|
-
return html `
|
|
172
|
-
<div class="volume-issue">
|
|
173
|
-
<span class="truncated" title="volume|issue">
|
|
174
|
-
Volume ${this.model?.volume}, Issue ${this.model?.issue}
|
|
175
|
-
</span>
|
|
176
|
-
</div>
|
|
171
|
+
return html `
|
|
172
|
+
<div class="volume-issue">
|
|
173
|
+
<span class="truncated" title="volume|issue">
|
|
174
|
+
Volume ${this.model?.volume}, Issue ${this.model?.issue}
|
|
175
|
+
</span>
|
|
176
|
+
</div>
|
|
177
177
|
`;
|
|
178
178
|
}
|
|
179
179
|
get webArchivesCaptureDatesTemplate() {
|
|
180
180
|
if (!this.model?.captureDates || !this.model.title)
|
|
181
181
|
return nothing;
|
|
182
|
-
return html `
|
|
183
|
-
<ul class="capture-dates">
|
|
184
|
-
${map(this.model.captureDates, date => html `<li>
|
|
185
|
-
${this.displayValueProvider.webArchivesCaptureLink(this.model.title, date)}
|
|
186
|
-
</li>`)}
|
|
187
|
-
</ul>
|
|
182
|
+
return html `
|
|
183
|
+
<ul class="capture-dates">
|
|
184
|
+
${map(this.model.captureDates, date => html `<li>
|
|
185
|
+
${this.displayValueProvider.webArchivesCaptureLink(this.model.title, date)}
|
|
186
|
+
</li>`)}
|
|
187
|
+
</ul>
|
|
188
188
|
`;
|
|
189
189
|
}
|
|
190
190
|
/**
|
|
@@ -197,18 +197,18 @@ let ItemTile = class ItemTile extends BaseTileComponent {
|
|
|
197
197
|
const [viewCount, viewLabel] = effectiveSort?.field === 'week'
|
|
198
198
|
? [this.model?.weeklyViewCount, 'weekly views']
|
|
199
199
|
: [this.model?.viewCount, 'all-time views'];
|
|
200
|
-
return html `
|
|
201
|
-
<tile-stats
|
|
202
|
-
.model=${this.model}
|
|
203
|
-
.mediatype=${this.model?.mediatype}
|
|
204
|
-
.viewCount=${viewCount}
|
|
205
|
-
.viewLabel=${viewLabel}
|
|
206
|
-
.favCount=${this.model?.favCount}
|
|
207
|
-
.commentCount=${this.model?.commentCount}
|
|
208
|
-
.tvClipCount=${this.model?.tvClipCount}
|
|
209
|
-
.showTvClips=${this.showTvClips}
|
|
210
|
-
>
|
|
211
|
-
</tile-stats>
|
|
200
|
+
return html `
|
|
201
|
+
<tile-stats
|
|
202
|
+
.model=${this.model}
|
|
203
|
+
.mediatype=${this.model?.mediatype}
|
|
204
|
+
.viewCount=${viewCount}
|
|
205
|
+
.viewLabel=${viewLabel}
|
|
206
|
+
.favCount=${this.model?.favCount}
|
|
207
|
+
.commentCount=${this.model?.commentCount}
|
|
208
|
+
.tvClipCount=${this.model?.tvClipCount}
|
|
209
|
+
.showTvClips=${this.showTvClips}
|
|
210
|
+
>
|
|
211
|
+
</tile-stats>
|
|
212
212
|
`;
|
|
213
213
|
}
|
|
214
214
|
get isSortedByDate() {
|
|
@@ -235,62 +235,62 @@ let ItemTile = class ItemTile extends BaseTileComponent {
|
|
|
235
235
|
const tileBorderColor = css `var(--tileBorderColor, #dddddd)`;
|
|
236
236
|
return [
|
|
237
237
|
baseTileStyles,
|
|
238
|
-
css `
|
|
239
|
-
a:link {
|
|
240
|
-
text-decoration: none;
|
|
241
|
-
color: var(--ia-theme-link-color, #4b64ff);
|
|
242
|
-
}
|
|
243
|
-
a:hover {
|
|
244
|
-
text-decoration: underline;
|
|
245
|
-
}
|
|
246
|
-
|
|
247
|
-
.container {
|
|
248
|
-
border: 1px solid ${tileBorderColor};
|
|
249
|
-
}
|
|
250
|
-
|
|
251
|
-
.simple #title > .truncated {
|
|
252
|
-
-webkit-line-clamp: 2;
|
|
253
|
-
}
|
|
254
|
-
|
|
255
|
-
.simple .created-by > .truncated,
|
|
256
|
-
.simple .date-sorted-by > .truncated,
|
|
257
|
-
.simple .volume-issue > .truncated {
|
|
258
|
-
-webkit-line-clamp: 1;
|
|
259
|
-
}
|
|
260
|
-
|
|
261
|
-
.simple.snippets-only .item-info {
|
|
262
|
-
padding-bottom: 5px;
|
|
263
|
-
}
|
|
264
|
-
|
|
265
|
-
.simple.snippets-only text-snippet-block {
|
|
266
|
-
margin-top: auto; /* Force the snippets to the bottom of the tile */
|
|
267
|
-
}
|
|
268
|
-
|
|
269
|
-
.capture-dates {
|
|
270
|
-
margin: 0;
|
|
271
|
-
padding: 0 5px;
|
|
272
|
-
list-style-type: none;
|
|
273
|
-
}
|
|
274
|
-
|
|
275
|
-
review-block,
|
|
276
|
-
text-snippet-block {
|
|
277
|
-
--containerLeftMargin: 5px;
|
|
278
|
-
--containerTopMargin: 5px;
|
|
279
|
-
}
|
|
280
|
-
|
|
281
|
-
/**
|
|
282
|
-
* iOS Safari long-press on tiles (to bring up hover pane)
|
|
283
|
-
* gets messy without this
|
|
284
|
-
*/
|
|
285
|
-
@media screen and (pointer: coarse) and (hover: none) {
|
|
286
|
-
.container {
|
|
287
|
-
-webkit-touch-callout: none;
|
|
288
|
-
}
|
|
289
|
-
|
|
290
|
-
.truncated {
|
|
291
|
-
-webkit-touch-callout: default;
|
|
292
|
-
}
|
|
293
|
-
}
|
|
238
|
+
css `
|
|
239
|
+
a:link {
|
|
240
|
+
text-decoration: none;
|
|
241
|
+
color: var(--ia-theme-link-color, #4b64ff);
|
|
242
|
+
}
|
|
243
|
+
a:hover {
|
|
244
|
+
text-decoration: underline;
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
.container {
|
|
248
|
+
border: 1px solid ${tileBorderColor};
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
.simple #title > .truncated {
|
|
252
|
+
-webkit-line-clamp: 2;
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
.simple .created-by > .truncated,
|
|
256
|
+
.simple .date-sorted-by > .truncated,
|
|
257
|
+
.simple .volume-issue > .truncated {
|
|
258
|
+
-webkit-line-clamp: 1;
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
.simple.snippets-only .item-info {
|
|
262
|
+
padding-bottom: 5px;
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
.simple.snippets-only text-snippet-block {
|
|
266
|
+
margin-top: auto; /* Force the snippets to the bottom of the tile */
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
.capture-dates {
|
|
270
|
+
margin: 0;
|
|
271
|
+
padding: 0 5px;
|
|
272
|
+
list-style-type: none;
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
review-block,
|
|
276
|
+
text-snippet-block {
|
|
277
|
+
--containerLeftMargin: 5px;
|
|
278
|
+
--containerTopMargin: 5px;
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
/**
|
|
282
|
+
* iOS Safari long-press on tiles (to bring up hover pane)
|
|
283
|
+
* gets messy without this
|
|
284
|
+
*/
|
|
285
|
+
@media screen and (pointer: coarse) and (hover: none) {
|
|
286
|
+
.container {
|
|
287
|
+
-webkit-touch-callout: none;
|
|
288
|
+
}
|
|
289
|
+
|
|
290
|
+
.truncated {
|
|
291
|
+
-webkit-touch-callout: default;
|
|
292
|
+
}
|
|
293
|
+
}
|
|
294
294
|
`,
|
|
295
295
|
];
|
|
296
296
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"item-tile.js","sourceRoot":"","sources":["../../../../src/tiles/grid/item-tile.ts"],"names":[],"mappings":"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","sourcesContent":["import { css, CSSResultGroup, html, nothing, TemplateResult } from 'lit';\nimport { customElement, property } from 'lit/decorators.js';\nimport { ifDefined } from 'lit/directives/if-defined.js';\nimport { map } from 'lit/directives/map.js';\nimport { classMap } from 'lit/directives/class-map.js';\nimport { msg } from '@lit/localize';\n\nimport type { SortParam } from '@internetarchive/search-service';\nimport type { DateFormat } from '../../utils/format-date';\nimport { isFirstMillisecondOfUTCYear } from '../../utils/local-date-from-utc';\nimport { BaseTileComponent } from '../base-tile-component';\nimport { baseTileStyles } from './styles/tile-grid-shared-styles';\nimport { SimpleLayoutType } from '../models';\n\nimport '../image-block';\nimport '../review-block';\nimport '../text-snippet-block';\nimport '../item-image';\nimport '../tile-mediatype-icon';\nimport './tile-stats';\n\n@customElement('item-tile')\nexport class ItemTile extends BaseTileComponent {\n /*\n * Reactive properties inherited from BaseTileComponent:\n * - model?: TileModel;\n * - currentWidth?: number;\n * - currentHeight?: number;\n * - baseNavigationUrl?: string;\n * - baseImageUrl?: string;\n * - collectionPagePath?: string;\n * - sortParam: SortParam | null = null;\n * - defaultSortParam: SortParam | null = null;\n * - creatorFilter?: string;\n * - mobileBreakpoint?: number;\n * - loggedIn = false;\n * - suppressBlurring = false;\n * - useLocalTime = false;\n */\n\n @property({ type: Boolean }) showInfoButton = false;\n\n @property({ type: Boolean }) showTvClips = false;\n\n @property({ type: String }) simpleLayoutType: SimpleLayoutType = 'none';\n\n render() {\n const itemTitle = this.model?.title;\n const containerClasses = classMap({\n container: true,\n simple: this.simpleLayoutType !== 'none',\n 'stats-only': this.simpleLayoutType === 'stats-only',\n 'snippets-only': this.simpleLayoutType === 'snippets-only',\n });\n\n return html`\n <div class=${containerClasses}>\n ${this.infoButtonTemplate}\n <div class=\"tile-details\">\n <div class=\"item-info\">\n ${this.imageBlockTemplate}\n\n <div id=\"title\">\n <h3 class=\"truncated\" title=${ifDefined(itemTitle)}>\n ${itemTitle}\n </h3>\n </div>\n\n ${this.volumeIssueTemplate}\n ${this.isSortedByDate\n ? this.sortedDateInfoTemplate\n : this.creatorTemplate}\n ${this.webArchivesCaptureDatesTemplate} ${this.textSnippetsTemplate}\n ${this.reviewBlockTemplate}\n </div>\n\n ${this.tileStatsTemplate}\n </div>\n </div>\n `;\n }\n\n /**\n * Templates\n */\n private get creatorTemplate(): TemplateResult | typeof nothing {\n const displayedCreator =\n this.displayValueProvider.firstCreatorMatchingFilter;\n if (!displayedCreator) return nothing;\n\n return html`\n <div class=\"created-by\">\n <span class=\"truncated\" title=${displayedCreator}>\n by ${displayedCreator}\n </span>\n </div>\n `;\n }\n\n private get imageBlockTemplate(): TemplateResult {\n return html`\n <image-block\n .model=${this.model}\n .baseImageUrl=${this.baseImageUrl}\n .loggedIn=${this.loggedIn}\n .suppressBlurring=${this.suppressBlurring}\n .isCompactTile=${false}\n .isListTile=${false}\n .viewSize=${'grid'}\n >\n </image-block>\n `;\n }\n\n private get sortedDateInfoTemplate() {\n let sortedValue;\n let format: DateFormat = 'long';\n switch (this.effectiveSort?.field) {\n case 'date': {\n const datePublished = this.model?.datePublished;\n sortedValue = { field: 'published', value: datePublished };\n if (isFirstMillisecondOfUTCYear(datePublished)) {\n format = 'year-only';\n }\n break;\n }\n case 'reviewdate':\n sortedValue = { field: 'reviewed', value: this.model?.dateReviewed };\n break;\n case 'addeddate':\n sortedValue = { field: 'added', value: this.model?.dateAdded };\n break;\n case 'publicdate':\n sortedValue = { field: 'archived', value: this.model?.dateArchived };\n break;\n default:\n break;\n }\n\n if (!sortedValue?.value) {\n return nothing;\n }\n\n const formattedDate = this.getFormattedDate(sortedValue.value, format);\n return html`\n <div class=\"date-sorted-by truncated\">\n <span>${sortedValue.field} ${formattedDate}</span>\n </div>\n `;\n }\n\n private get infoButtonTemplate(): TemplateResult | typeof nothing {\n // ⓘ is an information icon\n return this.showInfoButton\n ? html`<button class=\"info-button\" @click=${this.infoButtonPressed}>\n ⓘ\n <span class=\"sr-only\">${msg('More info')}</span>\n </button>`\n : nothing;\n }\n\n private get reviewBlockTemplate(): TemplateResult | typeof nothing {\n if (!this.model?.review) return nothing;\n\n const { reviewtitle, reviewbody, stars } = this.model.review;\n return html`\n <review-block\n viewsize=\"grid\"\n title=${ifDefined(reviewtitle)}\n body=${ifDefined(reviewbody)}\n starRating=${ifDefined(stars)}\n >\n </review-block>\n `;\n }\n\n private get textSnippetsTemplate(): TemplateResult | typeof nothing {\n if (!this.hasSnippets || this.simpleLayoutType === 'stats-only')\n return nothing;\n\n return html`\n <text-snippet-block viewsize=\"grid\" .snippets=${this.model?.snippets}>\n </text-snippet-block>\n `;\n }\n\n private get volumeIssueTemplate(): TemplateResult | typeof nothing {\n if (!this.model?.volume || !this.model?.issue) return nothing;\n\n return html`\n <div class=\"volume-issue\">\n <span class=\"truncated\" title=\"volume|issue\">\n Volume ${this.model?.volume}, Issue ${this.model?.issue}\n </span>\n </div>\n `;\n }\n\n private get webArchivesCaptureDatesTemplate():\n | TemplateResult\n | typeof nothing {\n if (!this.model?.captureDates || !this.model.title) return nothing;\n\n return html`\n <ul class=\"capture-dates\">\n ${map(\n this.model.captureDates,\n date =>\n html`<li>\n ${this.displayValueProvider.webArchivesCaptureLink(\n this.model!.title,\n date,\n )}\n </li>`,\n )}\n </ul>\n `;\n }\n\n /**\n * Template for the stats row along the bottom of the tile.\n */\n private get tileStatsTemplate(): TemplateResult | typeof nothing {\n if (this.simpleLayoutType === 'snippets-only') return nothing;\n\n const effectiveSort = this.sortParam ?? this.defaultSortParam;\n const [viewCount, viewLabel] =\n effectiveSort?.field === 'week'\n ? [this.model?.weeklyViewCount, 'weekly views']\n : [this.model?.viewCount, 'all-time views'];\n\n return html`\n <tile-stats\n .model=${this.model}\n .mediatype=${this.model?.mediatype}\n .viewCount=${viewCount}\n .viewLabel=${viewLabel}\n .favCount=${this.model?.favCount}\n .commentCount=${this.model?.commentCount}\n .tvClipCount=${this.model?.tvClipCount}\n .showTvClips=${this.showTvClips}\n >\n </tile-stats>\n `;\n }\n\n private get isSortedByDate(): boolean {\n return ['date', 'reviewdate', 'addeddate', 'publicdate'].includes(\n this.effectiveSort?.field as string,\n );\n }\n\n /**\n * Returns the active sort param if one is set, or the default sort param otherwise.\n */\n private get effectiveSort(): SortParam | null {\n return this.sortParam ?? this.defaultSortParam;\n }\n\n private get hasSnippets(): boolean {\n return !!this.model?.snippets?.length;\n }\n\n private infoButtonPressed(e: PointerEvent): void {\n e.preventDefault();\n const event = new CustomEvent<{ x: number; y: number }>(\n 'infoButtonPressed',\n { detail: { x: e.clientX, y: e.clientY } },\n );\n this.dispatchEvent(event);\n }\n\n /**\n * CSS\n */\n static get styles(): CSSResultGroup {\n const tileBorderColor = css`var(--tileBorderColor, #dddddd)`;\n\n return [\n baseTileStyles,\n css`\n a:link {\n text-decoration: none;\n color: var(--ia-theme-link-color, #4b64ff);\n }\n a:hover {\n text-decoration: underline;\n }\n\n .container {\n border: 1px solid ${tileBorderColor};\n }\n\n .simple #title > .truncated {\n -webkit-line-clamp: 2;\n }\n\n .simple .created-by > .truncated,\n .simple .date-sorted-by > .truncated,\n .simple .volume-issue > .truncated {\n -webkit-line-clamp: 1;\n }\n\n .simple.snippets-only .item-info {\n padding-bottom: 5px;\n }\n\n .simple.snippets-only text-snippet-block {\n margin-top: auto; /* Force the snippets to the bottom of the tile */\n }\n\n .capture-dates {\n margin: 0;\n padding: 0 5px;\n list-style-type: none;\n }\n\n review-block,\n text-snippet-block {\n --containerLeftMargin: 5px;\n --containerTopMargin: 5px;\n }\n\n /**\n * iOS Safari long-press on tiles (to bring up hover pane)\n * gets messy without this\n */\n @media screen and (pointer: coarse) and (hover: none) {\n .container {\n -webkit-touch-callout: none;\n }\n\n .truncated {\n -webkit-touch-callout: default;\n }\n }\n `,\n ];\n }\n}\n"]}
|
|
1
|
+
{"version":3,"file":"item-tile.js","sourceRoot":"","sources":["../../../../src/tiles/grid/item-tile.ts"],"names":[],"mappings":";AAAA,OAAO,EAAE,GAAG,EAAkB,IAAI,EAAE,OAAO,EAAkB,MAAM,KAAK,CAAC;AACzE,OAAO,EAAE,aAAa,EAAE,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AAC5D,OAAO,EAAE,SAAS,EAAE,MAAM,8BAA8B,CAAC;AACzD,OAAO,EAAE,GAAG,EAAE,MAAM,uBAAuB,CAAC;AAC5C,OAAO,EAAE,QAAQ,EAAE,MAAM,6BAA6B,CAAC;AACvD,OAAO,EAAE,GAAG,EAAE,MAAM,eAAe,CAAC;AAIpC,OAAO,EAAE,2BAA2B,EAAE,MAAM,iCAAiC,CAAC;AAC9E,OAAO,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AAC3D,OAAO,EAAE,cAAc,EAAE,MAAM,kCAAkC,CAAC;AAGlE,OAAO,gBAAgB,CAAC;AACxB,OAAO,iBAAiB,CAAC;AACzB,OAAO,uBAAuB,CAAC;AAC/B,OAAO,eAAe,CAAC;AACvB,OAAO,wBAAwB,CAAC;AAChC,OAAO,cAAc,CAAC;AAGf,IAAM,QAAQ,GAAd,MAAM,QAAS,SAAQ,iBAAiB;IAAxC;QACL;;;;;;;;;;;;;;;WAeG;;QAE0B,mBAAc,GAAG,KAAK,CAAC;QAEvB,gBAAW,GAAG,KAAK,CAAC;QAErB,qBAAgB,GAAqB,MAAM,CAAC;IAuS1E,CAAC;IArSC,MAAM;QACJ,MAAM,SAAS,GAAG,IAAI,CAAC,KAAK,EAAE,KAAK,CAAC;QACpC,MAAM,gBAAgB,GAAG,QAAQ,CAAC;YAChC,SAAS,EAAE,IAAI;YACf,MAAM,EAAE,IAAI,CAAC,gBAAgB,KAAK,MAAM;YACxC,YAAY,EAAE,IAAI,CAAC,gBAAgB,KAAK,YAAY;YACpD,eAAe,EAAE,IAAI,CAAC,gBAAgB,KAAK,eAAe;SAC3D,CAAC,CAAC;QAEH,OAAO,IAAI,CAAA;mBACI,gBAAgB;UACzB,IAAI,CAAC,kBAAkB;;;cAGnB,IAAI,CAAC,kBAAkB;;;4CAGO,SAAS,CAAC,SAAS,CAAC;kBAC9C,SAAS;;;;cAIb,IAAI,CAAC,mBAAmB;cACxB,IAAI,CAAC,cAAc;YACnB,CAAC,CAAC,IAAI,CAAC,sBAAsB;YAC7B,CAAC,CAAC,IAAI,CAAC,eAAe;cACtB,IAAI,CAAC,+BAA+B,IAAI,IAAI,CAAC,oBAAoB;cACjE,IAAI,CAAC,mBAAmB;;;YAG1B,IAAI,CAAC,iBAAiB;;;KAG7B,CAAC;IACJ,CAAC;IAED;;OAEG;IACH,IAAY,eAAe;QACzB,MAAM,gBAAgB,GACpB,IAAI,CAAC,oBAAoB,CAAC,0BAA0B,CAAC;QACvD,IAAI,CAAC,gBAAgB;YAAE,OAAO,OAAO,CAAC;QAEtC,OAAO,IAAI,CAAA;;wCAEyB,gBAAgB;oBACpC,gBAAgB;;;KAG/B,CAAC;IACJ,CAAC;IAED,IAAY,kBAAkB;QAC5B,OAAO,IAAI,CAAA;;iBAEE,IAAI,CAAC,KAAK;wBACH,IAAI,CAAC,YAAY;oBACrB,IAAI,CAAC,QAAQ;4BACL,IAAI,CAAC,gBAAgB;yBACxB,KAAK;sBACR,KAAK;oBACP,MAAM;;;KAGrB,CAAC;IACJ,CAAC;IAED,IAAY,sBAAsB;QAChC,IAAI,WAAW,CAAC;QAChB,IAAI,MAAM,GAAe,MAAM,CAAC;QAChC,QAAQ,IAAI,CAAC,aAAa,EAAE,KAAK,EAAE,CAAC;YAClC,KAAK,MAAM,CAAC,CAAC,CAAC;gBACZ,MAAM,aAAa,GAAG,IAAI,CAAC,KAAK,EAAE,aAAa,CAAC;gBAChD,WAAW,GAAG,EAAE,KAAK,EAAE,WAAW,EAAE,KAAK,EAAE,aAAa,EAAE,CAAC;gBAC3D,IAAI,2BAA2B,CAAC,aAAa,CAAC,EAAE,CAAC;oBAC/C,MAAM,GAAG,WAAW,CAAC;gBACvB,CAAC;gBACD,MAAM;YACR,CAAC;YACD,KAAK,YAAY;gBACf,WAAW,GAAG,EAAE,KAAK,EAAE,UAAU,EAAE,KAAK,EAAE,IAAI,CAAC,KAAK,EAAE,YAAY,EAAE,CAAC;gBACrE,MAAM;YACR,KAAK,WAAW;gBACd,WAAW,GAAG,EAAE,KAAK,EAAE,OAAO,EAAE,KAAK,EAAE,IAAI,CAAC,KAAK,EAAE,SAAS,EAAE,CAAC;gBAC/D,MAAM;YACR,KAAK,YAAY;gBACf,WAAW,GAAG,EAAE,KAAK,EAAE,UAAU,EAAE,KAAK,EAAE,IAAI,CAAC,KAAK,EAAE,YAAY,EAAE,CAAC;gBACrE,MAAM;YACR;gBACE,MAAM;QACV,CAAC;QAED,IAAI,CAAC,WAAW,EAAE,KAAK,EAAE,CAAC;YACxB,OAAO,OAAO,CAAC;QACjB,CAAC;QAED,MAAM,aAAa,GAAG,IAAI,CAAC,gBAAgB,CAAC,WAAW,CAAC,KAAK,EAAE,MAAM,CAAC,CAAC;QACvE,OAAO,IAAI,CAAA;;gBAEC,WAAW,CAAC,KAAK,IAAI,aAAa;;KAE7C,CAAC;IACJ,CAAC;IAED,IAAY,kBAAkB;QAC5B,iCAAiC;QACjC,OAAO,IAAI,CAAC,cAAc;YACxB,CAAC,CAAC,IAAI,CAAA,sCAAsC,IAAI,CAAC,iBAAiB;;kCAEtC,GAAG,CAAC,WAAW,CAAC;kBAChC;YACZ,CAAC,CAAC,OAAO,CAAC;IACd,CAAC;IAED,IAAY,mBAAmB;QAC7B,IAAI,CAAC,IAAI,CAAC,KAAK,EAAE,MAAM;YAAE,OAAO,OAAO,CAAC;QAExC,MAAM,EAAE,WAAW,EAAE,UAAU,EAAE,KAAK,EAAE,GAAG,IAAI,CAAC,KAAK,CAAC,MAAM,CAAC;QAC7D,OAAO,IAAI,CAAA;;;gBAGC,SAAS,CAAC,WAAW,CAAC;eACvB,SAAS,CAAC,UAAU,CAAC;qBACf,SAAS,CAAC,KAAK,CAAC;;;KAGhC,CAAC;IACJ,CAAC;IAED,IAAY,oBAAoB;QAC9B,IAAI,CAAC,IAAI,CAAC,WAAW,IAAI,IAAI,CAAC,gBAAgB,KAAK,YAAY;YAC7D,OAAO,OAAO,CAAC;QAEjB,OAAO,IAAI,CAAA;sDACuC,IAAI,CAAC,KAAK,EAAE,QAAQ;;KAErE,CAAC;IACJ,CAAC;IAED,IAAY,mBAAmB;QAC7B,IAAI,CAAC,IAAI,CAAC,KAAK,EAAE,MAAM,IAAI,CAAC,IAAI,CAAC,KAAK,EAAE,KAAK;YAAE,OAAO,OAAO,CAAC;QAE9D,OAAO,IAAI,CAAA;;;wBAGS,IAAI,CAAC,KAAK,EAAE,MAAM,gBAAgB,IAAI,CAAC,KAAK,EAAE,KAAK;;;KAGtE,CAAC;IACJ,CAAC;IAED,IAAY,+BAA+B;QAGzC,IAAI,CAAC,IAAI,CAAC,KAAK,EAAE,YAAY,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,KAAK;YAAE,OAAO,OAAO,CAAC;QAEnE,OAAO,IAAI,CAAA;;UAEL,GAAG,CACH,IAAI,CAAC,KAAK,CAAC,YAAY,EACvB,IAAI,CAAC,EAAE,CACL,IAAI,CAAA;gBACA,IAAI,CAAC,oBAAoB,CAAC,sBAAsB,CAChD,IAAI,CAAC,KAAM,CAAC,KAAK,EACjB,IAAI,CACL;kBACG,CACT;;KAEJ,CAAC;IACJ,CAAC;IAED;;OAEG;IACH,IAAY,iBAAiB;QAC3B,IAAI,IAAI,CAAC,gBAAgB,KAAK,eAAe;YAAE,OAAO,OAAO,CAAC;QAE9D,MAAM,aAAa,GAAG,IAAI,CAAC,SAAS,IAAI,IAAI,CAAC,gBAAgB,CAAC;QAC9D,MAAM,CAAC,SAAS,EAAE,SAAS,CAAC,GAC1B,aAAa,EAAE,KAAK,KAAK,MAAM;YAC7B,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,EAAE,eAAe,EAAE,cAAc,CAAC;YAC/C,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,EAAE,SAAS,EAAE,gBAAgB,CAAC,CAAC;QAEhD,OAAO,IAAI,CAAA;;iBAEE,IAAI,CAAC,KAAK;qBACN,IAAI,CAAC,KAAK,EAAE,SAAS;qBACrB,SAAS;qBACT,SAAS;oBACV,IAAI,CAAC,KAAK,EAAE,QAAQ;wBAChB,IAAI,CAAC,KAAK,EAAE,YAAY;uBACzB,IAAI,CAAC,KAAK,EAAE,WAAW;uBACvB,IAAI,CAAC,WAAW;;;KAGlC,CAAC;IACJ,CAAC;IAED,IAAY,cAAc;QACxB,OAAO,CAAC,MAAM,EAAE,YAAY,EAAE,WAAW,EAAE,YAAY,CAAC,CAAC,QAAQ,CAC/D,IAAI,CAAC,aAAa,EAAE,KAAe,CACpC,CAAC;IACJ,CAAC;IAED;;OAEG;IACH,IAAY,aAAa;QACvB,OAAO,IAAI,CAAC,SAAS,IAAI,IAAI,CAAC,gBAAgB,CAAC;IACjD,CAAC;IAED,IAAY,WAAW;QACrB,OAAO,CAAC,CAAC,IAAI,CAAC,KAAK,EAAE,QAAQ,EAAE,MAAM,CAAC;IACxC,CAAC;IAEO,iBAAiB,CAAC,CAAe;QACvC,CAAC,CAAC,cAAc,EAAE,CAAC;QACnB,MAAM,KAAK,GAAG,IAAI,WAAW,CAC3B,mBAAmB,EACnB,EAAE,MAAM,EAAE,EAAE,CAAC,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,EAAE,CAAC,CAAC,OAAO,EAAE,EAAE,CAC3C,CAAC;QACF,IAAI,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC;IAC5B,CAAC;IAED;;OAEG;IACH,MAAM,KAAK,MAAM;QACf,MAAM,eAAe,GAAG,GAAG,CAAA,iCAAiC,CAAC;QAE7D,OAAO;YACL,cAAc;YACd,GAAG,CAAA;;;;;;;;;;8BAUqB,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OA8CtC;SACF,CAAC;IACJ,CAAC;CACF,CAAA;AA3S8B;IAA5B,QAAQ,CAAC,EAAE,IAAI,EAAE,OAAO,EAAE,CAAC;gDAAwB;AAEvB;IAA5B,QAAQ,CAAC,EAAE,IAAI,EAAE,OAAO,EAAE,CAAC;6CAAqB;AAErB;IAA3B,QAAQ,CAAC,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;kDAA6C;AAtB7D,QAAQ;IADpB,aAAa,CAAC,WAAW,CAAC;GACd,QAAQ,CA6TpB","sourcesContent":["import { css, CSSResultGroup, html, nothing, TemplateResult } from 'lit';\r\nimport { customElement, property } from 'lit/decorators.js';\r\nimport { ifDefined } from 'lit/directives/if-defined.js';\r\nimport { map } from 'lit/directives/map.js';\r\nimport { classMap } from 'lit/directives/class-map.js';\r\nimport { msg } from '@lit/localize';\r\n\r\nimport type { SortParam } from '@internetarchive/search-service';\r\nimport type { DateFormat } from '../../utils/format-date';\r\nimport { isFirstMillisecondOfUTCYear } from '../../utils/local-date-from-utc';\r\nimport { BaseTileComponent } from '../base-tile-component';\r\nimport { baseTileStyles } from './styles/tile-grid-shared-styles';\r\nimport { SimpleLayoutType } from '../models';\r\n\r\nimport '../image-block';\r\nimport '../review-block';\r\nimport '../text-snippet-block';\r\nimport '../item-image';\r\nimport '../tile-mediatype-icon';\r\nimport './tile-stats';\r\n\r\n@customElement('item-tile')\r\nexport class ItemTile extends BaseTileComponent {\r\n /*\r\n * Reactive properties inherited from BaseTileComponent:\r\n * - model?: TileModel;\r\n * - currentWidth?: number;\r\n * - currentHeight?: number;\r\n * - baseNavigationUrl?: string;\r\n * - baseImageUrl?: string;\r\n * - collectionPagePath?: string;\r\n * - sortParam: SortParam | null = null;\r\n * - defaultSortParam: SortParam | null = null;\r\n * - creatorFilter?: string;\r\n * - mobileBreakpoint?: number;\r\n * - loggedIn = false;\r\n * - suppressBlurring = false;\r\n * - useLocalTime = false;\r\n */\r\n\r\n @property({ type: Boolean }) showInfoButton = false;\r\n\r\n @property({ type: Boolean }) showTvClips = false;\r\n\r\n @property({ type: String }) simpleLayoutType: SimpleLayoutType = 'none';\r\n\r\n render() {\r\n const itemTitle = this.model?.title;\r\n const containerClasses = classMap({\r\n container: true,\r\n simple: this.simpleLayoutType !== 'none',\r\n 'stats-only': this.simpleLayoutType === 'stats-only',\r\n 'snippets-only': this.simpleLayoutType === 'snippets-only',\r\n });\r\n\r\n return html`\r\n <div class=${containerClasses}>\r\n ${this.infoButtonTemplate}\r\n <div class=\"tile-details\">\r\n <div class=\"item-info\">\r\n ${this.imageBlockTemplate}\r\n\r\n <div id=\"title\">\r\n <h3 class=\"truncated\" title=${ifDefined(itemTitle)}>\r\n ${itemTitle}\r\n </h3>\r\n </div>\r\n\r\n ${this.volumeIssueTemplate}\r\n ${this.isSortedByDate\r\n ? this.sortedDateInfoTemplate\r\n : this.creatorTemplate}\r\n ${this.webArchivesCaptureDatesTemplate} ${this.textSnippetsTemplate}\r\n ${this.reviewBlockTemplate}\r\n </div>\r\n\r\n ${this.tileStatsTemplate}\r\n </div>\r\n </div>\r\n `;\r\n }\r\n\r\n /**\r\n * Templates\r\n */\r\n private get creatorTemplate(): TemplateResult | typeof nothing {\r\n const displayedCreator =\r\n this.displayValueProvider.firstCreatorMatchingFilter;\r\n if (!displayedCreator) return nothing;\r\n\r\n return html`\r\n <div class=\"created-by\">\r\n <span class=\"truncated\" title=${displayedCreator}>\r\n by ${displayedCreator}\r\n </span>\r\n </div>\r\n `;\r\n }\r\n\r\n private get imageBlockTemplate(): TemplateResult {\r\n return html`\r\n <image-block\r\n .model=${this.model}\r\n .baseImageUrl=${this.baseImageUrl}\r\n .loggedIn=${this.loggedIn}\r\n .suppressBlurring=${this.suppressBlurring}\r\n .isCompactTile=${false}\r\n .isListTile=${false}\r\n .viewSize=${'grid'}\r\n >\r\n </image-block>\r\n `;\r\n }\r\n\r\n private get sortedDateInfoTemplate() {\r\n let sortedValue;\r\n let format: DateFormat = 'long';\r\n switch (this.effectiveSort?.field) {\r\n case 'date': {\r\n const datePublished = this.model?.datePublished;\r\n sortedValue = { field: 'published', value: datePublished };\r\n if (isFirstMillisecondOfUTCYear(datePublished)) {\r\n format = 'year-only';\r\n }\r\n break;\r\n }\r\n case 'reviewdate':\r\n sortedValue = { field: 'reviewed', value: this.model?.dateReviewed };\r\n break;\r\n case 'addeddate':\r\n sortedValue = { field: 'added', value: this.model?.dateAdded };\r\n break;\r\n case 'publicdate':\r\n sortedValue = { field: 'archived', value: this.model?.dateArchived };\r\n break;\r\n default:\r\n break;\r\n }\r\n\r\n if (!sortedValue?.value) {\r\n return nothing;\r\n }\r\n\r\n const formattedDate = this.getFormattedDate(sortedValue.value, format);\r\n return html`\r\n <div class=\"date-sorted-by truncated\">\r\n <span>${sortedValue.field} ${formattedDate}</span>\r\n </div>\r\n `;\r\n }\r\n\r\n private get infoButtonTemplate(): TemplateResult | typeof nothing {\r\n // ⓘ is an information icon\r\n return this.showInfoButton\r\n ? html`<button class=\"info-button\" @click=${this.infoButtonPressed}>\r\n ⓘ\r\n <span class=\"sr-only\">${msg('More info')}</span>\r\n </button>`\r\n : nothing;\r\n }\r\n\r\n private get reviewBlockTemplate(): TemplateResult | typeof nothing {\r\n if (!this.model?.review) return nothing;\r\n\r\n const { reviewtitle, reviewbody, stars } = this.model.review;\r\n return html`\r\n <review-block\r\n viewsize=\"grid\"\r\n title=${ifDefined(reviewtitle)}\r\n body=${ifDefined(reviewbody)}\r\n starRating=${ifDefined(stars)}\r\n >\r\n </review-block>\r\n `;\r\n }\r\n\r\n private get textSnippetsTemplate(): TemplateResult | typeof nothing {\r\n if (!this.hasSnippets || this.simpleLayoutType === 'stats-only')\r\n return nothing;\r\n\r\n return html`\r\n <text-snippet-block viewsize=\"grid\" .snippets=${this.model?.snippets}>\r\n </text-snippet-block>\r\n `;\r\n }\r\n\r\n private get volumeIssueTemplate(): TemplateResult | typeof nothing {\r\n if (!this.model?.volume || !this.model?.issue) return nothing;\r\n\r\n return html`\r\n <div class=\"volume-issue\">\r\n <span class=\"truncated\" title=\"volume|issue\">\r\n Volume ${this.model?.volume}, Issue ${this.model?.issue}\r\n </span>\r\n </div>\r\n `;\r\n }\r\n\r\n private get webArchivesCaptureDatesTemplate():\r\n | TemplateResult\r\n | typeof nothing {\r\n if (!this.model?.captureDates || !this.model.title) return nothing;\r\n\r\n return html`\r\n <ul class=\"capture-dates\">\r\n ${map(\r\n this.model.captureDates,\r\n date =>\r\n html`<li>\r\n ${this.displayValueProvider.webArchivesCaptureLink(\r\n this.model!.title,\r\n date,\r\n )}\r\n </li>`,\r\n )}\r\n </ul>\r\n `;\r\n }\r\n\r\n /**\r\n * Template for the stats row along the bottom of the tile.\r\n */\r\n private get tileStatsTemplate(): TemplateResult | typeof nothing {\r\n if (this.simpleLayoutType === 'snippets-only') return nothing;\r\n\r\n const effectiveSort = this.sortParam ?? this.defaultSortParam;\r\n const [viewCount, viewLabel] =\r\n effectiveSort?.field === 'week'\r\n ? [this.model?.weeklyViewCount, 'weekly views']\r\n : [this.model?.viewCount, 'all-time views'];\r\n\r\n return html`\r\n <tile-stats\r\n .model=${this.model}\r\n .mediatype=${this.model?.mediatype}\r\n .viewCount=${viewCount}\r\n .viewLabel=${viewLabel}\r\n .favCount=${this.model?.favCount}\r\n .commentCount=${this.model?.commentCount}\r\n .tvClipCount=${this.model?.tvClipCount}\r\n .showTvClips=${this.showTvClips}\r\n >\r\n </tile-stats>\r\n `;\r\n }\r\n\r\n private get isSortedByDate(): boolean {\r\n return ['date', 'reviewdate', 'addeddate', 'publicdate'].includes(\r\n this.effectiveSort?.field as string,\r\n );\r\n }\r\n\r\n /**\r\n * Returns the active sort param if one is set, or the default sort param otherwise.\r\n */\r\n private get effectiveSort(): SortParam | null {\r\n return this.sortParam ?? this.defaultSortParam;\r\n }\r\n\r\n private get hasSnippets(): boolean {\r\n return !!this.model?.snippets?.length;\r\n }\r\n\r\n private infoButtonPressed(e: PointerEvent): void {\r\n e.preventDefault();\r\n const event = new CustomEvent<{ x: number; y: number }>(\r\n 'infoButtonPressed',\r\n { detail: { x: e.clientX, y: e.clientY } },\r\n );\r\n this.dispatchEvent(event);\r\n }\r\n\r\n /**\r\n * CSS\r\n */\r\n static get styles(): CSSResultGroup {\r\n const tileBorderColor = css`var(--tileBorderColor, #dddddd)`;\r\n\r\n return [\r\n baseTileStyles,\r\n css`\r\n a:link {\r\n text-decoration: none;\r\n color: var(--ia-theme-link-color, #4b64ff);\r\n }\r\n a:hover {\r\n text-decoration: underline;\r\n }\r\n\r\n .container {\r\n border: 1px solid ${tileBorderColor};\r\n }\r\n\r\n .simple #title > .truncated {\r\n -webkit-line-clamp: 2;\r\n }\r\n\r\n .simple .created-by > .truncated,\r\n .simple .date-sorted-by > .truncated,\r\n .simple .volume-issue > .truncated {\r\n -webkit-line-clamp: 1;\r\n }\r\n\r\n .simple.snippets-only .item-info {\r\n padding-bottom: 5px;\r\n }\r\n\r\n .simple.snippets-only text-snippet-block {\r\n margin-top: auto; /* Force the snippets to the bottom of the tile */\r\n }\r\n\r\n .capture-dates {\r\n margin: 0;\r\n padding: 0 5px;\r\n list-style-type: none;\r\n }\r\n\r\n review-block,\r\n text-snippet-block {\r\n --containerLeftMargin: 5px;\r\n --containerTopMargin: 5px;\r\n }\r\n\r\n /**\r\n * iOS Safari long-press on tiles (to bring up hover pane)\r\n * gets messy without this\r\n */\r\n @media screen and (pointer: coarse) and (hover: none) {\r\n .container {\r\n -webkit-touch-callout: none;\r\n }\r\n\r\n .truncated {\r\n -webkit-touch-callout: default;\r\n }\r\n }\r\n `,\r\n ];\r\n }\r\n}\r\n"]}
|
|
@@ -122,6 +122,13 @@ export declare class HoverPaneController implements HoverPaneControllerInterface
|
|
|
122
122
|
private forceTouchBackdrop;
|
|
123
123
|
/** A record of the last mouse position on the host element, for positioning the hover pane */
|
|
124
124
|
private lastPointerClientPos;
|
|
125
|
+
/**
|
|
126
|
+
* A flag to track whether the host element is being clicked by a pointer device, so that we
|
|
127
|
+
* don't trigger unnecessary keyboard focus behaviors on click. This is needed, e.g., to prevent
|
|
128
|
+
* the hover pane from appearing immediately at its `host` positioning on click, which can
|
|
129
|
+
* obstruct the host element itself (due to the ordering of events fired).
|
|
130
|
+
*/
|
|
131
|
+
private clicking;
|
|
125
132
|
constructor(
|
|
126
133
|
/** The host element to which this controller should attach listeners */
|
|
127
134
|
host: ReactiveControllerHost & HoverPaneProviderInterface & HTMLElement,
|
|
@@ -171,6 +178,7 @@ export declare class HoverPaneController implements HoverPaneControllerInterface
|
|
|
171
178
|
private detachListeners;
|
|
172
179
|
private handleFocus;
|
|
173
180
|
private handleBlur;
|
|
181
|
+
private handlePointerDown;
|
|
174
182
|
private handleKeyDown;
|
|
175
183
|
private handleKeyUp;
|
|
176
184
|
/**
|
|
@@ -56,18 +56,29 @@ export class HoverPaneController {
|
|
|
56
56
|
this.forceTouchBackdrop = false;
|
|
57
57
|
/** A record of the last mouse position on the host element, for positioning the hover pane */
|
|
58
58
|
this.lastPointerClientPos = { x: 0, y: 0 };
|
|
59
|
+
/**
|
|
60
|
+
* A flag to track whether the host element is being clicked by a pointer device, so that we
|
|
61
|
+
* don't trigger unnecessary keyboard focus behaviors on click. This is needed, e.g., to prevent
|
|
62
|
+
* the hover pane from appearing immediately at its `host` positioning on click, which can
|
|
63
|
+
* obstruct the host element itself (due to the ordering of events fired).
|
|
64
|
+
*/
|
|
65
|
+
this.clicking = false;
|
|
59
66
|
this.handleFocus = () => {
|
|
60
|
-
if (this.hoverPaneState === 'hidden') {
|
|
67
|
+
if (!this.clicking && this.hoverPaneState === 'hidden') {
|
|
61
68
|
this.showHoverPane({
|
|
62
69
|
anchor: 'host',
|
|
63
70
|
});
|
|
64
71
|
}
|
|
72
|
+
this.clicking = false;
|
|
65
73
|
};
|
|
66
74
|
this.handleBlur = () => {
|
|
67
75
|
if (this.hoverPaneState !== 'hidden') {
|
|
68
76
|
this.fadeOutHoverPane();
|
|
69
77
|
}
|
|
70
78
|
};
|
|
79
|
+
this.handlePointerDown = () => {
|
|
80
|
+
this.clicking = true;
|
|
81
|
+
};
|
|
71
82
|
this.handleKeyDown = (e) => {
|
|
72
83
|
if ((e.key === 'ArrowDown' || e.key === 'ArrowUp') &&
|
|
73
84
|
this.hoverPaneState !== 'hidden') {
|
|
@@ -204,25 +215,25 @@ export class HoverPaneController {
|
|
|
204
215
|
getTemplate() {
|
|
205
216
|
this.hoverPaneProps = this.host.getHoverPaneProps();
|
|
206
217
|
return this.shouldRenderHoverPane
|
|
207
|
-
? html `
|
|
208
|
-
${this.touchBackdropTemplate}
|
|
209
|
-
<tile-hover-pane
|
|
210
|
-
popover
|
|
211
|
-
tabindex="-1"
|
|
212
|
-
aria-describedby="tile-hover-pane-aria-description"
|
|
213
|
-
.model=${this.hoverPaneProps?.model}
|
|
214
|
-
.baseNavigationUrl=${this.hoverPaneProps?.baseNavigationUrl}
|
|
215
|
-
.baseImageUrl=${this.hoverPaneProps?.baseImageUrl}
|
|
216
|
-
.loggedIn=${this.hoverPaneProps?.loggedIn}
|
|
217
|
-
.suppressBlurring=${this.hoverPaneProps?.suppressBlurring}
|
|
218
|
-
.sortParam=${this.hoverPaneProps?.sortParam}
|
|
219
|
-
.collectionTitles=${this.hoverPaneProps?.collectionTitles}
|
|
220
|
-
.mobileBreakpoint=${this.mobileBreakpoint}
|
|
221
|
-
.currentWidth=${window.innerWidth}
|
|
222
|
-
></tile-hover-pane>
|
|
223
|
-
<div id="tile-hover-pane-aria-description" class="sr-only">
|
|
224
|
-
${msg('Press Up Arrow to exit item detail preview')}
|
|
225
|
-
</div>
|
|
218
|
+
? html `
|
|
219
|
+
${this.touchBackdropTemplate}
|
|
220
|
+
<tile-hover-pane
|
|
221
|
+
popover
|
|
222
|
+
tabindex="-1"
|
|
223
|
+
aria-describedby="tile-hover-pane-aria-description"
|
|
224
|
+
.model=${this.hoverPaneProps?.model}
|
|
225
|
+
.baseNavigationUrl=${this.hoverPaneProps?.baseNavigationUrl}
|
|
226
|
+
.baseImageUrl=${this.hoverPaneProps?.baseImageUrl}
|
|
227
|
+
.loggedIn=${this.hoverPaneProps?.loggedIn}
|
|
228
|
+
.suppressBlurring=${this.hoverPaneProps?.suppressBlurring}
|
|
229
|
+
.sortParam=${this.hoverPaneProps?.sortParam}
|
|
230
|
+
.collectionTitles=${this.hoverPaneProps?.collectionTitles}
|
|
231
|
+
.mobileBreakpoint=${this.mobileBreakpoint}
|
|
232
|
+
.currentWidth=${window.innerWidth}
|
|
233
|
+
></tile-hover-pane>
|
|
234
|
+
<div id="tile-hover-pane-aria-description" class="sr-only">
|
|
235
|
+
${msg('Press Up Arrow to exit item detail preview')}
|
|
236
|
+
</div>
|
|
226
237
|
`
|
|
227
238
|
: nothing;
|
|
228
239
|
}
|
|
@@ -247,15 +258,15 @@ export class HoverPaneController {
|
|
|
247
258
|
*/
|
|
248
259
|
get touchBackdropTemplate() {
|
|
249
260
|
return this.showTouchBackdrop
|
|
250
|
-
? html `<div
|
|
251
|
-
id="touch-backdrop"
|
|
252
|
-
@touchstart=${this.handleBackdropInteraction}
|
|
253
|
-
@touchmove=${this.handleBackdropInteraction}
|
|
254
|
-
@touchend=${this.handleBackdropInteraction}
|
|
255
|
-
@touchcancel=${this.handleBackdropInteraction}
|
|
256
|
-
@mouseenter=${(e) => e.stopPropagation()}
|
|
257
|
-
@mousemove=${(e) => e.stopPropagation()}
|
|
258
|
-
@mouseleave=${(e) => e.stopPropagation()}
|
|
261
|
+
? html `<div
|
|
262
|
+
id="touch-backdrop"
|
|
263
|
+
@touchstart=${this.handleBackdropInteraction}
|
|
264
|
+
@touchmove=${this.handleBackdropInteraction}
|
|
265
|
+
@touchend=${this.handleBackdropInteraction}
|
|
266
|
+
@touchcancel=${this.handleBackdropInteraction}
|
|
267
|
+
@mouseenter=${(e) => e.stopPropagation()}
|
|
268
|
+
@mousemove=${(e) => e.stopPropagation()}
|
|
269
|
+
@mouseleave=${(e) => e.stopPropagation()}
|
|
259
270
|
></div>`
|
|
260
271
|
: nothing;
|
|
261
272
|
}
|
|
@@ -340,6 +351,7 @@ export class HoverPaneController {
|
|
|
340
351
|
// keyboard navigation listeners
|
|
341
352
|
this.host.addEventListener('focus', this.handleFocus);
|
|
342
353
|
this.host.addEventListener('blur', this.handleBlur);
|
|
354
|
+
this.host.addEventListener('pointerdown', this.handlePointerDown);
|
|
343
355
|
this.host.addEventListener('keyup', this.handleKeyUp);
|
|
344
356
|
this.host.addEventListener('keydown', this.handleKeyDown);
|
|
345
357
|
if (this.isHoverEnabled) {
|