MessageSearchResult
The MessageSearchResult
component is rendered in the search results when a message matches your search.
The MessageSearchResult
component receives the following props:
Name | Type | Description |
---|---|---|
message | Message | The message that matched your search |
conversation | Conversation | The conversation that contains the message |
isUnread | boolean | Whether the user has read the message already |
isActive | boolean | Whether the result is currently selected |
The following system components are available to the ConversationListSearchBox
component:
The <ConversationLink>
system component renders its children inside an <a>
tag that links to the relevant conversation.
Name | Type | Description |
---|---|---|
class | string | The class given to the link |
style | string | The CSS styles given to the link |
title | string | The tooltip text given to the link |
1<ConversationLink2 class="conversation-link"3 style="font-weight: bold"4 title="Click to open"5/>