From e002c6b289ccfcb0a3e384293237aa8adb527485 Mon Sep 17 00:00:00 2001 From: Mike Fix Date: Sat, 16 Oct 2021 16:32:06 -0700 Subject: [PATCH] Revert "use exising EXPORT_SIZES_HASH" This reverts commit 946e0865bdd207ead30c416870d84d93cab5b3a1. --- api/image/index.js | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/api/image/index.js b/api/image/index.js index 0615c69..268a1d4 100755 --- a/api/image/index.js +++ b/api/image/index.js @@ -4,8 +4,6 @@ const { json, send } = require('micro') const chrome = require('chrome-aws-lambda') const puppeteer = require('puppeteer-core') -const { EXPORT_SIZES_HASH } = require('../../lib/constants') - // TODO expose local version of dom-to-image const DOM_TO_IMAGE_URL = 'https://unpkg.com/dom-to-image@2.6.0/dist/dom-to-image.min.js' const NOTO_COLOR_EMOJI_URL = @@ -62,9 +60,13 @@ module.exports = async (req, res) => { const dataUrl = await page.evaluate((target = document) => { const query = new URLSearchParams(document.location.search) - const exportSize = EXPORT_SIZES_HASH[query.get('es')] - ? EXPORT_SIZES_HASH[query.get('es')].value - : 2 + const EXPORT_SIZES_HASH = { + '1x': '1', + '2x': '2', + '4x': '4', + } + + const exportSize = EXPORT_SIZES_HASH[query.get('es')] || '2' target.querySelectorAll('span[role="presentation"]').forEach(node => { if (node.innerText && node.innerText.match(/%[A-Fa-f0-9]{2}/)) {