mirror of
				https://github.com/keanuplayz/TravBot-v3.git
				synced 2024-08-15 02:33:12 +00:00 
			
		
		
		
	Reworked paginate function
This commit is contained in:
		
							parent
							
								
									475ecb3d5d
								
							
						
					
					
						commit
						02c18f57c7
					
				
					 3 changed files with 83 additions and 76 deletions
				
			
		|  | @ -10,7 +10,7 @@ export const ShopCommand = new Command({ | ||||||
|     description: "Displays the list of items you can buy in the shop.", |     description: "Displays the list of items you can buy in the shop.", | ||||||
|     async run({guild, channel, author}) { |     async run({guild, channel, author}) { | ||||||
|         if (isAuthorized(guild, channel)) { |         if (isAuthorized(guild, channel)) { | ||||||
|             function getShopEmbed(selection: ShopItem[], title = "Shop") { |             function getShopEmbed(selection: ShopItem[], title: string) { | ||||||
|                 const fields: EmbedField[] = []; |                 const fields: EmbedField[] = []; | ||||||
| 
 | 
 | ||||||
|                 for (const item of selection) |                 for (const item of selection) | ||||||
|  | @ -32,17 +32,15 @@ export const ShopCommand = new Command({ | ||||||
|                 }; |                 }; | ||||||
|             } |             } | ||||||
| 
 | 
 | ||||||
|             // In case there's just one page, omit unnecessary details.
 |             const shopPages = split(ShopItems, 5); | ||||||
|             if (ShopItems.length <= 5) channel.send(getShopEmbed(ShopItems)); |             const pageAmount = shopPages.length; | ||||||
|             else { |  | ||||||
|                 const shopPages = split(ShopItems, 5); |  | ||||||
|                 const pageAmount = shopPages.length; |  | ||||||
|                 const msg = await channel.send(getShopEmbed(shopPages[0], `Shop (Page 1 of ${pageAmount})`)); |  | ||||||
| 
 | 
 | ||||||
|                 paginate(msg, author.id, pageAmount, (page) => { |             paginate(channel, author.id, pageAmount, (page, hasMultiplePages) => { | ||||||
|                     msg.edit(getShopEmbed(shopPages[page], `Shop (Page ${page + 1} of ${pageAmount})`)); |                 return getShopEmbed( | ||||||
|                 }); |                     shopPages[page], | ||||||
|             } |                     hasMultiplePages ? `Shop (Page ${page + 1} of ${pageAmount})` : "Shop" | ||||||
|  |                 ); | ||||||
|  |             }); | ||||||
|         } |         } | ||||||
|     } |     } | ||||||
| }); | }); | ||||||
|  |  | ||||||
|  | @ -93,33 +93,21 @@ async function displayEmoteList(emotes: GuildEmoji[], channel: TextChannel | DMC | ||||||
|     }); |     }); | ||||||
|     const sections = split(emotes, 20); |     const sections = split(emotes, 20); | ||||||
|     const pages = sections.length; |     const pages = sections.length; | ||||||
|     const embed = new MessageEmbed().setTitle("**Emotes**").setColor("AQUA"); |     const embed = new MessageEmbed().setColor("AQUA"); | ||||||
|     let desc = ""; |  | ||||||
| 
 | 
 | ||||||
|     // Gather the first page (if it even exists, which it might not if there no valid emotes appear)
 |     // Gather the first page (if it even exists, which it might not if there no valid emotes appear)
 | ||||||
