diff --git a/.eslintrc.cjs b/.eslintrc.cjs index 117eb21..cab01f3 100644 --- a/.eslintrc.cjs +++ b/.eslintrc.cjs @@ -47,7 +47,7 @@ module.exports = { } }, { - files: ['*.ts'], + files: ['*.ts', '*.tsx'], extends: 'standard-with-typescript', env: { es2020: true, @@ -55,7 +55,7 @@ module.exports = { } }, { - files: ['*.mjs', '*.cjs', '*.js'], + files: ['*.mjs', '*.cjs', '*.js', '*.jsx'], extends: 'standard', env: { es2020: true, diff --git a/package.json b/package.json index d42da1d..9a2af47 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "version": "0.0.1", "scripts": { "prelint": "rm -rf dist .astro && astro sync", - "lint": "eslint . --ext .js,.ts,.cjs,.mjs,.astro && astro check", + "lint": "eslint . --ext .js,.ts,.cjs,.mjs,.astro,.jsx,.tsx && astro check", "prestart": "node encryptAssets.js && DUMMY=true node encryptAssets.js", "dev": "astro dev", "start": "astro dev", diff --git a/src/components/og-image.tsx b/src/components/og-image.tsx index ff987c2..67dd8d0 100644 --- a/src/components/og-image.tsx +++ b/src/components/og-image.tsx @@ -1,4 +1,4 @@ -import {Buffer} from 'node:buffer' +import { Buffer } from 'node:buffer' import sharp from 'sharp' import { findLargestUsableFontSize } from '@altano/satori-fit-text' import roboto400Normal from '@fontsource/roboto/files/roboto-latin-400-normal.woff?arraybuffer' @@ -19,11 +19,11 @@ export default waterfall(async ({ image, title, description, author, date, width .toBuffer() const b64ImageSrc = `data:image/png;base64,${resizedImage.toString('base64')}` - const dateString = date ? - dateFormat === 'en' ? - `${(date.getMonth() + 1).toString().padStart(2, '0')}/${date.getDate().toString().padStart(2, '0')}/${date.getFullYear().toString().padStart(4, '0')}` : - `${date.getDate().toString().padStart(2, '0')}/${(date.getMonth() + 1).toString().padStart(2, '0')}/${date.getFullYear().toString().padStart(4, '0')}` : - undefined + const dateString = date != null + ? dateFormat === 'en' + ? `${(date.getMonth() + 1).toString().padStart(2, '0')}/${date.getDate().toString().padStart(2, '0')}/${date.getFullYear().toString().padStart(4, '0')}` + : `${date.getDate().toString().padStart(2, '0')}/${(date.getMonth() + 1).toString().padStart(2, '0')}/${date.getFullYear().toString().padStart(4, '0')}` + : undefined const frameWidth = 48 const imageMargin = 20 @@ -38,7 +38,7 @@ export default waterfall(async ({ image, title, description, author, date, width text: title, minFontSize: 65, maxWidth: contentWidth, - maxHeight: titleMaxHeight, + maxHeight: titleMaxHeight }) const descriptionFontSize = await findLargestUsableFontSize({ @@ -47,17 +47,17 @@ export default waterfall(async ({ image, title, description, author, date, width text: description, maxFontSize: 50, maxWidth: contentWidth, - maxHeight: height - 2 * frameWidth - 30 - titleMaxHeight - imageMargin - /* space between author line and description */ 3 * imageMargin, + maxHeight: height - 2 * frameWidth - 30 - titleMaxHeight - imageMargin - /* space between author line and description */ 3 * imageMargin }) - return