@internetarchive/collection-browser 3.1.0 → 3.1.1-alpha-webdev6778.1

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 (81) hide show
  1. package/dist/src/app-root.js +606 -606
  2. package/dist/src/app-root.js.map +1 -1
  3. package/dist/src/collection-browser.d.ts +9 -0
  4. package/dist/src/collection-browser.js +7 -0
  5. package/dist/src/collection-browser.js.map +1 -1
  6. package/dist/src/collection-facets/facet-row.js +140 -140
  7. package/dist/src/collection-facets/facet-row.js.map +1 -1
  8. package/dist/src/collection-facets/models.js.map +1 -1
  9. package/dist/src/collection-facets/more-facets-content.d.ts +1 -0
  10. package/dist/src/collection-facets/more-facets-content.js +122 -118
  11. package/dist/src/collection-facets/more-facets-content.js.map +1 -1
  12. package/dist/src/collection-facets/smart-facets/smart-facet-bar.js +75 -75
  13. package/dist/src/collection-facets/smart-facets/smart-facet-bar.js.map +1 -1
  14. package/dist/src/collection-facets/smart-facets/smart-facet-dropdown.js +54 -54
  15. package/dist/src/collection-facets/smart-facets/smart-facet-dropdown.js.map +1 -1
  16. package/dist/src/collection-facets.d.ts +1 -0
  17. package/dist/src/collection-facets.js +269 -265
  18. package/dist/src/collection-facets.js.map +1 -1
  19. package/dist/src/data-source/collection-browser-data-source-interface.js.map +1 -1
  20. package/dist/src/data-source/collection-browser-data-source.js +27 -13
  21. package/dist/src/data-source/collection-browser-data-source.js.map +1 -1
  22. package/dist/src/data-source/collection-browser-query-state.d.ts +1 -0
  23. package/dist/src/data-source/collection-browser-query-state.js.map +1 -1
  24. package/dist/src/data-source/models.d.ts +1 -1
  25. package/dist/src/data-source/models.js.map +1 -1
  26. package/dist/src/expanded-date-picker.js +52 -52
  27. package/dist/src/expanded-date-picker.js.map +1 -1
  28. package/dist/src/manage/manage-bar.js +77 -77
  29. package/dist/src/manage/manage-bar.js.map +1 -1
  30. package/dist/src/models.js.map +1 -1
  31. package/dist/src/sort-filter-bar/sort-filter-bar.js +376 -376
  32. package/dist/src/sort-filter-bar/sort-filter-bar.js.map +1 -1
  33. package/dist/src/tiles/grid/collection-tile.js +77 -77
  34. package/dist/src/tiles/grid/collection-tile.js.map +1 -1
  35. package/dist/src/tiles/grid/item-tile.js +139 -139
  36. package/dist/src/tiles/grid/item-tile.js.map +1 -1
  37. package/dist/src/tiles/grid/search-tile.js +42 -42
  38. package/dist/src/tiles/grid/search-tile.js.map +1 -1
  39. package/dist/src/tiles/grid/styles/tile-grid-shared-styles.js +119 -119
  40. package/dist/src/tiles/grid/styles/tile-grid-shared-styles.js.map +1 -1
  41. package/dist/src/tiles/list/tile-list.js +297 -297
  42. package/dist/src/tiles/list/tile-list.js.map +1 -1
  43. package/dist/src/tiles/tile-dispatcher.js +200 -200
  44. package/dist/src/tiles/tile-dispatcher.js.map +1 -1
  45. package/dist/src/utils/analytics-events.js.map +1 -1
  46. package/dist/test/collection-facets/facet-row.test.js +23 -23
  47. package/dist/test/collection-facets/facet-row.test.js.map +1 -1
  48. package/dist/test/collection-facets.test.js +20 -20
  49. package/dist/test/collection-facets.test.js.map +1 -1
  50. package/dist/test/sort-filter-bar/sort-filter-bar.test.js +37 -37
  51. package/dist/test/sort-filter-bar/sort-filter-bar.test.js.map +1 -1
  52. package/dist/test/tiles/list/tile-list.test.js +113 -113
  53. package/dist/test/tiles/list/tile-list.test.js.map +1 -1
  54. package/package.json +2 -2
  55. package/src/app-root.ts +1140 -1140
  56. package/src/collection-browser.ts +14 -0
  57. package/src/collection-facets/facet-row.ts +296 -296
  58. package/src/collection-facets/models.ts +10 -10
  59. package/src/collection-facets/more-facets-content.ts +639 -636
  60. package/src/collection-facets/smart-facets/smart-facet-bar.ts +437 -437
  61. package/src/collection-facets/smart-facets/smart-facet-dropdown.ts +185 -185
  62. package/src/collection-facets.ts +995 -992
  63. package/src/data-source/collection-browser-data-source-interface.ts +333 -333
  64. package/src/data-source/collection-browser-data-source.ts +21 -11
  65. package/src/data-source/collection-browser-query-state.ts +1 -0
  66. package/src/data-source/models.ts +1 -1
  67. package/src/expanded-date-picker.ts +191 -191
  68. package/src/manage/manage-bar.ts +247 -247
  69. package/src/models.ts +870 -870
  70. package/src/sort-filter-bar/sort-filter-bar.ts +1283 -1283
  71. package/src/tiles/grid/collection-tile.ts +162 -162
  72. package/src/tiles/grid/item-tile.ts +339 -339
  73. package/src/tiles/grid/search-tile.ts +90 -90
  74. package/src/tiles/grid/styles/tile-grid-shared-styles.ts +130 -130
  75. package/src/tiles/list/tile-list.ts +696 -696
  76. package/src/tiles/tile-dispatcher.ts +486 -486
  77. package/src/utils/analytics-events.ts +29 -29
  78. package/test/collection-facets/facet-row.test.ts +375 -375
  79. package/test/collection-facets.test.ts +928 -928
  80. package/test/sort-filter-bar/sort-filter-bar.test.ts +885 -885
  81. package/test/tiles/list/tile-list.test.ts +497 -497
