card-drop/src/client/interactionCreate/Button.ts
Ethan Lane 40db7cfebc
Some checks failed
Test / build (push) Failing after 8s
Add paginated view for embeds by search
2024-08-14 22:26:47 +01:00

29 lines
No EOL
1,010 B
TypeScript

import { ButtonInteraction } from "discord.js";
import { CoreClient } from "../client.js";
import AppLogger from "../appLogger.js";
export default class Button {
public static async onButtonClicked(interaction: ButtonInteraction) {
if (!interaction.isButton) return;
const item = CoreClient.buttonEvents.find(x => x.ButtonId == interaction.customId.split(" ")[0]);
if (!item) {
AppLogger.LogVerbose("Button", `Event not found: ${interaction.customId}`);
await interaction.reply("Event not found");
return;
}
try {
AppLogger.LogDebug("Button", `Executing ${interaction.customId}`);
item.Event.execute(interaction);
} catch (e) {
AppLogger.LogError("Button", `Error occurred while executing event: ${interaction.customId}`);
AppLogger.LogError("Button", e as string);
await interaction.reply("An error occurred while executing the event");
}
}
}