Pagination
    Preparing search index...

    Class PaginationEmbedAbstract

    The PaginationEmbed class.

    Hierarchy (View Summary)

    Index

    Constructors

    • Parameters

      • options: Partial<Options> = {}

        The pagination options

      Returns PaginationEmbed

      const pagination = new PaginationEmbed({
      firstEmoji: "⏮",
      prevEmoji: "◀️",
      nextEmoji: "▶️",
      lastEmoji: "⏭",
      limit: 5,
      idle: 5 * 60 * 1000,
      ephemeral: false,
      prevDescription: "",
      postDescription: "",
      attachments: [],
      buttonStyle: 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.

    []
    
    buttonInfo: ButtonsOptions

    Pagination button infos.

    defaultOptions.buttonInfo

    buttons: Record<string, undefined | PButtonBuilder>

    The pagination buttons.

    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.

    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 multiple attachments to the existing attachments.

      Parameters

      Returns this

      const pagination = new Pagination(interaction)
      .setAttachments([new AttachmentBuilder()])
      .addAttachments([new AttachmentBuilder(), new AttachmentBuilder()]);
    • 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"]);
    • 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);
    • 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();
    • Sets the author of this embed.

      Parameters

      • options: null | EmbedAuthorOptions

        The options to use

      Returns this

    • Customizes the styles of each button.

      Parameters

      Returns this

      const pagination = new Pagination(interaction)
      .setButtonAppearance({
      first: {
      label: "First",
      emoji: ":first_emoji:",
      style: ButtonStyle.Secondary
      }
      });
    • 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()]);
    • Sets the emojis for the buttons.

      Parameters

      • emojiOptions: Partial<EmojiOptions>

        The emoji options to set

      Returns this

      const pagination = new Pagination(interaction)
      .setEmojis({
      firstEmoji: ":first_emoji:",
      prevEmoji: ":prev_emoji:",
      nextEmoji: ":next_emoji:",
      lastEmoji: ":last_emoji:"
      });
    • 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 embed's fields

      Parameters

      • ...fields: RestOrArray<APIEmbedField>

        The fields to set

      Returns this

      This method is an alias for PaginationEmbed.spliceFields. More specifically, it splices the entire array of fields, replacing them with the provided fields.

      You can set a maximum of 25 fields.

    • Sets the footer of this embed.

      Parameters

      • options: null | EmbedFooterOptions

        The footer to use

      Returns this

    • Sets the idle time before closing for the pagination.

      Parameters

      • idle: number

        The idle time

      Returns this

      const pagination = new Pagination(interaction)
      .setIdle(5 * 60 * 1000);
    • 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 labels for the buttons.

      Parameters

      • labelOptions: Partial<LabelOptions>

        The label options to set

      Returns this

      const pagination = new Pagination(interaction)
      .setLabels({
      firstLabel: "first",
      prevLabel: "prev",
      nextLabel: "next",
      lastLabel: "last"
      });
    • Sets the limit of entries per page for pagination.

      Parameters

      • limit: number

        Limit of entries per page

      Returns this

      const pagination = new Pagination(interaction)
      .setLimit(5);
    • 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.

    • Parameters

      • other: APIEmbed | JSONEncodable<APIEmbed>

      Returns EmbedBuilder