react-pdf-viewer / starter

Some boilerplates to use React PDF viewer component
https://react-pdf-viewer.dev
24 stars 30 forks source link

Working with the PDF Viewer in NextJS 13 and App folders: Module not found "canvas" #43

Open mtreilly opened 1 year ago

mtreilly commented 1 year ago

Comment: Not sure where to post this, but thought it might be helpful to others

Issue:

When using the PDF viewer inside a page of the new app folder layout, regardless if you use "use client" at the top of the document, the file will still be run on the server. Causing the pdfjs code to require("canvas"), which throws an error saying module not found.

Solution:

For the component containing the PDF viewer, disable SSR and use a dynamic import instead. Run import from "use client" component

Example

Display.tsx

"use client";

import React from "react";

import dynamic from "next/dynamic";

const DisplayPDF = dynamic(() => import("./DisplayPDF"), {
  ssr: false,
});

export default function Display() {
  return (
      <div>
        <DisplayPDF />
      </div>
    );
}

DynamicPDF.tsx

"use client";

import React from "react";
import { Viewer, Worker } from "@react-pdf-viewer/core";
import { defaultLayoutPlugin } from "@react-pdf-viewer/default-layout";

export default function DisplayPDF() {
  const defaultLayoutPluginInstance = defaultLayoutPlugin();

  return (
    <Worker workerUrl="https://unpkg.com/pdfjs-dist@2.15.349/build/pdf.worker.js">
      <div style={{ height: "750px" }}>
        <Viewer
          fileUrl={"./in-context.pdf"}
          // fileUrl="https://www.w3.org/WAI/ER/tests/xhtml/testfiles/resources/pdf/dummy.pdf"
          plugins={[defaultLayoutPluginInstance]}
        />
      </div>
    </Worker>
  );
}
Tekstar47 commented 1 year ago

Ran into the same issue but the above fix didn't work for me. Do you mind sharing a dummy repo so I can take a closer look?

riccardolinares commented 1 year ago

It solved my problem!

abugi commented 9 months ago

This solved my issue.