import { observer } from "mobx-react"; import React = require("react"); import { observable, action, runInAction, computed, IReactionDisposer, reaction, trace } from "mobx"; import * as Pdfjs from "pdfjs-dist"; import { Opt, HeightSym, WidthSym, Doc, DocListCast } from "../../../new_fields/Doc"; import "./PDFViewer.scss"; import "pdfjs-dist/web/pdf_viewer.css"; import { PDFBox } from "../nodes/PDFBox"; import Page from "./Page"; import { NumCast, Cast, BoolCast } from "../../../new_fields/Types"; import { Id } from "../../../new_fields/FieldSymbols"; import { DocUtils, Docs } from "../../documents/Documents"; import { DocumentManager } from "../../util/DocumentManager"; import { SelectionManager } from "../../util/SelectionManager"; import { List } from "../../../new_fields/List"; import { DocumentContentsView } from "../nodes/DocumentContentsView"; import { CollectionFreeFormDocumentView } from "../nodes/CollectionFreeFormDocumentView"; import { Transform } from "../../util/Transform"; import { emptyFunction, returnTrue, returnFalse } from "../../../Utils"; import { DocumentView } from "../nodes/DocumentView"; interface IPDFViewerProps { url: string; loaded: (nw: number, nh: number) => void; scrollY: number; parent: PDFBox; } /** * Wrapper that loads the PDF and cascades the pdf down */ @observer export class PDFViewer extends React.Component { @observable _pdf: Opt; private _mainDiv = React.createRef(); @action componentDidMount() { const pdfUrl = this.props.url; console.log("pdf starting to load") let promise = Pdfjs.getDocument(pdfUrl).promise; promise.then((pdf: Pdfjs.PDFDocumentProxy) => { runInAction(() => { console.log("pdf url received"); this._pdf = pdf; }); }); } render() { return (
); } } interface IViewerProps { pdf: Opt; loaded: (nw: number, nh: number) => void; scrollY: number; parent: PDFBox; mainCont: React.RefObject; url: string; } const PinRadius = 25; /** * Handles rendering and virtualization of the pdf */ @observer class Viewer extends React.Component { // _visibleElements is the array of JSX elements that gets rendered @observable.shallow private _visibleElements: JSX.Element[] = []; // _isPage is an array that tells us whether or not an index is rendered as a page or as a placeholder @observable private _isPage: boolean[] = []; @observable private _pageSizes: { width: number, height: number }[] = []; @observable private _startIndex: number = 0; @observable private _endIndex: number = 1; @observable private _loaded: boolean = false; @observable private _pdf: Opt; @observable private _annotations: Doc[] = []; private _pageBuffer: number = 1; private _annotationLayer: React.RefObject; private _reactionDisposer?: IReactionDisposer; private _annotationReactionDisposer?: IReactionDisposer; private _pagesLoaded: number = 0; constructor(props: IViewerProps) { super(props); this._annotationLayer = React.createRef(); } componentDidMount = () => { let wasSelected = this.props.parent.props.isSelected(); // reaction for when document gets (de)selected this._reactionDisposer = reaction( () => [this.props.parent.props.isSelected(), this.startIndex], () => { // if deselected, render images in place of pdf if (wasSelected && !this.props.parent.props.isSelected()) { this.saveThumbnail(); } // if selected, render pdf else if (!wasSelected && this.props.parent.props.isSelected()) { this.renderPages(this.startIndex, this.endIndex, true); } wasSelected = this.props.parent.props.isSelected(); }, { fireImmediately: true } ); if (this.props.parent.Document) { this._annotationReactionDisposer = reaction( () => DocListCast(this.props.parent.Document.annotations), () => { let annotations = DocListCast(this.props.parent.Document.annotations); if (annotations && annotations.length) { this.renderAnnotations(annotations, true); } }, { fireImmediately: true } ); } setTimeout(() => { this.renderPages(this.startIndex, this.endIndex, true); }, 1000); } componentWillUnmount = () => { if (this._reactionDisposer) { this._reactionDisposer(); } if (this._annotationReactionDisposer) { this._annotationReactionDisposer(); } } @action saveThumbnail = () => { // file address of the pdf const address: string = this.props.url; for (let i = 0; i < this._visibleElements.length; i++) { if (this._isPage[i]) { // change the address to be the file address of the PNG version of each page let thisAddress = `${address.substring(0, address.length - ".pdf".length)}-${i + 1}.PNG`; let nWidth = this._pageSizes[i].width; let nHeight = this._pageSizes[i].height; // replace page with image this._visibleElements[i] = ; } } } @computed get scrollY(): number { return this.props.scrollY; } @computed get startIndex(): number { return Math.max(0, this.getIndex(this.scrollY) - this._pageBuffer); } @computed get endIndex(): number { let width = this._pageSizes.map(i => i ? i.width : 0); return Math.min(this.props.pdf ? this.props.pdf.numPages - 1 : 0, this.getIndex(this.scrollY + Math.max(...width)) + this._pageBuffer); } componentDidUpdate = (prevProps: IViewerProps) => { if (this.scrollY !== prevProps.scrollY || this._pdf !== this.props.pdf) { this._pdf = this.props.pdf; // render pages if the scorll position changes this.renderPages(this.startIndex, this.endIndex); } } @action private renderAnnotations = (annotations: Doc[], removeOldAnnotations: boolean): void => { if (removeOldAnnotations) { this._annotations = annotations; } else { this._annotations.push(...annotations); this._annotations = new Array(...this._annotations); } } /** * @param startIndex: where to start rendering pages * @param endIndex: where to end rendering pages * @param forceRender: (optional), force pdfs to re-render, even if the page already exists */ @action renderPages = (startIndex: number, endIndex: number, forceRender: boolean = false) => { let numPages = this.props.pdf ? this.props.pdf.numPages : 0; if (!this.props.pdf) { return; } if (this._pageSizes.length !== numPages) { this._pageSizes = new Array(numPages).map(i => ({ width: 0, height: 0 })); } // this is only for an initial render to get all of the pages rendered if (this._visibleElements.length !== numPages) { let divs = Array.from(Array(numPages).keys()).map(i => ( )); let arr = Array.from(Array(numPages).keys()).map(() => false); this._visibleElements.push(...divs); this._isPage.push(...arr); } // if nothing changed, return if (startIndex === this._startIndex && endIndex === this._endIndex && !forceRender) { return; } // unrender pages outside of the pdf by replacing them with empty stand-in divs for (let i = 0; i < numPages; i++) { if (i < startIndex || i > endIndex) { if (this._isPage[i]) { this._visibleElements[i] = (
); } this._isPage[i] = false; } } // render pages for any indices that don't already have pages (force rerender will make these render regardless) for (let i = startIndex; i <= endIndex; i++) { if (!this._isPage[i] || (this._isPage[i] && forceRender)) { this._visibleElements[i] = ( ); this._isPage[i] = true; } } this._startIndex = startIndex; this._endIndex = endIndex; return; } createPinAnnotation = (x: number, y: number, page: number): void => { let targetDoc = Docs.TextDocument({ width: 100, height: 50, title: "New Pin Annotation" }); let pinAnno = new Doc(); pinAnno.x = x; pinAnno.y = y; pinAnno.width = pinAnno.height = PinRadius; pinAnno.page = page; pinAnno.target = targetDoc; pinAnno.type = AnnotationTypes.Pin; // this._annotations.push(pinAnno); let annotations = DocListCast(this.props.parent.Document.annotations); if (annotations && annotations.length) { annotations.push(pinAnno); this.props.parent.Document.annotations = new List(annotations); } else { this.props.parent.Document.annotations = new List([pinAnno]); } // let pinAnno = document.createElement("div"); // pinAnno.className = "pdfViewer-pinAnnotation"; // pinAnno.style.top = (y - (radius / 2)).toString(); // pinAnno.style.left = (x - (radius / 2)).toString(); // pinAnno.style.height = pinAnno.style.width = radius.toString(); // if (this._annotationLayer.current) this._annotationLayer.current.append(pinAnno); } // get the page index that the vertical offset passed in is on getIndex = (vOffset: number) => { if (this._loaded) { let numPages = this.props.pdf ? this.props.pdf.numPages : 0; let index = 0; let currOffset = vOffset; while (index < numPages && currOffset - this._pageSizes[index].height > 0) { currOffset -= this._pageSizes[index].height; index++; } return index; } return 0; } /** * Called by the Page class when it gets rendered, initializes the lists and * puts a placeholder with all of the correct page sizes when all of the pages have been loaded. */ @action pageLoaded = (index: number, page: Pdfjs.PDFPageViewport): void => { if (this._loaded) { return; } let numPages = this.props.pdf ? this.props.pdf.numPages : 0; this.props.loaded(page.width, page.height); this._pageSizes[index - 1] = { width: page.width, height: page.height }; this._pagesLoaded++; if (this._pagesLoaded === numPages) { this._loaded = true; let divs = Array.from(Array(numPages).keys()).map(i => (
)); this._visibleElements = new Array(...divs); // On load, render pdf // setTimeout(() => { this.renderPages(this.startIndex, this.endIndex, true); // }, 1000); } } getPageHeight = (index: number): number => { let counter = 0; if (this.props.pdf && index < this.props.pdf.numPages) { for (let i = 0; i < index; i++) { if (this._pageSizes[i]) { counter += this._pageSizes[i].height; } } } return counter; } renderAnnotation = (anno: Doc): JSX.Element => { let type = NumCast(anno.type); switch (type) { case AnnotationTypes.Pin: return ; case AnnotationTypes.Region: return ; default: return
; } } onDrop = (e: React.DragEvent) => { console.log("Dropped!"); } // ScreenToLocalTransform = (): Transform => { // if (this._annotationLayer.current) { // let boundingRect = this._annotationLayer.current.getBoundingClientRect(); // let x = boundingRect.left; // let y = boundingRect.top; // let scale = NumCast(this.props.parent.Document.nativeWidth) / boundingRect.width; // let t = new Transform(x, y, scale); // return t; // } // return Transform.Identity(); // } render() { trace(); return (
{this._visibleElements}
{this._annotations.map(anno => this.renderAnnotation(anno))}
); } } export enum AnnotationTypes { Region, Pin } interface IAnnotationProps { x: number; y: number; width: number; height: number; parent: Viewer; document: Doc; } @observer class PinAnnotation extends React.Component { @observable private _backgroundColor: string = "green"; @observable private _display: string = "initial"; private _selected: boolean = true; @action pointerDown = (e: React.PointerEvent) => { if (this._selected) { this._backgroundColor = "red"; this._display = "none"; this._selected = false; } else { this._backgroundColor = "green"; this._display = "initial"; this._selected = true; } e.preventDefault(); e.stopPropagation(); } render() { let targetDoc = Cast(this.props.document.target, Doc); if (targetDoc instanceof Doc) { return (
1} PanelWidth={() => NumCast(this.props.parent.props.parent.Document.nativeWidth)} PanelHeight={() => NumCast(this.props.parent.props.parent.Document.nativeHeight)} focus={emptyFunction} selectOnLoad={false} parentActive={this.props.parent.props.parent.props.active} whenActiveChanged={this.props.parent.props.parent.props.whenActiveChanged} bringToFront={emptyFunction} addDocTab={this.props.parent.props.parent.props.addDocTab} />
); } return null; } } class RegionAnnotation extends React.Component { @observable private _backgroundColor: string = "red"; // private _reactionDisposer?: IReactionDisposer; constructor(props: IAnnotationProps) { super(props); // this._reactionDisposer = reaction( // () => { BoolCast(this.props.document.selected); }, // () => { this._backgroundColor = BoolCast(this.props.document.selected) ? "yellow" : "red"; }, // { fireImmediately: true } // ) } onPointerDown = (e: React.PointerEvent) => { let targetDoc = Cast(this.props.document.target, Doc, null); if (targetDoc) { DocumentManager.Instance.jumpToDocument(targetDoc); // let annotations = DocListCast(targetDoc.proto!.linkedFromDocs); // if (annotations && annotations.length) { // annotations.forEach(anno => anno.selected = true); // } } } render() { return (
); } }