starter icon indicating copy to clipboard operation
starter copied to clipboard

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

Open mtreilly opened this issue 3 years ago • 3 comments

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/[email protected]/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>
  );
}

mtreilly avatar Oct 29 '22 16:10 mtreilly

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?

Tekstar47 avatar Dec 02 '22 09:12 Tekstar47

It solved my problem!

riccardolinares avatar Jun 26 '23 16:06 riccardolinares

This solved my issue.

abugi avatar Dec 31 '23 16:12 abugi