From af70e9caef7056ab6d016b196490e2827309ee91 Mon Sep 17 00:00:00 2001 From: Haoran Un Date: Tue, 22 Oct 2024 14:19:02 +1100 Subject: [PATCH] Lint. --- src/api/PDFPage.ts | 27 ++++++++++----------------- tests/api/PDFPage.spec.ts | 23 +++++++++++++---------- 2 files changed, 23 insertions(+), 27 deletions(-) diff --git a/src/api/PDFPage.ts b/src/api/PDFPage.ts index 14c96dce..d7708724 100644 --- a/src/api/PDFPage.ts +++ b/src/api/PDFPage.ts @@ -1,8 +1,4 @@ -import { - Color, - colorToComponents, - rgb -} from 'src/api/colors'; +import { Color, colorToComponents, rgb } from 'src/api/colors'; import { drawImage, drawLine, @@ -1331,10 +1327,9 @@ export default class PDFPage { ); } - -/** + /** * Draw a link on this page. - * + * * In the PDF specification,you define a rectangular section of the page * that when clicked should activate the link * @@ -1357,9 +1352,7 @@ export default class PDFPage { assertIs(options.height, 'options.height', ['number']); assertOrUndefined(options.borderWidth, 'options.borderWidth', ['number']); - assertOrUndefined(options.color, 'options.color', [ - [Object, 'Color'], - ]); + assertOrUndefined(options.color, 'options.color', [[Object, 'Color']]); const pdfRef: PDFRef = this.doc.context.register( this.doc.context.obj({ @@ -1373,7 +1366,7 @@ export default class PDFPage { // upper right x coord options.x + options.width, // upper right y coord - options.y + options.height + options.y + options.height, ], // The three parameters are: @@ -1387,8 +1380,8 @@ export default class PDFPage { /* Default to transparent */ C: options.color ? colorToComponents(options.color) : [], - // Name unique identifier - // NM: string + // Name unique identifier + // NM: string /* Page to be visited when the link is clicked */ A: { @@ -1396,9 +1389,9 @@ export default class PDFPage { S: 'URI', URI: PDFString.of(link), }, - }) - ) - + }), + ); + // Annots Dictionary may or may not exist--create it if it doesn't. if (this.node.Annots()) { this.node.Annots()?.push(pdfRef); diff --git a/tests/api/PDFPage.spec.ts b/tests/api/PDFPage.spec.ts index 5e320945..e386ac7a 100644 --- a/tests/api/PDFPage.spec.ts +++ b/tests/api/PDFPage.spec.ts @@ -1,5 +1,11 @@ import fs from 'fs'; -import { PDFArray, PDFDocument, PDFName, PDFRef, StandardFonts } from 'src/index'; +import { + PDFArray, + PDFDocument, + PDFName, + PDFRef, + StandardFonts, +} from 'src/index'; const birdPng = fs.readFileSync('assets/images/greyscale_bird.png'); @@ -153,15 +159,12 @@ describe(`PDFPage`, () => { const pdfDoc = await PDFDocument.create(); const page = pdfDoc.addPage(); - page.drawLink( - 'https://pdf-lib.js.org', - { - x: 5, - y: 5, - width: 20, - height: 50, - } - ); + page.drawLink('https://pdf-lib.js.org', { + x: 5, + y: 5, + width: 20, + height: 50, + }); const annots = page.node.normalizedEntries().Annots; expect(annots).toBeInstanceOf(PDFArray);