-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
92 lines (78 loc) · 1.88 KB
/
app.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
const url = './pdf/sample.pdf';
let pdfDoc = null,
pageNum = 1,
pageIsRendering = false,
pageNumIsPending = null;
const scale = 1,
canvas = document.querySelector('#pdf-render');
ctx = canvas.getContext('2d');
// Render Page
const renderPage = num => {
pageIsRendering = true;
// Get Page
pdfDoc.getPage(num).then(page => {
// Set Scale
const viewport = page.getViewport({
scale
});
canvas.height = viewport.height;
canvas.width = viewport.width;
const renderCtx = {
canvasContext: ctx,
viewport
}
page.render(renderCtx).promise.then(() => {
pageIsRendering = false;
if (pageNumIsPending !== null) {
renderPage(pageNumIsPending);
pageNumIsPending = null;
}
})
// Output current page
document.querySelector('#page-num').textContent = num;
})
}
// Check for page rendering
const queueRenderPage = num => {
if (pageIsRendering) {
pageNumIsPending = num;
} else {
renderPage(num);
}
}
// Prev page
const prevPage = () => {
if (pageNum <= 1) {
return;
} else {
pageNum--;
queueRenderPage(pageNum);
}
}
// Next page
const nextPage = () => {
if (pageNum >= pdfDoc.numPages) {
return;
} else {
pageNum++;
queueRenderPage(pageNum);
}
}
// Get Document
pdfjsLib.getDocument(url).promise
.then(pdfDoc_ => {
pdfDoc = pdfDoc_;
document.querySelector('#page-count').textContent = pdfDoc.numPages;
renderPage(pageNum);
})
.catch(err => {
// Display error
const div = document.createElement('div');
div.className = 'error';
div.appendChild(document.createTextNode(err.message));
document.querySelector('.error-container').appendChild(div);
document.querySelector('.nav').style.display = 'none';
})
// Button Events
document.querySelector('#prev').addEventListener('click', prevPage);
document.querySelector('#next').addEventListener('click', nextPage);