Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@duallab/verapdf-js-viewer

Package Overview
Dependencies
Maintainers
0
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@duallab/verapdf-js-viewer

Display PDF with an option to highlight a collection of rectangles on top of page rendering. Used by veraPDF web application to visualize locations of validation errors

  • 1.7.18
  • npm
  • Socket score

Version published
Weekly downloads
53
increased by152.38%
Maintainers
0
Weekly downloads
 
Created
Source

veraPDF-js-viewer

Display PDF with an option to highlight a collection of rectangles on top of page rendering. Used by veraPDF web application to visualize locations of validation errors

License: MPL 2.0

Compatibility

React

To use the latest version of veraPDF-js-viewer, your project needs to use React 16.3 or later.

Internet Explorer

Internet Explorer is not supported in veraPDF-js-viewer. Use Edge instead

Usage

Here's an example of basic usage:

import React, { useState } from 'react';
import PdfViewer from '@duallab/verapdf-js-viewer';

function MyApp() {
  const [numPages, setNumPages] = useState(null);
  const [pageNumber, setPageNumber] = useState(1);

  function onDocumentLoadSuccess({ numPages }) {
    setNumPages(numPages);
  }

  return (
    <div>
      <PdfViewer
        file="somefile.pdf"
        onLoadSuccess={onDocumentLoadSuccess}
      />
      <p>Page {pageNumber} of {numPages}</p>
    </div>
  );
}

Input parameters

Prop nameDescriptionDefault valueExample values
Document props
classNameClass name(s) that will be added to rendered element.n/a"custom-class-name-1 custom-class-name-2"
fileWhat PDF should be displayed.
Its value can be an URL, a file (imported using import ... from ... or from file input form element), or an object with parameters (url - URL; data - data, preferably Uint8Array; range - PDFDataRangeTransport; httpHeaders - custom request headers, e.g. for authorization), withCredentials - a boolean to indicate whether or not to include cookies in the request (defaults to false).
Warning: Since equality check (===) is used to determine if file object has changed, it must be memoized by setting it in component's state, useMemo or other similar technique.
n/a
  • URL:
    "http://example.com/sample.pdf"
  • File:
    import sample from '../static/sample.pdf' and then
    sample
  • Parameter object:
    { url: 'http://example.com/sample.pdf', httpHeaders: { 'X-CustomHeader': '40359820958024350238508234' }, withCredentials: true }
bboxesArray of bboxes [ {location, groupId, bboxTitle, isVisible} ] that will be rendered as selectable rectangles over pdf pages.

isVisible is an optional flag that specifies whether bbox should be shown on the canvas (default value: true).

Bboxes can be grouped by optional parameter groupId. If error's check has 3rd item (2nd index) of errorArguments, it can be grouped with other checks with the same id from check.errorArguments[2] ('${clause}-${testNumber}-${check.errorArguments[2]}' => 4.1.2-9-79)
bboxTitle is an optional parameter that is set to title and aria-describedby bounding box attributes.

Currently support these locations:
  • JSON string of bbox object: {"bbox":[{"p":1,"rect":[x,y,x2,y2]}]}
  • String with coordinates for left-bottom point and top-right:pages[1-2]/boundingBox[x,y,x2,y2]
  • String path through tagged structure tree: root/document[0]/pages[1](1 0 obj PDPage)/annots[1](100 0 obj PDLinkAnnot)
  • String path to glyph in page stream: root/document[0]/pages[0](14 0 obj PDPage)/contentStream[0](20 0 obj PDSemanticContentStream)/operators[6]/usedGlyphs[5](OPCPIB+TimesNewRomanPSMT OPCPIB+TimesNewRomanPSMT 32 0 56991387 0)
New contexts will be added.
n/a[{ groupId: '4.1.2-9-79', location: 'pages[2-4]/boundingBox[10,200,300,400]' }]
activeBboxIndexIndex of active bbox from bboxes arrayn/a0
activeBboxIdId of active tree bboxn/a"0:3:11:0"
showAllPagesBoolean flag to show pdf with all pages with scroll or single pagefalsetrue
isTreeBboxesVisibleBoolean flag to show tree bboxesfalsetrue
errorWhat the component should display in case of an error."Failed to load PDF file."
  • String:
    "An error occurred!"
  • React element:
    <div>An error occurred!</div>
  • Function:
    this.renderError
treeBboxSelectionModeString that determines how tree bboxes are highlighted:
  • The value "SELECTED" selects only the current bbox
  • The value "SELECTED_WITH_KIDS" selects the current bbox and all child bboxes
"SELECTED"One of the following values:
  • "SELECTED"
  • "SELECTED_WITH_KIDS"
externalLinkTargetLink target for external links rendered in annotations.unset, which means that default behavior will be usedOne of valid values for target attribute.
  • "_self"
  • "_blank"
  • "_parent"
  • "_top"
loadingWhat the component should display while loading."Loading PDF…"
  • String:
    "Please wait!"
  • React element:
    <div>Please wait!</div>
  • Function:
    this.renderLoader
noDataWhat the component should display in case of no data."No PDF file specified."
  • String:
    "Please select a file."
  • React element:
    <div>Please select a file.</div>
  • Function:
    this.renderNoData
