-
-
Notifications
You must be signed in to change notification settings - Fork 891
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Not rendering, no errors, loads fine #1904
Comments
i can confirm with console logs that the global worksrc is set before my Document element is rendered: It logs the following
Which does exist: So why am i getting nothing? |
Ahhhh I see, I may have missed some Vite-specific instructions, let me double check those aren't the missing key.
|
I can confirm it's not the PDF as I've now re-done it using an example PDF y'all provided. |
I can also confirm there is no load error. The |
To unblock myself I've tried downgrading to ^8.0.0 and now I'm getting real errors in the log. Something about 9x is silently failing. |
Ugh on 8.x i can't get the vite instructions to work so i opted back for unpkg:
now i silently fail again. wtf is going on? this is so hard to use. |
Same goes for the legacy build. I give up this is supposed to be plug and play and it's a gigantic migraine. I'll wait to hear from you, I've put in way more time than I should've to try to solve this. |
Opted to just write my own component using the pdfjs-dist bc I couldn't figure this out: import { ArrowLeft, ArrowRight } from '@phosphor-icons/react';
import * as pdfjsLib from 'pdfjs-dist';
import React, { useEffect, useRef, useState } from 'react';
import 'pdfjs-dist/build/pdf.worker.entry';
interface PDFViewerProps {
src: string;
onLoad: () => void;
onError: () => void;
className?: string;
}
pdfjsLib.GlobalWorkerOptions.workerSrc = `https://cdnjs.cloudflare.com/ajax/libs/pdf.js/${pdfjsLib.version}/pdf.worker.min.js`;
const PDFViewer: React.FC<PDFViewerProps> = ({ src, onLoad, onError, className }) => {
const canvasRef = useRef<HTMLCanvasElement>(null);
const [pdf, setPdf] = useState<pdfjsLib.PDFDocumentProxy | null>(null);
const [currentPage, setCurrentPage] = useState(1);
const [totalPages, setTotalPages] = useState(0);
useEffect(() => {
const loadPDF = async () => {
try {
const loadingTask = pdfjsLib.getDocument(src);
const pdfDocument = await loadingTask.promise;
setPdf(pdfDocument);
setTotalPages(pdfDocument.numPages);
renderPage(pdfDocument, 1);
onLoad();
} catch (error) {
console.error('Error loading PDF:', error);
onError();
}
};
loadPDF();
}, [src, onLoad, onError]);
const renderPage = async (pdfDoc: pdfjsLib.PDFDocumentProxy, pageNumber: number) => {
const page = await pdfDoc.getPage(pageNumber);
const scale = 1.5;
const viewport = page.getViewport({ scale });
const canvas = canvasRef.current;
if (!canvas) return;
const context = canvas.getContext('2d');
if (!context) return;
canvas.height = viewport.height;
canvas.width = viewport.width;
const renderContext = {
canvasContext: context,
viewport: viewport,
};
await page.render(renderContext).promise;
};
const goToPreviousPage = () => {
if (currentPage > 1) {
setCurrentPage((prevPage) => prevPage - 1);
}
};
const goToNextPage = () => {
if (currentPage < totalPages) {
setCurrentPage((prevPage) => prevPage + 1);
}
};
useEffect(() => {
if (pdf) {
renderPage(pdf, currentPage);
}
}, [pdf, currentPage]);
return (
<div className={`${className || ''} rcl--relative`}>
<canvas
ref={canvasRef}
className={`${className || ''} rcl--relative`}
/>
<div className="rcl--absolute rcl--bottom-4 rcl--right-4 rcl--flex rcl--items-center rcl--rounded-md rcl--bg-black rcl--bg-opacity-50 rcl--px-4 rcl--py-1">
<Button
onClick={goToPreviousPage}
disabled={currentPage === 1}
>
<ArrowLeft />
</Button>
<span className="rcl--mx-2 rcl--select-none rcl--text-sm rcl--text-white">{`${currentPage} of ${totalPages}`}</span>
<Button
onClick={goToNextPage}
disabled={currentPage === totalPages}
>
<ArrowRight />
</Button>
</div>
</div>
);
};
export default PDFViewer; |
i have same problem v_v |
Before you start - checklist
Description
Here's my whole component:
I get the following markdown with nothing inside the outer shell of what Document renders.
I get no console errors at all. I get the successful load callback firing.
This is the PDF
https://attachments.are.na/14176873/cf54adc6f26086c414b26974fbd4a884.pdf?1638225377
Steps to reproduce
See above
Expected behavior
I should see errors or some DOM or something
Actual behavior
Just an empty shell with silence in the console.
Additional information
No response
Environment
The text was updated successfully, but these errors were encountered: