swc/bundler/tests/.cache/deno/2b5bb73daef23a2398824e9a41373be137249c6e.ts
강동윤 d60c3242af
fix(swc): Fix bugs (#1739)
swc_bundler:
 - Fix cycle detection for complex circular imports. (denoland/deno#10752)

swc_ecma_transforms_typescript:
 - Allow using large values for an enum variant.
2021-05-25 14:30:17 +09:00

35 lines
1.3 KiB
TypeScript

// Loaded from https://deno.land/x/discordeno@11.0.0-rc.2/src/handlers/messages/MESSAGE_REACTION_REMOVE_EMOJI.ts
import { eventHandlers } from "../../bot.ts";
import { cacheHandlers } from "../../cache.ts";
import type { DiscordGatewayPayload } from "../../types/gateway/gateway_payload.ts";
import type { MessageReactionRemoveEmoji } from "../../types/messages/message_reaction_remove_emoji.ts";
import { snowflakeToBigint } from "../../util/bigint.ts";
export async function handleMessageReactionRemoveEmoji(data: DiscordGatewayPayload) {
const payload = data.d as MessageReactionRemoveEmoji;
const message = await cacheHandlers.get("messages", snowflakeToBigint(payload.messageId));
if (message?.reactions) {
message.reactions = message.reactions.filter(
(reaction) =>
!(
// MUST USE == because discord sends null and we use undefined
(reaction.emoji.id == payload.emoji.id && reaction.emoji.name === payload.emoji.name)
)
);
if (!message.reactions.length) message.reactions = undefined;
await cacheHandlers.set("messages", message.id, message);
}
eventHandlers.reactionRemoveEmoji?.(
payload.emoji,
snowflakeToBigint(payload.messageId),
snowflakeToBigint(payload.channelId),
payload.guildId ? snowflakeToBigint(payload.guildId) : undefined
);
}