rotateRotation of the document in degrees. If provided, will change rotation globally, even for the pages which were given rotate prop of their own. 90 = rotated to the right, 180 = upside down, 270 = rotated to the left.n/a90
onLoadSuccessFunction called when the document is successfully loaded.n/a(pdf) => alert('Loaded a file with ' + pdf.numPages + ' pages!')
onLoadErrorFunction called in case of an error while loading a document.n/a(error) => alert('Error while loading document! ' + error.message)
onItemClickFunction called when an outline item has been clicked. Usually, you would like to use this callback to move the user wherever they requested to.n/a({ pageNumber }) => alert('Clicked an item from page ' + pageNumber + '!')
onBboxClickFunction called when an bbox item has been clicked.n/a(bboxData) => alert('Selected bbox from ' + bboxData.page + ' page!')
onPageChangeFunction called when page changed during scrollingn/a(page: number) => alert('New page ' + page);
onWarningFunction called in case of a warning for the selected bounding box. The warning is described by the code from the list:
  • BBOX_OUT_OF_THE_PAGE_VIEWPORT (selected bounding box is out of the page viewport)
n/a(warningCode: string) => alert('Warning: ' + warningCode);
Page props
pageWhich page from PDF file should be displayed, by page number. In case showAllPages={true} autoscroll to provided page12
inputRefA prop that behaves like ref, but it's passed to main <div> rendered by <Page> component.n/a
  • Function:
    (ref) => { this.myPage = ref; }
  • Ref created using React.createRef:
    this.ref = React.createRef();

    inputRef={this.ref}
  • Ref created using React.useRef:
    const ref = React.useRef();

    inputRef={ref}
pageErrorWhat the component should display in case of an error."Failed to load the page."
  • String:
    "An error occurred!"
  • React element:
    <div>An error occurred!</div>
  • Function:
    this.renderError
heightPage height. If neither height nor width are defined, page will be rendered at the size defined in PDF. If you define width and height at the same time, height will be ignored. If you define height and scale at the same time, the height will be multiplied by a given factor.Page's default height300
widthPage width. If neither height nor width are defined, page will be rendered at the size defined in PDF. If you define width and height at the same time, height will be ignored. If you define width and scale at the same time, the width will be multiplied by a given factor.Page's default width300
pageLoadingWhat the component should display while loading."Loading page…"
  • String:
    "Please wait!"
  • React element:
    <div>Please wait!</div>
  • Function:
    this.renderLoader
renderAnnotationLayerWhether annotations (e.g. links) should be rendered.truefalse
renderInteractiveFormsWhether interactive forms should be rendered. renderAnnotationLayer prop must be set to true.falsetrue
renderTextLayerWhether a text layer should be rendered.truefalse
scalePage scale.1.00.5
onPageLoadErrorFunction called in case of an error while loading the page.n/a(error) => alert('Error while loading page! ' + error.message)
onPageLoadProgressFunction called, potentially multiple times, as the loading progresses.n/a({ loaded, total }) => alert('Loading a document: ' + (loaded / total) * 100 + '%');
onPageLoadSuccessFunction called when the page is successfully loaded.n/a(page) => alert('Now displaying a page number ' + page.pageNumber + '!')
onPageRenderErrorFunction called in case of an error while rendering the page.n/a(error) => alert('Error while loading page! ' + error.message)
onPageRenderSuccessFunction called when the page is successfully rendered on the screen.n/a() => alert('Rendered the page!')
onBboxesParsedFunction called after bboxes were parsed and returns array of pages.n/a(pages) => console.log(pages)
onGetAnnotationsSuccessFunction called when annotations are successfully loaded.n/a(annotations) => alert('Now displaying ' + annotations.length + ' annotations!')
onGetAnnotationsErrorFunction called in case of an error while loading annotations.n/a(error) => alert('Error while loading annotations! ' + error.message)
onGetTextSuccessFunction called when text layer items are successfully loaded.n/a({ items }) => alert('Now displaying ' + items.length + ' text layer items!')
onGetTextErrorFunction called in case of an error while loading text layer items.n/a(error) => alert('Error while loading text layer items! ' + error.message)
onSelectBboxFunction that is called when the bbox is selected by keypress handlers.n/a(index) => alert('Select bounding box with index: ' + index)
Bbox props
colorSchemeSet custom colors for bbox{ border?: string; borderSelected?: string; borderRelated?: string; borderStructured?: string; borderStructuredSelected?: string; borderHovered?: string; borderStructuredHovered?: string; background?: string; backgroundSelected?: string; backgroundHovered?: string; backgroundRelated?: string; backgroundStructured?: string; backgroundStructuredSelected?: string;}n/a
renderBboxFunction for rendering custom Bbox componentn/a({ left: string; width: string; height: string; top: string; disabled: boolean; related?: boolean; selected?: boolean; structured?: boolean; scale: number; colorScheme?: IColorScheme; selectionMode?: TreeBboxSelectionMode; onClick?(e: any): void; }) => ReactElement

Shortcuts

Bounding box selection (see onSelectBbox prop):

  • Ctrl/⌘ + Up Arrow - select next bounding box
  • Ctrl/⌘ + Down Arrow - select previous bounding box

Page scrolling:

  • Up Arrow - scroll up
  • Down Arrow - scroll down
  • Right Arrow - scroll to next page
  • Left Arrow - scroll to previous page

FAQs

Package last updated on 31 Jul 2024

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc