MessageSearchResult

The MessageSearchResult component is rendered in the search results when a message matches your search.

Props

The MessageSearchResult component receives the following props:

NameTypeDescription
messageMessageThe message that matched your search
conversationConversationThe conversation that contains the message
isUnreadbooleanWhether the user has read the message already
isActivebooleanWhether the result is currently selected

Available system components

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.

Props

NameTypeDescription
classstringThe class given to the link
stylestringThe CSS styles given to the link
titlestringThe tooltip text given to the link

Usage example

1<ConversationLink
2 class="conversation-link"
3 style="font-weight: bold"
4 title="Click to open"
5/>