mirror of
https://github.com/tiramisulabs/seyfert.git
synced 2025-07-03 05:26:07 +00:00
fix: fmt
This commit is contained in:
parent
5b98c593af
commit
dba2de7305
@ -184,7 +184,7 @@ export class Message implements Model {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* alias for Message.addReaction
|
* alias for Message.addReaction
|
||||||
* */
|
*/
|
||||||
get react() {
|
get react() {
|
||||||
return this.addReaction;
|
return this.addReaction;
|
||||||
}
|
}
|
||||||
@ -213,13 +213,13 @@ export class Message implements Model {
|
|||||||
r,
|
r,
|
||||||
options.userId,
|
options.userId,
|
||||||
)
|
)
|
||||||
: Routes.CHANNEL_MESSAGE_REACTION_ME(this.channelId, this.id, r)
|
: Routes.CHANNEL_MESSAGE_REACTION_ME(this.channelId, this.id, r),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get users who reacted with this emoji
|
* Get users who reacted with this emoji
|
||||||
* */
|
*/
|
||||||
async fetchReactions(reaction: ReactionResolvable, options?: GetReactions): Promise<User[]> {
|
async fetchReactions(reaction: ReactionResolvable, options?: GetReactions): Promise<User[]> {
|
||||||
const r = typeof reaction === "string" ? reaction : `${reaction.name}:${reaction.id}`;
|
const r = typeof reaction === "string" ? reaction : `${reaction.name}:${reaction.id}`;
|
||||||
|
|
||||||
@ -238,7 +238,7 @@ export class Message implements Model {
|
|||||||
await this.session.rest.runMethod<undefined>(
|
await this.session.rest.runMethod<undefined>(
|
||||||
this.session.rest,
|
this.session.rest,
|
||||||
"DELETE",
|
"DELETE",
|
||||||
Routes.CHANNEL_MESSAGE_REACTION(this.channelId, this.id, r)
|
Routes.CHANNEL_MESSAGE_REACTION(this.channelId, this.id, r),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -246,7 +246,7 @@ export class Message implements Model {
|
|||||||
await this.session.rest.runMethod<undefined>(
|
await this.session.rest.runMethod<undefined>(
|
||||||
this.session.rest,
|
this.session.rest,
|
||||||
"DELETE",
|
"DELETE",
|
||||||
Routes.CHANNEL_MESSAGE_REACTIONS(this.channelId, this.id)
|
Routes.CHANNEL_MESSAGE_REACTIONS(this.channelId, this.id),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -117,15 +117,25 @@ export class TextChannel extends GuildChannel {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async addReaction(messageId: Snowflake, reaction: ReactionResolvable) {
|
async addReaction(messageId: Snowflake, reaction: ReactionResolvable) {
|
||||||
await Message.prototype.addReaction.call({ channelId: this.id, id: messageId, session: this.session }, reaction);
|
await Message.prototype.addReaction.call(
|
||||||
|
{ channelId: this.id, id: messageId, session: this.session },
|
||||||
|
reaction,
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
async removeReaction(messageId: Snowflake, reaction: ReactionResolvable, options?: { userId: Snowflake }) {
|
async removeReaction(messageId: Snowflake, reaction: ReactionResolvable, options?: { userId: Snowflake }) {
|
||||||
await Message.prototype.removeReaction.call({ channelId: this.id, id: messageId, session: this.session }, reaction, options);
|
await Message.prototype.removeReaction.call(
|
||||||
|
{ channelId: this.id, id: messageId, session: this.session },
|
||||||
|
reaction,
|
||||||
|
options,
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
async removeReactionEmoji(messageId: Snowflake, reaction: ReactionResolvable) {
|
async removeReactionEmoji(messageId: Snowflake, reaction: ReactionResolvable) {
|
||||||
await Message.prototype.removeReactionEmoji.call({ channelId: this.id, id: messageId, session: this.session }, reaction);
|
await Message.prototype.removeReactionEmoji.call(
|
||||||
|
{ channelId: this.id, id: messageId, session: this.session },
|
||||||
|
reaction,
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
async nukeReactions(messageId: Snowflake) {
|
async nukeReactions(messageId: Snowflake) {
|
||||||
@ -133,7 +143,11 @@ export class TextChannel extends GuildChannel {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async fetchReactions(messageId: Snowflake, reaction: ReactionResolvable, options?: GetReactions) {
|
async fetchReactions(messageId: Snowflake, reaction: ReactionResolvable, options?: GetReactions) {
|
||||||
const users = await Message.prototype.fetchReactions.call({ channelId: this.id, id: messageId, session: this.session }, reaction, options);
|
const users = await Message.prototype.fetchReactions.call(
|
||||||
|
{ channelId: this.id, id: messageId, session: this.session },
|
||||||
|
reaction,
|
||||||
|
options,
|
||||||
|
);
|
||||||
|
|
||||||
return users;
|
return users;
|
||||||
}
|
}
|
||||||
|
@ -178,12 +178,16 @@ export function CHANNEL_PINS(channelId: Snowflake) {
|
|||||||
return `/channels/${channelId}/pins`;
|
return `/channels/${channelId}/pins`;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
export function CHANNEL_MESSAGE_REACTION_ME(channelId: Snowflake, messageId: Snowflake, emoji: string) {
|
export function CHANNEL_MESSAGE_REACTION_ME(channelId: Snowflake, messageId: Snowflake, emoji: string) {
|
||||||
return `/channels/${channelId}/messages/${messageId}/reactions/${encodeURIComponent(emoji)}/@me`;
|
return `/channels/${channelId}/messages/${messageId}/reactions/${encodeURIComponent(emoji)}/@me`;
|
||||||
}
|
}
|
||||||
|
|
||||||
export function CHANNEL_MESSAGE_REACTION_USER(channelId: Snowflake, messageId: Snowflake, emoji: string, userId: Snowflake) {
|
export function CHANNEL_MESSAGE_REACTION_USER(
|
||||||
|
channelId: Snowflake,
|
||||||
|
messageId: Snowflake,
|
||||||
|
emoji: string,
|
||||||
|
userId: Snowflake,
|
||||||
|
) {
|
||||||
return `/channels/${channelId}/messages/${messageId}/reactions/${encodeURIComponent(emoji)}/${userId}`;
|
return `/channels/${channelId}/messages/${messageId}/reactions/${encodeURIComponent(emoji)}/${userId}`;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -193,13 +197,18 @@ export function CHANNEL_MESSAGE_REACTIONS(channelId: Snowflake, messageId: Snowf
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @link https://discord.com/developers/docs/resources/channel#get-reactions-query-string-params
|
* @link https://discord.com/developers/docs/resources/channel#get-reactions-query-string-params
|
||||||
* */
|
*/
|
||||||
export interface GetReactions {
|
export interface GetReactions {
|
||||||
after?: string;
|
after?: string;
|
||||||
limit?: number;
|
limit?: number;
|
||||||
}
|
}
|
||||||
|
|
||||||
export function CHANNEL_MESSAGE_REACTION(channelId: Snowflake, messageId: Snowflake, emoji: string, options?: GetReactions) {
|
export function CHANNEL_MESSAGE_REACTION(
|
||||||
|
channelId: Snowflake,
|
||||||
|
messageId: Snowflake,
|
||||||
|
emoji: string,
|
||||||
|
options?: GetReactions,
|
||||||
|
) {
|
||||||
let url = `/channels/${channelId}/messages/${messageId}/reactions/${encodeURIComponent(emoji)}?`;
|
let url = `/channels/${channelId}/messages/${messageId}/reactions/${encodeURIComponent(emoji)}?`;
|
||||||
|
|
||||||
if (options?.after) url += `after=${options.after}`;
|
if (options?.after) url += `after=${options.after}`;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user