reaction lib from dev

This commit is contained in:
ThatOneCalculator 2023-03-14 16:29:27 -07:00
parent 0270211d05
commit 5731bf4ee5
No known key found for this signature in database
GPG Key ID: 8703CACD01000000
1 changed files with 18 additions and 15 deletions

View File

@ -5,17 +5,17 @@ import { toPunyNullable } from "./convert-host.js";
import { IsNull } from "typeorm"; import { IsNull } from "typeorm";
const legacies = new Map([ const legacies = new Map([
['like', '👍'], ["like", "👍"],
['love', '❤️'], ["love", "❤️"],
['laugh', '😆'], ["laugh", "😆"],
['hmm', '🤔'], ["hmm", "🤔"],
['surprise', '😮'], ["surprise", "😮"],
['congrats', '🎉'], ["congrats", "🎉"],
['angry', '💢'], ["angry", "💢"],
['confused', '😥'], ["confused", "😥"],
['rip', '😇'], ["rip", "😇"],
['pudding', '🍮'], ["pudding", "🍮"],
['star', '⭐'], ["star", "⭐"],
]); ]);
export async function getFallbackReaction() { export async function getFallbackReaction() {
@ -42,7 +42,10 @@ export function convertLegacyReactions(reactions: Record<string, number>) {
if (emoji) { if (emoji) {
_reactions.set(emoji, (_reactions.get(emoji) || 0) + reactions[reaction]); _reactions.set(emoji, (_reactions.get(emoji) || 0) + reactions[reaction]);
} else { } else {
_reactions.set(reaction, (_reactions.get(reaction) || 0) + reactions[reaction]); _reactions.set(
reaction,
(_reactions.get(reaction) || 0) + reactions[reaction],
);
} }
} }
@ -127,7 +130,7 @@ export function decodeReaction(str: string): DecodedReaction {
} }
export function convertLegacyReaction(reaction: string): string { export function convertLegacyReaction(reaction: string): string {
const decoded = decodeReaction(reaction).reaction; const decoded = decodeReaction(reaction).reaction;
if (legacies.has(decoded)) return legacies.get(decoded)!; if (legacies.has(decoded)) return legacies.get(decoded)!;
return decoded; return decoded;
} }