| 4 | import { getColor } from '../config/bot.js'; |
| 5 | |
| 6 | export function getConfirmationButtons(customIdPrefix = 'confirm') { |
| 7 | return new ActionRowBuilder().addComponents( |
| 8 | new ButtonBuilder() |
| 9 | .setCustomId(`${customIdPrefix}_yes`) |
| 10 | .setLabel('Confirm') |
| 11 | .setStyle(ButtonStyle.Success) |
| 12 | .setEmoji('✅'), |
| 13 | new ButtonBuilder() |
| 14 | .setCustomId(`${customIdPrefix}_no`) |
| 15 | .setLabel('Cancel') |
| 16 | .setStyle(ButtonStyle.Danger) |
| 17 | .setEmoji('❌') |
| 18 | ); |
| 19 | } |
| 20 | |
| 21 | export function getPaginationRow(customIdPrefix = 'page', currentPage = 1, totalPages = 1) { |
| 22 | return new ActionRowBuilder().addComponents( |