@@ -1,247 +1,247 @@
1
- import { msg } from '@lit/localize';
2
- import { LitElement, html, css, TemplateResult, CSSResultGroup } from 'lit';
3
- import { customElement, property } from 'lit/decorators.js';
4
- import { when } from 'lit/directives/when.js';
5
- import {
6
- ModalConfig,
7
- type ModalManagerInterface,
8
- } from '@internetarchive/modal-manager';
9
- import type { ManageableItem } from '../models';
10
- import iaButtonStyle from '../styles/ia-button';
11
- import './remove-items-modal-content';
12
-
13
- @customElement('manage-bar')
14
- export class ManageBar extends LitElement {
15
- /**
16
- * The label displayed in front of the management buttons
17
- */
18
- @property({ type: String }) label = msg('Select items to remove');
19
-
20
- /**
21
- * The shared modal manager component for displaying modal dialogs on this page
22
- */
23
- @property({ type: Object }) modalManager?: ModalManagerInterface;
24
-
25
- /**
26
- * Array of items that have been selected for management
27
- */
28
- @property({ type: Object }) selectedItems: Array<ManageableItem> = [];
29
-
30
- /**
31
- * Message shows as note in the modal when removing items
32
- */
33
- @property({ type: String }) manageViewModalMsg?: string;
34
-
35
- /**
36
- * Whether to show the "Select All" button (default false)
37
- */
38
- @property({ type: Boolean }) showSelectAll = false;
39
-
40
- /**
41
- * Whether to show the "Unselect All" button (default false)
42
- */
43
- @property({ type: Boolean }) showUnselectAll = false;
44
-
45
- /**
46
- * Whether to show "Item Manager the items" button (default false)
47
- */
48
- @property({ type: Boolean }) showItemManageButton = false;
49
-
50
- /**
51
- * Whether to active delete button for selectable items
52
- */
53
- @property({ type: Boolean }) removeAllowed = false;
54
-
55
- render(): TemplateResult {
56
- return html`
57
- <div class="manage-container">
58
- <span class="manage-label">${this.label}</span>
59
- <div class="manage-buttons">
60
- <button class="ia-button dark" @click=${this.cancelClicked}>
61
- ${msg('Cancel')}
62
- </button>
63
- <button
64
- class="ia-button danger"
65
- ?disabled=${!this.removeAllowed}
66
- @click=${this.showRemoveItemsModal}
67
- >
68
- ${msg('Remove selected items')} (${this.selectedItems.length})...
69
- </button>
70
- ${when(
71
- this.showItemManageButton,
72
- () =>
73
- html` <button
74
- class="ia-button warning"
75
- ?disabled=${!this.removeAllowed}
76
- @click=${this.manageItemsClicked}
77
- >
78
- ${msg('Item Manager the items')} (${this.selectedItems.length})
79
- </button>`,
80
- )}
81
- <div class="selection-buttons">
82
- ${when(
83
- this.showSelectAll,
84
- () =>
85
- html` <button
86
- class="ia-button link select-all-btn"
87
- @click=${this.selectAllClicked}
88
- >
89
- ${msg('Select all')}
90
- </button>`,
91
- )}
92
- ${when(
93
- this.showUnselectAll,
94
- () =>
95
- html` <button
96
- class="ia-button link unselect-all-btn"
97
- @click=${this.unselectAllClicked}
98
- >
99
- ${msg('Unselect all')}
100
- </button>`,
101
- )}
102
- </div>
103
- </div>
104
- </div>
105
- `;
106
- }
107
-
108
- private cancelClicked(): void {
109
- this.dispatchEvent(new CustomEvent('cancel'));
110
- }
111
-
112
- private removeItemsClicked(): void {
113
- this.dispatchEvent(new CustomEvent('removeItems'));
114
- }
115
-
116
- private manageItemsClicked(): void {
117
- this.dispatchEvent(new CustomEvent('manageItems'));
118
- }
119
-
120
- private selectAllClicked(): void {
121
- this.dispatchEvent(new CustomEvent('selectAll'));
122
- }
123
-
124
- private unselectAllClicked(): void {
125
- this.dispatchEvent(new CustomEvent('unselectAll'));
126
- }
127
-
128
- /**
129
- * Shows a modal dialog confirming the list of items to be removed
130
- * @param items Which items to list in the modal
131
- */
132
- private showRemoveItemsModal(): void {
133
- const customModalContent = html`
134
- <remove-items-modal-content
135
- .items=${this.selectedItems}
136
- .message=${this.manageViewModalMsg}
137
- @confirm=${() => this.removeItemsClicked()}
138
- ></remove-items-modal-content>
139
- `;
140
-
141
- const config = new ModalConfig({
142
- showProcessingIndicator: false,
143
- processingImageMode: 'processing',
144
- bodyColor: '#fff',
145
- headerColor: '#194880',
146
- showHeaderLogo: false,
147
- closeOnBackdropClick: true,
148
- title: html`${msg('Are you sure you want to remove these items?')}`,
149
- });
150
-
151
- this.modalManager?.classList.add('remove-items');
152
- this.modalManager?.showModal({
153
- config,
154
- customModalContent,
155
- userClosedModalCallback: () => {
156
- this.modalManager?.classList.remove('remove-items');
157
- },
158
- });
159
- }
160
-
161
- /**
162
- * Shows a modal dialog indicating that item removal is being processed
163
- */
164
- showRemoveItemsProcessingModal(): void {
165
- const config = new ModalConfig({
166
- showProcessingIndicator: true,
167
- processingImageMode: 'processing',
168
- bodyColor: '#fff',
169
- headerColor: '#194880',
170
- showHeaderLogo: false,
171
- closeOnBackdropClick: true,
172
- title: html`${msg('Removing selected items...')}`,
173
- });
174
-
175
- this.modalManager?.classList.add('remove-items');
176
- this.modalManager?.showModal({
177
- config,
178
- userClosedModalCallback: () => {
179
- this.modalManager?.classList.remove('remove-items');
180
- },
181
- });
182
- }
183
-
184
- /**
185
- * Shows a modal dialog indicating that an error occurred while removing items
186
- */
187
- showRemoveItemsErrorModal(): void {
188
- const config = new ModalConfig({
189
- showProcessingIndicator: false,
190
- processingImageMode: 'processing',
191
- bodyColor: '#fff',
192
- headerColor: '#691916',
193
- showHeaderLogo: false,
194
- closeOnBackdropClick: true,
195
- title: html`${msg('Error: unable to remove items')}`,
196
- message: html`${msg(
197
- 'An error occurred while removing items. Please try again in a few minutes.',
198
- )}`,
199
- });
200
-
201
- this.modalManager?.classList.add('remove-items');
202
- this.modalManager?.showModal({
203
- config,
204
- userClosedModalCallback: () => {
205
- this.modalManager?.classList.remove('remove-items');
206
- },
207
- });
208
- }
209
-
210
- static get styles(): CSSResultGroup {
211
- return css`
212
- ${iaButtonStyle}
213
- .manage-container {
214
- display: flex;
215
- align-items: center;
216
- column-gap: 5px;
217
- padding: 20px 0 20px;
218
- flex-wrap: wrap;
219
- }
220
-
221
- .manage-label {
222
- display: inline-block;
223
- font-weight: bold;
224
- font-size: 1.8rem;
225
- padding-right: 10px;
226
- }
227
-
228
- .manage-buttons {
229
- display: flex;
230
- flex-wrap: wrap;
231
- align-items: center;
232
- column-gap: 5px;
233
- }
234
-
235
- .selection-buttons {
236
- display: inherit;
237
- }
238
-
239
- .ia-button,
240
- button {
241
- padding: 6px 12px;
242
- font-size: 1.4rem;
243
- margin: 3px 0;
244
- }
245
- `;
246
- }
247
- }
1
+ import { msg } from '@lit/localize';
2
+ import { LitElement, html, css, TemplateResult, CSSResultGroup } from 'lit';
3
+ import { customElement, property } from 'lit/decorators.js';
4
+ import { when } from 'lit/directives/when.js';
5
+ import {
6
+ ModalConfig,
7
+ type ModalManagerInterface,
8
+ } from '@internetarchive/modal-manager';
9
+ import type { ManageableItem } from '../models';
10
+ import iaButtonStyle from '../styles/ia-button';
11
+ import './remove-items-modal-content';
12
+
13
+ @customElement('manage-bar')
14
+ export class ManageBar extends LitElement {
15
+ /**
16
+ * The label displayed in front of the management buttons
17
+ */
18
+ @property({ type: String }) label = msg('Select items to remove');
19
+
20
+ /**
21
+ * The shared modal manager component for displaying modal dialogs on this page
22
+ */
23
+ @property({ type: Object }) modalManager?: ModalManagerInterface;
24
+
25
+ /**
26
+ * Array of items that have been selected for management
27
+ */
28
+ @property({ type: Object }) selectedItems: Array<ManageableItem> = [];
29
+
30
+ /**
31
+ * Message shows as note in the modal when removing items
32
+ */
33
+ @property({ type: String }) manageViewModalMsg?: string;
34
+
35
+ /**
36
+ * Whether to show the "Select All" button (default false)
37
+ */
38
+ @property({ type: Boolean }) showSelectAll = false;
39
+
40
+ /**
41
+ * Whether to show the "Unselect All" button (default false)
42
+ */
43
+ @property({ type: Boolean }) showUnselectAll = false;
44
+
45
+ /**
46
+ * Whether to show "Item Manager the items" button (default false)
47
+ */
48
+ @property({ type: Boolean }) showItemManageButton = false;
49
+
50
+ /**
51
+ * Whether to active delete button for selectable items
52
+ */
53
+ @property({ type: Boolean }) removeAllowed = false;
54
+
55
+ render(): TemplateResult {
56
+ return html`
57
+ <div class="manage-container">
58
+ <span class="manage-label">${this.label}</span>
59
+ <div class="manage-buttons">
60
+ <button class="ia-button dark" @click=${this.cancelClicked}>
61
+ ${msg('Cancel')}
62
+ </button>
63
+ <button
64
+ class="ia-button danger"
65
+ ?disabled=${!this.removeAllowed}
66
+ @click=${this.showRemoveItemsModal}
67
+ >
68
+ ${msg('Remove selected items')} (${this.selectedItems.length})...
69
+ </button>
70
+ ${when(
71
+ this.showItemManageButton,
72
+ () =>
73
+ html` <button
74
+ class="ia-button warning"
75
+ ?disabled=${!this.removeAllowed}
76
+ @click=${this.manageItemsClicked}
77
+ >
78
+ ${msg('Item Manager the items')} (${this.selectedItems.length})
79
+ </button>`,
80
+ )}
81
+ <div class="selection-buttons">
82
+ ${when(
83
+ this.showSelectAll,
84
+ () =>
85
+ html` <button
86
+ class="ia-button link select-all-btn"
87
+ @click=${this.selectAllClicked}
88
+ >
89
+ ${msg('Select all')}
90
+ </button>`,
91
+ )}
92
+ ${when(
93
+ this.showUnselectAll,
94
+ () =>
95
+ html` <button
96
+ class="ia-button link unselect-all-btn"
97
+ @click=${this.unselectAllClicked}
98
+ >
99
+ ${msg('Unselect all')}
100
+ </button>`,
101
+ )}
102
+ </div>
103
+ </div>
104
+ </div>
105
+ `;
106
+ }
107
+
108
+ private cancelClicked(): void {
109
+ this.dispatchEvent(new CustomEvent('cancel'));
110
+ }
111
+
112
+ private removeItemsClicked(): void {
113
+ this.dispatchEvent(new CustomEvent('removeItems'));
114
+ }
115
+
116
+ private manageItemsClicked(): void {
117
+ this.dispatchEvent(new CustomEvent('manageItems'));
118
+ }
119
+
120
+ private selectAllClicked(): void {
121
+ this.dispatchEvent(new CustomEvent('selectAll'));
122
+ }
123
+
124
+ private unselectAllClicked(): void {
125
+ this.dispatchEvent(new CustomEvent('unselectAll'));
126
+ }
127
+
128
+ /**
129
+ * Shows a modal dialog confirming the list of items to be removed
130
+ * @param items Which items to list in the modal
131
+ */
132
+ private showRemoveItemsModal(): void {
133
+ const customModalContent = html`
134
+ <remove-items-modal-content
135
+ .items=${this.selectedItems}
136
+ .message=${this.manageViewModalMsg}
137
+ @confirm=${() => this.removeItemsClicked()}
138
+ ></remove-items-modal-content>
139
+ `;
140
+
141
+ const config = new ModalConfig({
142
+ showProcessingIndicator: false,
143
+ processingImageMode: 'processing',
144
+ bodyColor: '#fff',
145
+ headerColor: '#194880',
146
+ showHeaderLogo: false,
147
+ closeOnBackdropClick: true,
148
+ title: html`${msg('Are you sure you want to remove these items?')}`,
149
+ });
150
+
151
+ this.modalManager?.classList.add('remove-items');
152
+ this.modalManager?.showModal({
153
+ config,
154
+ customModalContent,
155
+ userClosedModalCallback: () => {
156
+ this.modalManager?.classList.remove('remove-items');
157
+ },
158
+ });
159
+ }
160
+
161
+ /**
162
+ * Shows a modal dialog indicating that item removal is being processed
163
+ */
164
+ showRemoveItemsProcessingModal(): void {
165
+ const config = new ModalConfig({
166
+ showProcessingIndicator: true,
167
+ processingImageMode: 'processing',
168
+ bodyColor: '#fff',
169
+ headerColor: '#194880',
170
+ showHeaderLogo: false,
171
+ closeOnBackdropClick: true,
172
+ title: html`${msg('Removing selected items...')}`,
173
+ });
174
+
175
+ this.modalManager?.classList.add('remove-items');
176
+ this.modalManager?.showModal({
177
+ config,
178
+ userClosedModalCallback: () => {
179
+ this.modalManager?.classList.remove('remove-items');
180
+ },
181
+ });
182
+ }
183
+
184
+ /**
185
+ * Shows a modal dialog indicating that an error occurred while removing items
186
+ */
187
+ showRemoveItemsErrorModal(): void {
188
+ const config = new ModalConfig({
189
+ showProcessingIndicator: false,
190
+ processingImageMode: 'processing',
191
+ bodyColor: '#fff',
192
+ headerColor: '#691916',
193
+ showHeaderLogo: false,
194
+ closeOnBackdropClick: true,
195
+ title: html`${msg('Error: unable to remove items')}`,
196
+ message: html`${msg(
197
+ 'An error occurred while removing items. Please try again in a few minutes.',
198
+ )}`,
199
+ });
200
+
201
+ this.modalManager?.classList.add('remove-items');
202
+ this.modalManager?.showModal({
203
+ config,
204
+ userClosedModalCallback: () => {
205
+ this.modalManager?.classList.remove('remove-items');
206
+ },
207
+ });
208
+ }
209
+
210
+ static get styles(): CSSResultGroup {
211
+ return css`
212
+ ${iaButtonStyle}
213
+ .manage-container {
214
+ display: flex;
215
+ align-items: center;
216
+ column-gap: 5px;
217
+ padding: 20px 0 20px;
218
+ flex-wrap: wrap;
219
+ }
220
+
221
+ .manage-label {
222
+ display: inline-block;
223
+ font-weight: bold;
224
+ font-size: 1.8rem;
225
+ padding-right: 10px;
226
+ }
227
+
228
+ .manage-buttons {
229
+ display: flex;
230
+ flex-wrap: wrap;
231
+ align-items: center;
232
+ column-gap: 5px;
233
+ }
234
+
235
+ .selection-buttons {
236
+ display: inherit;
237
+ }
238
+
239
+ .ia-button,
240
+ button {
241
+ padding: 6px 12px;
242
+ font-size: 1.4rem;
243
+ margin: 3px 0;
244
+ }
245
+ `;
246
+ }
247
+ }