|     if (pages > 0) { |     if (pages > 0) { | ||||||
|         for (const emote of sections[0]) { |         paginate(channel, author.id, pages, (page, hasMultiplePages) => { | ||||||
|             desc += `${emote} ${emote.name} (**${emote.guild.name}**)\n`; |             embed.setTitle(hasMultiplePages ? `**Emotes** (Page ${page + 1} of ${pages})` : "**Emotes**"); | ||||||
|         } |  | ||||||
| 
 | 
 | ||||||
|         embed.setDescription(desc); |             let desc = ""; | ||||||
|  |             for (const emote of sections[page]) { | ||||||
|  |                 desc += `${emote} ${emote.name} (**${emote.guild.name}**)\n`; | ||||||
|  |             } | ||||||
|  |             embed.setDescription(desc); | ||||||
| 
 | 
 | ||||||
|         if (pages > 1) { |             return embed; | ||||||
|             embed.setTitle(`**Emotes** (Page 1 of ${pages})`); |         }); | ||||||
|             const msg = await channel.send({embed}); |  | ||||||
| 
 |  | ||||||
|             paginate(msg, author.id, pages, (page) => { |  | ||||||
|                 let desc = ""; |  | ||||||
|                 for (const emote of sections[page]) { |  | ||||||
|                     desc += `${emote} ${emote.name} (**${emote.guild.name}**)\n`; |  | ||||||
|                 } |  | ||||||
|                 embed.setTitle(`**Emotes** (Page ${page + 1} of ${pages})`); |  | ||||||
|                 embed.setDescription(desc); |  | ||||||
|                 msg.edit(embed); |  | ||||||
|             }); |  | ||||||
|         } else { |  | ||||||
|             channel.send({embed}); |  | ||||||
|         } |  | ||||||
|     } else { |     } else { | ||||||
|         channel.send("No valid emotes found by that query."); |         channel.send("No valid emotes found by that query."); | ||||||
|     } |     } | ||||||
|  |  | ||||||
							
								
								
									
										107
									
								
								src/core/libd.ts
									
										
									
									
									
								
							
							
						
						
									
										107
									
								
								src/core/libd.ts
									
										
									
									
									
								
							|  | @ -1,5 +1,14 @@ | ||||||
| // Library for Discord-specific functions
 | // Library for Discord-specific functions
 | ||||||
| import {Message, Guild, GuildMember, Permissions} from "discord.js"; | import { | ||||||
|  |     Message, | ||||||
|  |     Guild, | ||||||
|  |     GuildMember, | ||||||
|  |     Permissions, | ||||||
|  |     TextChannel, | ||||||
|  |     DMChannel, | ||||||
|  |     NewsChannel, | ||||||
|  |     MessageOptions | ||||||
|  | } from "discord.js"; | ||||||
| import {get} from "https"; | import {get} from "https"; | ||||||
| import FileManager from "./storage"; | import FileManager from "./storage"; | ||||||
| import {eventListeners} from "../events/messageReactionRemove"; | import {eventListeners} from "../events/messageReactionRemove"; | ||||||
|  | @ -36,57 +45,69 @@ export function updateGlobalEmoteRegistry(): void { | ||||||
| // Pagination function that allows for customization via a callback.
 | // Pagination function that allows for customization via a callback.
 | ||||||
| // Define your own pages outside the function because this only manages the actual turning of pages.
 | // Define your own pages outside the function because this only manages the actual turning of pages.
 | ||||||
| export async function paginate( | export async function paginate( | ||||||
|     message: Message, |     channel: TextChannel | DMChannel | NewsChannel, | ||||||
|     senderID: string, |     senderID: string, | ||||||
|     total: number, |     total: number, | ||||||
|     callback: (page: number) => void, |     callback: (page: number, hasMultiplePages: boolean) => MessageOptions & {split?: false}, | ||||||
|     duration = 60000 |     duration = 60000 | ||||||
| ) { | ) { | ||||||
|     let page = 0; |     const hasMultiplePages = total > 1; | ||||||
|     const turn = (amount: number) => { |     const message = await channel.send(callback(0, hasMultiplePages)); | ||||||
|         page += amount; |  | ||||||
| 
 | 
 | ||||||
|         if (page < 0) page += total; |     if (hasMultiplePages) { | ||||||
|         else if (page >= total) page -= total; |         let page = 0; | ||||||
|  |         const turn = (amount: number) => { | ||||||
|  |             page += amount; | ||||||
| 
 | 
 | ||||||
|         callback(page); |             if (page < 0) page += total; | ||||||
|     }; |             else if (page >= total) page -= total; | ||||||
|     const BACKWARDS_EMOJI = "⬅️"; |  | ||||||
|     const FORWARDS_EMOJI = "➡️"; |  | ||||||
|     const handle = (emote: string, reacterID: string) => { |  | ||||||
|         switch (emote) { |  | ||||||
|             case BACKWARDS_EMOJI: |  | ||||||
|                 turn(-1); |  | ||||||
|                 break; |  | ||||||
|             case FORWARDS_EMOJI: |  | ||||||
|                 turn(1); |  | ||||||
|                 break; |  | ||||||
|         } |  | ||||||
|     }; |  | ||||||
| 
 | 
 | ||||||
|     // Listen for reactions and call the handler.
 |             message.edit(callback(page, true)); | ||||||
|     let backwardsReaction = await message.react(BACKWARDS_EMOJI); |         }; | ||||||
|     let forwardsReaction = await message.react(FORWARDS_EMOJI); |         const BACKWARDS_EMOJI = "⬅️"; | ||||||
|     eventListeners.set(message.id, handle); |         const FORWARDS_EMOJI = "➡️"; | ||||||
|     await message.awaitReactions( |         const handle = (emote: string, reacterID: string) => { | ||||||
|         (reaction, user) => { |             if (senderID === reacterID) { | ||||||
|             if (user.id === senderID) { |                 switch (emote) { | ||||||
|                 // The reason this is inside the call is because it's possible to switch a user's permissions halfway and suddenly throw an error.
 |                     case BACKWARDS_EMOJI: | ||||||
|                 // This will dynamically adjust for that, switching modes depending on whether it currently has the "Manage Messages" permission.
 |                         turn(-1); | ||||||
|                 const canDeleteEmotes = botHasPermission(message.guild, Permissions.FLAGS.MANAGE_MESSAGES); |                         break; | ||||||
|                 handle(reaction.emoji.name, user.id); |                     case FORWARDS_EMOJI: | ||||||
| 
 |                         turn(1); | ||||||
|                 if (canDeleteEmotes) reaction.users.remove(user); |                         break; | ||||||
|  |                 } | ||||||
|             } |             } | ||||||
|  |         }; | ||||||
| 
 | 
 | ||||||
|             return false; |         // Listen for reactions and call the handler.
 | ||||||
|         }, |         let backwardsReaction = await message.react(BACKWARDS_EMOJI); | ||||||
|         {time: duration} |         let forwardsReaction = await message.react(FORWARDS_EMOJI); | ||||||
|     ); |         eventListeners.set(message.id, handle); | ||||||
|     // When time's up, remove the bot's own reactions.
 |         const collector = message.createReactionCollector( | ||||||
|     eventListeners.delete(message.id); |             (reaction, user) => { | ||||||
|     backwardsReaction.users.remove(message.author); |                 if (user.id === senderID) { | ||||||
|     forwardsReaction.users.remove(message.author); |                     // The reason this is inside the call is because it's possible to switch a user's permissions halfway and suddenly throw an error.
 | ||||||
|  |                     // This will dynamically adjust for that, switching modes depending on whether it currently has the "Manage Messages" permission.
 | ||||||
|  |                     const canDeleteEmotes = botHasPermission(message.guild, Permissions.FLAGS.MANAGE_MESSAGES); | ||||||
|  |                     handle(reaction.emoji.name, user.id); | ||||||
|  |                     if (canDeleteEmotes) reaction.users.remove(user); | ||||||
|  |                     collector.resetTimer(); | ||||||
|  |                 } | ||||||
|  | 
 | ||||||
|  |                 return false; | ||||||
|  |             }, | ||||||
|  |             // Apparently, regardless of whether you put "time" or "idle", it won't matter to the collector.
 | ||||||
|  |             // In order to actually reset the timer, you have to do it manually via collector.resetTimer().
 | ||||||
|  |             {time: duration} | ||||||
|  |         ); | ||||||
|  | 
 | ||||||
|  |         // When time's up, remove the bot's own reactions.
 | ||||||
|  |         collector.on("end", () => { | ||||||
|  |             eventListeners.delete(message.id); | ||||||
|  |             backwardsReaction.users.remove(message.author); | ||||||
|  |             forwardsReaction.users.remove(message.author); | ||||||
|  |         }); | ||||||
|  |     } | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| // Waits for the sender to either confirm an action or let it pass (and delete the message).
 | // Waits for the sender to either confirm an action or let it pass (and delete the message).
 | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue