Advertisement
Guest User

Untitled

a guest
Feb 21st, 2024
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. const { SlashCommandBuilder, EmbedBuilder, ModalBuilder, TextInputBuilder, ButtonBuilder, TextInputStyle, ActionRowBuilder, ButtonStyle, ComponentType } = require('discord.js');
  2.  
  3. const edit = new ButtonBuilder()
  4.     .setCustomId('Edit' + interaction.dateNow)
  5.     .setLabel('Edit')
  6.     .setStyle(ButtonStyle.Primary);
  7.  
  8. const cancel = new ButtonBuilder()
  9.     .setCustomId('Cancel' + interaction.dateNow)
  10.     .setLabel('Cancel')
  11.     .setStyle(ButtonStyle.Danger);
  12.  
  13. const confirm = new ButtonBuilder()
  14.     .setCustomId('Confirm' + interaction.dateNow)
  15.     .setLabel('Confirm')
  16.     .setStyle(ButtonStyle.Success);
  17.  
  18. const actionRow = new ActionRowBuilder().addComponents(edit, cancel, confirm);
  19.  
  20. const embedResponse = await response.reply({ embeds: [confirmEmbed], components: [actionRow], ephemeral: true });
  21. const collector = await embedResponse.createMessageComponentCollector({ componentType: ComponentType.Button, time: 1000 * 60 * 3 });
  22.  
  23. collector.on('collect', async buttonInteraction => {
  24.     console.log('button pressed');
  25.     if (buttonInteraction.customId === 'Edit' + interaction.dateNow) {
  26.         console.log('edit button pressed');
  27.         await builder(interaction);
  28.     }
  29.     else if (buttonInteraction.customId === 'Cancel' + interaction.dateNow) {
  30.         await buttonInteraction.update({ content: 'Cancelled', components: [] });
  31.     }
  32.     else if (buttonInteraction.customId === 'Confirm' + interaction.dateNow) {
  33.         await buttonInteraction.update({ content: 'Confirmed', components: [] });
  34.     }
  35. },
  36. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement