mirror of
https://github.com/discordjs/discord.js.git
synced 2026-06-03 01:20:07 +00:00
30 lines
811 B
JavaScript
30 lines
811 B
JavaScript
'use strict';
|
|
|
|
const Action = require('./Action');
|
|
const { Events, VoiceBasedChannelTypes } = require('../../util/Constants');
|
|
|
|
class MessageReactionRemoveAll extends Action {
|
|
handle(data) {
|
|
// Verify channel
|
|
const channel = this.getChannel(data);
|
|
if (!channel || channel.type in VoiceBasedChannelTypes) return false;
|
|
|
|
// Verify message
|
|
const message = this.getMessage(data, channel);
|
|
if (!message) return false;
|
|
|
|
message.reactions.cache.clear();
|
|
this.client.emit(Events.MESSAGE_REACTION_REMOVE_ALL, message);
|
|
|
|
return { message };
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Emitted whenever all reactions are removed from a cached message.
|
|
* @event Client#messageReactionRemoveAll
|
|
* @param {Message} message The message the reactions were removed from
|
|
*/
|
|
|
|
module.exports = MessageReactionRemoveAll;
|