@roomy-chat/sdk
    Preparing search index...

    Class Reactions

    Accessor reactions on an entity.

    Hierarchy (View Summary)

    Index

    Methods

    • Add a reaction.

      Parameters

      • reaction: string
      • authorId: string

      Returns void

    • Get all of the reactions, and the set of users that reacted with the given reaction.

      Returns Record<string, Set<string>>

    • Parameters

      • reaction: string
      • authorId: string

      Returns boolean

    • Remove a reaction.

      Parameters

      • reaction: string
      • authorId: string

      Returns void

    • Register a callback that will be run when the entity is committed.

      Parameters

      • listener: () => void

      Returns () => void

      A function that may be called to unregister the callback.

    • Parameters

      • reaction: string
      • authorId: string

      Returns void

    • Checks whether the given entity matches this wrapper type.

      The default implementation is to return true for every entity, but some wrappers will override it to check for the existence of certain marker components.

      Parameters

      Returns boolean

    General

    • get id(): `leaf:${string}`

      The string entity ID.

      Returns `leaf:${string}`

    • Commit any changes made to the entity.

      Important: You must call commit after making changes in order for those changes to be immediately applied, reacted to, and synced to network and/or storage.

      Returns void

    Advanced

    entity: Entity

    The underlying Leaf Entity.

    peer: Peer

    The leaf peer instance.