@internetarchive/collection-browser 2.18.2-webdev-7743.1 → 2.18.3-alpha-webdev5427.0

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 (48) hide show
  1. package/.editorconfig +29 -29
  2. package/.github/workflows/ci.yml +27 -27
  3. package/.github/workflows/gh-pages-main.yml +39 -39
  4. package/.github/workflows/npm-publish.yml +39 -39
  5. package/.github/workflows/pr-preview.yml +38 -38
  6. package/.husky/pre-commit +4 -4
  7. package/.prettierignore +1 -1
  8. package/LICENSE +661 -661
  9. package/README.md +83 -83
  10. package/dist/src/collection-browser.js +682 -682
  11. package/dist/src/collection-browser.js.map +1 -1
  12. package/dist/src/collection-facets.js +291 -274
  13. package/dist/src/collection-facets.js.map +1 -1
  14. package/dist/src/expanded-date-picker.d.ts +6 -4
  15. package/dist/src/expanded-date-picker.js +64 -55
  16. package/dist/src/expanded-date-picker.js.map +1 -1
  17. package/dist/src/models.js.map +1 -1
  18. package/dist/src/sort-filter-bar/sort-filter-bar.js +382 -382
  19. package/dist/src/sort-filter-bar/sort-filter-bar.js.map +1 -1
  20. package/dist/src/tiles/grid/item-tile.js +139 -139
  21. package/dist/src/tiles/grid/item-tile.js.map +1 -1
  22. package/dist/src/tiles/grid/styles/tile-grid-shared-styles.js +118 -118
  23. package/dist/src/tiles/grid/styles/tile-grid-shared-styles.js.map +1 -1
  24. package/dist/src/tiles/list/tile-list.js +289 -289
  25. package/dist/src/tiles/list/tile-list.js.map +1 -1
  26. package/dist/src/tiles/tile-dispatcher.js +200 -200
  27. package/dist/src/tiles/tile-dispatcher.js.map +1 -1
  28. package/dist/test/sort-filter-bar/sort-filter-bar.test.js +37 -37
  29. package/dist/test/sort-filter-bar/sort-filter-bar.test.js.map +1 -1
  30. package/eslint.config.mjs +53 -53
  31. package/index.html +24 -24
  32. package/local.archive.org.cert +86 -86
  33. package/local.archive.org.key +27 -27
  34. package/package.json +117 -117
  35. package/renovate.json +6 -6
  36. package/src/collection-browser.ts +2712 -2712
  37. package/src/collection-facets.ts +990 -966
  38. package/src/expanded-date-picker.ts +191 -175
  39. package/src/models.ts +822 -822
  40. package/src/sort-filter-bar/sort-filter-bar.ts +1189 -1189
  41. package/src/tiles/grid/item-tile.ts +339 -339
  42. package/src/tiles/grid/styles/tile-grid-shared-styles.ts +129 -129
  43. package/src/tiles/list/tile-list.ts +688 -688
  44. package/src/tiles/tile-dispatcher.ts +486 -486
  45. package/test/sort-filter-bar/sort-filter-bar.test.ts +692 -692
  46. package/tsconfig.json +20 -20
  47. package/web-dev-server.config.mjs +30 -30
  48. package/web-test-runner.config.mjs +41 -41
