@internetarchive/bookreader 5.0.0-4 → 5.0.0-40-a1

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 (228) hide show
  1. package/.eslintrc.js +17 -15
  2. package/.github/workflows/node.js.yml +75 -4
  3. package/.github/workflows/npm-publish.yml +2 -16
  4. package/.testcaferc.js +10 -0
  5. package/BookReader/BookReader.css +83 -323
  6. package/BookReader/BookReader.js +1 -1
  7. package/BookReader/BookReader.js.LICENSE.txt +24 -0
  8. package/BookReader/BookReader.js.map +1 -1
  9. package/BookReader/ia-bookreader-bundle.js +1623 -0
  10. package/BookReader/{bookreader-component-bundle.js.LICENSE.txt → ia-bookreader-bundle.js.LICENSE.txt} +14 -10
  11. package/BookReader/ia-bookreader-bundle.js.map +1 -0
  12. package/BookReader/icons/close-circle-dark.svg +1 -0
  13. package/BookReader/icons/magnify-minus.svg +1 -1
  14. package/BookReader/icons/magnify-plus.svg +1 -1
  15. package/BookReader/icons/voice.svg +1 -0
  16. package/BookReader/plugins/plugin.archive_analytics.js +1 -1
  17. package/BookReader/plugins/plugin.archive_analytics.js.map +1 -1
  18. package/BookReader/plugins/plugin.autoplay.js +1 -1
  19. package/BookReader/plugins/plugin.autoplay.js.map +1 -1
  20. package/BookReader/plugins/plugin.chapters.js +1 -1
  21. package/BookReader/plugins/plugin.chapters.js.map +1 -1
  22. package/BookReader/plugins/plugin.iframe.js +1 -1
  23. package/BookReader/plugins/plugin.iframe.js.map +1 -1
  24. package/BookReader/plugins/plugin.mobile_nav.js +1 -1
  25. package/BookReader/plugins/plugin.mobile_nav.js.map +1 -1
  26. package/BookReader/plugins/plugin.resume.js +1 -1
  27. package/BookReader/plugins/plugin.resume.js.map +1 -1
  28. package/BookReader/plugins/plugin.search.js +1 -1
  29. package/BookReader/plugins/plugin.search.js.map +1 -1
  30. package/BookReader/plugins/plugin.text_selection.js +1 -1
  31. package/BookReader/plugins/plugin.text_selection.js.map +1 -1
  32. package/BookReader/plugins/plugin.tts.js +1 -1
  33. package/BookReader/plugins/plugin.tts.js.map +1 -1
  34. package/BookReader/plugins/plugin.url.js +1 -1
  35. package/BookReader/plugins/plugin.url.js.map +1 -1
  36. package/BookReader/plugins/plugin.vendor-fullscreen.js +1 -1
  37. package/BookReader/plugins/plugin.vendor-fullscreen.js.map +1 -1
  38. package/BookReader/webcomponents-bundle.js +3 -0
  39. package/BookReader/webcomponents-bundle.js.LICENSE.txt +9 -0
  40. package/BookReader/webcomponents-bundle.js.map +1 -0
  41. package/BookReaderDemo/BookReaderDemo.css +14 -1
  42. package/BookReaderDemo/IADemoBr.js +120 -0
  43. package/BookReaderDemo/demo-advanced.html +1 -1
  44. package/BookReaderDemo/demo-autoplay.html +1 -0
  45. package/BookReaderDemo/demo-embed-iframe-src.html +1 -0
  46. package/BookReaderDemo/demo-fullscreen-mobile.html +1 -0
  47. package/BookReaderDemo/demo-fullscreen.html +1 -0
  48. package/BookReaderDemo/demo-iiif.html +1 -0
  49. package/BookReaderDemo/demo-internetarchive.html +74 -17
  50. package/BookReaderDemo/demo-multiple.html +1 -0
  51. package/BookReaderDemo/demo-preview-pages.html +1 -0
  52. package/BookReaderDemo/demo-simple.html +1 -0
  53. package/BookReaderDemo/demo-vendor-fullscreen.html +1 -0
  54. package/BookReaderDemo/ia-multiple-volumes-manifest.js +170 -0
  55. package/BookReaderDemo/immersion-1up.html +1 -0
  56. package/BookReaderDemo/immersion-mode.html +1 -0
  57. package/BookReaderDemo/toggle_controls.html +1 -0
  58. package/BookReaderDemo/view_mode.html +1 -0
  59. package/BookReaderDemo/viewmode-cycle.html +1 -2
  60. package/CHANGELOG.md +166 -0
  61. package/README.md +14 -1
  62. package/babel.config.js +18 -0
  63. package/codecov.yml +6 -0
  64. package/index.html +3 -0
  65. package/jsconfig.json +19 -0
  66. package/package.json +62 -47
  67. package/renovate.json +43 -0
  68. package/src/BookNavigator/assets/bookmark-colors.js +1 -1
  69. package/src/BookNavigator/assets/button-base.js +9 -2
  70. package/src/BookNavigator/assets/ia-logo.js +17 -0
  71. package/src/BookNavigator/assets/icon_checkmark.js +1 -1
  72. package/src/BookNavigator/assets/icon_close.js +1 -1
  73. package/src/BookNavigator/assets/icon_sort_asc.js +5 -0
  74. package/src/BookNavigator/assets/icon_sort_desc.js +5 -0
  75. package/src/BookNavigator/assets/icon_sort_neutral.js +5 -0
  76. package/src/BookNavigator/assets/icon_volumes.js +11 -0
  77. package/src/BookNavigator/book-navigator.js +556 -0
  78. package/src/BookNavigator/bookmarks/bookmark-button.js +3 -2
  79. package/src/BookNavigator/bookmarks/bookmark-edit.js +4 -4
  80. package/src/BookNavigator/bookmarks/bookmarks-list.js +3 -3
  81. package/src/BookNavigator/bookmarks/bookmarks-loginCTA.js +3 -8
  82. package/src/BookNavigator/bookmarks/bookmarks-provider.js +23 -12
  83. package/src/BookNavigator/bookmarks/ia-bookmarks.js +98 -62
  84. package/src/BookNavigator/delete-modal-actions.js +1 -1
  85. package/src/BookNavigator/downloads/downloads-provider.js +23 -17
  86. package/src/BookNavigator/downloads/downloads.js +17 -25
  87. package/src/BookNavigator/search/a-search-result.js +3 -3
  88. package/src/BookNavigator/search/search-provider.js +57 -24
  89. package/src/BookNavigator/search/search-results.js +8 -20
  90. package/src/BookNavigator/sharing.js +27 -0
  91. package/src/BookNavigator/visual-adjustments/visual-adjustments-provider.js +11 -13
  92. package/src/BookNavigator/visual-adjustments/visual-adjustments.js +4 -3
  93. package/src/BookNavigator/volumes/volumes-provider.js +114 -0
  94. package/src/BookNavigator/volumes/volumes.js +188 -0
  95. package/src/BookReader/DebugConsole.js +3 -3
  96. package/src/BookReader/DragScrollable.js +233 -0
  97. package/src/BookReader/Mode1Up.js +51 -351
  98. package/src/BookReader/Mode1UpLit.js +441 -0
  99. package/src/BookReader/Mode2Up.js +104 -71
  100. package/src/BookReader/ModeSmoothZoom.js +179 -0
  101. package/src/BookReader/ModeThumb.js +16 -8
  102. package/src/BookReader/Navbar/Navbar.js +2 -31
  103. package/src/BookReader/PageContainer.js +57 -6
  104. package/src/BookReader/ReduceSet.js +1 -1
  105. package/src/BookReader/Toolbar/Toolbar.js +7 -7
  106. package/src/BookReader/options.js +10 -0
  107. package/src/BookReader/utils/HTMLDimensionsCacher.js +44 -0
  108. package/src/BookReader/utils/ScrollClassAdder.js +31 -0
  109. package/src/BookReader/utils.js +68 -13
  110. package/src/BookReader.js +375 -289
  111. package/src/assets/icons/close-circle-dark.svg +1 -0
  112. package/src/assets/icons/magnify-minus.svg +3 -7
  113. package/src/assets/icons/magnify-plus.svg +3 -7
  114. package/src/assets/icons/voice.svg +1 -0
  115. package/src/css/BookReader.scss +0 -12
  116. package/src/css/_BRComponent.scss +1 -1
  117. package/src/css/_BRmain.scss +19 -24
  118. package/src/css/_BRnav.scss +4 -26
  119. package/src/css/_BRpages.scss +35 -0
  120. package/src/css/_BRsearch.scss +11 -215
  121. package/src/css/_TextSelection.scss +14 -17
  122. package/src/css/_colorbox.scss +2 -2
  123. package/src/css/_controls.scss +16 -3
  124. package/src/css/_icons.scss +6 -0
  125. package/src/ia-bookreader/ia-bookreader.js +224 -0
  126. package/src/plugins/plugin.chapters.js +26 -33
  127. package/src/plugins/plugin.mobile_nav.js +11 -10
  128. package/src/plugins/plugin.resume.js +3 -3
  129. package/src/plugins/plugin.text_selection.js +26 -39
  130. package/src/plugins/plugin.vendor-fullscreen.js +4 -4
  131. package/src/plugins/search/plugin.search.js +106 -107
  132. package/src/plugins/search/view.js +50 -163
  133. package/src/plugins/tts/AbstractTTSEngine.js +46 -37
  134. package/src/plugins/tts/FestivalTTSEngine.js +12 -13
  135. package/src/plugins/tts/PageChunk.js +15 -21
  136. package/src/plugins/tts/PageChunkIterator.js +8 -12
  137. package/src/plugins/tts/WebTTSEngine.js +64 -68
  138. package/src/plugins/tts/plugin.tts.js +79 -108
  139. package/src/plugins/url/UrlPlugin.js +184 -0
  140. package/src/plugins/{plugin.url.js → url/plugin.url.js} +28 -6
  141. package/tests/e2e/README.md +37 -0
  142. package/tests/e2e/autoplay.test.js +2 -2
  143. package/tests/e2e/base.test.js +7 -7
  144. package/tests/e2e/helpers/base.js +8 -3
  145. package/tests/e2e/helpers/debug.js +1 -1
  146. package/tests/e2e/helpers/desktopSearch.js +14 -13
  147. package/tests/e2e/helpers/mobileSearch.js +3 -3
  148. package/tests/e2e/helpers/params.js +17 -0
  149. package/tests/e2e/models/Navigation.js +12 -3
  150. package/tests/e2e/rightToLeft.test.js +4 -5
  151. package/tests/e2e/viewmode.test.js +38 -33
  152. package/tests/{BookReader → jest/BookReader}/BookModel.test.js +3 -3
  153. package/tests/jest/BookReader/BookReaderPublicFunctions.test.js +176 -0
  154. package/tests/{BookReader → jest/BookReader}/DebugConsole.test.js +1 -1
  155. package/tests/{BookReader → jest/BookReader}/ImageCache.test.js +4 -4
  156. package/tests/jest/BookReader/Mode1UpLit.test.js +88 -0
  157. package/tests/{BookReader → jest/BookReader}/Mode2Up.test.js +5 -7
  158. package/tests/jest/BookReader/ModeSmoothZoom.test.js +149 -0
  159. package/tests/jest/BookReader/ModeThumb.test.js +71 -0
  160. package/tests/{BookReader → jest/BookReader}/Navbar/Navbar.test.js +7 -7
  161. package/tests/{BookReader → jest/BookReader}/PageContainer.test.js +79 -6
  162. package/tests/{BookReader → jest/BookReader}/ReduceSet.test.js +1 -1
  163. package/tests/{BookReader → jest/BookReader}/Toolbar/Toolbar.test.js +2 -2
  164. package/tests/jest/BookReader/utils/HTMLDimensionsCacher.test.js +59 -0
  165. package/tests/jest/BookReader/utils/ScrollClassAdder.test.js +49 -0
  166. package/tests/{BookReader → jest/BookReader}/utils/classes.test.js +1 -1
  167. package/tests/jest/BookReader/utils.test.js +136 -0
  168. package/tests/jest/BookReader.keyboard.test.js +190 -0
  169. package/tests/{BookReader.options.test.js → jest/BookReader.options.test.js} +9 -1
  170. package/tests/{BookReader.test.js → jest/BookReader.test.js} +20 -4
  171. package/tests/{plugins → jest/plugins}/plugin.archive_analytics.test.js +2 -2
  172. package/tests/{plugins → jest/plugins}/plugin.autoplay.test.js +2 -2
  173. package/tests/{plugins → jest/plugins}/plugin.chapters.test.js +8 -8
  174. package/tests/{plugins → jest/plugins}/plugin.iframe.test.js +2 -2
  175. package/tests/{plugins → jest/plugins}/plugin.mobile_nav.test.js +5 -5
  176. package/tests/{plugins → jest/plugins}/plugin.resume.test.js +3 -3
  177. package/tests/{plugins → jest/plugins}/plugin.text_selection.test.js +39 -47
  178. package/tests/{plugins → jest/plugins}/plugin.vendor-fullscreen.test.js +2 -2
  179. package/tests/{plugins → jest/plugins}/search/plugin.search.test.js +24 -25
  180. package/tests/{plugins → jest/plugins}/search/plugin.search.view.test.js +6 -6
  181. package/tests/{plugins → jest/plugins}/tts/AbstractTTSEngine.test.js +6 -6
  182. package/tests/{plugins → jest/plugins}/tts/FestivalTTSEngine.test.js +4 -4
  183. package/tests/{plugins → jest/plugins}/tts/PageChunk.test.js +1 -1
  184. package/tests/{plugins → jest/plugins}/tts/PageChunkIterator.test.js +3 -3
  185. package/tests/{plugins → jest/plugins}/tts/WebTTSEngine.test.js +1 -1
  186. package/tests/{plugins → jest/plugins}/tts/utils.test.js +3 -3
  187. package/tests/jest/plugins/url/UrlPlugin.test.js +190 -0
  188. package/tests/{plugins → jest/plugins/url}/plugin.url.test.js +33 -14
  189. package/tests/{util → jest/util}/browserSniffing.test.js +1 -1
  190. package/tests/{util → jest/util}/docCookies.test.js +1 -1
  191. package/tests/{util → jest/util}/strings.test.js +1 -1
  192. package/tests/{utils.js → jest/utils.js} +38 -0
  193. package/tests/karma/BookNavigator/book-navigator.test.js +501 -0
  194. package/tests/karma/BookNavigator/bookmarks/bookmark-button.test.js +44 -0
  195. package/tests/karma/BookNavigator/bookmarks/bookmark-edit.test.js +1 -3
  196. package/tests/karma/BookNavigator/bookmarks/bookmarks-list.test.js +3 -4
  197. package/tests/karma/BookNavigator/bookmarks/ia-bookmarks.test.js +57 -0
  198. package/tests/karma/BookNavigator/downloads/downloads-provider.test.js +67 -0
  199. package/tests/karma/BookNavigator/downloads/downloads.test.js +54 -0
  200. package/tests/karma/BookNavigator/search/search-provider.test.js +123 -0
  201. package/tests/karma/BookNavigator/{search-results.test.js → search/search-results.test.js} +1 -4
  202. package/tests/karma/BookNavigator/sharing/sharing-provider.test.js +49 -0
  203. package/tests/karma/BookNavigator/visual-adjustments.test.js +0 -2
  204. package/tests/karma/BookNavigator/volumes/volumes-provider.test.js +184 -0
  205. package/tests/karma/BookNavigator/volumes/volumes.test.js +98 -0
  206. package/webpack.config.js +10 -4
  207. package/.babelrc +0 -12
  208. package/.dependabot/config.yml +0 -6
  209. package/.testcaferc.json +0 -5
  210. package/BookReader/bookreader-component-bundle.js +0 -1450
  211. package/BookReader/bookreader-component-bundle.js.map +0 -1
  212. package/BookReader/plugins/plugin.menu_toggle.js +0 -2
  213. package/BookReader/plugins/plugin.menu_toggle.js.map +0 -1
  214. package/BookReaderDemo/bookreader-template-bundle.js +0 -7178
  215. package/BookReaderDemo/demo-plugin-menu-toggle.html +0 -34
  216. package/src/BookNavigator/BookModel.js +0 -14
  217. package/src/BookNavigator/BookNavigator.js +0 -435
  218. package/src/BookNavigator/assets/book-loader.js +0 -27
  219. package/src/BookNavigator/br-fullscreen-mgr.js +0 -83
  220. package/src/BookReaderComponent/BookReaderComponent.js +0 -112
  221. package/src/ItemNavigator/ItemNavigator.js +0 -372
  222. package/src/ItemNavigator/providers/sharing.js +0 -29
  223. package/src/dragscrollable-br.js +0 -261
  224. package/src/plugins/menu_toggle/plugin.menu_toggle.js +0 -324
  225. package/tests/BookReader/BookReaderPublicFunctions.test.js +0 -171
  226. package/tests/BookReader/Mode1Up.test.js +0 -164
  227. package/tests/BookReader/utils.test.js +0 -109
  228. package/tests/plugins/menu_toggle/plugin.menu_toggle.test.js +0 -68
