mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-12 09:33:32 +01:00
86 lines
3.0 KiB
JavaScript
86 lines
3.0 KiB
JavaScript
'use strict';
|
|
|
|
const Action = require('./Action');
|
|
const AutocompleteInteraction = require('../../structures/AutocompleteInteraction');
|
|
const ButtonInteraction = require('../../structures/ButtonInteraction');
|
|
const CommandInteraction = require('../../structures/CommandInteraction');
|
|
const ContextMenuInteraction = require('../../structures/ContextMenuInteraction');
|
|
const SelectMenuInteraction = require('../../structures/SelectMenuInteraction');
|
|
const { Events, InteractionTypes, MessageComponentTypes, ApplicationCommandTypes } = require('../../util/Constants');
|
|
|
|
let deprecationEmitted = false;
|
|
|
|
class InteractionCreateAction extends Action {
|
|
handle(data) {
|
|
const client = this.client;
|
|
|
|
// Resolve and cache partial channels for Interaction#channel getter
|
|
this.getChannel(data);
|
|
|
|
let InteractionType;
|
|
switch (data.type) {
|
|
case InteractionTypes.APPLICATION_COMMAND:
|
|
switch (data.data.type) {
|
|
case ApplicationCommandTypes.CHAT_INPUT:
|
|
InteractionType = CommandInteraction;
|
|
break;
|
|
case ApplicationCommandTypes.USER:
|
|
case ApplicationCommandTypes.MESSAGE:
|
|
InteractionType = ContextMenuInteraction;
|
|
break;
|
|
default:
|
|
client.emit(
|
|
Events.DEBUG,
|
|
`[INTERACTION] Received application command interaction with unknown type: ${data.data.type}`,
|
|
);
|
|
return;
|
|
}
|
|
break;
|
|
case InteractionTypes.MESSAGE_COMPONENT:
|
|
switch (data.data.component_type) {
|
|
case MessageComponentTypes.BUTTON:
|
|
InteractionType = ButtonInteraction;
|
|
break;
|
|
case MessageComponentTypes.SELECT_MENU:
|
|
InteractionType = SelectMenuInteraction;
|
|
break;
|
|
default:
|
|
client.emit(
|
|
Events.DEBUG,
|
|
`[INTERACTION] Received component interaction with unknown type: ${data.data.component_type}`,
|
|
);
|
|
return;
|
|
}
|
|
break;
|
|
case InteractionTypes.APPLICATION_COMMAND_AUTOCOMPLETE:
|
|
InteractionType = AutocompleteInteraction;
|
|
break;
|
|
default:
|
|
client.emit(Events.DEBUG, `[INTERACTION] Received interaction with unknown type: ${data.type}`);
|
|
return;
|
|
}
|
|
|
|
const interaction = new InteractionType(client, data);
|
|
|
|
/**
|
|
* Emitted when an interaction is created.
|
|
* @event Client#interactionCreate
|
|
* @param {Interaction} interaction The interaction which was created
|
|
*/
|
|
client.emit(Events.INTERACTION_CREATE, interaction);
|
|
|
|
/**
|
|
* Emitted when an interaction is created.
|
|
* @event Client#interaction
|
|
* @param {Interaction} interaction The interaction which was created
|
|
* @deprecated Use {@link Client#event:interactionCreate} instead
|
|
*/
|
|
if (client.emit('interaction', interaction) && !deprecationEmitted) {
|
|
deprecationEmitted = true;
|
|
process.emitWarning('The interaction event is deprecated. Use interactionCreate instead', 'DeprecationWarning');
|
|
}
|
|
}
|
|
}
|
|
|
|
module.exports = InteractionCreateAction;
|