mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-09 16:13:31 +01:00
86 lines
2.5 KiB
JavaScript
86 lines
2.5 KiB
JavaScript
const Collector = require('./interfaces/Collector');
|
|
const Collection = require('../util/Collection');
|
|
|
|
/**
|
|
* @typedef {CollectorOptions} ReactionCollectorOptions
|
|
* @property {number} max The maximum total amount of reactions to collect
|
|
* @property {number} maxEmojis The maximum number of emojis to collect
|
|
* @property {number} maxUsers The maximum number of users to react
|
|
*/
|
|
|
|
/**
|
|
* Collects reactions on messages.
|
|
* @extends {Collector}
|
|
*/
|
|
class ReactionCollector extends Collector {
|
|
/**
|
|
* @param {Message} message The message upon which to collect reactions
|
|
* @param {CollectorFilter} filter The filter to apply to this collector
|
|
* @param {ReactionCollectorOptions} [options={}] The options to apply to this collector
|
|
*/
|
|
constructor(message, filter, options = {}) {
|
|
super(message.client, filter, options);
|
|
|
|
/**
|
|
* The message
|
|
* @type {Message}
|
|
*/
|
|
this.message = message;
|
|
|
|
/**
|
|
* The users which have reacted
|
|
* @type {Collection}
|
|
*/
|
|
this.users = new Collection();
|
|
|
|
/**
|
|
* The total number of reactions collected
|
|
* @type {number}
|
|
*/
|
|
this.total = 0;
|
|
|
|
this.client.setMaxListeners(this.client.getMaxListeners() + 1);
|
|
this.client.on('messageReactionAdd', this.listener);
|
|
}
|
|
|
|
/**
|
|
* Handle an incoming reaction for possible collection.
|
|
* @param {MessageReaction} reaction The reaction to possibly collect
|
|
* @returns {?{key: Snowflake, value: MessageReaction}}
|
|
* @private
|
|
*/
|
|
handle(reaction) {
|
|
if (reaction.message.id !== this.message.id) return null;
|
|
return {
|
|
key: reaction.emoji.id || reaction.emoji.name,
|
|
value: reaction,
|
|
};
|
|
}
|
|
|
|
/**
|
|
* Check after collection to see if the collector is done.
|
|
* @param {MessageReaction} reaction The reaction that was collected
|
|
* @param {User} user The user that reacted
|
|
* @returns {?string} Reason to end the collector, if any
|
|
* @private
|
|
*/
|
|
postCheck(reaction, user) {
|
|
this.users.set(user.id, user);
|
|
if (this.options.max && ++this.total >= this.options.max) return 'limit';
|
|
if (this.options.maxEmojis && this.collected.size >= this.options.maxEmojis) return 'emojiLimit';
|
|
if (this.options.maxUsers && this.users.size >= this.options.maxUsers) return 'userLimit';
|
|
return null;
|
|
}
|
|
|
|
/**
|
|
* Remove event listeners.
|
|
* @private
|
|
*/
|
|
cleanup() {
|
|
this.client.removeListener('messageReactionAdd', this.listener);
|
|
this.client.setMaxListeners(this.client.getMaxListeners() - 1);
|
|
}
|
|
}
|
|
|
|
module.exports = ReactionCollector;
|