Overview
The Messages is a Composite Component that manages messages for users and groups.
Components | Description |
---|---|
MessageHeader | CometChatMessageHeader displays the User or Group information using CometChat SDK’s User or Group object. It also shows the typing indicator when the user starts typing in MessageComposer . |
MessageList | CometChatMessageList is one of the core UI components. It displays a list of messages and handles real-time operations. |
MessageComposer | CometChatMessageComposer is an independent and critical component that allows users to compose and send various types of messages includes text, image, video and custom messages. |
Details | CometChatDetails is a component that displays all the available options available for Users & Groups |
ThreadedMessages | CometChatThreadedMessages is a component that displays all replies made to a particular message in a conversation. |
Usage
Integration
The following code snippet illustrates how you can directly incorporate the Messages component.Actions
Actions dictate how a component functions. They are divided into two types: Predefined and User-defined. You can override either type, allowing you to tailor the behavior of the component to fit your specific needs. The Messages component does not have its actions. However, since it’s a Composite Component, you can use the actions of its components by utilizing the Configurations object of each component. Example In this example, we are employing the onThreadRepliesClick action from the MessageList Component through the MessageListConfiguration object.On thread replies click:


The Messages Component overrides the onThreadRepliesClick action to navigate to the ThreadedMessages component. If you override onThreadRepliesClick
, it will also override the default behavior of the Messages Component.
Filters
Filters allow you to customize the data displayed in a list within a 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. The Messages component does not have its filters. But as it is a Composite Component, you can use the filters of its components by using the Configurations object of each component. For more details on the filters of its components, please refer to MessageList Filters. Example In this example, we’re applying the MessageList Component filter to the Messages Component usingMessageListConfiguration
.
Events
Events are emitted by aComponent
. 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 Messages
component does not produce any events directly.
Customization
To fit your app’s design requirements, you can customize the appearance of the Messages component. We provide exposed methods that allow you to modify the experience and behavior according to your specific needs.Style
Using Style you can customize the look and feel of the component in your app, These parameters typically control elements such as the color, size, shape, and fonts used within the component.1. Messages Style
You can customize the appearance of the Messages Component by applying the MessagesStyle to it using the following code snippet.Property | Description | Code |
---|---|---|
background | Sets all background style properties at once, such as color, image, origin and size, or repeat method. | background:"sting", |
border | Sets the border of the component | border:"string" |
borderRadius | Sets the border radius of the component | borderRadius:"string" |
height | Sets the height of the component | height:"string" |
width | Sets the width of the component | width:"string" |
2. Component’s Styles
Being a Composite component, the Messages Component allows you to customize the styles of its components using their respective Configuration objects. For a list of all available properties, refer to each component’s styling documentation: MesssageHeader Styles, MessageList Styles, MessageComposer Styles, Details Styles, ThreadMessages Styles. Example In this example, we are creatingMessageListStyle
and MessageComposerStyle
and then applying them to the Messages Component using MessageListConfiguration
and MessageComposerConfiguration
.
Functionality
These are a set of small functional customizations that allow you to fine-tune the overall experience of the component. With these, you can change text, set custom icons, and toggle the visibility of UI elements.Property | Description | Code |
---|---|---|
User | Used to pass user object of which header specific details will be shown | [user]="userObject" |
Group | Used to pass group object of which header specific details will be shown | [group]="groupObject" |
Hide MessageComposer | Used to toggle visibility for CometChatMessageComposer, default false | hideMessageComposer=true |
Hide MessageHeader | Used to toggle visibility for CometChatMessageHeader, default false | hideMessageHeader=true |
Disable Typing | Used to toggle functionality for showing typing indicator and also enable/disable sending message delivery/read receipts | disableTyping=true |
Disable SoundForMessages | Used to toggle sound for messages | disableSoundForMessages=true |
CustomSoundForIncomingMessages | Used to set custom sound asset’s path for incoming messages | customSoundForIncomingMessages="your custom sound for incoming call" |
CustomSoundForOutgoingMessages | Used to set custom sound asset’s path for outgoing messages | customSoundForOutgoingMessages="your custom sound for outgoing call" |
Hide Details | Used to toggle visibility for details icon in CometChatMessageHeader | hideDetails=true |
Advanced
For advanced-level customization, you can set custom views to the component. This lets you tailor each aspect of the component to fit your exact needs and application aesthetics. You can create and define your views, layouts, and UI elements and then incorporate those into the component.MessageHeaderView
You can set your custom message header view using themessageHeaderView
property. But keep in mind, by using this you will override the default message header functionality.
Example
Default


MessageListView
You can set your custom message list view using themessageListView
property. But keep in mind, by using this you will override the default message ListView functionality.
Example
Default


MessageComposerView
You can set your custom Message Composer view using themessageComposerView
property. But keep in mind, by using this you will override the default message composer functionality.
Example
Default


AuxiliaryMenu
You can set a custom header menu option by using theauxiliaryMenu
property.
Example
Default


Configuration
Configurations offer the ability to customize the properties of each individual component within a Composite Component. The Messages Component is a Composite Component and it has a specific set of configuration for each of its components.MessageHeader
If you want to customize the properties of the MessageHeader Component inside Messages Component, you need use theMessageHeaderConfiguration
object.
The MessageHeaderConfiguration
provides access to all the Action, Filters, Styles, Functionality, and Advanced properties of the MessageHeader component.
Please note that the Properties marked with the 🛑 symbol are not accessible within the Configuration Object.Example

MessageHeaderConfiguration
.
MessageList
If you want to customize the properties of the MessageList Component inside Messages Component, you need use theMessageListConfiguration
object.
The MessageListConfiguration
provides access to all the Action, Filters, Styles, Functionality, and Advanced properties of the MessageList component.
Please note that the Properties marked with the 🛑 symbol are not accessible within the Configuration Object.Example

MessageListConfiguration
.
MessageComposer
If you want to customize the properties of the MessageComposer Component inside Messages Component, you need use theMessageComposerConfiguration
object.
The MessageComposerConfiguration
provides access to all the Action, Filters, Styles, Functionality, and Advanced properties of the MessageComposer component.
Please note that the Properties marked with the 🛑 symbol are not accessible within the Configuration Object.Example

MessageComposerConfiguration
.
ThreadedMessages
If you want to customize the properties of the ThreadedMessages Component inside Messages Component, you need use theThreadedMessagesConfiguration
object.
The ThreadedMessagesConfiguration
provides access to all the Action, Filters, Styles, Functionality, and Advanced properties of the ThreadedMessages component.
Please note that the Properties marked with the 🛑 symbol are not accessible within the Configuration Object.Example

MessageListConfiguration
. We then apply these changes to the ThreadedMessages component using ThreadedMessagesConfiguration
.