From 0677df781840461f9a0b11ed08a2c9f72a521c84 Mon Sep 17 00:00:00 2001 From: Vendicated Date: Wed, 28 Sep 2022 13:39:13 +0200 Subject: [PATCH] BetterGifAltText sanity checks --- src/plugins/betterGifAltText.ts | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/src/plugins/betterGifAltText.ts b/src/plugins/betterGifAltText.ts index c49b3a1e..3e408202 100644 --- a/src/plugins/betterGifAltText.ts +++ b/src/plugins/betterGifAltText.ts @@ -27,14 +27,19 @@ export default definePlugin({ altify(props: any) { if (props.alt !== "GIF") return; - const url = props.original || props.src; - const name = url + const url: string = props.original || props.src; + let name = url .slice(url.lastIndexOf("/") + 1) .replace(/\d/g, "") // strip numbers .replace(/.gif$/, "") // strip extension - .replace(/[,-_ ]+/g, " "); // Replace common delimiters with space + .split(/[,\-_ ]+/g) + .slice(0, 20) + .join(" "); + if (name.length > 300) { + name = name.slice(0, 300) + "..."; + } - if (name.length) props.alt += ` - ${name}`; + if (name) props.alt += ` - ${name}`; return props.alt; },