From 02e77a39ec68247c619a6f67d9b8432ad40a50bc Mon Sep 17 00:00:00 2001 From: Jonas Jenwald Date: Thu, 8 Nov 2018 14:33:56 +0100 Subject: [PATCH] Convert `InternalRenderTask`, in `src/display/api.js`, to an ES6 class This changes all occurrences of `var` to `let`/`const` in this code, and updates the signature of the constructor to use object destructuring for better readability (and self documentation). Also, `useRequestAnimationFrame` is changed to a parameter and the `typeof window` check is now done *once* rather than at every `_scheduleNext` call. --- src/display/api.js | 173 +++++++++++++++++++++--------------------- src/display/canvas.js | 2 +- 2 files changed, 88 insertions(+), 87 deletions(-) diff --git a/src/display/api.js b/src/display/api.js index a2a551364..4d8a069e8 100644 --- a/src/display/api.js +++ b/src/display/api.js @@ -1002,21 +1002,25 @@ class PDFPageProxy { stats.timeEnd('Overall'); }; - const internalRenderTask = new InternalRenderTask(complete, { - canvasContext, - viewport, - transform, - imageLayer, - background, - }, - this.objs, - this.commonObjs, - intentState.operatorList, - this.pageNumber, - canvasFactoryInstance, - webGLContext, - this._pdfBug); - internalRenderTask.useRequestAnimationFrame = renderingIntent !== 'print'; + const internalRenderTask = new InternalRenderTask({ + callback: complete, + params: { // Include the required properties, and *not* the entire object. + canvasContext, + viewport, + transform, + imageLayer, + background, + }, + objs: this.objs, + commonObjs: this.commonObjs, + operatorList: intentState.operatorList, + pageNumber: this.pageNumber, + canvasFactory: canvasFactoryInstance, + webGLContext, + useRequestAnimationFrame: renderingIntent !== 'print', + pdfBug: this._pdfBug, + }); + if (!intentState.renderTasks) { intentState.renderTasks = []; } @@ -2340,40 +2344,40 @@ class RenderTask { * For internal use only. * @ignore */ -var InternalRenderTask = (function InternalRenderTaskClosure() { - let canvasInRendering = new WeakSet(); +const InternalRenderTask = (function InternalRenderTaskClosure() { + const canvasInRendering = new WeakSet(); - function InternalRenderTask(callback, params, objs, commonObjs, operatorList, - pageNumber, canvasFactory, webGLContext, - pdfBug = false) { - this.callback = callback; - this.params = params; - this.objs = objs; - this.commonObjs = commonObjs; - this.operatorListIdx = null; - this.operatorList = operatorList; - this.pageNumber = pageNumber; - this.canvasFactory = canvasFactory; - this.webGLContext = webGLContext; - this._pdfBug = pdfBug; + class InternalRenderTask { + constructor({ callback, params, objs, commonObjs, operatorList, pageNumber, + canvasFactory, webGLContext, useRequestAnimationFrame = false, + pdfBug = false, }) { + this.callback = callback; + this.params = params; + this.objs = objs; + this.commonObjs = commonObjs; + this.operatorListIdx = null; + this.operatorList = operatorList; + this.pageNumber = pageNumber; + this.canvasFactory = canvasFactory; + this.webGLContext = webGLContext; + this._pdfBug = pdfBug; - this.running = false; - this.graphicsReadyCallback = null; - this.graphicsReady = false; - this.useRequestAnimationFrame = false; - this.cancelled = false; - this.capability = createPromiseCapability(); - this.task = new RenderTask(this); - // caching this-bound methods - this._continueBound = this._continue.bind(this); - this._scheduleNextBound = this._scheduleNext.bind(this); - this._nextBound = this._next.bind(this); - this._canvas = params.canvasContext.canvas; - } + this.running = false; + this.graphicsReadyCallback = null; + this.graphicsReady = false; + this._useRequestAnimationFrame = (useRequestAnimationFrame === true && + typeof window !== 'undefined'); + this.cancelled = false; + this.capability = createPromiseCapability(); + this.task = new RenderTask(this); + // caching this-bound methods + this._continueBound = this._continue.bind(this); + this._scheduleNextBound = this._scheduleNext.bind(this); + this._nextBound = this._next.bind(this); + this._canvas = params.canvasContext.canvas; + } - InternalRenderTask.prototype = { - - initializeGraphics(transparency) { + initializeGraphics(transparency = false) { if (this.cancelled) { return; } @@ -2393,26 +2397,27 @@ var InternalRenderTask = (function InternalRenderTaskClosure() { this.stepper.init(this.operatorList); this.stepper.nextBreakPoint = this.stepper.getNextBreakPoint(); } + const { + canvasContext, viewport, transform, imageLayer, background, + } = this.params; - var params = this.params; - this.gfx = new CanvasGraphics(params.canvasContext, this.commonObjs, - this.objs, this.canvasFactory, - this.webGLContext, params.imageLayer); - + this.gfx = new CanvasGraphics(canvasContext, this.commonObjs, this.objs, + this.canvasFactory, this.webGLContext, + imageLayer); this.gfx.beginDrawing({ - transform: params.transform, - viewport: params.viewport, + transform, + viewport, transparency, - background: params.background, + background, }); this.operatorListIdx = 0; this.graphicsReady = true; if (this.graphicsReadyCallback) { this.graphicsReadyCallback(); } - }, + } - cancel: function InternalRenderTask_cancel() { + cancel() { this.running = false; this.cancelled = true; if (this.gfx) { @@ -2423,9 +2428,9 @@ var InternalRenderTask = (function InternalRenderTaskClosure() { } this.callback(new RenderingCancelledException( 'Rendering cancelled, page ' + this.pageNumber, 'canvas')); - }, + } - operatorListChanged: function InternalRenderTask_operatorListChanged() { + operatorListChanged() { if (!this.graphicsReady) { if (!this.graphicsReadyCallback) { this.graphicsReadyCallback = this._continueBound; @@ -2441,9 +2446,9 @@ var InternalRenderTask = (function InternalRenderTaskClosure() { return; } this._continue(); - }, + } - _continue: function InternalRenderTask__continue() { + _continue() { this.running = true; if (this.cancelled) { return; @@ -2453,42 +2458,38 @@ var InternalRenderTask = (function InternalRenderTaskClosure() { } else { this._scheduleNext(); } - }, + } - _scheduleNext: function InternalRenderTask__scheduleNext() { - if (this.useRequestAnimationFrame && typeof window !== 'undefined') { + _scheduleNext() { + if (this._useRequestAnimationFrame) { window.requestAnimationFrame(() => { this._nextBound().catch(this.callback); }); } else { Promise.resolve().then(this._nextBound).catch(this.callback); } - }, + } - _next: function InternalRenderTask__next() { - return new Promise(() => { - if (this.cancelled) { - return; - } - this.operatorListIdx = this.gfx.executeOperatorList(this.operatorList, - this.operatorListIdx, - this._continueBound, - this.stepper); - if (this.operatorListIdx === this.operatorList.argsArray.length) { - this.running = false; - if (this.operatorList.lastChunk) { - this.gfx.endDrawing(); - if (this._canvas) { - canvasInRendering.delete(this._canvas); - } - this.callback(); + async _next() { + if (this.cancelled) { + return; + } + this.operatorListIdx = this.gfx.executeOperatorList(this.operatorList, + this.operatorListIdx, + this._continueBound, + this.stepper); + if (this.operatorListIdx === this.operatorList.argsArray.length) { + this.running = false; + if (this.operatorList.lastChunk) { + this.gfx.endDrawing(); + if (this._canvas) { + canvasInRendering.delete(this._canvas); } + this.callback(); } - }); - }, - - }; - + } + } + } return InternalRenderTask; })(); diff --git a/src/display/canvas.js b/src/display/canvas.js index af39bf763..99c97e13f 100644 --- a/src/display/canvas.js +++ b/src/display/canvas.js @@ -726,7 +726,7 @@ var CanvasGraphics = (function CanvasGraphicsClosure() { CanvasGraphics.prototype = { - beginDrawing({ transform, viewport, transparency, + beginDrawing({ transform, viewport, transparency = false, background = null, }) { // For pdfs that use blend modes we have to clear the canvas else certain // blend modes can look wrong since we'd be blending with a white