-
Notifications
You must be signed in to change notification settings - Fork 87
Expand file tree
/
Copy pathPDFViewer.tsx
More file actions
345 lines (320 loc) · 13.7 KB
/
Copy pathPDFViewer.tsx
File metadata and controls
345 lines (320 loc) · 13.7 KB
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
import {
ChangeEvent,
FormEvent,
Fragment,
KeyboardEvent,
useCallback,
useEffect,
useMemo,
useRef,
useState
} from "react";
import { Document, Page, pdfjs } from "react-pdf";
import "react-pdf/dist/Page/AnnotationLayer.css";
import "react-pdf/dist/Page/TextLayer.css";
import type { PDFDocumentProxy } from "pdfjs-dist";
import { downloadFile } from "../utils/helpers";
import { usePDFHighlightPositions } from "../utils/usePDFHighlightPositions";
import { usePDFSearch } from "../utils/usePDFSearch";
import { useZoomScale } from "../utils/useZoomScale";
import BaseViewer from "./BaseViewer";
import { DocRendererElement, DocumentRendererProps, DocumentStatus } from "./documentRenderer";
import { If } from "@mendix/widget-plugin-component-kit/If";
const options = {
cMapUrl: "/widgets/com/mendix/shared/pdfjs/cmaps/",
standardFontDataUrl: "/widgets/com/mendix/shared/pdfjs/standard_fonts"
};
const PDFViewer: DocRendererElement = (props: DocumentRendererProps) => {
const { file, setDocumentStatus, pdfjsWorkerUrl } = props;
pdfjs.GlobalWorkerOptions.workerSrc = useMemo(() => {
if (pdfjsWorkerUrl?.status === "available") {
if (pdfjsWorkerUrl?.value) {
return pdfjsWorkerUrl.value;
} else {
return `//unpkg.com/pdfjs-dist@${pdfjs.version}/build/pdf.worker.min.mjs`;
}
} else if (pdfjsWorkerUrl?.status === "unavailable") {
setDocumentStatus({
status: DocumentStatus.error,
message: "Failed to load PDF document : pdfjsWorker unavailable"
});
return ""; // no worker;
} else {
return ""; // no worker;
}
}, [pdfjsWorkerUrl, setDocumentStatus]);
const [numberOfPages, setNumberOfPages] = useState<number>(1);
const { zoomLevel, zoomIn, zoomOut, reset } = useZoomScale();
const [currentPage, setCurrentPage] = useState<number>(1);
const [pageInputValue, setPageInputValue] = useState<string>("1");
const [pdfUrl, setPdfUrl] = useState<string | null>(null);
const [pdfDoc, setPdfDoc] = useState<PDFDocumentProxy | null>(null);
const [showSearch, setShowSearch] = useState<boolean>(false);
const [searchQuery, setSearchQuery] = useState<string>("");
const [debouncedQuery, setDebouncedQuery] = useState<string>("");
const searchInputRef = useRef<HTMLInputElement>(null);
const onDownloadClick = useCallback(() => {
downloadFile(file.value?.uri);
}, [file]);
const toggleSearch = useCallback(() => {
setShowSearch(prev => {
if (prev) {
setSearchQuery("");
setDebouncedQuery("");
}
return !prev;
});
}, []);
const handleSearchInputChange = useCallback((event: ChangeEvent<HTMLInputElement>) => {
setSearchQuery(event.target.value);
}, []);
const handleSearchKeyDown = useCallback(
(event: KeyboardEvent<HTMLInputElement>) => {
if (event.key === "Escape") {
event.preventDefault();
toggleSearch();
}
},
[toggleSearch]
);
const handlePageInputChange = useCallback((event: ChangeEvent<HTMLInputElement>) => {
const value = event.target.value;
// Allow only numbers and empty string
if (value === "" || /^\d+$/.test(value)) {
setPageInputValue(value);
}
}, []);
const validateAndSetPage = useCallback(() => {
const pageNumber = parseInt(pageInputValue, 10);
if (!isNaN(pageNumber) && pageNumber >= 1 && pageNumber <= numberOfPages) {
setCurrentPage(pageNumber);
} else {
// Reset to current page if invalid input
setPageInputValue(currentPage.toString());
}
}, [pageInputValue, numberOfPages, currentPage]);
const handlePageInputSubmit = useCallback(
(event: FormEvent) => {
event.preventDefault();
validateAndSetPage();
},
[validateAndSetPage]
);
const handlePageInputBlur = useCallback(() => {
validateAndSetPage();
}, [validateAndSetPage]);
const handlePageInputKeyDown = useCallback(
(event: KeyboardEvent<HTMLInputElement>) => {
if (event.key === "Enter") {
event.preventDefault();
validateAndSetPage();
}
// Prevent non-numeric characters except backspace, delete, arrow keys, etc.
if (
!/[\d]/.test(event.key) &&
!["Backspace", "Delete", "ArrowLeft", "ArrowRight", "Home", "End", "Tab"].includes(event.key) &&
!event.ctrlKey &&
!event.metaKey
) {
event.preventDefault();
}
},
[validateAndSetPage]
);
useEffect(() => {
if (file.status === "available" && file.value.uri) {
setPdfUrl(file.value.uri);
}
}, [file, file.status, file.value?.uri]);
// Reset page to 1 when file changes (including content changes)
useEffect(() => {
if (file.value?.uri) {
setCurrentPage(1);
setPageInputValue("1");
setPdfDoc(null);
setSearchQuery("");
setDebouncedQuery("");
}
}, [file.value]);
// Debounce search query to avoid triggering search on every keystroke
useEffect(() => {
const timer = setTimeout(() => setDebouncedQuery(searchQuery), 300);
return () => clearTimeout(timer);
}, [searchQuery]);
// Auto-focus search input when search bar opens
useEffect(() => {
if (showSearch) {
searchInputRef.current?.focus();
}
}, [showSearch]);
// Sync page input value with current page
useEffect(() => {
setPageInputValue(currentPage.toString());
}, [currentPage]);
function onDocumentLoadSuccess(pdf: PDFDocumentProxy): void {
setNumberOfPages(pdf.numPages);
setPdfDoc(pdf);
}
const { matches, currentMatchIndex, goToNextMatch, goToPrevMatch, isSearching } = usePDFSearch(
pdfDoc,
debouncedQuery,
setCurrentPage
);
const highlightRects = usePDFHighlightPositions(pdfDoc, currentPage, zoomLevel, matches, currentMatchIndex);
const searchMatchLabel = debouncedQuery.trim()
? isSearching
? "Searching…"
: matches.length === 0
? "No results"
: `${currentMatchIndex + 1} of ${matches.length}`
: "";
if (!file.value?.uri) {
return <div>No document selected</div>;
}
return (
<BaseViewer
{...props}
fileName={file.value?.name || ""}
SecondaryControl={
showSearch ? (
<div className="widget-document-viewer-search-bar">
<input
ref={searchInputRef}
type="search"
value={searchQuery}
onChange={handleSearchInputChange}
onKeyDown={handleSearchKeyDown}
className="form-control widget-document-viewer-search-input"
aria-label="Search in document"
placeholder="Search…"
/>
<span className="widget-document-viewer-search-count" aria-live="polite">
{searchMatchLabel}
</span>
<button
onClick={goToPrevMatch}
disabled={matches.length === 0}
className="icons icon-Left btn btn-icon-only"
aria-label="Previous match"
title="Previous match"
></button>
<button
onClick={goToNextMatch}
disabled={matches.length === 0}
className="icons icon-Right btn btn-icon-only"
aria-label="Next match"
title="Next match"
></button>
</div>
) : null
}
CustomControl={
<Fragment>
<div className="widget-document-viewer-pagination">
<button
onClick={() => setCurrentPage(prev => Math.max(prev - 1, 1))}
disabled={currentPage <= 1}
className="icons icon-Left btn btn-icon-only"
aria-label={"Go to previous page"}
title={"Go to previous page"}
></button>
<div className="widget-document-viewer-page-input">
<form onSubmit={handlePageInputSubmit}>
<input
type="text"
inputMode="numeric"
pattern="[0-9]*"
value={pageInputValue}
onChange={handlePageInputChange}
onKeyDown={handlePageInputKeyDown}
onBlur={handlePageInputBlur}
className="form-control widget-document-viewer-page-number-input"
aria-label="Page number"
title={`Go to page (1-${numberOfPages})`}
placeholder={currentPage.toString()}
/>
</form>
<span className="widget-document-viewer-total-pages">/ {numberOfPages}</span>
</div>
<button
onClick={() => setCurrentPage(prev => Math.min(prev + 1, numberOfPages))}
disabled={currentPage >= numberOfPages}
className="icons icon-Right btn btn-icon-only"
aria-label={"Go to next page"}
title={"Go to next page"}
></button>
</div>
<button
onClick={toggleSearch}
className="icons icon-Search btn btn-icon-only widget-document-viewer-search-toggle"
aria-label={showSearch ? "Close search" : "Search in document"}
aria-pressed={showSearch}
title={showSearch ? "Close search" : "Search in document"}
></button>
<button
onClick={onDownloadClick}
className="icons icon-Download btn btn-icon-only"
aria-label={"Download"}
title={"Download"}
></button>
<div className="widget-document-viewer-zoom">
<button
onClick={zoomOut}
disabled={zoomLevel <= 0.3}
className="icons icon-ZoomOut btn btn-icon-only"
aria-label={"Zoom out"}
title={"Zoom out"}
></button>
<button
onClick={zoomIn}
disabled={zoomLevel >= 10}
className="icons icon-ZoomIn btn btn-icon-only"
aria-label={"Zoom in"}
title={"Zoom in"}
></button>
<button
onClick={reset}
disabled={zoomLevel >= 10}
className="icons icon-FitToWidth btn btn-icon-only"
aria-label={"Fit to width"}
title={"Fit to width"}
></button>
</div>
</Fragment>
}
>
<If condition={!!pdfUrl && pdfjsWorkerUrl?.status === "available"}>
<Document
file={pdfUrl}
options={options}
onLoadSuccess={onDocumentLoadSuccess}
onLoadError={() =>
setDocumentStatus({
status: DocumentStatus.error,
message: "Failed to load PDF document"
})
}
>
<div className="widget-document-viewer-highlight-layer">
<Page pageNumber={currentPage} scale={zoomLevel} />
{highlightRects.map((rect, i) => (
<div
key={i}
className={`widget-document-viewer-highlight${rect.isCurrent ? " current" : ""}`}
style={{
left: rect.x,
top: rect.y,
width: rect.width,
height: rect.height
}}
/>
))}
</div>
</Document>
</If>
</BaseViewer>
);
};
PDFViewer.contentTypes = ["application/pdf", "application/x-pdf", "application/acrobat", "text/pdf", "text/html"];
PDFViewer.fileTypes = ["pdf"];
export default PDFViewer;