forked from webodf/ViewerJS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
PDFViewerPlugin.js
347 lines (290 loc) · 10.7 KB
/
PDFViewerPlugin.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
/**
* @license
* Copyright (C) 2013-2014 KO GmbH <[email protected]>
*
* @licstart
* The JavaScript code in this page is free software: you can redistribute it
* and/or modify it under the terms of the GNU Affero General Public License
* (GNU AGPL) as published by the Free Software Foundation, either version 3 of
* the License, or (at your option) any later version. The code is distributed
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU AGPL for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this code. If not, see <http://www.gnu.org/licenses/>.
*
* As additional permission under GNU AGPL version 3 section 7, you
* may distribute non-source (e.g., minimized or compacted) forms of
* that code without the copy of the GNU GPL normally required by
* section 4, provided you include this license notice and a URL
* through which recipients can access the Corresponding Source.
*
* As a special exception to the AGPL, any HTML file which merely makes function
* calls to this code, and for that purpose includes it by reference shall be
* deemed a separate work for copyright law purposes. In addition, the copyright
* holders of this code give you permission to combine this code with free
* software libraries that are released under the GNU LGPL. You may copy and
* distribute such a system following the terms of the GNU AGPL for this code
* and the LGPL for the libraries. If you modify this code, you may extend this
* exception to your version of the code, but you are not obligated to do so.
* If you do not wish to do so, delete this exception statement from your
* version.
*
* This license applies to this entire compilation.
* @licend
* @source: http://viewerjs.org/
* @source: http://github.com/kogmbh/Viewer.js
*/
/*global document, PDFJS, console, TextLayerBuilder*/
function PDFViewerPlugin() {
"use strict";
function loadScript(path, callback) {
var script = document.createElement('script');
script.async = false;
script.src = path;
script.type = 'text/javascript';
script.onload = callback || script.onload;
document.getElementsByTagName('head')[0].appendChild(script);
}
function init(callback) {
var pdfLib, textLayerLib, pluginCSS;
loadScript('./compatibility.js', function () {
loadScript('./pdf.js');
loadScript('./pdf_find_bar.js');
loadScript('./pdf_find_controller.js');
loadScript('./ui_utils.js');
loadScript('./text_layer_builder.js');
loadScript('./pdfjsversion.js', callback);
});
pluginCSS = document.createElement('link');
pluginCSS.setAttribute("rel", "stylesheet");
pluginCSS.setAttribute("type", "text/css");
pluginCSS.setAttribute("href", "./PDFViewerPlugin.css");
document.head.appendChild(pluginCSS);
}
var self = this,
pages = [],
domPages = [],
pageText = [],
renderingStates = [],
RENDERING = {
BLANK: 0,
RUNNING: 1,
FINISHED: 2
},
startedTextExtraction = false,
container = null,
initialized = false,
pdfDocument = null,
pageViewScroll = null,
isPresentationMode = false,
scale = 1,
currentPage = 1,
pageWidth,
pageHeight,
createdPageCount = 0;
function scrollIntoView(elem) {
elem.parentNode.scrollTop = elem.offsetTop;
}
function isScrolledIntoView(elem) {
var docViewTop = container.scrollTop,
docViewBottom = docViewTop + container.clientHeight,
elemTop = elem.offsetTop,
elemBottom = elemTop + elem.clientHeight;
// Is in view if either the top or the bottom of the page is between the
// document viewport bounds,
// or if the top is above the viewport and the bottom is below it.
return (elemTop >= docViewTop && elemTop < docViewBottom)
|| (elemBottom >= docViewTop && elemBottom < docViewBottom)
|| (elemTop < docViewTop && elemBottom >= docViewBottom);
}
function getDomPage(page) {
return domPages[page.pageInfo.pageIndex];
}
function getPageText(page) {
return pageText[page.pageInfo.pageIndex];
}
function getRenderingStatus(page) {
return renderingStates[page.pageInfo.pageIndex];
}
function setRenderingStatus(page, renderStatus) {
renderingStates[page.pageInfo.pageIndex] = renderStatus;
}
function updatePageDimensions(page, width, height) {
var domPage = getDomPage(page),
canvas = domPage.getElementsByTagName('canvas')[0],
textLayer = domPage.getElementsByTagName('div')[0],
cssScale = 'scale(' + scale + ', ' + scale + ')';
domPage.style.width = width;
domPage.style.height = height;
canvas.width = width;
canvas.height = height;
textLayer.style.width = width;
textLayer.style.height = height;
CustomStyle.setProp('transform', textLayer, cssScale);
CustomStyle.setProp('transformOrigin', textLayer, '0% 0%');
// Once the page dimension is updated, the rendering state is blank.
setRenderingStatus(page, RENDERING.BLANK);
}
function renderPage(page) {
var domPage = getDomPage(page),
textLayer = getPageText(page),
canvas = domPage.getElementsByTagName('canvas')[0];
if (getRenderingStatus(page) === RENDERING.BLANK) {
setRenderingStatus(page, RENDERING.RUNNING);
page.render({
canvasContext: canvas.getContext('2d'),
textLayer: textLayer,
viewport: page.getViewport(scale)
}).promise.then(function () {
setRenderingStatus(page, RENDERING.FINISHED);
});
}
}
function createPage(page) {
var pageNumber,
textLayerDiv,
textLayer,
canvas,
domPage,
viewport;
pageNumber = page.pageInfo.pageIndex + 1;
viewport = page.getViewport(scale);
domPage = document.createElement('div');
domPage.id = 'pageContainer' + pageNumber;
domPage.className = 'page';
canvas = document.createElement('canvas');
canvas.id = 'canvas' + pageNumber;
textLayerDiv = document.createElement('div');
textLayerDiv.className = 'textLayer';
textLayerDiv.id = 'textLayer' + pageNumber;
container.appendChild(domPage);
domPage.appendChild(canvas);
domPage.appendChild(textLayerDiv);
pages.push(page);
domPages.push(domPage);
renderingStates.push(RENDERING.BLANK);
updatePageDimensions(page, viewport.width, viewport.height);
pageWidth = viewport.width;
pageHeight = viewport.height;
textLayer = new TextLayerBuilder({
textLayerDiv: textLayerDiv,
pageIndex: pageNumber - 1
});
page.getTextContent().then(function (textContent) {
textLayer.setTextContent(textContent);
});
pageText.push(textLayer);
createdPageCount += 1;
if (createdPageCount === (pdfDocument.numPages)) {
self.onLoad();
}
}
this.initialize = function (viewContainer, location) {
var self = this,
i,
pluginCSS;
init(function () {
PDFJS.workerSrc = "./pdf.worker.js";
PDFJS.getDocument(location).then(function loadPDF(doc) {
pdfDocument = doc;
container = viewContainer;
for (i = 0; i < pdfDocument.numPages; i += 1) {
pdfDocument.getPage(i + 1).then(createPage);
}
initialized = true;
});
});
};
this.isSlideshow = function () {
// A very simple but generally true guess - if the width is greater than the height, treat it as a slideshow
return pageWidth > pageHeight;
};
this.onLoad = function () {};
this.getPages = function () {
return domPages;
};
this.getWidth = function () {
return pageWidth;
};
this.getHeight = function () {
return pageHeight;
};
this.fitToWidth = function (width) {
var zoomLevel;
if (self.getWidth() === width) {
return;
}
zoomLevel = width / pageWidth;
self.setZoomLevel(zoomLevel);
};
this.fitToHeight = function (height) {
var zoomLevel;
if (self.getHeight() === height) {
return;
}
zoomLevel = height / pageHeight;
self.setZoomLevel(zoomLevel);
};
this.fitToPage = function (width, height) {
var zoomLevel = width / pageWidth;
if (height / pageHeight < zoomLevel) {
zoomLevel = height / pageHeight;
}
self.setZoomLevel(zoomLevel);
};
this.fitSmart = function (width, height) {
var zoomLevel = width / pageWidth;
if (height && (height / pageHeight) < zoomLevel) {
zoomLevel = height / pageHeight;
}
zoomLevel = Math.min(1.0, zoomLevel);
self.setZoomLevel(zoomLevel);
};
this.setZoomLevel = function (zoomLevel) {
var i;
if (scale !== zoomLevel) {
scale = zoomLevel;
for (i = 0; i < pages.length; i += 1) {
updatePageDimensions(pages[i], pageWidth * scale, pageHeight * scale);
}
}
};
this.getZoomLevel = function () {
return scale;
};
this.onScroll = function () {
var i;
for (i = 0; i < domPages.length; i += 1) {
if (isScrolledIntoView(domPages[i])) {
if (getRenderingStatus(pages[i]) === RENDERING.BLANK) {
renderPage(pages[i]);
}
}
}
};
this.getPageInView = function () {
var i;
for (i = 0; i < domPages.length; i += 1) {
if (isScrolledIntoView(domPages[i])) {
return i + 1;
}
}
};
this.showPage = function (n) {
scrollIntoView(domPages[n - 1]);
};
this.getPluginName = function () {
return "PDF.js"
};
this.getPluginVersion = function () {
var version = (String(typeof pdfjs_version) !== "undefined"
? pdfjs_version
: "From Source"
);
return version;
};
this.getPluginURL = function () {
return "https://github.com/mozilla/pdf.js/";
};
}