From 130b13a6792971301e075115d05630e571b5f76c Mon Sep 17 00:00:00 2001 From: Rafael Almeida Date: Sat, 11 Mar 2023 19:51:45 -0300 Subject: [PATCH] Add Wrong Channel context command --- src/commands/context/wrong-channel.ts | 74 +++++++++++++++++++++++++++ 1 file changed, 74 insertions(+) create mode 100644 src/commands/context/wrong-channel.ts diff --git a/src/commands/context/wrong-channel.ts b/src/commands/context/wrong-channel.ts new file mode 100644 index 0000000..3b5e696 --- /dev/null +++ b/src/commands/context/wrong-channel.ts @@ -0,0 +1,74 @@ +import { + ActionRowBuilder, + ApplicationCommandType, + ContextMenuCommandBuilder, + ModalBuilder, + PermissionFlagsBits, + TextInputBuilder, + TextInputStyle, +} from 'discord.js'; +import { ContextMenuCommand } from '../../types'; + +/** + * Wrong channel command + * --- + * Deletes a message and sends a DM to the user telling them it's in the wrong channel + */ + +export const command: ContextMenuCommand = { + data: new ContextMenuCommandBuilder() + .setName('Wrong Channel') + .setDMPermission(false) + .setDefaultMemberPermissions(PermissionFlagsBits.ManageMessages) + .setType(ApplicationCommandType.Message), + + async execute(interaction) { + const { targetMessage } = interaction; + const originalMessageContent = targetMessage.content; + + const modal = new ModalBuilder() + .setCustomId('wrongChannel') + .setTitle('Delete wrong channel message') + .addComponents( + new ActionRowBuilder().addComponents( + new TextInputBuilder() + .setCustomId('modMessageInput') + .setLabel('Message to user (not required)') + .setValue('👋 Hey there. This message would fit better in #...') + .setRequired(false) + .setStyle(TextInputStyle.Short) + ) + ); + + await interaction.showModal(modal); + + try { + const submit = await interaction.awaitModalSubmit({ + time: 5 * 60 * 1000, + filter: (i) => i.user.id === interaction.user.id, + }); + const modMessage = submit.fields.getTextInputValue('modMessageInput'); + + await Promise.all([ + targetMessage.delete(), + targetMessage.author.send({ + content: ` +Your message has been deleted because it was posted in the wrong channel. Feel free to post it again in the correct channel. +${modMessage ? `Moderator message: \`\`\`${modMessage}\`\`\`` : ''}`, + embeds: [ + { + title: 'Deleted message:', + description: originalMessageContent, + }, + ], + }), + submit.reply({ + ephemeral: true, + content: 'Ok!', + }), + ]); + } catch (err) { + console.error(err); + } + }, +};