mirror of
https://github.com/tiramisulabs/seyfert.git
synced 2025-07-17 04:13:28 +00:00
* feat: modal#waitFor * refactor: update waitFor method to improve promise handling and timeout logic * feat: enhance modal handling with options for wait time and improved promise resolution --------- Co-authored-by: MARCROCK22 <marcos22dev@gmail.com>
226 lines
7.1 KiB
TypeScript
226 lines
7.1 KiB
TypeScript
import type { AllChannels, ModalCommand, ModalSubmitInteraction, ReturnCache } from '..';
|
|
import type {
|
|
GuildMemberStructure,
|
|
GuildStructure,
|
|
InteractionGuildMemberStructure,
|
|
UserStructure,
|
|
WebhookMessageStructure,
|
|
} from '../client/transformers';
|
|
import type { CommandMetadata, ExtendContext, GlobalMetadata, RegisteredMiddlewares, UsingClient } from '../commands';
|
|
import { BaseContext } from '../commands/basecontext';
|
|
import {
|
|
InteractionCreateBodyRequest,
|
|
InteractionMessageUpdateBodyRequest,
|
|
MakeRequired,
|
|
MessageWebhookCreateBodyRequest,
|
|
ModalCreateBodyRequest,
|
|
ModalCreateOptions,
|
|
UnionToTuple,
|
|
When,
|
|
} from '../common';
|
|
import { MessageFlags } from '../types';
|
|
|
|
export interface ModalContext extends BaseContext, ExtendContext {}
|
|
|
|
/**
|
|
* Represents a context for interacting with components in a Discord bot.
|
|
* @template Type - The type of component interaction.
|
|
*/
|
|
export class ModalContext<M extends keyof RegisteredMiddlewares = never> extends BaseContext {
|
|
/**
|
|
* Creates a new instance of the ComponentContext class.
|
|
* @param client - The UsingClient instance.
|
|
* @param interaction - The component interaction object.
|
|
*/
|
|
constructor(
|
|
readonly client: UsingClient,
|
|
public interaction: ModalSubmitInteraction,
|
|
) {
|
|
super(client);
|
|
}
|
|
|
|
command!: ModalCommand;
|
|
metadata: CommandMetadata<UnionToTuple<M>> = {} as never;
|
|
globalMetadata: GlobalMetadata = {};
|
|
|
|
get customId() {
|
|
return this.interaction.customId;
|
|
}
|
|
|
|
get components() {
|
|
return this.interaction.components;
|
|
}
|
|
|
|
/**
|
|
* Gets the language object for the interaction's locale.
|
|
*/
|
|
get t() {
|
|
return this.client.t(this.interaction.locale ?? this.client.langs.defaultLang ?? 'en-US');
|
|
}
|
|
|
|
/**
|
|
* Writes a response to the interaction.
|
|
* @param body - The body of the response.
|
|
* @param fetchReply - Whether to fetch the reply or not.
|
|
*/
|
|
write<FR extends boolean = false>(
|
|
body: InteractionCreateBodyRequest,
|
|
fetchReply?: FR,
|
|
): Promise<When<FR, WebhookMessageStructure, void>> {
|
|
return this.interaction.write<FR>(body, fetchReply);
|
|
}
|
|
|
|
/**
|
|
* Defers the reply to the interaction.
|
|
* @param ephemeral - Whether the reply should be ephemeral or not.
|
|
*/
|
|
deferReply<FR extends boolean = false>(
|
|
ephemeral = false,
|
|
fetchReply?: FR,
|
|
): Promise<When<FR, WebhookMessageStructure, undefined>> {
|
|
return this.interaction.deferReply<FR>(ephemeral ? MessageFlags.Ephemeral : undefined, fetchReply);
|
|
}
|
|
|
|
/**
|
|
* Edits the response of the interaction.
|
|
* @param body - The updated body of the response.
|
|
*/
|
|
editResponse(body: InteractionMessageUpdateBodyRequest): Promise<WebhookMessageStructure> {
|
|
return this.interaction.editResponse(body);
|
|
}
|
|
|
|
/**
|
|
* Edits the response or replies to the interaction.
|
|
* @param body - The body of the response or updated body of the interaction.
|
|
* @param fetchReply - Whether to fetch the reply or not.
|
|
*/
|
|
editOrReply<FR extends boolean = false>(
|
|
body: InteractionCreateBodyRequest | InteractionMessageUpdateBodyRequest,
|
|
fetchReply?: FR,
|
|
): Promise<When<FR, WebhookMessageStructure, void>> {
|
|
return this.interaction.editOrReply<FR>(body as InteractionCreateBodyRequest, fetchReply);
|
|
}
|
|
|
|
followup(body: MessageWebhookCreateBodyRequest): Promise<WebhookMessageStructure> {
|
|
return this.interaction.followup(body);
|
|
}
|
|
|
|
/**
|
|
* @returns A Promise that resolves to the fetched message
|
|
*/
|
|
fetchResponse(): Promise<WebhookMessageStructure> {
|
|
return this.interaction.fetchResponse();
|
|
}
|
|
|
|
/**
|
|
* Deletes the response of the interaction.
|
|
* @returns A promise that resolves when the response is deleted.
|
|
*/
|
|
deleteResponse() {
|
|
return this.interaction.deleteResponse();
|
|
}
|
|
|
|
modal(body: ModalCreateBodyRequest, options?: undefined): Promise<undefined>;
|
|
modal(body: ModalCreateBodyRequest, options: ModalCreateOptions): Promise<ModalSubmitInteraction | null>;
|
|
modal(body: ModalCreateBodyRequest, options?: ModalCreateOptions | undefined) {
|
|
// @ts-expect-error
|
|
return this.interaction.modal(body, options);
|
|
}
|
|
|
|
/**
|
|
* Gets the channel of the interaction.
|
|
* @param mode - The mode to fetch the channel.
|
|
* @returns A promise that resolves to the channel.
|
|
*/
|
|
channel(mode?: 'rest' | 'flow'): Promise<AllChannels>;
|
|
channel(mode: 'cache'): ReturnCache<AllChannels>;
|
|
channel(mode: 'cache' | 'rest' | 'flow' = 'flow') {
|
|
if (mode === 'cache')
|
|
return this.client.cache.adapter.isAsync ? Promise.resolve(this.interaction.channel) : this.interaction.channel;
|
|
return this.client.channels.fetch(this.channelId, mode === 'rest');
|
|
}
|
|
|
|
/**
|
|
* Gets the bot member in the guild of the interaction.
|
|
* @param mode - The mode to fetch the member.
|
|
* @returns A promise that resolves to the bot member.
|
|
*/
|
|
me(mode?: 'rest' | 'flow'): Promise<GuildMemberStructure | undefined>;
|
|
me(mode: 'cache'): ReturnCache<GuildMemberStructure | undefined>;
|
|
me(mode: 'cache' | 'rest' | 'flow' = 'flow'): any {
|
|
if (!this.guildId)
|
|
return mode === 'cache' ? (this.client.cache.adapter.isAsync ? Promise.resolve() : undefined) : Promise.resolve();
|
|
switch (mode) {
|
|
case 'cache':
|
|
return this.client.cache.members?.get(this.client.botId, this.guildId);
|
|
default:
|
|
return this.client.members.fetch(this.guildId, this.client.botId, mode === 'rest');
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Gets the guild of the interaction.
|
|
* @param mode - The mode to fetch the guild.
|
|
* @returns A promise that resolves to the guild.
|
|
*/
|
|
guild(mode?: 'rest' | 'flow'): Promise<GuildStructure<'cached' | 'api'> | undefined>;
|
|
guild(mode: 'cache'): ReturnCache<GuildStructure<'cached'> | undefined>;
|
|
guild(mode: 'cache' | 'rest' | 'flow' = 'flow') {
|
|
if (!this.guildId)
|
|
return (
|
|
mode === 'cache' ? (this.client.cache.adapter.isAsync ? Promise.resolve() : undefined) : Promise.resolve()
|
|
) as any;
|
|
switch (mode) {
|
|
case 'cache':
|
|
return this.client.cache.guilds?.get(this.guildId);
|
|
default:
|
|
return this.client.guilds.fetch(this.guildId, mode === 'rest');
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Gets the ID of the guild of the interaction.
|
|
*/
|
|
get guildId() {
|
|
return this.interaction.guildId;
|
|
}
|
|
|
|
/**
|
|
* Gets the ID of the channel of the interaction.
|
|
*/
|
|
get channelId() {
|
|
return this.interaction.channel.id;
|
|
}
|
|
|
|
/**
|
|
* Gets the author of the interaction.
|
|
*/
|
|
get author(): UserStructure {
|
|
return this.interaction.user;
|
|
}
|
|
|
|
/**
|
|
* Gets the member of the interaction.
|
|
*/
|
|
get member(): InteractionGuildMemberStructure | undefined {
|
|
return this.interaction.member;
|
|
}
|
|
|
|
isModal(): this is ModalContext<M> {
|
|
return true;
|
|
}
|
|
|
|
inGuild(): this is GuildModalContext<M> {
|
|
return !!this.guildId;
|
|
}
|
|
}
|
|
|
|
export interface GuildModalContext<M extends keyof RegisteredMiddlewares = never>
|
|
extends Omit<MakeRequired<ModalContext<M>, 'guildId' | 'member'>, 'guild' | 'me'> {
|
|
guild(mode?: 'rest' | 'flow'): Promise<GuildStructure<'cached' | 'api'>>;
|
|
guild(mode: 'cache'): ReturnCache<GuildStructure<'cached'> | undefined>;
|
|
|
|
me(mode?: 'rest' | 'flow'): Promise<GuildMemberStructure>;
|
|
me(mode: 'cache'): ReturnCache<GuildMemberStructure | undefined>;
|
|
}
|