Pagination
    Preparing search index...

    Class Pagination

    The pagination class.

    Hierarchy (View Summary)

    Index

    Constructors

    • Parameters

      • messageOrInteraction:
            | ChatInputCommandInteraction<CacheType>
            | MessageContextMenuCommandInteraction<CacheType>
            | UserContextMenuCommandInteraction<CacheType>
            | AnySelectMenuInteraction<CacheType>
            | ButtonInteraction<CacheType>
            | ModalSubmitInteraction<CacheType>
            | Message<boolean>

        The message or interaction to reply with the pagination message

      • options: Partial<Options> = {}

        The pagination options

      Returns Pagination

      const pagination = new Pagination(interaction, {
      firstEmoji: "⏮",
      prevEmoji: "◀️",
      nextEmoji: "▶️",
      lastEmoji: "⏭",
      limit: 5,
      idle: 5 * 60 * 1000,
      ephemeral: false,
      prevDescription: "",
      postDescription: "",
      attachments: [],
      buttonStyle: "SECONDARY",
      loop: false,
      });

    Properties

    actionRows: ActionRowBuilder<MessageActionRowComponentBuilder>[]

    The action rows of the final message.

    attachments: PAttachments

    The attachments to show with the paginated messages.

    []
    
    authorizedUsers: string[]

    All the authorized users who can use the pagination buttons

    buttonInfo: ButtonsOptions

    Pagination button infos.

    defaultOptions.buttonInfo

    buttons: Record<string, undefined | PButtonBuilder>

    The pagination buttons.

    collector?:
        | InteractionCollector<ButtonInteraction<"cached">>
        | InteractionCollector<ButtonInteraction<CacheType>>

    The collector of the pagination.

    currentPage: number

    The current page number.

    data: APIEmbed

    The API data associated with this embed.

    descriptions: string[]

    The descriptions to paginate through.

    embeds: PEmbeds

    The embeds if paginating through embeds.

    []
    
    ephemeral: boolean

    Whether the reply should be ephemeral or not.

    false
    
    fieldPaginate: boolean

    Whether if paginating through embed's fields.

    false
    
    idle: number

    The idle time before closing.

    5 * 60 * 1_000
    
    images: string[]

    The images to paginate through.

    interaction:
        | Message<boolean>
        | ChatInputCommandInteraction<"cached">
        | MessageContextMenuCommandInteraction<"cached">
        | UserContextMenuCommandInteraction<"cached">
        | AnySelectMenuInteraction<"cached">
        | ButtonInteraction<"cached">
        | ModalSubmitInteraction<"cached">

    The interaction that the paginator is for.

    limit: number

    The limit of entries per page.

    5
    
    loop: boolean

    Whether to loop through the pages or not.

    false
    
    postDescription: string

    The description to show after the paginated descriptions.

    ""
    
    prevDescription: string

    The description to show before the paginated descriptions.

    ""
    
    totalEntry: number

    The total number of entries.

    totalPages: number

    The total number of pages.

    Accessors

    • get length(): number

      Returns number

    Methods

    • Adds a custom action row below or above the pagination button action row.

      Parameters

      • actionRows: ActionRowBuilder<MessageActionRowComponentBuilder>[]

        The action rows to add

      • position: ExtraRowPosition = ExtraRowPosition.Below

        The position where the action rows to be added

      Returns this

      const pagination = new Pagination(interaction)
      .addActionRows([new ActionRowBuilder()], ExtraRowPosition.Below);
    • Adds an attachment to the existing attachments.

      Parameters

      • attachment:
            | Attachment
            | AttachmentBuilder
            | AttachmentPayload
            | BufferResolvable
            | JSONEncodable<APIAttachment>
            | Stream

        The attachment to add

      Returns this

      const pagination = new Pagination(interaction)
      .setAttachments([new AttachmentBuilder()])
      .addAttachment(new AttachmentBuilder());
    • Adds a authorized user who can use these pagination buttons.

      Parameters

      • authorizedUser: string

        The user to add

      Returns this

      const pagination = new Pagination(interaction)
      .addAuthorizedUser(userId1);
    • Adds multiple authorized users who can use these pagination buttons.

      Parameters

      • authorizedUsers: string[]

        The users to add

      Returns this

      const pagination = new Pagination(interaction)
      .addAuthorizedUsers([userId1, userId2, userId3]);
    • Adds multiple pagination descriptions.

      Parameters

      • ...descriptions: RestOrArray<string>

        The descriptions to set

      Returns this

      const pagination = new Pagination(interaction)
      .setDescriptions(["1st description", "2nd description", "3rd description"])
      .addDescriptions(["4st description", "5nd description", "6rd description"]);
    • Adds multiple pagination embeds.

      Parameters

      • embeds: PEmbeds

        An array of EmbedBuilder or APIEmbed

      • Optionaltemplate: (embed: EmbedBuilder) => JSONEncodable<APIEmbed>

        A template function that will be called for each embed.

      Returns this

      const pagination = new Pagination(interaction)
      .setEmbeds([new EmbedBuilder(), new EmbedBuilder(), new EmbedBuilder()])
      .addEmbeds([new EmbedBuilder(), new EmbedBuilder(), new EmbedBuilder()]);
    • Appends fields to the embed

      Parameters

      • ...fields: RestOrArray<APIEmbedField>

        The fields to add

      Returns this

      This method accepts either an array of fields or a variable number of field parameters. The maximum amount of fields that can be added is 25.

      Using an array

      const fields: APIEmbedField[] = ...;
      const pagination = new Pagination(interaction)
      .addFields(fields);

      Using rest parameters (variadic)

      const pagination = new Pagination(interaction)
      .addFields(
      { name: 'Field 1', value: 'Value 1' },
      { name: 'Field 2', value: 'Value 2' },
      );
    • Adds multiple pagination images.

      Parameters

      • ...images: RestOrArray<string>

        The images to set

      Returns this

      const pagination = new Pagination(interaction)
      .setImages(["1st image", "2nd image", "3rd image"])
      .addImages(["4st image", "5nd image", "6rd image"]);
    • Edits the original reply with the final message.

      Returns Promise<Message<boolean>>

      const pagination = new Pagination(interaction);
      ...
      pagination.editReply();
    • Sends the reply as a followUp.

      Returns Promise<Message<boolean>>

      const pagination = new Pagination(interaction);
      ...
      pagination.followUp();
    • Goes to the first page.

      Parameters

      • interaction: ButtonInteraction

        The interaction to reply to

      Returns Promise<void>

      const pagination = new Pagination(interaction);
      ...
      pagination.goFirst(i);
    • Goes to the last page.

      Parameters

      • interaction: ButtonInteraction

        The interaction to reply to

      Returns Promise<void>

      const pagination = new Pagination(interaction);
      ...
      pagination.goLast(i);
    • Goes to the next page.

      Parameters

      • interaction: ButtonInteraction

        The interaction to reply to

      Returns Promise<void>

      const pagination = new Pagination(interaction);
      ...
      pagination.goNext(i);
    • Goes to the previous page.

      Parameters

      • interaction: ButtonInteraction

        The interaction to reply to

      Returns Promise<void>

      const pagination = new Pagination(interaction);
      ...
      pagination.goPrev(i);
    • Triggers the pagination to go to a specific page.

      Parameters

      • pageNumber: number

        The page number to jump to

      Returns this

      const pagination = new Pagination(interaction)
      .setLimit(1)
      .setDescriptions(["1st page", "2nd page", "3rd page", "4th page", "5th page"]);
      ...
      pagination.goToPage(2);
    • Makes the pagination interactive.

      Parameters

      • message: Message<boolean> | InteractionResponse<true>

        The message to listen for interactions

      Returns this

      const pagination = new Pagination(interaction);
      ...
      pagination.paginate(message);
    • Paginates through fields. It will be ignored if you are not paginating through fields.

      Parameters

      • paginate: boolean = true

        Whether to paginate fields

      Returns this

      const pagination = new Pagination(interaction)
      .setFields([{
      name: "Field 1",
      value: "Field 1 value",
      },
      {
      name: "Field 2",
      value: "Field 2 value",
      }])
      .paginateFields();
    • Sends the final message. By default, it will send as a reply to the message but if the interaction is already replied or deferred then it will editReply. If you want to send follow-up or update the interaction, then use Pagination.followUp or Pagination.update instead.

      Returns Promise<Message<boolean> | InteractionResponse<true>>

      const pagination = new Pagination(interaction);
      ...
      pagination.render();
    • Replies the final message.

      Returns Promise<Message<boolean> | InteractionResponse<true>>

      const pagination = new Pagination(interaction);
      ...
      pagination.reply();
    • Sends the final message in the interaction's channel.

      Returns Promise<Message<boolean>>

      const pagination = new Pagination(interaction);
      ...
      pagination.send();
    • Sets the author of this embed.

      Parameters

      • options: null | EmbedAuthorOptions

        The options to use

      Returns this

    • Sets authorized users who can use these pagination buttons. Leave it a empty array to allow everyone to use the pagination.

      Parameters

      • authorizedUsers: string[]

        The users to set

      Returns this

      const pagination = new Pagination(interaction)
      .setAuthorizedUsers([userId1, userId2, userId3]);
    • Sets the color of this embed.

      Parameters

      • color: null | ColorResolvable

        The color to use

      Returns this

    • Sends contents along with the embed.

      Parameters

      • contents: null | string | (null | string)[]

        The contents to send.

      Returns this

      const pagination = new Pagination(interaction)
      .setContents(["this is the first page", "this is the second page"]);
    • Sets the description of this embed.

      Parameters

      • description: null | string

        The description to use

      Returns this

    • Sets the pagination descriptions.

      Parameters

      • ...descriptions: RestOrArray<string>

        The descriptions to set

      Returns this

      const pagination = new Pagination(interaction)
      .setDescriptions(["1st description", "2nd description", "3rd description"]);
    • Sets the pagination embeds. Note: if you set this then all other pagination methods and embed methods will be ignored i.e., descriptions, images, fields, also the embed properties like title, footer and all

      Parameters

      • embeds: PEmbeds

        The embeds to set

      • Optionaltemplate: (embed: EmbedBuilder, i: number, array: PEmbeds) => JSONEncodable<APIEmbed>

        A template function that will be called for each embed.

      Returns this

      const pagination = new Pagination(interaction)
      .setEmbeds([new EmbedBuilder(), new EmbedBuilder(), new EmbedBuilder()]);
    • Set whether the pagination reply should be ephemeral or not.

      Parameters

      • ephemeral: boolean = true

        Whether the reply should be ephemeral

      Returns this

      const pagination = new Pagination(interaction)
      .setEphemeral(true);
    • Sets the footer of this embed.

      Parameters

      • options: null | EmbedFooterOptions

        The footer to use

      Returns this

    • Sets the image of this embed.

      Parameters

      • url: null | string

        The image URL to use

      Returns this

    • Sets the pagination images.

      Parameters

      • ...images: RestOrArray<string>

        The images to set

      Returns this

      const pagination = new Pagination(interaction)
      .setImages(["1st image", "2nd image", "3rd image"]);
    • Sets the pagination options.

      Parameters

      • options: Partial<Options>

        The pagination options

      Returns this

      const pagination = new Pagination(interaction)
      .setOptions({
      firstEmoji: "⏮",
      prevEmoji: "◀️",
      nextEmoji: "▶️",
      lastEmoji: "⏭",
      limit: 5,
      idle: 5 * 60 * 1000,
      ephemeral: false,
      prevDescription: "",
      postDescription: "",
      attachments: [],
      buttonStyle: ButtonStyle.Secondary,
      loop: false,
      });
    • Sets a fixed post description which will be shown in all pages after the paginated descriptions. It will be ignored if you are not paginating through descriptions.

      Parameters

      • postDescription: string

        The post description to set

      Returns this

      const pagination = new Pagination(interaction)
      .setPostDescription("role id: 123456789");
    • Sets a fixed prev description which will be shown in all pages before the paginated descriptions. It will be ignored if you are not paginating through descriptions.

      Parameters

      • prevDescription: string

        The prev description to set

      Returns this

      const pagination = new Pagination(interaction)
      .setPrevDescription("role info");
    • Sets the thumbnail of this embed.

      Parameters

      • url: null | string

        The thumbnail URL to use

      Returns this

    • Sets the timestamp of this embed.

      Parameters

      • Optionaltimestamp: null | number | Date

        The timestamp or date to use

      Returns this

    • Sets the title for this embed.

      Parameters

      • title: null | string

        The title to use

      Returns this

    • Sets the URL of this embed.

      Parameters

      • url: null | string

        The URL to use

      Returns this

    • Removes, replaces, or inserts fields in the embed.

      Parameters

      • index: number

        The index to start at

      • deleteCount: number

        The number of fields to remove

      • ...fields: APIEmbedField[]

        The replacing field objects

      Returns this

      This method behaves similarly to Array.prototype.splice. The maximum amount of fields that can be added is 25.

      It's useful for modifying and adjusting order of the already-existing fields of an embed.

      Remove the first field

      pagination.spliceFields(0, 1);
      

      Remove the first n fields

      const n = 4
      pagination.spliceFields(0, n);

      Remove the last field

      pagination.spliceFields(-1, 1);
      
    • Serializes this builder to API-compatible JSON data.

      Returns APIEmbed

      This method runs validations on the data before serializing it. As such, it may throw an error if the data is invalid.

    • Updates the interaction's pagination.

      Returns Promise<Message<boolean> | InteractionResponse<true>>

      const pagination = new Pagination(interaction);
      ...
      pagination.update();
    • Parameters

      • other: APIEmbed | JSONEncodable<APIEmbed>

      Returns EmbedBuilder