mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-10 08:33:30 +01:00
79 lines
2.1 KiB
JavaScript
79 lines
2.1 KiB
JavaScript
'use strict';
|
|
|
|
const Interaction = require('./Interaction');
|
|
const InteractionWebhook = require('./InteractionWebhook');
|
|
const InteractionResponses = require('./interfaces/InteractionResponses');
|
|
const { MessageComponentTypes } = require('../util/Constants');
|
|
|
|
/**
|
|
* Represents a message component interaction.
|
|
* @extends {Interaction}
|
|
* @implements {InteractionResponses}
|
|
*/
|
|
class MessageComponentInteraction extends Interaction {
|
|
constructor(client, data) {
|
|
super(client, data);
|
|
|
|
/**
|
|
* The message to which the component was attached
|
|
* @type {?Message|Object}
|
|
*/
|
|
this.message = data.message ? this.channel?.messages.add(data.message) ?? data.message : null;
|
|
|
|
/**
|
|
* The custom ID of the component which was interacted with
|
|
* @type {string}
|
|
*/
|
|
this.customID = data.data.custom_id;
|
|
|
|
/**
|
|
* The type of component which was interacted with
|
|
* @type {string}
|
|
*/
|
|
this.componentType = MessageComponentInteraction.resolveType(data.data.component_type);
|
|
|
|
/**
|
|
* Whether the reply to this interaction has been deferred
|
|
* @type {boolean}
|
|
*/
|
|
this.deferred = false;
|
|
|
|
/**
|
|
* Whether this interaction has already been replied to
|
|
* @type {boolean}
|
|
*/
|
|
this.replied = false;
|
|
|
|
/**
|
|
* An associated interaction webhook, can be used to further interact with this interaction
|
|
* @type {InteractionWebhook}
|
|
*/
|
|
this.webhook = new InteractionWebhook(this.client, this.applicationID, this.token);
|
|
}
|
|
|
|
/**
|
|
* Resolves the type of a MessageComponent
|
|
* @param {MessageComponentTypeResolvable} type The type to resolve
|
|
* @returns {MessageComponentType}
|
|
* @private
|
|
*/
|
|
static resolveType(type) {
|
|
return typeof type === 'string' ? type : MessageComponentTypes[type];
|
|
}
|
|
|
|
// These are here only for documentation purposes - they are implemented by InteractionResponses
|
|
/* eslint-disable no-empty-function */
|
|
defer() {}
|
|
reply() {}
|
|
fetchReply() {}
|
|
editReply() {}
|
|
deleteReply() {}
|
|
followUp() {}
|
|
deferUpdate() {}
|
|
update() {}
|
|
}
|
|
|
|
InteractionResponses.applyToClass(MessageComponentInteraction);
|
|
|
|
module.exports = MessageComponentInteraction;
|