mirror of
https://github.com/discordeno/discordeno.git
synced 2026-06-02 08:50:07 +00:00
107 lines
4.1 KiB
TypeScript
107 lines
4.1 KiB
TypeScript
import type { Bot } from "../../../bot.ts";
|
|
import { MessageComponentTypes } from "../../../types/shared.ts";
|
|
import { EditWebhookMessage } from "../../webhooks/editWebhookMessage.ts";
|
|
|
|
/** To edit your response to a application command. If a messageId is not provided it will default to editing the original response. */
|
|
export async function editInteractionResponse(
|
|
bot: Bot,
|
|
token: string,
|
|
options: EditWebhookMessage & {
|
|
/** Id of the message you want to edit if undefined the initial response message will be edited */
|
|
messageId?: bigint;
|
|
},
|
|
) {
|
|
const result = await bot.rest.runMethod(
|
|
bot.rest,
|
|
"patch",
|
|
options.messageId
|
|
? bot.constants.endpoints.WEBHOOK_MESSAGE(bot.applicationId, token, options.messageId)
|
|
: bot.constants.endpoints.INTERACTION_ORIGINAL_ID_TOKEN(bot.applicationId, token),
|
|
{
|
|
content: options.content,
|
|
embeds: options.embeds?.map((embed) => bot.transformers.reverse.embed(bot, embed)),
|
|
file: options.file,
|
|
allowed_mentions: options.allowedMentions
|
|
? {
|
|
parse: options.allowedMentions.parse,
|
|
roles: options.allowedMentions.roles?.map((id) => id.toString()),
|
|
users: options.allowedMentions.users?.map((id) => id.toString()),
|
|
replied_user: options.allowedMentions.repliedUser,
|
|
}
|
|
: undefined,
|
|
attachments: options.attachments?.map((attachment) => ({
|
|
id: attachment.id.toString(),
|
|
filename: attachment.filename,
|
|
content_type: attachment.contentType,
|
|
size: attachment.size,
|
|
url: attachment.url,
|
|
proxy_url: attachment.proxyUrl,
|
|
height: attachment.height,
|
|
width: attachment.width,
|
|
ephemeral: attachment.ephemeral,
|
|
})),
|
|
components: options.components?.map((component) => ({
|
|
type: component.type,
|
|
components: component.components.map((subcomponent) => {
|
|
if (subcomponent.type === MessageComponentTypes.InputText) {
|
|
return {
|
|
type: subcomponent.type,
|
|
style: subcomponent.style,
|
|
custom_id: subcomponent.customId,
|
|
label: subcomponent.label,
|
|
placeholder: subcomponent.placeholder,
|
|
min_length: subcomponent.minLength ?? subcomponent.required === false ? 0 : subcomponent.minLength,
|
|
max_length: subcomponent.maxLength,
|
|
};
|
|
}
|
|
|
|
if (subcomponent.type === MessageComponentTypes.SelectMenu) {
|
|
return {
|
|
type: subcomponent.type,
|
|
custom_id: subcomponent.customId,
|
|
placeholder: subcomponent.placeholder,
|
|
min_values: subcomponent.minValues,
|
|
max_values: subcomponent.maxValues,
|
|
options: subcomponent.options.map((option) => ({
|
|
label: option.label,
|
|
value: option.value,
|
|
description: option.description,
|
|
emoji: option.emoji
|
|
? {
|
|
id: option.emoji.id?.toString(),
|
|
name: option.emoji.name,
|
|
animated: option.emoji.animated,
|
|
}
|
|
: undefined,
|
|
default: option.default,
|
|
})),
|
|
};
|
|
}
|
|
|
|
return {
|
|
type: subcomponent.type,
|
|
custom_id: subcomponent.customId,
|
|
label: subcomponent.label,
|
|
style: subcomponent.style,
|
|
emoji: "emoji" in subcomponent && subcomponent.emoji
|
|
? {
|
|
id: subcomponent.emoji.id?.toString(),
|
|
name: subcomponent.emoji.name,
|
|
animated: subcomponent.emoji.animated,
|
|
}
|
|
: undefined,
|
|
url: "url" in subcomponent ? subcomponent.url : undefined,
|
|
disabled: "disabled" in subcomponent ? subcomponent.disabled : undefined,
|
|
};
|
|
}),
|
|
})),
|
|
message_id: options.messageId?.toString(),
|
|
},
|
|
);
|
|
|
|
// If the original message was edited, this will not return a message
|
|
if (!options.messageId) return result as undefined;
|
|
|
|
return bot.transformers.message(bot, result);
|
|
}
|