Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
@mikecousins/react-pdf
Advanced tools
Simple React component to wrap up PDF.js. The easiest way to render PDFs in your React app.
react-pdf-js
provides a component for rendering PDF documents using PDF.js.
Install with yarn add @mikecousins/react-pdf
or npm install @mikecousins/react-pdf
Use it in your app (showing some basic pagination as well):
import React, { useState, useEffect, useRef } from 'react';
import { usePdf } from '@mikecousins/react-pdf';
const MyPdfViewer = () => {
const [page, setPage] = useState(1);
const [pages, setPages] = useState(null);
const renderPagination = (page, pages) => {
if (!pages) {
return null;
}
let previousButton = (
<li className="previous" onClick={() => setPage(page - 1)}>
<a href="#">
<i className="fa fa-arrow-left"></i> Previous
</a>
</li>
);
if (page === 1) {
previousButton = (
<li className="previous disabled">
<a href="#">
<i className="fa fa-arrow-left"></i> Previous
</a>
</li>
);
}
let nextButton = (
<li className="next" onClick={() => setPage(page + 1)}>
<a href="#">
Next <i className="fa fa-arrow-right"></i>
</a>
</li>
);
if (page === pages) {
nextButton = (
<li className="next disabled">
<a href="#">
Next <i className="fa fa-arrow-right"></i>
</a>
</li>
);
}
return (
<nav>
<ul className="pager">
{previousButton}
{nextButton}
</ul>
</nav>
);
};
const canvasEl = useRef(null);
const [loading, numPages] = usePdf({
file: 'test.pdf',
onDocumentComplete,
page,
canvasEl,
});
useEffect(() => {
setPages(numPages);
}, [numPages]);
return (
<div>
{loading && <span>Loading...</span>}
<canvas ref={canvasEl} />
{renderPagination(page, pages)}
</div>
);
};
export default MyPdfViewer;
When you call usePdf you'll want to pass in a subset of these props, like this:
const [loading, numPages] = usePdf({ canvasEl, file: 'https://example.com/test.pdf', page });
A reference to the canvas element. Create with:
const canvasEl = useRef(null);
and then render it like:
<canvas ref={canvasEl} />
and then pass it into usePdf.
URL of the PDF file.
Specify the page that you want to display. Default = 1,
Allows you to scale the PDF. Default = 1.
Allows you to rotate the PDF. Number is in degrees. Default = 0.
Allows you to specify a cmap url. Default = '../node_modules/pdfjs-dist/cmaps/'.
Allows you to specify whether the cmaps are packed or not. Default = false.
Allows you to specify a custom pdf worker url. Default = '//cdnjs.cloudflare.com/ajax/libs/pdf.js/2.1.266/pdf.worker.js'.
Allows you to add the withCredentials flag. Default = false.
MIT © mikecousins
FAQs
Simple React component to wrap up PDF.js. The easiest way to render PDFs in your React app.
The npm package @mikecousins/react-pdf receives a total of 4,484 weekly downloads. As such, @mikecousins/react-pdf popularity was classified as popular.
We found that @mikecousins/react-pdf demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.