@@ -1,175 +1,191 @@
1
- import { css, html, LitElement, CSSResultGroup, TemplateResult } from 'lit';
2
- import { customElement, property } from 'lit/decorators.js';
3
- import { ifDefined } from 'lit/directives/if-defined.js';
4
- import { msg } from '@lit/localize';
5
- import type { ModalManagerInterface } from '@internetarchive/modal-manager';
6
- import type { AnalyticsManagerInterface } from '@internetarchive/analytics-manager';
7
- import { BinSnappingInterval } from '@internetarchive/histogram-date-range';
8
- import {
9
- analyticsActions,
10
- analyticsCategories,
11
- } from './utils/analytics-events';
12
-
13
- import '@internetarchive/histogram-date-range';
14
-
15
- @customElement('expanded-date-picker')
16
- export class ExpandedDatePicker extends LitElement {
17
- @property({ type: String }) minDate?: string;
18
-
19
- @property({ type: String }) maxDate?: string;
20
-
21
- @property({ type: String }) minSelectedDate?: string;
22
-
23
- @property({ type: String }) maxSelectedDate?: string;
24
-
25
- @property({ type: Array }) buckets?: number[];
26
-
27
- @property({ type: String }) dateFormat: string = 'YYYY';
28
-
29
- @property({ type: String }) tooltipDateFormat?: string;
30
-
31
- @property({ type: String }) binSnapping?: BinSnappingInterval;
32
-
33
- @property({ type: Object, attribute: false })
34
- modalManager?: ModalManagerInterface;
35
-
36
- @property({ type: Object, attribute: false })
37
- analyticsHandler?: AnalyticsManagerInterface;
38
-
39
- render(): TemplateResult {
40
- return html`
41
- <div id="container">
42
- <histogram-date-range
43
- id="date-picker"
44
- .minDate=${this.minDate}
45
- .maxDate=${this.maxDate}
46
- .minSelectedDate=${this.minSelectedDate ?? this.minDate}
47
- .maxSelectedDate=${this.maxSelectedDate ?? this.maxDate}
48
- .dateFormat=${this.dateFormat}
49
- tooltipDateFormat=${ifDefined(this.tooltipDateFormat)}
50
- binSnapping=${ifDefined(this.binSnapping)}
51
- .updateDelay=${0}
52
- updateWhileFocused
53
- missingDataMessage="..."
54
- .width=${560}
55
- .height=${120}
56
- .bins=${this.buckets}
57
- @histogramDateRangeUpdated=${this.histogramDateRangeUpdated}
58
- >
59
- <button
60
- id="apply-btn"
61
- slot="inputs-right-side"
62
- @click=${this.applyBtnClicked}
63
- >
64
- ${msg('Apply date range')}
65
- </button>
66
- </histogram-date-range>
67
- </div>
68
- `;
69
- }
70
-
71
- connectedCallback(): void {
72
- super.connectedCallback?.();
73
- this.setupEscapeListener();
74
- }
75
-
76
- disconnectedCallback(): void {
77
- super.disconnectedCallback?.();
78
- this.removeEscapeListener();
79
- }
80
-
81
- /**
82
- * Add an event listener to close the date picker modal when the Esc key is pressed
83
- */
84
- private setupEscapeListener() {
85
- document.addEventListener('keydown', this.boundEscapeListener);
86
- }
87
-
88
- /**
89
- * Remove the Esc key listener that was previously added
90
- */
91
- private removeEscapeListener() {
92
- document.removeEventListener('keydown', this.boundEscapeListener);
93
- }
94
-
95
- /**
96
- * Closes the modal dialog if the given event is pressing the Esc key.
97
- * Arrow function to ensure `this` remains bound to the current component.
98
- */
99
- private boundEscapeListener = (e: KeyboardEvent) => {
100
- if (e.key === 'Escape') {
101
- this.closeModal();
102
- }
103
- };
104
-
105
- /**
106
- * When the histogram is updated, keep track of the newly selected date range.
107
- * We don't commit to the new range until the apply button is clicked.
108
- */
109
- private histogramDateRangeUpdated(
110
- e: CustomEvent<{
111
- minDate: string;
112
- maxDate: string;
113
- }>,
114
- ): void {
115
- this.minSelectedDate = e.detail.minDate;
116
- this.maxSelectedDate = e.detail.maxDate;
117
- }
118
-
119
- /**
120
- * When the Apply button is clicked, emit the current date range and close the modal.
121
- */
122
- private applyBtnClicked(): void {
123
- const event = new CustomEvent('histogramDateRangeApplied', {
124
- detail: {
125
- minDate: this.minSelectedDate,
126
- maxDate: this.maxSelectedDate,
127
- },
128
- });
129
- this.dispatchEvent(event);
130
- this.closeModal();
131
-
132
- this.analyticsHandler?.sendEvent({
133
- category: analyticsCategories.default,
134
- action: analyticsActions.histogramChangedFromModal,
135
- label: window.location.href,
136
- });
137
- }
138
-
139
- /**
140
- * Closes the modal associated with this component (if it exists) and dispatches a
141
- * modalClosed event.
142
- */
143
- private closeModal(): void {
144
- if (this.modalManager) {
145
- this.modalManager.closeModal();
146
- this.dispatchEvent(new CustomEvent('modalClosed'));
147
- }
148
- }
149
-
150
- static get styles(): CSSResultGroup {
151
- return css`
152
- #container {
153
- display: flex;
154
- justify-content: center;
155
- padding: 40px 10px 10px;
156
- overflow: hidden;
157
- }
158
-
159
- #date-picker {
160
- --histogramDateRangeInputWidth: 50px;
161
- --histogramDateRangeInputRowMargin: 5px 0 0 0;
162
- }
163
-
164
- #apply-btn {
165
- margin: 0 0 0 5px;
166
- padding: 8px 10px;
167
- border: 0;
168
- border-radius: 4px;
169
- background: var(--primaryButtonBGColor, #194880);
170
- color: white;
171
- cursor: pointer;
172
- }
173
- `;
174
- }
175
- }
1
+ import {
2
+ css,
3
+ html,
4
+ LitElement,
5
+ CSSResultGroup,
6
+ TemplateResult,
7
+ nothing,
8
+ } from 'lit';
9
+ import { customElement, property } from 'lit/decorators.js';
10
+ import { ifDefined } from 'lit/directives/if-defined.js';
11
+ import { msg } from '@lit/localize';
12
+ import type { ModalManagerInterface } from '@internetarchive/modal-manager';
13
+ import type { AnalyticsManagerInterface } from '@internetarchive/analytics-manager';
14
+ import {
15
+ BarScalingOption,
16
+ BinSnappingInterval,
17
+ } from '@internetarchive/histogram-date-range';
18
+ import {
19
+ analyticsActions,
20
+ analyticsCategories,
21
+ } from './utils/analytics-events';
22
+
23
+ import '@internetarchive/histogram-date-range';
24
+
25
+ @customElement('expanded-date-picker')
26
+ export class ExpandedDatePicker extends LitElement {
27
+ @property({ type: String }) minDate?: string;
28
+
29
+ @property({ type: String }) maxDate?: string;
30
+
31
+ @property({ type: String }) minSelectedDate?: string;
32
+
33
+ @property({ type: String }) maxSelectedDate?: string;
34
+
35
+ @property({ type: Array }) buckets?: number[];
36
+
37
+ @property({ type: String }) customDateFormat?: string;
38
+
39
+ @property({ type: String }) customTooltipDateFormat?: string;
40
+
41
+ @property({ type: String }) customTooltipLabel?: string;
42
+
43
+ @property({ type: String }) binSnapping: BinSnappingInterval = 'none';
44
+
45
+ @property({ type: String }) barScaling: BarScalingOption = 'logarithmic';
46
+
47
+ @property({ type: Object, attribute: false })
48
+ modalManager?: ModalManagerInterface;
49
+
50
+ @property({ type: Object, attribute: false })
51
+ analyticsHandler?: AnalyticsManagerInterface;
52
+
53
+ render(): TemplateResult {
54
+ return html`
55
+ <div id="container">
56
+ <histogram-date-range
57
+ id="date-picker"
58
+ .minDate=${this.minDate}
59
+ .maxDate=${this.maxDate}
60
+ .minSelectedDate=${this.minSelectedDate ?? this.minDate}
61
+ .maxSelectedDate=${this.maxSelectedDate ?? this.maxDate}
62
+ dateFormat=${ifDefined(this.customDateFormat)}
63
+ tooltipDateFormat=${ifDefined(this.customTooltipDateFormat)}
64
+ tooltipLabel=${ifDefined(this.customTooltipLabel)}
65
+ .binSnapping=${this.binSnapping}
66
+ .barScaling=${this.barScaling ?? nothing}
67
+ .updateDelay=${0}
68
+ updateWhileFocused
69
+ missingDataMessage="..."
70
+ .width=${560}
71
+ .height=${120}
72
+ .bins=${this.buckets}
73
+ @histogramDateRangeUpdated=${this.histogramDateRangeUpdated}
74
+ >
75
+ <button
76
+ id="apply-btn"
77
+ slot="inputs-right-side"
78
+ @click=${this.applyBtnClicked}
79
+ >
80
+ ${msg('Apply date range')}
81
+ </button>
82
+ </histogram-date-range>
83
+ </div>
84
+ `;
85
+ }
86
+
87
+ connectedCallback(): void {
88
+ super.connectedCallback?.();
89
+ this.setupEscapeListener();
90
+ }
91
+
92
+ disconnectedCallback(): void {
93
+ super.disconnectedCallback?.();
94
+ this.removeEscapeListener();
95
+ }
96
+
97
+ /**
98
+ * Add an event listener to close the date picker modal when the Esc key is pressed
99
+ */
100
+ private setupEscapeListener() {
101
+ document.addEventListener('keydown', this.boundEscapeListener);
102
+ }
103
+
104
+ /**
105
+ * Remove the Esc key listener that was previously added
106
+ */
107
+ private removeEscapeListener() {
108
+ document.removeEventListener('keydown', this.boundEscapeListener);
109
+ }
110
+
111
+ /**
112
+ * Closes the modal dialog if the given event is pressing the Esc key.
113
+ * Arrow function to ensure `this` remains bound to the current component.
114
+ */
115
+ private boundEscapeListener = (e: KeyboardEvent) => {
116
+ if (e.key === 'Escape') {
117
+ this.closeModal();
118
+ }
119
+ };
120
+
121
+ /**
122
+ * When the histogram is updated, keep track of the newly selected date range.
123
+ * We don't commit to the new range until the apply button is clicked.
124
+ */
125
+ private histogramDateRangeUpdated(
126
+ e: CustomEvent<{
127
+ minDate: string;
128
+ maxDate: string;
129
+ }>,
130
+ ): void {
131
+ this.minSelectedDate = e.detail.minDate;
132
+ this.maxSelectedDate = e.detail.maxDate;
133
+ }
134
+
135
+ /**
136
+ * When the Apply button is clicked, emit the current date range and close the modal.
137
+ */
138
+ private applyBtnClicked(): void {
139
+ const event = new CustomEvent('histogramDateRangeApplied', {
140
+ detail: {
141
+ minDate: this.minSelectedDate,
142
+ maxDate: this.maxSelectedDate,
143
+ },
144
+ });
145
+ this.dispatchEvent(event);
146
+ this.closeModal();
147
+
148
+ this.analyticsHandler?.sendEvent({
149
+ category: analyticsCategories.default,
150
+ action: analyticsActions.histogramChangedFromModal,
151
+ label: window.location.href,
152
+ });
153
+ }
154
+
155
+ /**
156
+ * Closes the modal associated with this component (if it exists) and dispatches a
157
+ * modalClosed event.
158
+ */
159
+ private closeModal(): void {
160
+ if (this.modalManager) {
161
+ this.modalManager.closeModal();
162
+ this.dispatchEvent(new CustomEvent('modalClosed'));
163
+ }
164
+ }
165
+
166
+ static get styles(): CSSResultGroup {
167
+ return css`
168
+ #container {
169
+ display: flex;
170
+ justify-content: center;
171
+ padding: 40px 10px 10px;
172
+ overflow: hidden;
173
+ }
174
+
175
+ #date-picker {
176
+ --histogramDateRangeInputWidth: 50px;
177
+ --histogramDateRangeInputRowMargin: 5px 0 0 0;
178
+ }
179
+
180
+ #apply-btn {
181
+ margin: 0 0 0 5px;
182
+ padding: 8px 10px;
183
+ border: 0;
184
+ border-radius: 4px;
185
+ background: var(--primaryButtonBGColor, #194880);
186
+ color: white;
187
+ cursor: pointer;
188
+ }
189
+ `;
190
+ }
191
+ }