|
@ -1,6 +1,6 @@ |
|
|
import { Message, MessageActionRow, MessageButton, MessageEmbed } from 'discord.js'; |
|
|
import { CommandInteraction, Message, MessageActionRow, MessageButton, MessageEmbed } from 'discord.js'; |
|
|
|
|
|
|
|
|
export default async function(message : Message, embeds : MessageEmbed[]) { |
|
|
export async function paginateMessage(message : Message, embeds : MessageEmbed[]) { |
|
|
let index = 0; |
|
|
let index = 0; |
|
|
|
|
|
|
|
|
const row = new MessageActionRow; |
|
|
const row = new MessageActionRow; |
|
@ -35,4 +35,42 @@ export default async function(message : Message, embeds : MessageEmbed[]) { |
|
|
paginatorMessage.edit({ content: `Page ${index + 1} of ${embeds.length}:`, embeds: [embeds[index]] }); |
|
|
paginatorMessage.edit({ content: `Page ${index + 1} of ${embeds.length}:`, embeds: [embeds[index]] }); |
|
|
}); |
|
|
}); |
|
|
}); |
|
|
}); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
export async function paginateInteraction(interaction : CommandInteraction, embeds : MessageEmbed[]) { |
|
|
|
|
|
let index = 0; |
|
|
|
|
|
|
|
|
|
|
|
const row = new MessageActionRow; |
|
|
|
|
|
row.addComponents( |
|
|
|
|
|
new MessageButton() |
|
|
|
|
|
.setCustomId('paginator-left') |
|
|
|
|
|
.setEmoji('868552005977788466') |
|
|
|
|
|
.setStyle('SECONDARY'), |
|
|
|
|
|
new MessageButton() |
|
|
|
|
|
.setCustomId('paginator-right') |
|
|
|
|
|
.setEmoji('868551772887711754') |
|
|
|
|
|
.setStyle('SECONDARY') |
|
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
|
|
await interaction.followUp({ content: `Page 1 of ${embeds.length}:`, embeds: [embeds[index]], components: [row], fetchReply: true }) |
|
|
|
|
|
.then(async p => { |
|
|
|
|
|
const paginatorMessage = p as Message; |
|
|
|
|
|
const filter = i => i.user.id === interaction.user.id; |
|
|
|
|
|
|
|
|
|
|
|
const paginatorCollector = paginatorMessage.createMessageComponentCollector({ componentType: 'BUTTON', filter: filter }); |
|
|
|
|
|
|
|
|
|
|
|
paginatorCollector.on('collect', async i => { |
|
|
|
|
|
switch (i.customId) { |
|
|
|
|
|
case 'paginator-left': |
|
|
|
|
|
index--; |
|
|
|
|
|
if (index < 0) index = embeds.length - 1; |
|
|
|
|
|
break; |
|
|
|
|
|
case 'paginator-right': |
|
|
|
|
|
index++; |
|
|
|
|
|
if (index > embeds.length - 1) index = 0; |
|
|
|
|
|
break; |
|
|
|
|
|
} |
|
|
|
|
|
await i.update({ content: `Page ${index + 1} of ${embeds.length}:`, embeds: [embeds[index]] }); |
|
|
|
|
|
}); |
|
|
|
|
|
}); |
|
|
} |
|
|
} |