@internetarchive/bookreader 5.0.0-6-14 → 5.0.0-60
Sign up to get free protection for your applications and to get access to all the features.
- package/.eslintrc.js +17 -15
- package/.github/workflows/node.js.yml +72 -10
- package/.github/workflows/npm-publish.yml +6 -20
- package/.testcaferc.js +10 -0
- package/BookReader/BookReader.css +241 -140
- package/BookReader/BookReader.js +1 -1
- package/BookReader/BookReader.js.LICENSE.txt +24 -20
- package/BookReader/BookReader.js.map +1 -1
- package/BookReader/ia-bookreader-bundle.js +1519 -0
- package/BookReader/ia-bookreader-bundle.js.LICENSE.txt +17 -0
- package/BookReader/ia-bookreader-bundle.js.map +1 -0
- package/BookReader/icons/close-circle-dark.svg +1 -0
- package/BookReader/icons/magnify-minus.svg +1 -1
- package/BookReader/icons/magnify-plus.svg +1 -1
- package/BookReader/icons/pause.svg +1 -1
- package/BookReader/icons/playback-speed.svg +1 -1
- package/BookReader/icons/read-aloud.svg +1 -1
- package/BookReader/icons/voice.svg +1 -0
- package/BookReader/images/BRicons.svg +2 -2
- package/BookReader/images/books_graphic.svg +1 -1
- package/BookReader/images/icon_book.svg +1 -1
- package/BookReader/images/icon_gear.svg +1 -1
- package/BookReader/images/icon_info.svg +1 -1
- package/BookReader/images/icon_playback-rate.svg +1 -1
- package/BookReader/images/icon_search_button.svg +1 -1
- package/BookReader/images/icon_share.svg +1 -1
- package/BookReader/images/icon_speaker.svg +1 -1
- package/BookReader/images/icon_speaker_open.svg +1 -1
- package/BookReader/images/marker_chap-off.svg +1 -1
- package/BookReader/images/marker_chap-on.svg +1 -1
- package/BookReader/images/marker_srch-on.svg +1 -1
- package/BookReader/jquery-3.js +2 -0
- package/BookReader/jquery-3.js.LICENSE.txt +24 -0
- package/BookReader/plugins/plugin.archive_analytics.js +1 -1
- package/BookReader/plugins/plugin.archive_analytics.js.map +1 -1
- package/BookReader/plugins/plugin.autoplay.js +1 -1
- package/BookReader/plugins/plugin.autoplay.js.map +1 -1
- package/BookReader/plugins/plugin.chapters.js +1 -1
- package/BookReader/plugins/plugin.chapters.js.map +1 -1
- package/BookReader/plugins/plugin.iframe.js +1 -1
- package/BookReader/plugins/plugin.iframe.js.map +1 -1
- package/BookReader/plugins/plugin.mobile_nav.js +1 -1
- package/BookReader/plugins/plugin.mobile_nav.js.map +1 -1
- package/BookReader/plugins/plugin.resume.js +1 -1
- package/BookReader/plugins/plugin.resume.js.map +1 -1
- package/BookReader/plugins/plugin.search.js +1 -1
- package/BookReader/plugins/plugin.search.js.map +1 -1
- package/BookReader/plugins/plugin.text_selection.js +1 -1
- package/BookReader/plugins/plugin.text_selection.js.map +1 -1
- package/BookReader/plugins/plugin.tts.js +1 -1
- package/BookReader/plugins/plugin.tts.js.map +1 -1
- package/BookReader/plugins/plugin.url.js +1 -1
- package/BookReader/plugins/plugin.url.js.map +1 -1
- package/BookReader/plugins/plugin.vendor-fullscreen.js +1 -1
- package/BookReader/plugins/plugin.vendor-fullscreen.js.map +1 -1
- package/BookReader/webcomponents-bundle.js +3 -0
- package/BookReader/webcomponents-bundle.js.LICENSE.txt +9 -0
- package/BookReader/webcomponents-bundle.js.map +1 -0
- package/BookReaderDemo/BookReaderDemo.css +14 -1
- package/BookReaderDemo/BookReaderJSAutoplay.js +4 -1
- package/BookReaderDemo/BookReaderJSSimple.js +1 -0
- package/BookReaderDemo/IADemoBr.js +147 -0
- package/BookReaderDemo/demo-advanced.html +2 -2
- package/BookReaderDemo/demo-autoplay.html +2 -1
- package/BookReaderDemo/demo-embed-iframe-src.html +2 -1
- package/BookReaderDemo/demo-fullscreen-mobile.html +2 -1
- package/BookReaderDemo/demo-fullscreen.html +2 -1
- package/BookReaderDemo/demo-iiif.html +2 -1
- package/BookReaderDemo/demo-internetarchive.html +84 -17
- package/BookReaderDemo/demo-multiple.html +2 -1
- package/BookReaderDemo/demo-preview-pages.html +2 -1
- package/BookReaderDemo/demo-simple.html +2 -1
- package/BookReaderDemo/demo-vendor-fullscreen.html +2 -1
- package/BookReaderDemo/ia-multiple-volumes-manifest.js +170 -0
- package/BookReaderDemo/immersion-1up.html +2 -1
- package/BookReaderDemo/immersion-mode.html +2 -1
- package/BookReaderDemo/toggle_controls.html +2 -1
- package/BookReaderDemo/view_mode.html +2 -1
- package/BookReaderDemo/viewmode-cycle.html +2 -3
- package/CHANGELOG.md +244 -0
- package/README.md +14 -1
- package/babel.config.js +19 -0
- package/codecov.yml +6 -0
- package/index.html +3 -0
- package/jsconfig.json +19 -0
- package/netlify.toml +5 -0
- package/package.json +70 -59
- package/renovate.json +52 -0
- package/scripts/preversion.js +4 -1
- package/src/BookNavigator/assets/bookmark-colors.js +1 -1
- package/src/BookNavigator/assets/button-base.js +9 -2
- package/src/BookNavigator/assets/ia-logo.js +17 -0
- package/src/BookNavigator/assets/icon_checkmark.js +1 -1
- package/src/BookNavigator/assets/icon_close.js +1 -1
- package/src/BookNavigator/assets/icon_sort_asc.js +5 -0
- package/src/BookNavigator/assets/icon_sort_desc.js +5 -0
- package/src/BookNavigator/assets/icon_sort_neutral.js +5 -0
- package/src/BookNavigator/assets/icon_volumes.js +11 -0
- package/src/BookNavigator/book-navigator.js +585 -0
- package/src/BookNavigator/bookmarks/bookmark-button.js +3 -2
- package/src/BookNavigator/bookmarks/bookmark-edit.js +3 -4
- package/src/BookNavigator/bookmarks/bookmarks-list.js +2 -3
- package/src/BookNavigator/bookmarks/bookmarks-loginCTA.js +3 -8
- package/src/BookNavigator/bookmarks/bookmarks-provider.js +27 -17
- package/src/BookNavigator/bookmarks/ia-bookmarks.js +116 -67
- package/src/BookNavigator/delete-modal-actions.js +1 -1
- package/src/BookNavigator/downloads/downloads-provider.js +36 -21
- package/src/BookNavigator/downloads/downloads.js +41 -25
- package/src/BookNavigator/search/search-provider.js +80 -28
- package/src/BookNavigator/search/search-results.js +34 -25
- package/src/BookNavigator/sharing.js +27 -0
- package/src/BookNavigator/visual-adjustments/visual-adjustments-provider.js +11 -10
- package/src/BookNavigator/visual-adjustments/visual-adjustments.js +3 -3
- package/src/BookNavigator/volumes/volumes-provider.js +111 -0
- package/src/BookNavigator/volumes/volumes.js +188 -0
- package/src/BookReader/BookModel.js +59 -30
- package/src/BookReader/DebugConsole.js +3 -3
- package/src/BookReader/DragScrollable.js +233 -0
- package/src/BookReader/Mode1Up.js +56 -351
- package/src/BookReader/Mode1UpLit.js +391 -0
- package/src/BookReader/Mode2Up.js +73 -1318
- package/src/BookReader/Mode2UpLit.js +781 -0
- package/src/BookReader/ModeCoordinateSpace.js +29 -0
- package/src/BookReader/ModeSmoothZoom.js +211 -0
- package/src/BookReader/ModeThumb.js +17 -11
- package/src/BookReader/Navbar/Navbar.js +10 -36
- package/src/BookReader/PageContainer.js +69 -6
- package/src/BookReader/ReduceSet.js +1 -1
- package/src/BookReader/Toolbar/Toolbar.js +10 -37
- package/src/BookReader/events.js +2 -0
- package/src/BookReader/options.js +24 -2
- package/src/BookReader/utils/HTMLDimensionsCacher.js +44 -0
- package/src/BookReader/utils/ScrollClassAdder.js +31 -0
- package/src/BookReader/utils.js +108 -13
- package/src/BookReader.js +481 -828
- package/src/assets/icons/close-circle-dark.svg +1 -0
- package/src/assets/icons/magnify-minus.svg +3 -7
- package/src/assets/icons/magnify-plus.svg +3 -7
- package/src/assets/icons/voice.svg +1 -0
- package/src/css/_BRBookmarks.scss +1 -1
- package/src/css/_BRComponent.scss +1 -1
- package/src/css/_BRmain.scss +33 -0
- package/src/css/_BRnav.scss +4 -26
- package/src/css/_BRpages.scss +147 -40
- package/src/css/_BRsearch.scss +25 -11
- package/src/css/_TextSelection.scss +16 -17
- package/src/css/_colorbox.scss +2 -2
- package/src/css/_controls.scss +17 -5
- package/src/css/_icons.scss +7 -1
- package/src/ia-bookreader/ia-bookreader.js +224 -0
- package/src/plugins/plugin.archive_analytics.js +3 -3
- package/src/plugins/plugin.autoplay.js +4 -9
- package/src/plugins/plugin.chapters.js +28 -35
- package/src/plugins/plugin.mobile_nav.js +11 -10
- package/src/plugins/plugin.resume.js +3 -3
- package/src/plugins/plugin.text_selection.js +32 -41
- package/src/plugins/plugin.vendor-fullscreen.js +4 -4
- package/src/plugins/search/plugin.search.js +179 -103
- package/src/plugins/search/view.js +59 -44
- package/src/plugins/tts/AbstractTTSEngine.js +46 -37
- package/src/plugins/tts/FestivalTTSEngine.js +13 -14
- package/src/plugins/tts/PageChunk.js +15 -21
- package/src/plugins/tts/PageChunkIterator.js +8 -12
- package/src/plugins/tts/WebTTSEngine.js +87 -71
- package/src/plugins/tts/plugin.tts.js +94 -125
- package/src/plugins/tts/utils.js +0 -25
- package/src/plugins/url/UrlPlugin.js +193 -0
- package/src/plugins/{plugin.url.js → url/plugin.url.js} +45 -16
- package/src/util/docCookies.js +21 -2
- package/tests/e2e/README.md +37 -0
- package/tests/e2e/autoplay.test.js +2 -2
- package/tests/e2e/base.test.js +7 -7
- package/tests/e2e/helpers/base.js +28 -23
- package/tests/e2e/helpers/debug.js +1 -1
- package/tests/e2e/helpers/desktopSearch.js +14 -13
- package/tests/e2e/helpers/mobileSearch.js +3 -3
- package/tests/e2e/helpers/params.js +17 -0
- package/tests/e2e/helpers/rightToLeft.js +4 -10
- package/tests/e2e/models/Navigation.js +13 -4
- package/tests/e2e/rightToLeft.test.js +4 -5
- package/tests/e2e/viewmode.test.js +40 -33
- package/tests/jest/BookNavigator/book-navigator.test.js +658 -0
- package/tests/jest/BookNavigator/bookmarks/bookmark-button.test.js +43 -0
- package/tests/{karma → jest}/BookNavigator/bookmarks/bookmark-edit.test.js +25 -26
- package/tests/{karma → jest}/BookNavigator/bookmarks/bookmarks-list.test.js +41 -42
- package/tests/jest/BookNavigator/bookmarks/ia-bookmarks.test.js +45 -0
- package/tests/jest/BookNavigator/downloads/downloads-provider.test.js +67 -0
- package/tests/jest/BookNavigator/downloads/downloads.test.js +53 -0
- package/tests/jest/BookNavigator/search/search-provider.test.js +167 -0
- package/tests/{karma/BookNavigator → jest/BookNavigator/search}/search-results.test.js +104 -60
- package/tests/jest/BookNavigator/sharing/sharing-provider.test.js +49 -0
- package/tests/jest/BookNavigator/visual-adjustments.test.js +200 -0
- package/tests/jest/BookNavigator/volumes/volumes-provider.test.js +184 -0
- package/tests/jest/BookNavigator/volumes/volumes.test.js +97 -0
- package/tests/{BookReader → jest/BookReader}/BookModel.test.js +59 -14
- package/tests/jest/BookReader/BookReaderPublicFunctions.test.js +193 -0
- package/tests/{BookReader → jest/BookReader}/DebugConsole.test.js +1 -1
- package/tests/{BookReader → jest/BookReader}/ImageCache.test.js +4 -4
- package/tests/jest/BookReader/Mode1UpLit.test.js +73 -0
- package/tests/jest/BookReader/Mode2Up.test.js +98 -0
- package/tests/jest/BookReader/Mode2UpLit.test.js +190 -0
- package/tests/jest/BookReader/ModeCoordinateSpace.test.js +16 -0
- package/tests/jest/BookReader/ModeSmoothZoom.test.js +175 -0
- package/tests/jest/BookReader/ModeThumb.test.js +71 -0
- package/tests/{BookReader → jest/BookReader}/Navbar/Navbar.test.js +10 -10
- package/tests/{BookReader → jest/BookReader}/PageContainer.test.js +88 -6
- package/tests/{BookReader → jest/BookReader}/ReduceSet.test.js +1 -1
- package/tests/{BookReader → jest/BookReader}/Toolbar/Toolbar.test.js +2 -2
- package/tests/jest/BookReader/utils/HTMLDimensionsCacher.test.js +59 -0
- package/tests/jest/BookReader/utils/ScrollClassAdder.test.js +49 -0
- package/tests/{BookReader → jest/BookReader}/utils/classes.test.js +1 -1
- package/tests/jest/BookReader/utils.test.js +217 -0
- package/tests/jest/BookReader.keyboard.test.js +190 -0
- package/tests/{BookReader.options.test.js → jest/BookReader.options.test.js} +9 -1
- package/tests/{BookReader.test.js → jest/BookReader.test.js} +26 -37
- package/tests/{plugins → jest/plugins}/plugin.archive_analytics.test.js +2 -2
- package/tests/{plugins → jest/plugins}/plugin.autoplay.test.js +4 -4
- package/tests/{plugins → jest/plugins}/plugin.chapters.test.js +10 -11
- package/tests/{plugins → jest/plugins}/plugin.iframe.test.js +2 -2
- package/tests/{plugins → jest/plugins}/plugin.mobile_nav.test.js +5 -5
- package/tests/{plugins → jest/plugins}/plugin.resume.test.js +3 -3
- package/tests/{plugins → jest/plugins}/plugin.text_selection.test.js +39 -47
- package/tests/{plugins → jest/plugins}/plugin.vendor-fullscreen.test.js +2 -2
- package/tests/{plugins → jest/plugins}/search/plugin.search.test.js +57 -47
- package/tests/{plugins → jest/plugins}/search/plugin.search.view.test.js +35 -6
- package/tests/{plugins → jest/plugins}/tts/AbstractTTSEngine.test.js +9 -9
- package/tests/{plugins → jest/plugins}/tts/FestivalTTSEngine.test.js +4 -4
- package/tests/{plugins → jest/plugins}/tts/PageChunk.test.js +1 -1
- package/tests/{plugins → jest/plugins}/tts/PageChunkIterator.test.js +3 -3
- package/tests/{plugins → jest/plugins}/tts/WebTTSEngine.test.js +47 -1
- package/tests/{plugins → jest/plugins}/tts/utils.test.js +1 -60
- package/tests/jest/plugins/url/UrlPlugin.test.js +190 -0
- package/tests/{plugins → jest/plugins/url}/plugin.url.test.js +53 -14
- package/tests/jest/setup.js +3 -0
- package/tests/{util → jest/util}/browserSniffing.test.js +1 -1
- package/tests/jest/util/docCookies.test.js +24 -0
- package/tests/{util → jest/util}/strings.test.js +1 -1
- package/tests/{utils.js → jest/utils.js} +38 -0
- package/webpack.config.js +11 -5
- package/.babelrc +0 -12
- package/.dependabot/config.yml +0 -6
- package/.testcaferc.json +0 -5
- package/BookReader/bookreader-component-bundle.js +0 -1450
- package/BookReader/bookreader-component-bundle.js.LICENSE.txt +0 -38
- package/BookReader/bookreader-component-bundle.js.map +0 -1
- package/BookReader/jquery-1.10.1.js +0 -2
- package/BookReader/jquery-1.10.1.js.LICENSE.txt +0 -24
- package/BookReader/plugins/plugin.menu_toggle.js +0 -2
- package/BookReader/plugins/plugin.menu_toggle.js.map +0 -1
- package/BookReaderDemo/bookreader-template-bundle.js +0 -7178
- package/BookReaderDemo/demo-plugin-menu-toggle.html +0 -34
- package/karma.conf.js +0 -23
- package/src/BookNavigator/BookModel.js +0 -14
- package/src/BookNavigator/BookNavigator.js +0 -438
- package/src/BookNavigator/assets/book-loader.js +0 -27
- package/src/BookNavigator/br-fullscreen-mgr.js +0 -83
- package/src/BookNavigator/search/a-search-result.js +0 -55
- package/src/BookReaderComponent/BookReaderComponent.js +0 -112
- package/src/ItemNavigator/ItemNavigator.js +0 -372
- package/src/ItemNavigator/providers/sharing.js +0 -29
- package/src/dragscrollable-br.js +0 -261
- package/src/plugins/menu_toggle/plugin.menu_toggle.js +0 -324
- package/tests/BookReader/BookReaderPublicFunctions.test.js +0 -171
- package/tests/BookReader/Mode1Up.test.js +0 -164
- package/tests/BookReader/Mode2Up.test.js +0 -247
- package/tests/BookReader/utils.test.js +0 -109
- package/tests/e2e/ia-production/ia-prod-base.js +0 -17
- package/tests/karma/BookNavigator/book-navigator.test.js +0 -132
- package/tests/karma/BookNavigator/visual-adjustments.test.js +0 -201
- package/tests/plugins/menu_toggle/plugin.menu_toggle.test.js +0 -68
- package/tests/util/docCookies.test.js +0 -15
@@ -1,7 +1,7 @@
|
|
1
|
-
import { html } from 'lit
|
2
|
-
import
|
3
|
-
|
1
|
+
import { html, nothing } from 'lit';
|
2
|
+
import '@internetarchive/icon-search/icon-search';
|
4
3
|
import './search-results';
|
4
|
+
/** @typedef {import('@/src/plugins/search/plugin.search.js').SearchInsideMatch} SearchInsideMatch */
|
5
5
|
|
6
6
|
let searchState = {
|
7
7
|
query: '',
|
@@ -10,8 +10,11 @@ let searchState = {
|
|
10
10
|
queryInProgress: false,
|
11
11
|
errorMessage: '',
|
12
12
|
};
|
13
|
-
export default class {
|
14
|
-
constructor(
|
13
|
+
export default class SearchProvider {
|
14
|
+
constructor({
|
15
|
+
onProviderChange,
|
16
|
+
bookreader
|
17
|
+
}) {
|
15
18
|
/* search menu events */
|
16
19
|
this.onBookSearchInitiated = this.onBookSearchInitiated.bind(this);
|
17
20
|
/* bookreader search events */
|
@@ -20,16 +23,18 @@ export default class {
|
|
20
23
|
this.onSearchResultsClicked = this.onSearchResultsClicked.bind(this);
|
21
24
|
this.onSearchResultsChange = this.onSearchResultsChange.bind(this);
|
22
25
|
this.onSearchResultsCleared = this.onSearchResultsCleared.bind(this);
|
26
|
+
this.searchCanceledInMenu = this.searchCanceledInMenu.bind(this);
|
27
|
+
|
23
28
|
/* class methods */
|
24
29
|
this.bindEventListeners = this.bindEventListeners.bind(this);
|
25
30
|
this.getMenuDetails = this.getMenuDetails.bind(this);
|
26
31
|
this.getComponent = this.getComponent.bind(this);
|
27
|
-
this.advanceToPage = this.advanceToPage.bind(this);
|
28
32
|
this.updateMenu = this.updateMenu.bind(this);
|
29
33
|
|
30
|
-
this.
|
31
|
-
|
32
|
-
this.
|
34
|
+
this.onProviderChange = onProviderChange;
|
35
|
+
/** @type {import('@/src/BookReader.js').default} */
|
36
|
+
this.bookreader = bookreader;
|
37
|
+
this.icon = html`<ia-icon-search style="width: var(--iconWidth); height: var(--iconHeight);"></ia-icon-search>`;
|
33
38
|
this.label = 'Search inside';
|
34
39
|
this.menuDetails = this.getMenuDetails();
|
35
40
|
this.id = 'search';
|
@@ -39,7 +44,7 @@ export default class {
|
|
39
44
|
|
40
45
|
getMenuDetails() {
|
41
46
|
const { resultsCount, query, queryInProgress } = searchState;
|
42
|
-
if (queryInProgress || !query) { return nothing }
|
47
|
+
if (queryInProgress || !query) { return nothing; }
|
43
48
|
const unit = resultsCount === 1 ? 'result' : 'results';
|
44
49
|
return html`(${resultsCount} ${unit})`;
|
45
50
|
}
|
@@ -47,14 +52,40 @@ export default class {
|
|
47
52
|
bindEventListeners() {
|
48
53
|
window.addEventListener('BookReader:SearchStarted', this.onSearchStarted);
|
49
54
|
window.addEventListener('BookReader:SearchCallback', this.onSearchResultsChange);
|
50
|
-
window.addEventListener('BookReader:SearchCallbackEmpty', (event) => { this.onSearchRequestError(event, 'noResults') });
|
51
|
-
window.addEventListener('BookReader:SearchCallbackNotIndexed', (event) => { this.onSearchRequestError(event, 'notIndexed') });
|
52
|
-
window.addEventListener('BookReader:SearchCallbackError', (event) => { this.onSearchRequestError(event) });
|
53
|
-
window.addEventListener('BookReader:SearchResultsCleared', () => { this.onSearchResultsCleared() });
|
55
|
+
window.addEventListener('BookReader:SearchCallbackEmpty', (event) => { this.onSearchRequestError(event, 'noResults'); });
|
56
|
+
window.addEventListener('BookReader:SearchCallbackNotIndexed', (event) => { this.onSearchRequestError(event, 'notIndexed'); });
|
57
|
+
window.addEventListener('BookReader:SearchCallbackError', (event) => { this.onSearchRequestError(event); });
|
58
|
+
window.addEventListener('BookReader:SearchResultsCleared', () => { this.onSearchResultsCleared(); });
|
59
|
+
window.addEventListener('BookReader:SearchCanceled', (e) => { this.onSearchCanceled(e); });
|
60
|
+
}
|
61
|
+
|
62
|
+
/**
|
63
|
+
* Cancel search handler
|
64
|
+
* resets `searchState`
|
65
|
+
*/
|
66
|
+
onSearchCanceled() {
|
67
|
+
searchState = {
|
68
|
+
query: '',
|
69
|
+
results: [],
|
70
|
+
resultsCount: 0,
|
71
|
+
queryInProgress: false,
|
72
|
+
errorMessage: '',
|
73
|
+
};
|
74
|
+
const updateMenuFor = {
|
75
|
+
searchCanceled: true
|
76
|
+
};
|
77
|
+
this.updateMenu(updateMenuFor);
|
78
|
+
|
79
|
+
if (this.bookreader.urlPlugin) {
|
80
|
+
this.updateSearchInUrl();
|
81
|
+
}
|
54
82
|
}
|
55
83
|
|
56
84
|
onSearchStarted(e) {
|
57
|
-
const { term = '' } = e.detail.props;
|
85
|
+
const { term = '', instance } = e.detail.props;
|
86
|
+
if (instance) {
|
87
|
+
this.bookreader = instance;
|
88
|
+
}
|
58
89
|
searchState.query = term;
|
59
90
|
searchState.results = [];
|
60
91
|
searchState.resultsCount = 0;
|
@@ -79,10 +110,11 @@ export default class {
|
|
79
110
|
noResults: '0 results',
|
80
111
|
notIndexed: `This book hasn't been indexed for searching yet. We've just started indexing it,
|
81
112
|
so search should be available soon. Please try again later. Thanks!`,
|
82
|
-
default: 'Sorry, there was an error with your search.
|
113
|
+
default: 'Sorry, there was an error with your search. Please try again.',
|
83
114
|
};
|
84
115
|
|
85
116
|
const messageToShow = errorMessages[errorType] ?? errorMessages.default;
|
117
|
+
searchState.query = instance?.searchResults?.q || '';
|
86
118
|
searchState.results = [];
|
87
119
|
searchState.resultsCount = 0;
|
88
120
|
searchState.queryInProgress = false;
|
@@ -104,6 +136,10 @@ export default class {
|
|
104
136
|
this.updateMenu();
|
105
137
|
}
|
106
138
|
|
139
|
+
searchCanceledInMenu() {
|
140
|
+
this.bookreader?.cancelSearchRequest();
|
141
|
+
}
|
142
|
+
|
107
143
|
onSearchResultsCleared() {
|
108
144
|
searchState = {
|
109
145
|
query: '',
|
@@ -111,15 +147,34 @@ export default class {
|
|
111
147
|
resultsCount: 0,
|
112
148
|
queryInProgress: false,
|
113
149
|
errorMessage: '',
|
150
|
+
};
|
151
|
+
this.updateMenu({ openMenu: false });
|
152
|
+
this.bookreader?.searchView?.clearSearchFieldAndResults(false);
|
153
|
+
if (this.bookreader.urlPlugin) {
|
154
|
+
this.updateSearchInUrl();
|
155
|
+
}
|
156
|
+
}
|
157
|
+
|
158
|
+
/** update URL `q=<term>` query param in URL */
|
159
|
+
updateSearchInUrl() {
|
160
|
+
if (this.bookreader.urlPlugin) {
|
161
|
+
this.bookreader.urlPlugin.pullFromAddressBar();
|
162
|
+
if (searchState.query) {
|
163
|
+
this.bookreader.urlPlugin.setUrlParam('q', searchState.query);
|
164
|
+
} else {
|
165
|
+
this.bookreader.urlPlugin.removeUrlParam('q');
|
166
|
+
}
|
114
167
|
}
|
115
|
-
this.updateMenu();
|
116
|
-
this.bookreader?.searchView?.clearSearchFieldAndResults();
|
117
168
|
}
|
118
169
|
|
119
|
-
|
170
|
+
/**
|
171
|
+
* Relays how to update side menu given the context of a search update
|
172
|
+
@param {{searchCanceled: boolean}} searchUpdates
|
173
|
+
*/
|
174
|
+
updateMenu(searchUpdates = {}) {
|
120
175
|
this.menuDetails = this.getMenuDetails();
|
121
176
|
this.component = this.getComponent();
|
122
|
-
this.
|
177
|
+
this.onProviderChange(this.bookreader, searchUpdates);
|
123
178
|
}
|
124
179
|
|
125
180
|
getComponent() {
|
@@ -134,18 +189,15 @@ export default class {
|
|
134
189
|
@resultSelected=${this.onSearchResultsClicked}
|
135
190
|
@bookSearchInitiated=${this.onBookSearchInitiated}
|
136
191
|
@bookSearchResultsCleared=${this.onSearchResultsCleared}
|
192
|
+
@bookSearchCanceled=${this.searchCanceledInMenu}
|
137
193
|
></ia-book-search-results>
|
138
194
|
`;
|
139
195
|
}
|
140
196
|
|
197
|
+
/**
|
198
|
+
* @param {{ detail: {match: SearchInsideMatch} }} param0
|
199
|
+
*/
|
141
200
|
onSearchResultsClicked({ detail }) {
|
142
|
-
|
143
|
-
this.advanceToPage(page);
|
144
|
-
}
|
145
|
-
|
146
|
-
advanceToPage(leaf) {
|
147
|
-
const page = this.bookreader.leafNumToIndex(leaf);
|
148
|
-
this.bookreader._searchPluginGoToResult(page);
|
149
|
-
this.bookreader.updateSearchHilites();
|
201
|
+
this.bookreader._searchPluginGoToResult(detail.match.matchIndex);
|
150
202
|
}
|
151
203
|
}
|
@@ -1,11 +1,12 @@
|
|
1
1
|
/* eslint-disable class-methods-use-this */
|
2
|
-
import {
|
3
|
-
import {
|
2
|
+
import { escapeHTML } from '../../BookReader/utils.js';
|
3
|
+
import { unsafeHTML } from 'lit/directives/unsafe-html.js';
|
4
|
+
import { css, html, LitElement, nothing } from 'lit';
|
4
5
|
import '@internetarchive/ia-activity-indicator/ia-activity-indicator';
|
5
|
-
import './a-search-result.js';
|
6
6
|
import checkmarkIcon from '../assets/icon_checkmark.js';
|
7
7
|
import closeIcon from '../assets/icon_close.js';
|
8
|
-
|
8
|
+
import buttonCSS from '../assets/button-base.js';
|
9
|
+
/** @typedef {import('@/src/plugins/search/plugin.search.js').SearchInsideMatch} SearchInsideMatch */
|
9
10
|
|
10
11
|
export class IABookSearchResults extends LitElement {
|
11
12
|
static get properties() {
|
@@ -23,6 +24,7 @@ export class IABookSearchResults extends LitElement {
|
|
23
24
|
constructor() {
|
24
25
|
super();
|
25
26
|
|
27
|
+
/** @type {SearchInsideMatch[]} */
|
26
28
|
this.results = [];
|
27
29
|
this.query = '';
|
28
30
|
this.queryInProgress = false;
|
@@ -60,6 +62,9 @@ export class IABookSearchResults extends LitElement {
|
|
60
62
|
|
61
63
|
setQuery(e) {
|
62
64
|
this.query = e.currentTarget.value;
|
65
|
+
if (!this.query) {
|
66
|
+
this.cancelSearch();
|
67
|
+
}
|
63
68
|
}
|
64
69
|
|
65
70
|
performSearch(e) {
|
@@ -77,7 +82,15 @@ export class IABookSearchResults extends LitElement {
|
|
77
82
|
}));
|
78
83
|
}
|
79
84
|
|
80
|
-
|
85
|
+
/**
|
86
|
+
* @param {SearchInsideMatch} match
|
87
|
+
*/
|
88
|
+
selectResult(match) {
|
89
|
+
this.dispatchEvent(new CustomEvent('resultSelected', {
|
90
|
+
bubbles: true,
|
91
|
+
composed: true,
|
92
|
+
detail: { match },
|
93
|
+
}));
|
81
94
|
this.dispatchEvent(new CustomEvent('closeMenu', {
|
82
95
|
bubbles: true,
|
83
96
|
composed: true,
|
@@ -90,10 +103,7 @@ export class IABookSearchResults extends LitElement {
|
|
90
103
|
}
|
91
104
|
|
92
105
|
dispatchSearchCanceled() {
|
93
|
-
this.dispatchEvent(new
|
94
|
-
bubbles: true,
|
95
|
-
composed: true,
|
96
|
-
}));
|
106
|
+
this.dispatchEvent(new Event('bookSearchCanceled'));
|
97
107
|
}
|
98
108
|
|
99
109
|
get resultsCount() {
|
@@ -122,6 +132,7 @@ export class IABookSearchResults extends LitElement {
|
|
122
132
|
<div class="loading">
|
123
133
|
<ia-activity-indicator mode="processing"></ia-activity-indicator>
|
124
134
|
<p>Searching</p>
|
135
|
+
<button class="ia-button external cancel-search" @click=${this.cancelSearch}>Cancel</button>
|
125
136
|
</div>
|
126
137
|
`;
|
127
138
|
}
|
@@ -131,10 +142,17 @@ export class IABookSearchResults extends LitElement {
|
|
131
142
|
return html`
|
132
143
|
<ul class="results ${resultsClass}">
|
133
144
|
${this.results.map(match => html`
|
134
|
-
<
|
135
|
-
.
|
136
|
-
|
137
|
-
|
145
|
+
<li @click=${this.selectResult.bind(this, match)}>
|
146
|
+
${match.cover ? html`<img src="${match.cover}" />` : nothing}
|
147
|
+
<h4>${match.title || nothing}</h4>
|
148
|
+
<p class="page-num">Page ${match.displayPageNumber}</p>
|
149
|
+
<p>
|
150
|
+
${
|
151
|
+
// [^] matches any character, including line breaks
|
152
|
+
unsafeHTML(escapeHTML(match.text).replace(/{{{([^]+?)}}}/g, '<mark>$1</mark>'))
|
153
|
+
}
|
154
|
+
</p>
|
155
|
+
</li>
|
138
156
|
`)}
|
139
157
|
</ul>
|
140
158
|
`;
|
@@ -150,6 +168,7 @@ export class IABookSearchResults extends LitElement {
|
|
150
168
|
name="query"
|
151
169
|
alt="Search inside this book."
|
152
170
|
@keyup=${this.setQuery}
|
171
|
+
@search=${this.setQuery}
|
153
172
|
.value=${this.query}
|
154
173
|
/>
|
155
174
|
</fieldset>
|
@@ -188,7 +207,7 @@ export class IABookSearchResults extends LitElement {
|
|
188
207
|
const searchResultBorder = css`var(--searchResultBorder, #adaedc)`;
|
189
208
|
const activeButtonBg = css`(--tertiaryBGColor, #333)`;
|
190
209
|
|
191
|
-
|
210
|
+
const mainCSS = css`
|
192
211
|
:host {
|
193
212
|
display: block;
|
194
213
|
height: 100%;
|
@@ -348,17 +367,6 @@ export class IABookSearchResults extends LitElement {
|
|
348
367
|
font-size: 1.2rem;
|
349
368
|
}
|
350
369
|
|
351
|
-
.loading button {
|
352
|
-
-webkit-appearance: none;
|
353
|
-
appearance: none;
|
354
|
-
padding: .5rem .7rem;
|
355
|
-
font: normal 1.4rem "Helvetica Neue", Helvetica, Arial, sans-serif;
|
356
|
-
border: 1px solid #656565;
|
357
|
-
border-radius: 3px;
|
358
|
-
cursor: pointer;
|
359
|
-
background: transparent;
|
360
|
-
}
|
361
|
-
|
362
370
|
ia-activity-indicator {
|
363
371
|
display: block;
|
364
372
|
width: 40px;
|
@@ -366,6 +374,7 @@ export class IABookSearchResults extends LitElement {
|
|
366
374
|
margin: 0 auto;
|
367
375
|
}
|
368
376
|
`;
|
377
|
+
return [buttonCSS, mainCSS];
|
369
378
|
}
|
370
379
|
}
|
371
380
|
customElements.define('ia-book-search-results', IABookSearchResults);
|
@@ -0,0 +1,27 @@
|
|
1
|
+
import { html } from 'lit';
|
2
|
+
import '@internetarchive/icon-share/icon-share';
|
3
|
+
import '@internetarchive/ia-sharing-options';
|
4
|
+
|
5
|
+
export default class SharingProvider {
|
6
|
+
constructor({
|
7
|
+
item,
|
8
|
+
baseHost,
|
9
|
+
bookreader
|
10
|
+
}) {
|
11
|
+
const { identifier, creator, title } = item?.metadata;
|
12
|
+
const creatorToUse = Array.isArray(creator) ? creator[0] : creator;
|
13
|
+
const subPrefix = bookreader.options.subPrefix || '';
|
14
|
+
const label = `Share this book`;
|
15
|
+
this.icon = html`<ia-icon-share style="width: var(--iconWidth); height: var(--iconHeight);"></ia-icon-share>`;
|
16
|
+
this.label = label;
|
17
|
+
this.id = 'share';
|
18
|
+
this.component = html`<ia-sharing-options
|
19
|
+
.identifier=${identifier}
|
20
|
+
.type=${`book`}
|
21
|
+
.creator=${creatorToUse}
|
22
|
+
.description=${title}
|
23
|
+
.baseHost=${baseHost}
|
24
|
+
.fileSubPrefix=${subPrefix}
|
25
|
+
></ia-sharing-options>`;
|
26
|
+
}
|
27
|
+
}
|
@@ -1,5 +1,6 @@
|
|
1
|
-
import { html } from 'lit
|
2
|
-
import '
|
1
|
+
import { html } from 'lit';
|
2
|
+
import '@internetarchive/icon-visual-adjustment/icon-visual-adjustment';
|
3
|
+
import './visual-adjustments';
|
3
4
|
|
4
5
|
const visualAdjustmentOptions = [{
|
5
6
|
id: 'brightness',
|
@@ -27,11 +28,11 @@ const visualAdjustmentOptions = [{
|
|
27
28
|
active: false,
|
28
29
|
}];
|
29
30
|
|
30
|
-
export default class {
|
31
|
+
export default class VisualAdjustmentsProvider {
|
31
32
|
constructor(options) {
|
32
|
-
const {
|
33
|
-
this.
|
34
|
-
this.
|
33
|
+
const { onProviderChange, bookreader } = options;
|
34
|
+
this.onProviderChange = onProviderChange;
|
35
|
+
this.bookContainer = bookreader.refs.$brContainer;
|
35
36
|
this.bookreader = bookreader;
|
36
37
|
|
37
38
|
this.onAdjustmentChange = this.onAdjustmentChange.bind(this);
|
@@ -41,7 +42,7 @@ export default class {
|
|
41
42
|
this.onZoomOut = this.onZoomOut.bind(this);
|
42
43
|
|
43
44
|
this.activeCount = 0;
|
44
|
-
this.icon = html`<ia-icon
|
45
|
+
this.icon = html`<ia-icon-visual-adjustment style="width: var(--iconWidth); height: var(--iconHeight);"></ia-icon-visual-adjustment>`;
|
45
46
|
this.label = 'Visual Adjustments';
|
46
47
|
this.menuDetails = this.updateOptionsCount();
|
47
48
|
this.id = 'adjustment';
|
@@ -60,7 +61,7 @@ export default class {
|
|
60
61
|
}
|
61
62
|
|
62
63
|
onZoomOut() {
|
63
|
-
this.bookreader.zoom();
|
64
|
+
this.bookreader.zoom(-1);
|
64
65
|
}
|
65
66
|
|
66
67
|
onAdjustmentChange(event) {
|
@@ -76,7 +77,7 @@ export default class {
|
|
76
77
|
return newValue ? [...values, newValue] : values;
|
77
78
|
}, []).join(' ');
|
78
79
|
|
79
|
-
|
80
|
+
this.bookContainer.css('filter', filters);
|
80
81
|
|
81
82
|
this.optionUpdateComplete(event);
|
82
83
|
}
|
@@ -84,7 +85,7 @@ export default class {
|
|
84
85
|
optionUpdateComplete(event) {
|
85
86
|
this.activeCount = event.detail.activeCount;
|
86
87
|
this.updateOptionsCount(event);
|
87
|
-
this.
|
88
|
+
this.onProviderChange();
|
88
89
|
}
|
89
90
|
|
90
91
|
updateOptionsCount() {
|
@@ -1,6 +1,6 @@
|
|
1
|
-
import { css, html, LitElement } from "lit
|
2
|
-
import { repeat } from "lit
|
3
|
-
import { nothing } from "lit
|
1
|
+
import { css, html, LitElement } from "lit";
|
2
|
+
import { repeat } from "lit/directives/repeat.js";
|
3
|
+
import { nothing } from "lit";
|
4
4
|
import checkmarkIcon from '../assets/icon_checkmark.js';
|
5
5
|
import "@internetarchive/icon-magnify-minus/icon-magnify-minus";
|
6
6
|
import "@internetarchive/icon-magnify-plus/icon-magnify-plus";
|
@@ -0,0 +1,111 @@
|
|
1
|
+
import { html } from 'lit';
|
2
|
+
|
3
|
+
import sortDescIcon from '../assets/icon_sort_desc.js';
|
4
|
+
import sortAscIcon from '../assets/icon_sort_asc.js';
|
5
|
+
import sortNeutralIcon from '../assets/icon_sort_neutral.js';
|
6
|
+
import volumesIcon from '../assets/icon_volumes.js';
|
7
|
+
|
8
|
+
import './volumes.js';
|
9
|
+
|
10
|
+
const sortType = {
|
11
|
+
title_asc: 'title_asc',
|
12
|
+
title_desc: 'title_desc',
|
13
|
+
default: 'default'
|
14
|
+
};
|
15
|
+
export default class VolumesProvider {
|
16
|
+
/**
|
17
|
+
* @param {import('../../BookReader').default} bookreader
|
18
|
+
*/
|
19
|
+
constructor({ baseHost, bookreader, onProviderChange }) {
|
20
|
+
this.onProviderChange = onProviderChange;
|
21
|
+
this.component = document.createElement("viewable-files");
|
22
|
+
|
23
|
+
const files = bookreader.options.multipleBooksList.by_subprefix;
|
24
|
+
this.viewableFiles = Object.keys(files).map(item => files[item]);
|
25
|
+
this.volumeCount = Object.keys(files).length;
|
26
|
+
|
27
|
+
/** @type {import('../../BookReader').default} */
|
28
|
+
this.bookreader = bookreader;
|
29
|
+
|
30
|
+
this.component.subPrefix = bookreader.options.subPrefix || "";
|
31
|
+
this.component.hostUrl = baseHost;
|
32
|
+
this.component.viewableFiles = this.viewableFiles;
|
33
|
+
|
34
|
+
this.id = "volumes";
|
35
|
+
this.label = `Viewable files (${this.volumeCount})`;
|
36
|
+
this.icon = html`${volumesIcon}`;
|
37
|
+
|
38
|
+
this.sortOrderBy = sortType.default;
|
39
|
+
|
40
|
+
// get sort state from query param
|
41
|
+
if (this.bookreader.urlPlugin) {
|
42
|
+
this.bookreader.urlPlugin.pullFromAddressBar();
|
43
|
+
|
44
|
+
const urlSortValue = this.bookreader.urlPlugin.getUrlParam('sort');
|
45
|
+
if (urlSortValue === sortType.title_asc || urlSortValue === sortType.title_desc) {
|
46
|
+
this.sortOrderBy = urlSortValue;
|
47
|
+
}
|
48
|
+
}
|
49
|
+
this.sortVolumes(this.sortOrderBy);
|
50
|
+
}
|
51
|
+
|
52
|
+
get sortButton() {
|
53
|
+
const sortIcons = {
|
54
|
+
default: html`
|
55
|
+
<button class="sort-by neutral-icon" aria-label="Sort volumes in initial order" @click=${() => this.sortVolumes("title_asc")}>${sortNeutralIcon}</button>
|
56
|
+
`,
|
57
|
+
title_asc: html`
|
58
|
+
<button class="sort-by asc-icon" aria-label="Sort volumes in ascending order" @click=${() => this.sortVolumes("title_desc")}>${sortAscIcon}</button>
|
59
|
+
`,
|
60
|
+
title_desc: html`
|
61
|
+
<button class="sort-by desc-icon" aria-label="Sort volumes in descending order" @click=${() => this.sortVolumes("default")}>${sortDescIcon}</button>
|
62
|
+
`,
|
63
|
+
};
|
64
|
+
|
65
|
+
return sortIcons[this.sortOrderBy];
|
66
|
+
}
|
67
|
+
|
68
|
+
/**
|
69
|
+
* @param {'default' | 'title_asc' | 'title_desc'} sortByType
|
70
|
+
*/
|
71
|
+
sortVolumes(sortByType) {
|
72
|
+
let sortedFiles = [];
|
73
|
+
|
74
|
+
const files = this.viewableFiles;
|
75
|
+
sortedFiles = files.sort((a, b) => {
|
76
|
+
if (sortByType === sortType.title_asc) return a.title.localeCompare(b.title);
|
77
|
+
else if (sortByType === sortType.title_desc) return b.title.localeCompare(a.title);
|
78
|
+
else return a.orig_sort - b.orig_sort;
|
79
|
+
});
|
80
|
+
|
81
|
+
this.sortOrderBy = sortByType;
|
82
|
+
this.component.sortOrderBy = sortByType;
|
83
|
+
this.component.viewableFiles = [...sortedFiles];
|
84
|
+
this.actionButton = this.sortButton;
|
85
|
+
|
86
|
+
if (this.bookreader.urlPlugin) {
|
87
|
+
this.bookreader.urlPlugin.pullFromAddressBar();
|
88
|
+
if (this.sortOrderBy !== sortType.default) {
|
89
|
+
this.bookreader.urlPlugin.setUrlParam('sort', sortByType);
|
90
|
+
} else {
|
91
|
+
this.bookreader.urlPlugin.removeUrlParam('sort');
|
92
|
+
}
|
93
|
+
}
|
94
|
+
|
95
|
+
this.onProviderChange(this.bookreader);
|
96
|
+
|
97
|
+
this.multipleFilesClicked(sortByType);
|
98
|
+
}
|
99
|
+
|
100
|
+
/**
|
101
|
+
* @param {'default' | 'title_asc' | 'title_desc'} orderBy
|
102
|
+
*/
|
103
|
+
multipleFilesClicked(orderBy) {
|
104
|
+
window.archive_analytics?.send_event(
|
105
|
+
'BookReader',
|
106
|
+
`VolumesSort|${orderBy}`,
|
107
|
+
window.location.path,
|
108
|
+
);
|
109
|
+
}
|
110
|
+
|
111
|
+
}
|