Reaction Info
component provides a visual representation of a tooltip details about emoji reactions on a message, helping users easily see which emojis were reacted by whom.
Reactions Info
component does not have any exposed actions.
Component
. You can filter the list based on your specific criteria, allowing for a more customized. Filters can be applied using RequestBuilders
of Chat SDK.
You can adjust the ReactionsRequestBuilder
in the Reaction Info Component to customize your Reaction info. Numerous options are available to alter the builder to meet your specific needs. For additional details on ReactionsRequestBuilder
, please visit ReactionsRequestBuilder.
In the example below, we demonstrate the application of a filter to the reactions info
. This filter allows you to specify a limit on the number of users displayed who have reacted with the same emoji.
Component
. By using event you can extend existing functionality. Being global events, they can be applied in Multiple Locations and are capable of being Added or Removed.
The Reactions Info
component does not produce any events.
reactionInfoStyle
object to the Reactions Info
component.
Example
In this example, we are employing the reactionInfoStyle
.
Property | Description | Code |
---|---|---|
border | Used to set border | border?: string, |
borderRadius | Used to set border radius | borderRadius?: string; |
background | Used to set background colour | background?: string; |
height | Used to set height | height?: string; |
width | Used to set width | width?: string; |
reactionFontSize | used to set the font of the reaction | reactionFontSize?: string; |
namesFont | used to set the font of the names of reacted users | namesFont?: string; |
namesColor | used to set the color of the names of reacted users | namesColor?: string; |
loadingIconTint | used to set the loading icon color | loadingIconTint?: string; |
errorIconTint | used to set the error icon color | errorIconTint?: string; |
reactedTextFont | used to set the reacted text font | reactedTextFont?: string; |
reactedTextColor | used to set the reacted text color | reactedTextColor?: string; |
Property | Description | Code |
---|---|---|
loadingIconURL | used to set the custom loading icon | loadingIconURL="your custom loading icon url" |
errorIconURL | used to set the error icon | errorIconURL="your custom error icon url" |