@@ -1,171 +0,0 @@
1
- import BookReader from '../../src/BookReader';
2
-
3
- beforeAll(() => {
4
- global.alert = jest.fn();
5
- })
6
- afterEach(() => {
7
- jest.restoreAllMocks();
8
- });
9
-
10
- describe('BookReader.prototype.toggleFullscreen', () => {
11
- test('uses `isFullscreen` to check fullscreen state', () => {
12
- const isFSmock = jest.fn();
13
- isFSmock.mockReturnValueOnce(false);
14
- const br = new BookReader();
15
- br.mode = br.constMode1up;
16
- br.enterFullscreen = jest.fn();
17
- br.isFullscreen = isFSmock;
18
-
19
- br.toggleFullscreen();
20
- expect(br.isFullscreen).toHaveBeenCalled();
21
- expect(br.isFullscreen).toHaveBeenCalled();
22
- });
23
-
24
- test('will always emit an event', () => {
25
- const br = new BookReader();
26
- br.mode = br.constMode1up;
27
- br.enterFullscreen = jest.fn();
28
- br.trigger = jest.fn();
29
- br.refs.$brContainer = {
30
- css: jest.fn(),
31
- animate: jest.fn()
32
- }
33
-
34
- br.toggleFullscreen();
35
- expect(br.enterFullscreen).toHaveBeenCalled();
36
- });
37
-
38
- test('will start with opening fullscreen', () => {
39
- const br = new BookReader();
40
- br.mode = br.constMode1up;
41
- br.enterFullscreen = jest.fn();
42
-
43
- br.toggleFullscreen();
44
- expect(br.enterFullscreen).toHaveBeenCalled();
45
- });
46
-
47
- test('will close fullscreen if BookReader is in fullscreen', () => {
48
- const br = new BookReader();
49
- br.mode = br.constMode1up;
50
- br.exitFullScreen = jest.fn();
51
- br.isFullscreenActive = true;
52
-
53
- br.toggleFullscreen();
54
- expect(br.exitFullScreen).toHaveBeenCalled();
55
- });
56
- });
57
-
58
- describe('BookReader.prototype.enterFullscreen', () => {
59
- test('will bind `_fullscreenCloseHandler` by default', () => {
60
- const br = new BookReader();
61
- br.mode = br.constMode1up;
62
- br.switchMode = jest.fn();
63
- br.updateBrClasses = jest.fn();
64
- br.refs.$brContainer = {
65
- css: jest.fn(),
66
- animate: jest.fn(),
67
- };
68
- expect(br._fullscreenCloseHandler).toBeUndefined();
69
-
70
- br.enterFullscreen();
71
- expect(br._fullscreenCloseHandler).toBeDefined();
72
- });
73
-
74
- test('fires certain events when called', () => {
75
- const br = new BookReader();
76
- br.mode = br.constMode1up;
77
- br.switchMode = jest.fn();
78
- br.updateBrClasses = jest.fn();
79
- br.trigger = jest.fn();
80
- br.resize = jest.fn();
81
- br.jumpToIndex = jest.fn();
82
- const animateMock = (options, speed, style, callback) => {
83
- callback();
84
- };
85
- br.refs.$brContainer = {
86
- css: jest.fn(),
87
- animate: animateMock,
88
- };
89
-
90
- br.enterFullscreen();
91
- expect(br.switchMode).toHaveBeenCalledTimes(1);
92
- expect(br.updateBrClasses).toHaveBeenCalledTimes(0); // book nav's fullscreen manager will set these classes
93
- expect(br.trigger).toHaveBeenCalledTimes(1);
94
- expect(br.resize).toHaveBeenCalledTimes(1);
95
- expect(br.jumpToIndex).toHaveBeenCalledTimes(1);
96
- });
97
- });
98
-
99
- describe('BookReader.prototype.exitFullScreen', () => {
100
- test('fires certain events when called', () => {
101
- const br = new BookReader();
102
- br.mode = br.constMode1up;
103
- br.switchMode = jest.fn();
104
- br.updateBrClasses = jest.fn();
105
- br.trigger = jest.fn();
106
- br.resize = jest.fn();
107
- const animateMock = (options, speed, style, callback) => {
108
- callback();
109
- };
110
- br.refs.$brContainer = {
111
- css: jest.fn(),
112
- animate: animateMock,
113
- };
114
- br.exitFullScreen();
115
- expect(br.switchMode).toHaveBeenCalledTimes(1);
116
- expect(br.updateBrClasses).toHaveBeenCalledTimes(1);
117
- expect(br.trigger).toHaveBeenCalledTimes(1);
118
- expect(br.resize).toHaveBeenCalledTimes(1);
119
- });
120
- });
121
-
122
- describe('BookReader.prototype.trigger', () => {
123
- test('fires custom event', () => {
124
- const br = new BookReader();
125
- global.br = br;
126
- global.dispatchEvent = jest.fn();
127
-
128
- const props = {bar: 1};
129
- br.trigger('foo', props);
130
- expect(global.dispatchEvent.mock.calls.length).toBe(1);
131
- });
132
- });
133
-
134
- describe('`BookReader.prototype.prev`', () => {
135
- const br = new BookReader();
136
- global.br = br;
137
- br.trigger = jest.fn();
138
- br.flipBackToIndex = jest.fn();
139
- br.jumpToIndex = jest.fn();
140
-
141
- test('does not take action if user is on front page', () => {
142
- br.firstIndex = 0;
143
- br.prev();
144
- expect(br.trigger.mock.calls.length).toBe(0);
145
- expect(br.flipBackToIndex.mock.calls.length).toBe(0);
146
- expect(br.jumpToIndex.mock.calls.length).toBe(0);
147
- });
148
-
149
- describe('2up mode', () => {
150
- test('fires event and turns the page', () => {
151
- br.firstIndex = 10;
152
- br.mode = br.constMode2up;
153
- br.prev();
154
- expect(br.jumpToIndex.mock.calls.length).toBe(0); // <-- does not get called
155
- expect(br.trigger.mock.calls.length).toBe(1);
156
- expect(br.flipBackToIndex.mock.calls.length).toBe(1);
157
- });
158
- })
159
-
160
- describe('non 2up mode', () => {
161
- test('jumps to provided index', () => {
162
- br.firstIndex = 100;
163
- br.mode = br.constMode1up;
164
- br.prev();
165
- expect(br.jumpToIndex.mock.calls.length).toBe(1); // <-- gets called
166
- expect(br.trigger.mock.calls.length).toBe(1); // <-- gets called by `jumpToIndex` internally
167
- expect(br.flipBackToIndex.mock.calls.length).toBe(1); // <-- gets called by `jumpToIndex` internally
168
- })
169
- });
170
- });
171
-
@@ -1,164 +0,0 @@
1
- import sinon from 'sinon';
2
- import { deepCopy } from '../utils.js';
3
- import { Mode1Up } from '../../src/BookReader/Mode1Up.js'
4
- import { BookModel } from '../../src/BookReader/BookModel.js';
5
- import { DEFAULT_OPTIONS } from '../../src/BookReader/options.js';
6
- const DEFAULT_PPI = DEFAULT_OPTIONS.ppi;
7
-
8
- /** @type {BookReaderOptions['data']} */
9
- const SAMPLE_DATA = [
10
- [
11
- { width: 123, height: 123, uri: 'https://archive.org/image0.jpg', pageNum: '1' },
12
- ],
13
- [
14
- { width: 123, height: 123, uri: 'https://archive.org/image1.jpg', pageNum: '2' },
15
- { width: 123, height: 123, uri: 'https://archive.org/image2.jpg', pageNum: '3' },
16
- ],
17
- [
18
- { width: 123, height: 123, uri: 'https://archive.org/image3.jpg', pageNum: '4' },
19
- { width: 123, height: 123, uri: 'https://archive.org/image4.jpg', pageNum: '5' },
20
- ],
21
- [
22
- { width: 123, height: 123, uri: 'https://archive.org/image5.jpg', pageNum: '6' },
23
- ],
24
- ];
25
-
26
- describe('pagesWithBounds', () => {
27
- test('Works with empty book', () => {
28
- const br = { data: [] };
29
- const book = new BookModel(br);
30
- const mode = new Mode1Up(br, book);
31
- expect(Array.from(mode.pagesWithBounds())).toHaveLength(0);
32
- });
33
-
34
- test('Iterates all pages', () => {
35
- const br = { data: SAMPLE_DATA };
36
- const book = new BookModel(br);
37
- const mode = new Mode1Up(br, book);
38
- expect(Array.from(mode.pagesWithBounds())).toHaveLength(6);
39
- });
40
-
41
- test('Computes bounds', () => {
42
- const br = { data: SAMPLE_DATA };
43
- const book = new BookModel(br);
44
- const mode = new Mode1Up(br, book);
45
- const x = Array.from(mode.pagesWithBounds());
46
- expect(x.map(({top, bottom}) => [top, bottom].map(x => x.toFixed(1)))).toEqual([
47
- ['0.0', '24.6'],
48
- ['44.6', '69.2'],
49
- ['89.2', '113.8'],
50
- ['133.8', '158.4'],
51
- ['178.4', '203.0'],
52
- ['223.0', '247.6'],
53
- ]);
54
- });
55
- });
56
-
57
- describe('boundIntersection', () => {
58
- const f = Mode1Up.boundIntersection;
59
- test('Exactly equal', () => {
60
- expect(f({top: 0, bottom: 10}, {top: 0, bottom: 10})).toBe(1);
61
- });
62
-
63
- test('A contains B', () => {
64
- expect(f({top: 0, bottom: 10}, {top: 1, bottom: 2})).toBe(0.1);
65
- });
66
- test('A boundary contains B', () => {
67
- expect(f({top: 0, bottom: 10}, {top: 0, bottom: 2})).toBe(0.2);
68
- });
69
- test('A contains top part of B', () => {
70
- expect(f({top: 0, bottom: 10}, {top: 5, bottom: 15})).toBeCloseTo(5 / 15);
71
- });
72
- test('A contains bottom part of B', () => {
73
- expect(f({top: 5, bottom: 10}, {top: 0, bottom: 6})).toBe(0.1);
74
- });
75
- test('A entirely above B', () => {
76
- expect(f({top: 0, bottom: 10}, {top: 20, bottom: 30})).toBe(0);
77
- });
78
- test('A entirely below B', () => {
79
- expect(f({top: 20, bottom: 30}, {top: 0, bottom: 10})).toBe(0);
80
- });
81
- });
82
-
83
- describe('physicalInchesToDisplayPixels', () => {
84
- test('0 case', () => {
85
- const f = Mode1Up.prototype.physicalInchesToDisplayPixels;
86
- expect(f(0, 1, 100)).toBe(0);
87
- });
88
- test('Misc case', () => {
89
- const f = Mode1Up.prototype.physicalInchesToDisplayPixels;
90
- expect(f(1, 1, 100)).toBe(100);
91
- expect(f(1, 2, 100)).toBe(50);
92
- expect(f(1, 1, 78)).toBe(78);
93
- });
94
- });
95
-
96
- describe('calculateViewDimensions', () => {
97
- test('Padding added for each page', () => {
98
- const br = { data: SAMPLE_DATA };
99
- const book = new BookModel(br);
100
- const mode = new Mode1Up(br, book);
101
- const pageSizeIn = 123 / DEFAULT_PPI;
102
- const dims = mode.calculateViewDimensions(1, 2.5);
103
- expect(dims.width).toBeCloseTo(mode.physicalInchesToDisplayPixels(pageSizeIn, 1));
104
- expect(dims.height).toBeCloseTo(mode.physicalInchesToDisplayPixels(6 * pageSizeIn + 5 * 2.5, 1));
105
- });
106
-
107
- test('Reduction factor applied to each page/spacing individually', () => {
108
- const br = { data: SAMPLE_DATA };
109
- const book = new BookModel(br);
110
- const mode = new Mode1Up(br, book);
111
- const pageSizeIn = 123 / DEFAULT_PPI;
112
- const dims = mode.calculateViewDimensions(2, 5);
113
- expect(dims.width).toBeCloseTo(mode.physicalInchesToDisplayPixels(pageSizeIn, 2));
114
- expect(dims.height).toBeCloseTo(mode.physicalInchesToDisplayPixels(6 * pageSizeIn + 5 * 5, 2));
115
- });
116
-
117
- test('Uses maximal width', () => {
118
- const br = { data: deepCopy(SAMPLE_DATA) };
119
- br.data.flat().forEach((page, i) => page.width = i);
120
- const book = new BookModel(br);
121
- const mode = new Mode1Up(br, book);
122
- expect(mode.calculateViewDimensions().width).toBe(mode.physicalInchesToDisplayPixels(5 / DEFAULT_PPI));
123
- });
124
- });
125
-
126
- describe('centerY', () => {
127
- test('Computes the scroll position of the center of the screen', () => {
128
- const $container = $(`
129
- <div style="height: 500px">
130
- <div style="height: 2500px" />
131
- </div>`);
132
- $container.scrollTop(1000);
133
- expect(Mode1Up.prototype.centerY($container)).toBe(1250);
134
- });
135
-
136
- test('Handles no scroll', () => {
137
- const $container = $(`
138
- <div style="height: 1280px">
139
- <div style="height: 500px" />
140
- </div>`);
141
- expect(Mode1Up.prototype.centerY($container)).toBe(640);
142
- });
143
- });
144
-
145
- describe('centerX', () => {
146
- test('Pages narrower than viewport', () => {
147
- const $container = $(`<div style="width: 800px; height: 800px" />`);
148
- const $pagesContainer = $(`<div style="width: 500px; height: 1600px" />`)
149
- .appendTo($container);
150
- // clientWidth doesn't work in jsdom, so stub it
151
- sinon.stub($container, 'prop').returns(800);
152
- expect(Mode1Up.prototype.centerX($container, $pagesContainer)).toBe(500);
153
- });
154
-
155
- test('Pages wider than viewport', () => {
156
- const $container = $(`<div style="width: 800px; height: 800px; overflow: scroll;" />`);
157
- const $pagesContainer = $(`<div style="width: 1200px; height: 1600px" />`)
158
- .appendTo($container);
159
- $container.scrollLeft(10);
160
- // clientWidth doesn't work in jsdom, so stub it
161
- sinon.stub($container, 'prop').returns(800);
162
- expect(Mode1Up.prototype.centerX($container, $pagesContainer)).toBe(410);
163
- });
164
- });
@@ -1,109 +0,0 @@
1
- import sinon from 'sinon';
2
- import {
3
- clamp,
4
- cssPercentage,
5
- debounce,
6
- decodeURIComponentPlus,
7
- encodeURIComponentPlus,
8
- escapeHTML,
9
- polyfillCustomEvent,
10
- PolyfilledCustomEvent,
11
- sleep,
12
- } from '../../src/BookReader/utils.js';
13
-
14
- test('clamp function returns Math.min(Math.max(value, min), max)', () => {
15
- expect(clamp(2,1,3)).toEqual(2);
16
- });
17
-
18
- test('calculate a percentage suitable for CSS', () => {
19
- expect(cssPercentage(2,1)).toEqual('200%');
20
- });
21
-
22
- test('escapeHTML function which replaces the string', () => {
23
- expect(escapeHTML('Me & You')).toEqual('Me &amp; You');
24
- expect(escapeHTML('Me > You')).toEqual('Me &gt; You');
25
- expect(escapeHTML('Me < You')).toEqual('Me &lt; You');
26
- expect(escapeHTML('Me " You')).toEqual('Me &quot; You');
27
- });
28
-
29
- test('Decodes a URI component and converts + to emptyStr', () => {
30
- expect(decodeURIComponentPlus("https%3A%2F%2Farchive.org%2Fskr+")).toEqual("https://archive.org/skr ");
31
- expect(decodeURIComponentPlus("%3Fx%3D+test")).toEqual("?x= test");
32
- });
33
-
34
- test('Encodes a URI component and converts emptyStr to +', () => {
35
- expect(encodeURIComponentPlus("?x=test ")).toEqual("%3Fx%3Dtest+");
36
- expect(encodeURIComponentPlus("ABC abc 123")).toEqual("ABC+abc+123");
37
- });
38
-
39
- let clock;
40
-
41
- beforeEach(() => {
42
- clock = sinon.useFakeTimers();
43
- });
44
-
45
- afterEach(() => {
46
- clock.restore();
47
- });
48
-
49
- test('testing debounce', () => {
50
- const func = jest.fn();
51
- const debouncedFunc = debounce(func, 1000);
52
- // Call it immediately
53
- debouncedFunc();
54
- expect(func).toHaveBeenCalledTimes(0); // func not called
55
-
56
- // Call it several times with 500ms between each call
57
- for (let i = 0; i < 10; i++) {
58
- clock.tick(500);
59
- debouncedFunc();
60
- }
61
- expect(func).toHaveBeenCalledTimes(0); // func not called
62
-
63
- // wait 1000ms
64
- clock.tick(1000);
65
- expect(func).toHaveBeenCalledTimes(1); // func called
66
- });
67
-
68
-
69
- describe('polyfillCustomEvent', () => {
70
- test('Overrides when missing', () => {
71
- const win = {};
72
- polyfillCustomEvent(win);
73
- expect(win).toHaveProperty('CustomEvent');
74
- });
75
-
76
- test('Overrides when not a function', () => {
77
- const win = { CustomEvent: {} };
78
- polyfillCustomEvent(win);
79
- expect(typeof win.CustomEvent).toBe('function');
80
- });
81
- });
82
-
83
- describe('PolyfilledCustomEvent', () => {
84
- test('Can be called as a constructor', () => {
85
- new PolyfilledCustomEvent('foo');
86
- });
87
-
88
- test('Calls deprecated browser methods', () => {
89
- const createEventSpy = sinon.spy(document, 'createEvent');
90
- const initCustomEventSpy = sinon.spy(CustomEvent.prototype, 'initCustomEvent');
91
- new PolyfilledCustomEvent('foo');
92
- expect(createEventSpy.callCount).toBe(1);
93
- expect(initCustomEventSpy.callCount).toBe(1);
94
- });
95
- });
96
-
97
- describe('sleep', () => {
98
- test('can set sleep in ms', async () => {
99
- jest.useFakeTimers();
100
-
101
- const sleepTimeMS = 11;
102
- await sleep(sleepTimeMS);
103
-
104
- expect(setTimeout).toHaveBeenCalledTimes(1);
105
- expect(setTimeout).toHaveBeenLastCalledWith(undefined, sleepTimeMS);
106
-
107
- jest.clearAllTimers();
108
- });
109
- });
@@ -1,68 +0,0 @@
1
-
2
- import BookReader from '../../../src/BookReader.js';
3
- import '../../../src/plugins/menu_toggle/plugin.menu_toggle.js';
4
-
5
-
6
- let br;
7
- let hideFlag;
8
- beforeAll(() => {
9
- $.fx.off = true;
10
- const OGSpeed = $.speed;
11
- $.speed = function(_speed, easing, callback) {
12
- return OGSpeed(0, easing, callback);
13
- };
14
- document.body.innerHTML = '<div id="BookReader">';
15
- br = new BookReader();
16
- br.init();
17
- });
18
-
19
- afterEach(() => {
20
- $.fx.off = false;
21
- jest.clearAllMocks();
22
- });
23
-
24
- describe('Plugin: Menu Toggle', () => {
25
- test('has option flag', () => {
26
- expect(BookReader.defaultOptions.enableMenuToggle).toEqual(true);
27
- });
28
-
29
- test('core code has animation consts', () => {
30
- expect(BookReader.constNavAnimationDuration).toEqual(300);
31
- expect(BookReader.constResizeAnimationDuration).toEqual(100);
32
- })
33
-
34
- test('core code has registered event: `navToggled`', () => {
35
- expect(BookReader.eventNames.navToggled).toBeTruthy();
36
- })
37
-
38
- test('when bookreader loads, the menu shows', () => {
39
- expect($('.BRfooter').hasClass('js-menu-hide')).toEqual(false);
40
- expect($('.BRtoolbar').hasClass('js-menu-hide')).toEqual(false);
41
- })
42
-
43
- test('clicking on background hides the menu', () => {
44
- expect($('.BRfooter').hasClass('js-menu-hide')).toEqual(false);
45
- expect($('.BRtoolbar').hasClass('js-menu-hide')).toEqual(false);
46
- $('.BRcontainer').click();
47
- expect($('.BRfooter').hasClass('js-menu-hide')).toEqual(true);
48
- expect($('.BRtoolbar').hasClass('js-menu-hide')).toEqual(true);
49
- });
50
-
51
- test('core function `setNavigationView` is called `hideNavigation` is called', () => {
52
- br.setNavigationView = jest.fn((arg) => hideFlag = arg);
53
-
54
- br.hideNavigation();
55
- expect(br.setNavigationView).toHaveBeenCalled();
56
- expect(hideFlag).toEqual(true);
57
- });
58
-
59
- test('core function `setNavigationView` is called `showNavigation` is called', () => {
60
- br.setNavigationView = jest.fn((arg) => hideFlag = arg);
61
- br.navigationIsVisible = jest.fn(() => false);
62
-
63
- br.showNavigation();
64
- expect(br.setNavigationView).toHaveBeenCalled();
65
- expect(br.navigationIsVisible).toHaveBeenCalled();
66
- expect(hideFlag).toEqual(undefined);
67
- });
68
- });