gluon
    Preparing search index...

    Represents a reaction belonging to a message.

    Implements

    • Reaction
    Index

    Constructors

    • Creates the structure for a reaction.

      Parameters

      • client: Client

        The client instance.

      • data:
            | ReactionStorageJSON
            | ReactionCacheJSON
            | APIReaction
            | ReactionDiscordJSON
            | Omit<
                {
                    burst: boolean;
                    burst_colors: string[];
                    channel_id: string;
                    emoji: APIEmoji;
                    guild_id?: string;
                    member?: APIGuildMember;
                    message_author_id?: string;
                    message_id: string;
                    type: ReactionType;
                    user_id: string;
                },
                never,
            >

        The raw reaction data from Discord.

      • options: { guildId: string }

        Additional options for this structure.

        • guildId: string

          The id of the guild that the reaction belongs to.

      Returns Reaction

    Accessors

    • get count(): number

      The number of reactions to this message.

      Returns number

    • get guild(): null | Guild

      The guild that this reaction belongs to.

      Returns null | Guild

    • get guildId(): string

      The id of the guild that this reaction belongs to.

      Returns string

    • get initialReactor(): null | string

      The user who added the first reaction.

      Returns null | string

    • get reacted(): (string | Member)[]

      The member objects of the members who reacted. Returns the user id of the member cannot be found.

      Returns (string | Member)[]

    • get reactedIds(): string[]

      The user ids of the users who reacted.

      Returns string[]

    Methods

    • Adds a user to the list of reactors.

      Parameters

      • userId: string

        The id of the user to add as a reactor.

      Returns void

    • Removes a user from the list of reactors.

      Parameters

      • userId: string

        The id of the user to add as a reactor.

      Returns void

    • Returns the JSON representation of this structure.

      Parameters

      • Optionalformat: JsonTypes

        The format to return the data in.

      Returns
          | {
              _reacted: string[];
              count?: undefined;
              emoji: EmojiStorageJSON
              | EmojiCacheJSON;
              initial_reactor: undefined | string;
          }
          | {
              _reacted?: undefined;
              count: number;
              emoji: EmojiDiscordJSON;
              initial_reactor?: undefined;
          }