Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(PaginatedMessage): add method to update pages after response #584

Merged
merged 1 commit into from May 2, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -483,6 +483,31 @@ export class PaginatedMessage {
return this;
}

/**
* Update the current page.
* @param page The content to update the page with.
*/
public async updateCurrentPage(page: PaginatedMessagePage): Promise<this> {
if (this.response === null) {
throw new Error('You cannot update a page before responding to the interaction.');
}

const currentIndex = this.index;

this.pages[currentIndex] = page;
const messagePage = await this.handlePageLoad(page, currentIndex);
this.messages[currentIndex] = messagePage;

await safelyReplyToInteraction({
messageOrInteraction: this.response,
interactionEditReplyContent: messagePage,
interactionReplyContent: { ...this.#thisMazeWasNotMeantForYouContent, ephemeral: true },
componentUpdateContent: messagePage
});

return this;
}

/**
* Adds a page to the existing ones using a {@link MessageBuilder}. This will be added as the last page.
* @param builder Either a callback whose first parameter is `new MessageBuilder()`, or an already constructed {@link MessageBuilder}
Expand Down