Added more commands, added an auto-delete mechanism for a 12-year-old's spam, various fixes
This commit is contained in:
parent
51c2547fd5
commit
d78bb8dff7
9 changed files with 186 additions and 34 deletions
|
@ -3,6 +3,7 @@ const MessageCollector = require("./awaitmessages.js");
|
|||
const client = require("../client.js");
|
||||
|
||||
const paginationEmbed = async (message, pages, timeout = 120000) => {
|
||||
const manageMessages = message.channel.guild.members.get(client.user.id).permission.has("manageMessages") || message.channel.permissionsOf(client.user.id).has("manageMessages") ? true : false;
|
||||
let page = 0;
|
||||
pages[page].embed.footer.text = `Page ${page + 1} of ${pages.length}`;
|
||||
const currentPage = await message.channel.createMessage(pages[page]);
|
||||
|
@ -11,36 +12,44 @@ const paginationEmbed = async (message, pages, timeout = 120000) => {
|
|||
await currentPage.addReaction(emoji);
|
||||
}
|
||||
const reactionCollector = new ReactionCollector(currentPage, (message, reaction, user) => emojiList.includes(reaction.name) && !client.users.get(user).bot, { time: timeout });
|
||||
reactionCollector.on("reaction", (msg, reaction) => {
|
||||
//reaction.users.remove(msg.author);
|
||||
//const reactionAuthor = currentPage.getReactions();
|
||||
switch (reaction.name) {
|
||||
case "◀":
|
||||
page = page > 0 ? --page : pages.length - 1;
|
||||
pages[page].embed.footer.text = `Page ${page + 1} of ${pages.length}`;
|
||||
currentPage.edit(pages[page]);
|
||||
break;
|
||||
case "🔢":
|
||||
message.channel.createMessage(`${message.author.mention}, what page do you want to jump to?`).then(askMessage => {
|
||||
const messageCollector = new MessageCollector(askMessage.channel, (response) => response.author.id === message.author.id && !isNaN(response.content) && Number(response.content) <= pages.length, { time: timeout, maxMatches: 1 });
|
||||
return messageCollector.on("message", response => {
|
||||
askMessage.delete();
|
||||
page = Number(response.content) - 1;
|
||||
pages[page].embed.footer.text = `Page ${page + 1} of ${pages.length}`;
|
||||
currentPage.edit(pages[page]);
|
||||
reactionCollector.on("reaction", (msg, reaction, userID) => {
|
||||
if (userID === message.author.id) {
|
||||
switch (reaction.name) {
|
||||
case "◀":
|
||||
page = page > 0 ? --page : pages.length - 1;
|
||||
pages[page].embed.footer.text = `Page ${page + 1} of ${pages.length}`;
|
||||
currentPage.edit(pages[page]);
|
||||
if (manageMessages) msg.removeReaction("◀", userID);
|
||||
break;
|
||||
case "🔢":
|
||||
message.channel.createMessage(`${message.author.mention}, what page do you want to jump to?`).then(askMessage => {
|
||||
const messageCollector = new MessageCollector(askMessage.channel, (response) => response.author.id === message.author.id && !isNaN(response.content) && Number(response.content) <= pages.length, {
|
||||
time: timeout,
|
||||
maxMatches: 1
|
||||
});
|
||||
return messageCollector.on("message", response => {
|
||||
askMessage.delete();
|
||||
page = Number(response.content) - 1;
|
||||
pages[page].embed.footer.text = `Page ${page + 1} of ${pages.length}`;
|
||||
currentPage.edit(pages[page]);
|
||||
if (manageMessages) msg.removeReaction("🔢", userID);
|
||||
});
|
||||
}).catch(error => {
|
||||
if (error) console.error;
|
||||
});
|
||||
}).catch(error => { if (error) console.error; });
|
||||
break;
|
||||
case "▶":
|
||||
page = page + 1 < pages.length ? ++page : 0;
|
||||
pages[page].embed.footer.text = `Page ${page + 1} of ${pages.length}`;
|
||||
currentPage.edit(pages[page]);
|
||||
break;
|
||||
case "🗑":
|
||||
currentPage.delete();
|
||||
return;
|
||||
default:
|
||||
break;
|
||||
break;
|
||||
case "▶":
|
||||
page = page + 1 < pages.length ? ++page : 0;
|
||||
pages[page].embed.footer.text = `Page ${page + 1} of ${pages.length}`;
|
||||
currentPage.edit(pages[page]);
|
||||
if (manageMessages) msg.removeReaction("▶", userID);
|
||||
break;
|
||||
case "🗑":
|
||||
currentPage.delete();
|
||||
return;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
}
|
||||
});
|
||||
reactionCollector.on("end", () => currentPage.removeReactions());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue