@internetarchive/bookreader 5.0.0-105 → 5.0.0-107
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/BookReader/BookReader.js +1 -1
- package/BookReader/BookReader.js.map +1 -1
- package/BookReader/ia-bookreader-bundle.js +54 -60
- package/BookReader/ia-bookreader-bundle.js.map +1 -1
- package/BookReader/plugins/plugin.chapters.js +1 -4
- package/BookReader/plugins/plugin.chapters.js.map +1 -1
- package/package.json +12 -10
- package/src/BookReader/Navbar/Navbar.js +44 -15
- package/src/BookReader/utils.js +1 -1
- package/src/BookReader.js +1 -1
- package/src/css/icon_checkmark.js +9 -0
- package/src/css/sharedStyles.js +15 -0
- package/src/{BookNavigator → ia-bookreader}/downloads/downloads.js +1 -1
- package/src/ia-bookreader/ia-bookreader.js +513 -71
- package/src/{BookNavigator → ia-bookreader}/viewable-files.js +4 -1
- package/src/{BookNavigator → ia-bookreader}/visual-adjustments/visual-adjustments-provider.js +1 -2
- package/src/{BookNavigator → ia-bookreader}/visual-adjustments/visual-adjustments.js +4 -14
- package/src/{BookNavigator → plugins}/bookmarks/bookmark-button.js +1 -1
- package/src/{BookNavigator → plugins}/bookmarks/bookmark-edit.js +41 -28
- package/src/{BookNavigator → plugins}/bookmarks/bookmarks-list.js +46 -46
- package/src/{BookNavigator → plugins}/bookmarks/bookmarks-loginCTA.js +1 -1
- package/src/{BookNavigator → plugins}/bookmarks/bookmarks-provider.js +1 -1
- package/src/{BookNavigator → plugins}/bookmarks/ia-bookmarks.js +2 -2
- package/src/{BookNavigator → plugins}/search/search-results.js +14 -20
- package/src/util/lit.js +10 -0
- package/src/BookNavigator/assets/ia-logo.js +0 -17
- package/src/BookNavigator/assets/icon_checkmark.js +0 -6
- package/src/BookNavigator/assets/icon_close.js +0 -3
- package/src/BookNavigator/book-navigator.js +0 -620
- /package/src/{BookNavigator/assets → css}/button-base.js +0 -0
- /package/src/{BookNavigator → ia-bookreader}/downloads/downloads-provider.js +0 -0
- /package/src/{BookNavigator → ia-bookreader}/sharing.js +0 -0
- /package/src/{BookNavigator/assets → plugins/bookmarks}/bookmark-colors.js +0 -0
- /package/src/{BookNavigator → plugins/bookmarks}/delete-modal-actions.js +0 -0
- /package/src/{BookNavigator → plugins}/search/search-provider.js +0 -0
|
@@ -1,620 +0,0 @@
|
|
|
1
|
-
// eslint-disable-next-line no-unused-vars
|
|
2
|
-
import { SharedResizeObserver } from '@internetarchive/shared-resize-observer';
|
|
3
|
-
// eslint-disable-next-line no-unused-vars
|
|
4
|
-
import { ModalManager } from '@internetarchive/modal-manager';
|
|
5
|
-
import { css, html, LitElement, nothing } from 'lit';
|
|
6
|
-
import SearchProvider from './search/search-provider.js';
|
|
7
|
-
import DownloadProvider from './downloads/downloads-provider.js';
|
|
8
|
-
import VisualAdjustmentProvider from './visual-adjustments/visual-adjustments-provider.js';
|
|
9
|
-
import BookmarksProvider from './bookmarks/bookmarks-provider.js';
|
|
10
|
-
import SharingProvider from './sharing.js';
|
|
11
|
-
import ViewableFilesProvider from './viewable-files.js';
|
|
12
|
-
import iaLogo from './assets/ia-logo.js';
|
|
13
|
-
import { sortBy } from '../BookReader/utils.js';
|
|
14
|
-
/** @typedef {import('@/src/BookReader.js').default} BookReader */
|
|
15
|
-
|
|
16
|
-
const events = {
|
|
17
|
-
menuUpdated: 'menuUpdated',
|
|
18
|
-
updateSideMenu: 'updateSideMenu',
|
|
19
|
-
PostInit: 'PostInit',
|
|
20
|
-
ViewportInFullScreen: 'ViewportInFullScreen',
|
|
21
|
-
};
|
|
22
|
-
export class BookNavigator extends LitElement {
|
|
23
|
-
static get properties() {
|
|
24
|
-
return {
|
|
25
|
-
itemMD: { type: Object },
|
|
26
|
-
bookReaderLoaded: { type: Boolean },
|
|
27
|
-
bookreader: { type: Object },
|
|
28
|
-
bookIsRestricted: { type: Boolean },
|
|
29
|
-
downloadableTypes: { type: Array },
|
|
30
|
-
isAdmin: { type: Boolean },
|
|
31
|
-
lendingInitialized: { type: Boolean },
|
|
32
|
-
lendingStatus: { type: Object },
|
|
33
|
-
menuProviders: { type: Object },
|
|
34
|
-
menuShortcuts: { type: Array },
|
|
35
|
-
signedIn: { type: Boolean },
|
|
36
|
-
loaded: { type: Boolean },
|
|
37
|
-
sharedObserver: { type: Object, attribute: false },
|
|
38
|
-
modal: { type: Object, attribute: false },
|
|
39
|
-
fullscreenBranding: { type: Object },
|
|
40
|
-
};
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
constructor() {
|
|
44
|
-
super();
|
|
45
|
-
this.itemMD = undefined;
|
|
46
|
-
this.loaded = false;
|
|
47
|
-
this.bookReaderCannotLoad = false;
|
|
48
|
-
this.bookReaderLoaded = false;
|
|
49
|
-
this.bookreader = null;
|
|
50
|
-
this.bookIsRestricted = false;
|
|
51
|
-
this.downloadableTypes = [];
|
|
52
|
-
this.isAdmin = false;
|
|
53
|
-
this.lendingInitialized = false;
|
|
54
|
-
this.lendingStatus = {};
|
|
55
|
-
this.menuProviders = {
|
|
56
|
-
/** @type {BookmarksProvider} */
|
|
57
|
-
bookmarks: null,
|
|
58
|
-
/** @type {SearchProvider} */
|
|
59
|
-
search: null,
|
|
60
|
-
/** @type {DownloadProvider} */
|
|
61
|
-
downloads: null,
|
|
62
|
-
/** @type {VisualAdjustmentProvider} */
|
|
63
|
-
visualAdjustments: null,
|
|
64
|
-
/** @type {SharingProvider} */
|
|
65
|
-
share: null,
|
|
66
|
-
/** @type {ViewableFilesProvider} */
|
|
67
|
-
volumes: null,
|
|
68
|
-
};
|
|
69
|
-
this.menuShortcuts = [];
|
|
70
|
-
this.signedIn = false;
|
|
71
|
-
/** @type {ModalManager} */
|
|
72
|
-
this.modal = undefined;
|
|
73
|
-
/** @type {SharedResizeObserver} */
|
|
74
|
-
this.sharedObserver = undefined;
|
|
75
|
-
this.fullscreenBranding = iaLogo;
|
|
76
|
-
// Untracked properties
|
|
77
|
-
this.sharedObserverHandler = undefined;
|
|
78
|
-
this.brWidth = 0;
|
|
79
|
-
this.brHeight = 0;
|
|
80
|
-
this.shortcutOrder = [
|
|
81
|
-
/**
|
|
82
|
-
* sets exit FS button (`this.fullscreenBranding1)
|
|
83
|
-
* when `br.options.enableFSLogoShortcut`
|
|
84
|
-
*/
|
|
85
|
-
'fullscreen',
|
|
86
|
-
'volumes',
|
|
87
|
-
'chapters',
|
|
88
|
-
'search',
|
|
89
|
-
'translate',
|
|
90
|
-
'bookmarks',
|
|
91
|
-
'downloads',
|
|
92
|
-
'visualAdjustments',
|
|
93
|
-
'share',
|
|
94
|
-
'experiments',
|
|
95
|
-
];
|
|
96
|
-
}
|
|
97
|
-
|
|
98
|
-
disconnectedCallback() {
|
|
99
|
-
this.sharedObserver.removeObserver({
|
|
100
|
-
target: this.mainBRContainer,
|
|
101
|
-
handler: this.sharedObserverHandler,
|
|
102
|
-
});
|
|
103
|
-
}
|
|
104
|
-
|
|
105
|
-
firstUpdated() {
|
|
106
|
-
this.bindEventListeners();
|
|
107
|
-
this.emitPostInit();
|
|
108
|
-
this.loaded = true;
|
|
109
|
-
}
|
|
110
|
-
|
|
111
|
-
updated(changed) {
|
|
112
|
-
if (!this.bookreader || !this.itemMD || !this.bookReaderLoaded) {
|
|
113
|
-
return;
|
|
114
|
-
}
|
|
115
|
-
|
|
116
|
-
const reload = changed.has('loaded') && this.loaded;
|
|
117
|
-
if (reload
|
|
118
|
-
|| changed.has('itemMD')
|
|
119
|
-
|| changed.has('bookreader')
|
|
120
|
-
|| changed.has('signedIn')
|
|
121
|
-
|| changed.has('isAdmin')
|
|
122
|
-
|| changed.has('modal')) {
|
|
123
|
-
this.initializeBookSubmenus();
|
|
124
|
-
}
|
|
125
|
-
|
|
126
|
-
if (changed.has('sharedObserver') && this.bookreader) {
|
|
127
|
-
this.loadSharedObserver();
|
|
128
|
-
this.initializeBookSubmenus();
|
|
129
|
-
}
|
|
130
|
-
|
|
131
|
-
if (changed.has('downloadableTypes')) {
|
|
132
|
-
this.initializeBookSubmenus();
|
|
133
|
-
}
|
|
134
|
-
}
|
|
135
|
-
|
|
136
|
-
/**
|
|
137
|
-
* Global event emitter for when Book Navigator loads
|
|
138
|
-
*/
|
|
139
|
-
emitPostInit() {
|
|
140
|
-
// emit global event when book nav has loaded with current bookreader selector
|
|
141
|
-
this.dispatchEvent(new CustomEvent(`BrBookNav:${events.PostInit}`, {
|
|
142
|
-
detail: { brSelector: this.bookreader?.el },
|
|
143
|
-
bubbles: true,
|
|
144
|
-
composed: true,
|
|
145
|
-
}));
|
|
146
|
-
}
|
|
147
|
-
|
|
148
|
-
/**
|
|
149
|
-
* @typedef {{
|
|
150
|
-
* baseHost: string,
|
|
151
|
-
* modal: ModalManager,
|
|
152
|
-
* sharedObserver: SharedResizeObserver,
|
|
153
|
-
* bookreader: BookReader,
|
|
154
|
-
* item: Item,
|
|
155
|
-
* signedIn: boolean,
|
|
156
|
-
* isAdmin: boolean,
|
|
157
|
-
* onProviderChange: (BookReader, object) => void,
|
|
158
|
-
* }} baseProviderConfig
|
|
159
|
-
*
|
|
160
|
-
* @return {baseProviderConfig}
|
|
161
|
-
*/
|
|
162
|
-
get baseProviderConfig() {
|
|
163
|
-
return {
|
|
164
|
-
baseHost: this.baseHost,
|
|
165
|
-
modal: this.modal,
|
|
166
|
-
sharedObserver: this.sharedObserver,
|
|
167
|
-
bookreader: this.bookreader,
|
|
168
|
-
item: this.itemMD,
|
|
169
|
-
signedIn: this.signedIn,
|
|
170
|
-
isAdmin: this.isAdmin,
|
|
171
|
-
onProviderChange: () => {},
|
|
172
|
-
};
|
|
173
|
-
}
|
|
174
|
-
|
|
175
|
-
get isWideEnoughToOpenMenu() {
|
|
176
|
-
return this.brWidth >= 640;
|
|
177
|
-
}
|
|
178
|
-
/**
|
|
179
|
-
* Instantiates books submenus & their update callbacks
|
|
180
|
-
*
|
|
181
|
-
* NOTE: we are doing our best to scope bookreader's instance.
|
|
182
|
-
* If your submenu provider uses a bookreader instance to read, manually
|
|
183
|
-
* manipulate BookReader, please update the navigator's instance of it
|
|
184
|
-
* to keep it in sync.
|
|
185
|
-
*/
|
|
186
|
-
initializeBookSubmenus() {
|
|
187
|
-
const providers = {
|
|
188
|
-
visualAdjustments: new VisualAdjustmentProvider({
|
|
189
|
-
...this.baseProviderConfig,
|
|
190
|
-
/** Update menu contents */
|
|
191
|
-
onProviderChange: () => {
|
|
192
|
-
this.updateMenuContents();
|
|
193
|
-
},
|
|
194
|
-
}),
|
|
195
|
-
};
|
|
196
|
-
|
|
197
|
-
if (this.baseProviderConfig.item) {
|
|
198
|
-
// Share options currently rely on IA item metadata
|
|
199
|
-
providers.share = new SharingProvider(this.baseProviderConfig);
|
|
200
|
-
}
|
|
201
|
-
|
|
202
|
-
if (this.shouldShowDownloadsMenu()) {
|
|
203
|
-
providers.downloads = new DownloadProvider(this.baseProviderConfig);
|
|
204
|
-
}
|
|
205
|
-
|
|
206
|
-
// Note plugins will never be null-ish in runtime, but some of the unit tests
|
|
207
|
-
// stub BR with a nullish value there.
|
|
208
|
-
if (this.bookreader.options.plugins?.search?.enabled) {
|
|
209
|
-
providers.search = new SearchProvider({
|
|
210
|
-
...this.baseProviderConfig,
|
|
211
|
-
/**
|
|
212
|
-
* Search specific menu updates
|
|
213
|
-
* @param {BookReader} brInstance
|
|
214
|
-
* @param {{ searchCanceled: boolean }} searchUpdates
|
|
215
|
-
*/
|
|
216
|
-
onProviderChange: (brInstance = null, searchUpdates = {}) => {
|
|
217
|
-
if (brInstance) {
|
|
218
|
-
/** @type {BookReader} refresh br instance reference */
|
|
219
|
-
this.bookreader = brInstance;
|
|
220
|
-
}
|
|
221
|
-
|
|
222
|
-
this.updateMenuContents();
|
|
223
|
-
|
|
224
|
-
if (searchUpdates.openMenu === false) {
|
|
225
|
-
return;
|
|
226
|
-
}
|
|
227
|
-
|
|
228
|
-
if (this.isWideEnoughToOpenMenu && !searchUpdates?.searchCanceled) {
|
|
229
|
-
/* open side search menu */
|
|
230
|
-
setTimeout(() => {
|
|
231
|
-
this.updateSideMenu('search', 'open');
|
|
232
|
-
}, 0);
|
|
233
|
-
}
|
|
234
|
-
},
|
|
235
|
-
});
|
|
236
|
-
}
|
|
237
|
-
|
|
238
|
-
if (this.bookreader.options.enableBookmarks) {
|
|
239
|
-
providers.bookmarks = new BookmarksProvider({
|
|
240
|
-
...this.baseProviderConfig,
|
|
241
|
-
onProviderChange: (bookmarks) => {
|
|
242
|
-
const method = Object.keys(bookmarks).length ? 'add' : 'remove';
|
|
243
|
-
this[`${method}MenuShortcut`]('bookmarks');
|
|
244
|
-
this.updateMenuContents();
|
|
245
|
-
},
|
|
246
|
-
});
|
|
247
|
-
}
|
|
248
|
-
|
|
249
|
-
// add shortcut for volumes if multipleBooksList exists
|
|
250
|
-
if (this.bookreader.options.enableMultipleBooks) {
|
|
251
|
-
providers.volumes = new ViewableFilesProvider({
|
|
252
|
-
...this.baseProviderConfig,
|
|
253
|
-
onProviderChange: (brInstance = null, volumesUpdates = {}) => {
|
|
254
|
-
if (brInstance) {
|
|
255
|
-
/* refresh br instance reference */
|
|
256
|
-
this.bookreader = brInstance;
|
|
257
|
-
}
|
|
258
|
-
this.updateMenuContents();
|
|
259
|
-
if (this.isWideEnoughToOpenMenu) {
|
|
260
|
-
/* open side search menu */
|
|
261
|
-
setTimeout(() => {
|
|
262
|
-
this.updateSideMenu('volumes', 'open');
|
|
263
|
-
});
|
|
264
|
-
}
|
|
265
|
-
},
|
|
266
|
-
});
|
|
267
|
-
}
|
|
268
|
-
|
|
269
|
-
Object.assign(this.menuProviders, providers);
|
|
270
|
-
this.addMenuShortcut('search');
|
|
271
|
-
this.addMenuShortcut('volumes');
|
|
272
|
-
this.updateMenuContents();
|
|
273
|
-
}
|
|
274
|
-
|
|
275
|
-
/** gets element that houses the bookreader in light dom */
|
|
276
|
-
get mainBRContainer() {
|
|
277
|
-
return document.querySelector(this.bookreader?.el);
|
|
278
|
-
}
|
|
279
|
-
|
|
280
|
-
/** Fullscreen Shortcut */
|
|
281
|
-
addFullscreenShortcut() {
|
|
282
|
-
const closeFS = {
|
|
283
|
-
icon: this.fullscreenShortcut,
|
|
284
|
-
id: 'fullscreen',
|
|
285
|
-
};
|
|
286
|
-
this.menuShortcuts.push(closeFS);
|
|
287
|
-
this.sortMenuShortcuts();
|
|
288
|
-
this.emitMenuShortcutsUpdated();
|
|
289
|
-
}
|
|
290
|
-
|
|
291
|
-
deleteFullscreenShortcut() {
|
|
292
|
-
const updatedShortcuts = this.menuShortcuts.filter(({ id }) => {
|
|
293
|
-
return id !== 'fullscreen';
|
|
294
|
-
});
|
|
295
|
-
this.menuShortcuts = updatedShortcuts;
|
|
296
|
-
this.sortMenuShortcuts();
|
|
297
|
-
this.emitMenuShortcutsUpdated();
|
|
298
|
-
}
|
|
299
|
-
|
|
300
|
-
closeFullscreen() {
|
|
301
|
-
this.bookreader.exitFullScreen();
|
|
302
|
-
}
|
|
303
|
-
|
|
304
|
-
get fullscreenShortcut() {
|
|
305
|
-
return html`
|
|
306
|
-
<button
|
|
307
|
-
@click=${() => this.closeFullscreen()}
|
|
308
|
-
title="Exit fullscreen view"
|
|
309
|
-
>${this.fullscreenBranding}</button>
|
|
310
|
-
`;
|
|
311
|
-
}
|
|
312
|
-
/** End Fullscreen Shortcut */
|
|
313
|
-
|
|
314
|
-
/**
|
|
315
|
-
* Open side menu
|
|
316
|
-
* @param {string} menuId
|
|
317
|
-
* @param {('open'|'close'|'toggle')} action
|
|
318
|
-
*/
|
|
319
|
-
updateSideMenu(menuId = '', action = 'open') {
|
|
320
|
-
if (!menuId) {
|
|
321
|
-
return;
|
|
322
|
-
}
|
|
323
|
-
const event = new CustomEvent(
|
|
324
|
-
events.updateSideMenu, {
|
|
325
|
-
detail: { menuId, action },
|
|
326
|
-
},
|
|
327
|
-
);
|
|
328
|
-
this.dispatchEvent(event);
|
|
329
|
-
}
|
|
330
|
-
|
|
331
|
-
/**
|
|
332
|
-
* Sets order of menu and emits custom event when done
|
|
333
|
-
*/
|
|
334
|
-
updateMenuContents() {
|
|
335
|
-
const availableMenus = sortBy(
|
|
336
|
-
Object.entries(this.menuProviders)
|
|
337
|
-
.filter(([id, menu]) => !!menu)
|
|
338
|
-
.filter(([id, menu]) => {
|
|
339
|
-
return id === 'downloads' ? this.shouldShowDownloadsMenu() : true;
|
|
340
|
-
}),
|
|
341
|
-
([id, menu]) => {
|
|
342
|
-
const index = this.shortcutOrder.indexOf(id);
|
|
343
|
-
return index === -1 ? this.shortcutOrder.length : index;
|
|
344
|
-
},
|
|
345
|
-
).map(([id, menu]) => menu);
|
|
346
|
-
|
|
347
|
-
if (this.shouldShowDownloadsMenu()) {
|
|
348
|
-
this.menuProviders.downloads?.update(this.downloadableTypes);
|
|
349
|
-
}
|
|
350
|
-
|
|
351
|
-
const event = new CustomEvent(
|
|
352
|
-
events.menuUpdated, {
|
|
353
|
-
detail: availableMenus,
|
|
354
|
-
},
|
|
355
|
-
);
|
|
356
|
-
this.dispatchEvent(event);
|
|
357
|
-
}
|
|
358
|
-
|
|
359
|
-
/**
|
|
360
|
-
* Confirms if we should show the downloads menu
|
|
361
|
-
* @returns {bool}
|
|
362
|
-
*/
|
|
363
|
-
shouldShowDownloadsMenu() {
|
|
364
|
-
if (!this.downloadableTypes.length) { return false; }
|
|
365
|
-
if (this.bookIsRestricted === false) { return true; }
|
|
366
|
-
if (this.isAdmin) { return true; }
|
|
367
|
-
const { user_loan_record = {} } = this.lendingStatus;
|
|
368
|
-
const hasNoLoanRecord = Array.isArray(user_loan_record); /* (bc PHP assoc. arrays) */
|
|
369
|
-
|
|
370
|
-
if (hasNoLoanRecord) { return false; }
|
|
371
|
-
|
|
372
|
-
const hasValidLoan = user_loan_record.type && (user_loan_record.type !== 'SESSION_LOAN');
|
|
373
|
-
return hasValidLoan;
|
|
374
|
-
}
|
|
375
|
-
|
|
376
|
-
/**
|
|
377
|
-
* Adds a provider object to the menuShortcuts array property if it isn't
|
|
378
|
-
* already added. menuShortcuts are then sorted by shortcutOrder and
|
|
379
|
-
* a menuShortcutsUpdated event is emitted.
|
|
380
|
-
*
|
|
381
|
-
* @param {string} menuId - a string matching the id property of a provider
|
|
382
|
-
*/
|
|
383
|
-
addMenuShortcut(menuId) {
|
|
384
|
-
if (this.menuShortcuts.find((m) => m.id === menuId)) {
|
|
385
|
-
// menu is already there
|
|
386
|
-
return;
|
|
387
|
-
}
|
|
388
|
-
|
|
389
|
-
if (!this.menuProviders[menuId]) {
|
|
390
|
-
// no provider for this menu
|
|
391
|
-
return;
|
|
392
|
-
}
|
|
393
|
-
|
|
394
|
-
this.menuShortcuts.push(this.menuProviders[menuId]);
|
|
395
|
-
this.sortMenuShortcuts();
|
|
396
|
-
this.emitMenuShortcutsUpdated();
|
|
397
|
-
}
|
|
398
|
-
|
|
399
|
-
/**
|
|
400
|
-
* Removes a provider object from the menuShortcuts array and emits a
|
|
401
|
-
* menuShortcutsUpdated event.
|
|
402
|
-
*
|
|
403
|
-
* @param {string} menuId - a string matching the id property of a provider
|
|
404
|
-
*/
|
|
405
|
-
removeMenuShortcut(menuId) {
|
|
406
|
-
this.menuShortcuts = this.menuShortcuts.filter((m) => m.id !== menuId);
|
|
407
|
-
this.emitMenuShortcutsUpdated();
|
|
408
|
-
}
|
|
409
|
-
|
|
410
|
-
/**
|
|
411
|
-
* Sorts the menuShortcuts property by comparing each provider's id to
|
|
412
|
-
* the id in each iteration over the shortcutOrder array.
|
|
413
|
-
*/
|
|
414
|
-
sortMenuShortcuts() {
|
|
415
|
-
this.menuShortcuts = sortBy(
|
|
416
|
-
this.menuShortcuts,
|
|
417
|
-
(shortcut) => {
|
|
418
|
-
const index = this.shortcutOrder.indexOf(shortcut.id);
|
|
419
|
-
return index === -1 ? this.shortcutOrder.length : index;
|
|
420
|
-
},
|
|
421
|
-
);
|
|
422
|
-
}
|
|
423
|
-
|
|
424
|
-
emitMenuShortcutsUpdated() {
|
|
425
|
-
const event = new CustomEvent('menuShortcutsUpdated', {
|
|
426
|
-
detail: this.menuShortcuts,
|
|
427
|
-
});
|
|
428
|
-
this.dispatchEvent(event);
|
|
429
|
-
}
|
|
430
|
-
|
|
431
|
-
emitLoadingStatusUpdate(loaded) {
|
|
432
|
-
const event = new CustomEvent('loadingStateUpdated', {
|
|
433
|
-
detail: { loaded },
|
|
434
|
-
});
|
|
435
|
-
this.dispatchEvent(event);
|
|
436
|
-
}
|
|
437
|
-
|
|
438
|
-
/**
|
|
439
|
-
* Core bookreader event handler registry
|
|
440
|
-
*
|
|
441
|
-
* NOTE: we are trying to keep bookreader's instance in scope
|
|
442
|
-
* Please update Book Navigator's instance reference of it to keep it current
|
|
443
|
-
*/
|
|
444
|
-
bindEventListeners() {
|
|
445
|
-
window.addEventListener('BookReader:PostInit', (e) => {
|
|
446
|
-
this.bookreader = e.detail.props;
|
|
447
|
-
this.bookreader.shell = this;
|
|
448
|
-
this.bookReaderLoaded = true;
|
|
449
|
-
this.bookReaderCannotLoad = false;
|
|
450
|
-
this.emitLoadingStatusUpdate(true);
|
|
451
|
-
this.loadSharedObserver();
|
|
452
|
-
setTimeout(() => {
|
|
453
|
-
this.bookreader.resize();
|
|
454
|
-
}, 0);
|
|
455
|
-
});
|
|
456
|
-
window.addEventListener('BookReader:fullscreenToggled', (event) => {
|
|
457
|
-
const { detail: { props: brInstance = null } } = event;
|
|
458
|
-
if (brInstance) {
|
|
459
|
-
this.bookreader = brInstance;
|
|
460
|
-
}
|
|
461
|
-
this.manageFullScreenBehavior();
|
|
462
|
-
}, { passive: true });
|
|
463
|
-
window.addEventListener('BookReader:ToggleSearchMenu', (event) => {
|
|
464
|
-
this.dispatchEvent(new CustomEvent(events.updateSideMenu, {
|
|
465
|
-
detail: { menuId: 'search', action: 'toggle' },
|
|
466
|
-
}));
|
|
467
|
-
});
|
|
468
|
-
window.addEventListener('LendingFlow:PostInit', ({ detail }) => {
|
|
469
|
-
const {
|
|
470
|
-
downloadTypesAvailable, lendingStatus, isAdmin, previewType,
|
|
471
|
-
} = detail;
|
|
472
|
-
this.lendingInitialized = true;
|
|
473
|
-
this.downloadableTypes = downloadTypesAvailable;
|
|
474
|
-
this.lendingStatus = lendingStatus;
|
|
475
|
-
this.isAdmin = isAdmin;
|
|
476
|
-
this.bookReaderCannotLoad = previewType === 'singlePagePreview';
|
|
477
|
-
this.emitLoadingStatusUpdate(true);
|
|
478
|
-
});
|
|
479
|
-
window.addEventListener('BRJSIA:PostInit', ({ detail }) => {
|
|
480
|
-
const { isRestricted, downloadURLs } = detail;
|
|
481
|
-
this.bookReaderLoaded = true;
|
|
482
|
-
this.downloadableTypes = downloadURLs;
|
|
483
|
-
this.bookIsRestricted = isRestricted;
|
|
484
|
-
});
|
|
485
|
-
window.addEventListener('contextmenu', (e) => this.manageContextMenuVisibility(e), { capture: true });
|
|
486
|
-
}
|
|
487
|
-
|
|
488
|
-
/** Display an element's context menu */
|
|
489
|
-
manageContextMenuVisibility(e) {
|
|
490
|
-
window.archive_analytics?.send_event(
|
|
491
|
-
'BookReader',
|
|
492
|
-
`contextmenu-${this.bookIsRestricted ? 'restricted' : 'unrestricted'}`,
|
|
493
|
-
e.target?.classList?.value,
|
|
494
|
-
);
|
|
495
|
-
if (!this.bookIsRestricted) {
|
|
496
|
-
return;
|
|
497
|
-
}
|
|
498
|
-
|
|
499
|
-
const imagePane = e.target.classList.value.match(/BRscreen|BRpageimage/g);
|
|
500
|
-
if (!imagePane) {
|
|
501
|
-
return;
|
|
502
|
-
}
|
|
503
|
-
|
|
504
|
-
e.preventDefault();
|
|
505
|
-
return false;
|
|
506
|
-
}
|
|
507
|
-
|
|
508
|
-
loadSharedObserver() {
|
|
509
|
-
this.sharedObserverHandler = { handleResize: this.handleResize.bind(this) };
|
|
510
|
-
this.sharedObserver?.addObserver({
|
|
511
|
-
target: this.mainBRContainer,
|
|
512
|
-
handler: this.sharedObserverHandler,
|
|
513
|
-
});
|
|
514
|
-
}
|
|
515
|
-
|
|
516
|
-
/**
|
|
517
|
-
* Uses resize observer to fire BookReader's `resize` functionality
|
|
518
|
-
* We do not want to trigger resize IF:
|
|
519
|
-
* - book animation is happening
|
|
520
|
-
* - book is in fullscreen (fullscreen is handled separately)
|
|
521
|
-
*
|
|
522
|
-
* @param { target: HTMLElement, contentRect: DOMRectReadOnly } entry
|
|
523
|
-
*/
|
|
524
|
-
handleResize({ contentRect, target }) {
|
|
525
|
-
const startBrWidth = this.brWidth;
|
|
526
|
-
const startBrHeight = this.brHeight;
|
|
527
|
-
const { animating } = this.bookreader;
|
|
528
|
-
|
|
529
|
-
if (target === this.mainBRContainer) {
|
|
530
|
-
this.brWidth = contentRect.width;
|
|
531
|
-
this.brHeight = contentRect.height;
|
|
532
|
-
}
|
|
533
|
-
|
|
534
|
-
if (!startBrWidth && this.brWidth) {
|
|
535
|
-
// loading up, let's update side menus
|
|
536
|
-
this.initializeBookSubmenus();
|
|
537
|
-
}
|
|
538
|
-
|
|
539
|
-
const widthChange = startBrWidth !== this.brWidth;
|
|
540
|
-
const heightChange = startBrHeight !== this.brHeight;
|
|
541
|
-
|
|
542
|
-
if (!animating && (widthChange || heightChange)) {
|
|
543
|
-
this.bookreader?.resize();
|
|
544
|
-
}
|
|
545
|
-
}
|
|
546
|
-
|
|
547
|
-
/**
|
|
548
|
-
* Manages Fullscreen behavior
|
|
549
|
-
* This makes sure that controls are _always_ in view
|
|
550
|
-
* We need this to accommodate LOAN BAR during fullscreen
|
|
551
|
-
*/
|
|
552
|
-
manageFullScreenBehavior() {
|
|
553
|
-
this.emitFullScreenState();
|
|
554
|
-
|
|
555
|
-
if (!this.bookreader.options.enableFSLogoShortcut) {
|
|
556
|
-
return;
|
|
557
|
-
}
|
|
558
|
-
|
|
559
|
-
const isFullScreen = this.bookreader.isFullscreen();
|
|
560
|
-
if (isFullScreen) {
|
|
561
|
-
this.addFullscreenShortcut();
|
|
562
|
-
} else {
|
|
563
|
-
this.deleteFullscreenShortcut();
|
|
564
|
-
}
|
|
565
|
-
}
|
|
566
|
-
|
|
567
|
-
/**
|
|
568
|
-
* Relays fullscreen toggle events
|
|
569
|
-
*/
|
|
570
|
-
emitFullScreenState() {
|
|
571
|
-
const isFullScreen = this.bookreader.isFullscreen();
|
|
572
|
-
const event = new CustomEvent('ViewportInFullScreen', {
|
|
573
|
-
detail: { isFullScreen },
|
|
574
|
-
});
|
|
575
|
-
this.dispatchEvent(event);
|
|
576
|
-
}
|
|
577
|
-
|
|
578
|
-
get itemImage() {
|
|
579
|
-
const identifier = this.itemMD?.metadata.identifier;
|
|
580
|
-
const url = `https://${this.baseHost}/services/img/${identifier}`;
|
|
581
|
-
return html`<img class="cover-img" src=${url} alt="cover image for ${identifier}">`;
|
|
582
|
-
}
|
|
583
|
-
|
|
584
|
-
get placeholder() {
|
|
585
|
-
return html`<div class="placeholder">${this.itemImage}</div>`;
|
|
586
|
-
}
|
|
587
|
-
|
|
588
|
-
render() {
|
|
589
|
-
return html`<div id="book-navigator__root">
|
|
590
|
-
${this.bookReaderCannotLoad ? this.placeholder : nothing}
|
|
591
|
-
${!this.bookReaderCannotLoad ? html`<slot name="main"></slot>` : nothing}
|
|
592
|
-
</div>
|
|
593
|
-
`;
|
|
594
|
-
}
|
|
595
|
-
|
|
596
|
-
static get styles() {
|
|
597
|
-
return css`
|
|
598
|
-
:host,
|
|
599
|
-
#book-navigator__root,
|
|
600
|
-
slot,
|
|
601
|
-
slot > * {
|
|
602
|
-
display: block;
|
|
603
|
-
height: inherit;
|
|
604
|
-
width: inherit;
|
|
605
|
-
}
|
|
606
|
-
.placeholder {
|
|
607
|
-
display: flex;
|
|
608
|
-
align-items: center;
|
|
609
|
-
justify-content: center;
|
|
610
|
-
flex-direction: column;
|
|
611
|
-
margin: 5%;
|
|
612
|
-
}
|
|
613
|
-
.cover-img {
|
|
614
|
-
max-height: 300px;
|
|
615
|
-
}
|
|
616
|
-
`;
|
|
617
|
-
}
|
|
618
|
-
}
|
|
619
|
-
|
|
620
|
-
customElements.define('book-navigator', BookNavigator);
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|