Class: MessagePrompterReactionStrategy
@sapphire/discord.js-utilities.MessagePrompterReactionStrategy
Hierarchy
↳
MessagePrompterReactionStrategy
Implements
Implemented by
Constructors
constructor
• new MessagePrompterReactionStrategy(message
, options
)
Constructor for the MessagePrompterReactionStrategy class
Parameters
Name | Type | Description |
---|---|---|
message | string | MessagePayload | MessageCreateOptions | - |
options | IMessagePrompterReactionStrategyOptions | Overrideable options if needed. |
Overrides
MessagePrompterBaseStrategy.constructor
Defined in
Properties
appliedMessage
• appliedMessage: null
| Message
<boolean
> = null
The message that has been sent in run
Implementation of
MessagePrompterReactionStrategy.appliedMessage
Inherited from
MessagePrompterBaseStrategy.appliedMessage
Defined in
editMessage
• editMessage: undefined
| Message
<boolean
>
The message the bot will edit to send its prompt in run
Implementation of
MessagePrompterReactionStrategy.editMessage
Inherited from
MessagePrompterBaseStrategy.editMessage
Defined in
explicitReturn
• explicitReturn: boolean
Whether to return an explicit object with data, or the strategies' default
Implementation of
MessagePrompterReactionStrategy.explicitReturn
Inherited from
MessagePrompterBaseStrategy.explicitReturn
Defined in
message
• message: string
| MessagePayload
| MessageCreateOptions
The message that will be sent in run
Implementation of
MessagePrompterReactionStrategy.message
Inherited from
MessagePrompterBaseStrategy.message
Defined in
reactions
• reactions: EmojiIdentifierResolvable
[]
The emojis used
Implementation of
MessagePrompterReactionStrategy.reactions
Defined in
timeout
• timeout: number
The timeout that was used in the collector
Implementation of
MessagePrompterReactionStrategy.timeout
Inherited from
MessagePrompterBaseStrategy.timeout
Defined in
type
• type: string
The type of strategy that was used
Implementation of
MessagePrompterReactionStrategy.type
Inherited from
MessagePrompterBaseStrategy.type
Defined in
defaultStrategyOptions
▪ Static
defaultStrategyOptions: IMessagePrompterStrategyOptions
The default strategy options
Inherited from
MessagePrompterBaseStrategy.defaultStrategyOptions
Defined in
Methods
collectReactions
▸ Protected
collectReactions(channel
, authorOrFilter
, reactions
): Promise
<IMessagePrompterExplicitReturnBase
>
Parameters
Name | Type |
---|---|
channel | MessagePrompterChannelTypes |
authorOrFilter | User | CollectorFilter <[MessageReaction , User ]> |
reactions | string [] | EmojiIdentifierResolvable [] |
Returns
Promise
<IMessagePrompterExplicitReturnBase
>
Implementation of
MessagePrompterReactionStrategy.collectReactions
Inherited from
MessagePrompterBaseStrategy.collectReactions
Defined in
createReactionPromptFilter
▸ Protected
createReactionPromptFilter(reactions
, authorOrFilter
): CollectorOptions
<[MessageReaction
, User
]>
Creates a filter for the collector to filter on
Parameters
Name | Type |
---|---|
reactions | string [] | EmojiIdentifierResolvable [] |
authorOrFilter | User | CollectorFilter <[MessageReaction , User ]> |
Returns
CollectorOptions
<[MessageReaction
, User
]>
The filter for awaitReactions function
Implementation of
MessagePrompterReactionStrategy.createReactionPromptFilter
Inherited from
MessagePrompterBaseStrategy.createReactionPromptFilter
Defined in
run
▸ run(channel
, authorOrFilter
): Promise
<EmojiResolvable
| IMessagePrompterExplicitReturnBase
>
This executes the MessagePrompterReactionStrategy and sends the message. The handler will wait for one (1) reaction.
Parameters
Name | Type | Description |
---|---|---|
channel | MessagePrompterChannelTypes | The channel to use. |
authorOrFilter | User | CollectorFilter <[MessageReaction , User ]> | An author object to validate or a CollectorFilter predicate callback. |
Returns
Promise
<EmojiResolvable
| IMessagePrompterExplicitReturnBase
>
A promise that resolves to the reaction object.
Implementation of
MessagePrompterReactionStrategy.run
Overrides
MessagePrompterBaseStrategy.run