Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- const { SlashCommandBuilder, EmbedBuilder, ModalBuilder, TextInputBuilder, ButtonBuilder, TextInputStyle, ActionRowBuilder, ButtonStyle, ComponentType } = require('discord.js');
- const edit = new ButtonBuilder()
- .setCustomId('Edit' + interaction.dateNow)
- .setLabel('Edit')
- .setStyle(ButtonStyle.Primary);
- const cancel = new ButtonBuilder()
- .setCustomId('Cancel' + interaction.dateNow)
- .setLabel('Cancel')
- .setStyle(ButtonStyle.Danger);
- const confirm = new ButtonBuilder()
- .setCustomId('Confirm' + interaction.dateNow)
- .setLabel('Confirm')
- .setStyle(ButtonStyle.Success);
- const actionRow = new ActionRowBuilder().addComponents(edit, cancel, confirm);
- const embedResponse = await response.reply({ embeds: [confirmEmbed], components: [actionRow], ephemeral: true });
- const collector = await embedResponse.createMessageComponentCollector({ componentType: ComponentType.Button, time: 1000 * 60 * 3 });
- collector.on('collect', async buttonInteraction => {
- console.log('button pressed');
- if (buttonInteraction.customId === 'Edit' + interaction.dateNow) {
- console.log('edit button pressed');
- await builder(interaction);
- }
- else if (buttonInteraction.customId === 'Cancel' + interaction.dateNow) {
- await buttonInteraction.update({ content: 'Cancelled', components: [] });
- }
- else if (buttonInteraction.customId === 'Confirm' + interaction.dateNow) {
- await buttonInteraction.update({ content: 'Confirmed', components: [] });
- }
- },
- );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement