Package Exports
- @acegoal07/discordjs-pagination
- @acegoal07/discordjs-pagination/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@acegoal07/discordjs-pagination) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
discordjs-pagination
About | Example | Wrapper functions | Optional settings help | Page and button builder | NPM | Author
About
This pagination supports both Message and Interaction and automaticity switches between which interface is provided, It also adjusts multiple things about the pagination depending on the data that's provided making it very customisable and user friendlyTo download the package use:
For discord version 14.0.0 and higher
npm i @acegoal07/discordjs-paginationFor discord version 13.9.0 and bellow
npm i @acegoal07/discordjs-pagination@1.3.0Addition info
The interaction pagination supports deferred interactions but you do not need to defer the interaction yourself as the pagination does it automatically if it is not deferred
All wrapper functions
.setInterface() // This is a feature that could be cut depending on what people think to it
.setMessage()
.setInteraction()
.setPageList()
.setButtonList()
.setTimeout()
.setProgressBar()
.enableReplyMessage()
.enableAutoDelete()
.enablePrivateReply()
.enableAuthorIndependent()
.enableAutoButton()
.enableAutoDelButtons()
.createPages()
.createButtons()
.paginate()Example
const { EmbedBuilder, ButtonBuilder } = require('discord.js');
const paginationWrapper = require('@acegoal07/discordjs-pagination');
// Message example
new paginationWrapper().setMessage(message)
.setPageList([
new EmbedBuilder()
.setTitle("Embed 1")
.setDescription("page 1"),
new EmbedBuilder()
.setTitle("Embed 2")
.setDescription("page 2")
])
.setButtonList([
new ButtonBuilder()
.setLabel(`1`)
.setStyle("Secondary")
.setCustomId(`1`),
new ButtonBuilder()
.setLabel(`2`)
.setStyle("Secondary")
.setCustomId(`2`)
])
.paginate()
// Interaction example
new paginationWrapper().setInteraction(interaction)
.setPageList([
new EmbedBuilder()
.setTitle("Embed 1")
.setDescription("page 1"),
new EmbedBuilder()
.setTitle("Embed 2")
.setDescription("page 2")
])
.setButtonList([
new ButtonBuilder()
.setLabel(`1`)
.setStyle("Secondary")
.setCustomId(`1`),
new ButtonBuilder()
.setLabel(`2`)
.setStyle("Secondary")
.setCustomId(`2`)
])
.paginate()
// Interaction ephemeral examples
// way 1 sends a deferred interaction with it enabled
await deferReply({ephemeral: true})
new paginationWrapper().setInteraction(interaction)
.setPageList([ ........
// way 2 sends an un-deferred interaction which is used to enable it
new paginationWrapper().setInteraction(interaction, true)
.setPageList([ ........
// way 3 sends an un-deferred interaction which is used to enable it
new paginationWrapper().setInterface({interaction_ephemeral: true})
.setPageList([ ........Optional settings help
Just add these methods before the paginate function to enable the addons e.g.
new paginationWrapper().setInteraction(interaction)
.setPageList([
new EmbedBuilder()
.setTitle("Embed 1")
.setDescription("page 1"),
new EmbedBuilder()
.setTitle("Embed 2")
.setDescription("page 2")
])
.setButtonList([
new ButtonBuilder()
.setLabel(`1`)
.setStyle("Secondary")
.setCustomId(`1`),
new ButtonBuilder()
.setLabel(`2`)
.setStyle("Secondary")
.setCustomId(`2`)
])
.enableAutoDelete() // <---- Make sure its before the paginate function or it wont enable
.paginate()All the available settings and the input they need
.setTimeout(timeInMilliseconds) // Allows you to set a custom timeOut for your pagination
.enableAuthorIndependent() // Enables authorIndependent for your pagination
.enableAutoDelete() // Enables autoDelete for your pagination
.enablePrivateReply() // Enables privateReply for your pagination
.enableReplyMessage() // Enables replyMessage for your pagination
.setProgressBar({newSliderIcon, newBarIcon}) // Enables ProgressBar for your pagination and also allows you to edit the characters
.enableAutoButton(deleteButton) // Enables autoButton for your pagination
.enableSelectMenu() // Enables selectMenu for your pagination
.createPages() // View create help to see how to use this feature
.createButtons() // View create help to see how to use this featureCreate help
Create Pages example
// This feature replaces the .setPageList() function
.createPages([
{
color: "Red",
title: "page1",
url: "https://acegoal07.dev",
description: "page1 is here",
author: {
name: "acegoal07",
icon_url: "https://acegoal07.dev/Resources/Pictures/acegoal07.webP",
url: "https://acegoal07.dev",
},
thumbnailUrl: "https://acegoal07.dev/Resources/Pictures/acegoal07.webP",
fields: [
{
name: "Look i work",
value: "Hello World!",
inline: false,
},
{
// And carry on like so
}
],
imageUrl: "https://acegoal07.dev/Resources/Pictures/acegoal07.webP",
},
{
// And carry on like so
}
])create Buttons example
// This feature replaces the .setButtonList() function
.createButtons([
{
customId: "button1",
label: "i am button 1",
emoji: "123456789012345678", // emoji replaces the label
style: "Success"
},
{
// And carry on like so
}
])