Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,12 @@ declare namespace WAWebJS {
options?: MessageSendOptions,
): Promise<Message>;

/** Send a reaction to a specific messageId */
sendReaction(
messageId: string,
reaction: string,
): Promise<void>;

/** Sends a channel admin invitation to a user, allowing them to become an admin of the channel */
sendChannelAdminInvite(
chatId: string,
Expand Down
27 changes: 27 additions & 0 deletions src/Client.js
Original file line number Diff line number Diff line change
Expand Up @@ -1540,6 +1540,33 @@ class Client extends EventEmitter {
return sentMsg ? new Message(this, sentMsg) : undefined;
}

/**
* Send an emoji reaction to a specific message
* @param {string} messageId - Id of the message to add the reaction.
* @param {string} reaction - Emoji to react with. Send an empty string to remove the reaction.
* @return {Promise}
*/
async sendReaction(messageId, reaction) {
await this.pupPage.evaluate(
async (messageId, reaction) => {
if (!messageId) return null;
const msg =
window.require('WAWebCollections').Msg.get(messageId) ||
(
await window
.require('WAWebCollections')
.Msg.getMessagesById([messageId])
)?.messages?.[0];
if (!msg) return null;
await window
.require('WAWebSendReactionMsgAction')
.sendReactionToMsg(msg, reaction);
},
messageId,
reaction,
);
}

/**
* @typedef {Object} SendChannelAdminInviteOptions
* @property {?string} comment The comment to be added to an invitation
Expand Down
19 changes: 1 addition & 18 deletions src/structures/Message.js
Original file line number Diff line number Diff line change
Expand Up @@ -477,24 +477,7 @@ class Message extends Base {
* @return {Promise}
*/
async react(reaction) {
await this.client.pupPage.evaluate(
async (messageId, reaction) => {
if (!messageId) return null;
const msg =
window.require('WAWebCollections').Msg.get(messageId) ||
(
await window
.require('WAWebCollections')
.Msg.getMessagesById([messageId])
)?.messages?.[0];
if (!msg) return null;
await window
.require('WAWebSendReactionMsgAction')
.sendReactionToMsg(msg, reaction);
},
this.id._serialized,
reaction,
);
return this.client.sendReaction(this.id._serialized, reaction);
}

/**
Expand Down
Loading