create-discord-forge
Version:
A CLI made with Commander to create a Discord and easily add advanced features to your bot made with discord.js in TypeScript or JavaScript
51 lines (44 loc) • 1.39 kB
JavaScript
const { Events } = require('discord.js');
// IMPORT_MARKER
module.exports = client => {
client.on(Events.InteractionCreate, async interaction => {
if (interaction.isChatInputCommand()) {
const command = interaction.client.commands.get(interaction.commandName);
if (!command) {
console.error(
`No command matching ${interaction.commandName} was found.`,
);
return;
}
try {
// execute the command
await command.execute(interaction);
} catch (error) {
console.error(error);
if (interaction.replied || interaction.deferred) {
// If the interaction has already been replied to or deferred, use followUp
await interaction.followUp({
content: 'There was an error while executing this command!',
flags: MessageFlags.Ephemeral,
});
} else {
// If the interaction has not been replied to yet, use reply
await interaction.reply({
content: 'There was an error while executing this command!',
flags: MessageFlags.Ephemeral,
});
}
}
} else if (interaction.isButton()) {
const buttonId = interaction.customId;
// BAN_MODULE_APPEND
// Handle button interactions
if (buttonId === 'custom_button') {
await interaction.reply({
content: 'You clicked the custom button!',
ephemeral: true,
});
}
}
});
};