-
-
Notifications
You must be signed in to change notification settings - Fork 4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(InteractionCreate): move to an Action handler (#5906)
- Loading branch information
Showing
4 changed files
with
51 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
'use strict'; | ||
|
||
const Action = require('./Action'); | ||
const { Events, InteractionTypes, MessageComponentTypes } = require('../../util/Constants'); | ||
const Structures = require('../../util/Structures'); | ||
|
||
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: | ||
InteractionType = Structures.get('CommandInteraction'); | ||
break; | ||
case InteractionTypes.MESSAGE_COMPONENT: | ||
switch (data.data.component_type) { | ||
case MessageComponentTypes.BUTTON: | ||
InteractionType = Structures.get('ButtonInteraction'); | ||
break; | ||
default: | ||
client.emit( | ||
Events.DEBUG, | ||
`[INTERACTION] Received component interaction with unknown type: ${data.data.component_type}`, | ||
); | ||
return; | ||
} | ||
break; | ||
default: | ||
client.emit(Events.DEBUG, `[INTERACTION] Received interaction with unknown type: ${data.type}`); | ||
return; | ||
} | ||
|
||
/** | ||
* Emitted when an interaction is created. | ||
* @event Client#interaction | ||
* @param {Interaction} interaction The interaction which was created | ||
*/ | ||
client.emit(Events.INTERACTION_CREATE, new InteractionType(client, data)); | ||
} | ||
} | ||
|
||
module.exports = InteractionCreateAction; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,5 @@ | ||
'use strict'; | ||
|
||
const { Events, InteractionTypes, MessageComponentTypes } = require('../../../util/Constants'); | ||
const Structures = require('../../../util/Structures'); | ||
|
||
module.exports = (client, { d: data }) => { | ||
let InteractionType; | ||
switch (data.type) { | ||
case InteractionTypes.APPLICATION_COMMAND: | ||
InteractionType = Structures.get('CommandInteraction'); | ||
break; | ||
case InteractionTypes.MESSAGE_COMPONENT: | ||
switch (data.data.component_type) { | ||
case MessageComponentTypes.BUTTON: | ||
InteractionType = Structures.get('ButtonInteraction'); | ||
break; | ||
default: | ||
client.emit( | ||
Events.DEBUG, | ||
`[INTERACTION] Received component interaction with unknown type: ${data.data.component_type}`, | ||
); | ||
return; | ||
} | ||
break; | ||
default: | ||
client.emit(Events.DEBUG, `[INTERACTION] Received interaction with unknown type: ${data.type}`); | ||
return; | ||
} | ||
|
||
/** | ||
* Emitted when an interaction is created. | ||
* @event Client#interaction | ||
* @param {Interaction} interaction The interaction which was created | ||
*/ | ||
client.emit(Events.INTERACTION_CREATE, new InteractionType(client, data)); | ||
module.exports = (client, packet) => { | ||
client.actions.InteractionCreate.handle(packet.d); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters