Users with Messages
Overview
CometChatUsersWithMessages
is a Composite Component that seamlessly merges the functionalities of both the Users
and Messages modules. It empowers users to effortlessly navigate to any individual's chat window by simply clicking on their respective list item in the user list.
Additionally, CometChatUsersWithMessages
inherits and encompasses all attributes available within the CometChatUsers
module, ensuring a comprehensive user experience.
Components | Description |
---|---|
Users | Users serves as a standalone component designed to establish a screen displaying a list of users , providing them with the capability to search for specific individuals. This component operates as a container, inheriting from CometChatListBase , and serves as a wrapper for the CometChatUserList component. |
Messages | Messages presents the chat interface for both individual users and group entities. It exhibits a message list containing all interactions where the loggedInUser has sent or received messages from any of these entities. |
Usage
Integration
Since CometChatUsersWithMessages
is a view controller, it can be launched either by a button click or through any event's trigger. It inherits all the customizable properties and methods of CometChatUsers.
View Controller: To use CometChatUsersWithMessages in your view controller
, use the following code snippet.
let cometChatUsersWithMessages = CometChatUsersWithMessages()
let naviVC = UINavigationController(rootViewController: cometChatUsersWithMessages)
self.present(naviVC, animated: true)
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.
1. SetOnItemClick
The setOnItemClick
method is used to override the onClick behavior in CometChatUsersWithMessages.
By default, this action has a predefined behavior which navigates to the messages. However, you have the flexibility to override this event and tailor it to suit your needs using the following code snippet.
- Swift
let cometChatUsersWithMessages = CometChatUsersWithMessages()
.setOnItemClick { user, indexPath in
//Perform Your Actions
}
2. SetOnItemLongClick
This method setOnItemLongClick
, empowers users to customize long-click actions within CometChatUsersWithMessages, offering enhanced functionality and interaction possibilities.
- Swift
let cometChatUsersWithMessages = CometChatUsersWithMessages()
.setOnItemLongClick { user, indexPath in
//Perform Your Actions
}
3. SetOnBack
This method allows users to override the onBack Pressed behavior in CometChatUsersWithMessages by utilizing the setOnBack
, providing customization options for handling the back action.
By default, this action has a predefined behavior: it simply dismisses the current view controller. However, the flexibility of CometChat UI Kit allows you to override this standard behavior according to your application's specific requirements. You can define a custom action that will be performed instead when the back button is pressed.
- Swift
let cometChatUsersWithMessages = CometChatUsersWithMessages()
.setOnBack {
//Perform Your Actions
}
4. onError
This method setOnError
, allows users to override error handling within CometChatUsersWithMessages, providing greater control over error responses and actions.
- Swift
let cometChatUsersWithMessages = CometChatUsersWithMessages()
.setOnError { error in
//Perform Your Action
}
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.
While the UsersWithMessages component does not have filters, its components do, For more detail on individual filters of its component refer to Users Filters Messages Filters
By utilizing the Configurations object of its components, you can apply filters.
In the following example, we're sorting Users
by UID's
and setting the limit
to 10 using the usersRequestBuilder
.
- Swift
let usersRequestBuilder = UsersRequest.UsersRequestBuilder(limit: 20).set(UIDs: ["emma-uid"])
let cometChatUsersWithMessages = CometChatUsersWithMessages(usersRequestBuilder: usersRequestBuilder)
let naviVC = UINavigationController(rootViewController: cometChatUsersWithMessages)
self.present(naviVC, animated: true)
make sure to import CometChatSDK
Events
Events are emitted by a 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 UsersWithMessages
does not produce any events but its component does.
Customization
To fit your app's design requirements, you have the ability to customize the appearance of the UsersWithMessages 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. UsersWithMessages Style
You can set the UsersWithMessagesStyle
to the UsersWithMessages
Component to customize the styling.
Example
- Swift
let usersWithMessagesStyle = UsersWithMessagesStyle()
.set(messageTextColor: .red)
.set(messageTextFont: .italicSystemFont(ofSize: 6))
.set(background: .yellow)
.set(borderColor: .green)
let usersWithMessagesConfiguration = UsersWithMessagesConfiguration()
.set(style: usersWithMessagesStyle)
let cometChatUsersWithMessages = CometChatUsersWithMessages()
You can also customize its component styles. For more details on individual component styles, you can refer Users Styles and Messages Styles.
Styles can be applied to SubComponents using their respective configurations.
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.
UsersWithMessages component does not have any available functionality.
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 own views, layouts, and UI elements and then incorporate those into the component.
By utilizing the Configuration object of each component, you can apply advanced-level customizations to the UsersWithMessages
.
Example
// Create an object of UsersConfiguration
let usersConfiguration = UsersConfiguration()
//pass your custom error view
usersConfiguration.set(errorView: UIView)
Usage
Utilize the provided code snippet to instantiate a CometChatUsersWithMessages
component and configure it with a UsersConfiguration
object. This ensures seamless integration and optimal functionality within your application.
let cometChatUsersWithMessages = CometChatUsersWithMessages()
.set(usersConfiguration: usersConfiguration)
To find all the details on individual Component advance customization you can refer, Users Advance and Messages Advance.
UsersWithMessages uses advanced-level customization of both Users & Messages components to achieve its default behavior.
- UsersWithMessages utilizes the SetMenu function of the
Users
subcomponent to navigate the User to Messages
- UsersWithMessages utilizes the SetMenu function of the
Messages
subcomponent to navigatefrom Messages to Details.
When you override .setMenu()
, the default behavior of UsersWithMessages will also be overridden.
Configurations
Configurations offer the ability to customize the properties of each component within a Composite Component.
UsersWithMessages has Users
and Messages
component. Hence, each of these components will have its individual `Configuration``.
Configurations
expose properties that are available in its individual components.
Users
You can customize the properties of the Users component by making use of the UsersConfiguration. You can accomplish this by employing the .set(usersConfiguration: usersConfiguration)
method as demonstrated below:
- Swift
let usersConfiguration = UsersConfiguration()
Usage
The UsersConfiguration is utilized within a widget housing CometChatUsersWithMessages
as a child component. To configure CometChatUsersWithMessages, simply provide the usersConfiguration object using the .set(usersConfiguration:)
method. This facilitates seamless customization and integration of user-specific settings within the CometChatUsersWithMessages
component.
let cometChatUsersWithMessages = CometChatUsersWithMessages()
.set(usersConfiguration: usersConfiguration)
All exposed properties of UsersConfiguration
can be found under Users. Properties marked with the symbol are not accessible within the Configuration Object.
Example
Let's say you want to change the style of the Users subcomponent and, in addition, you only want to display users with offline status.
You can modify the style using the UsersStyle
method and filter the list with the UsersRequestBuilder
method.
- Swift
let usersStyle = UsersStyle()
.set(background: .lightGray.withAlphaComponent(0.8))
let listItemStyle = ListItemStyle()
.set(background: .lightGray.withAlphaComponent(0.4))
let usersRequestBuilder = UsersRequest.UsersRequestBuilder(limit: 5).set(status: .offline)
let cometChatUsersWithMessages = CometChatUsersWithMessages(usersRequestBuilder: usersRequestBuilder)
.set(listItemStyle: listItemStyle)
cometChatUsersWithMessages.set(usersStyle: usersStyle)
let naviVC = UINavigationController(rootViewController: cometChatUsersWithMessages)
self.present(naviVC, animated: true)
make sure to import CometChatSDK
Messages
You can customize the properties of the Messages component by making use of the messagesConfiguration
. You can accomplish this by employing the messagesConfiguration
as demonstrated below:
- Swift
let messagesConfiguration = MessagesConfiguration()
All exposed properties of MessagesConfiguration
can be found under Messages. Properties marked with the symbol are not accessible within the Configuration Object.
Example
Let's say you want to change the style of the Messages subcomponent and, in addition, you want to hide message composer.
You can modify the style using the messagesStyle
method and hide using hide(messageComposer: bool)
method.
- Swift
let cometChatCornerStyle = CometChatCornerStyle.init(cornerRadius: 15)
let messagesStyle = MessagesStyle()
.set(cornerRadius: cometChatCornerStyle)
.set(borderColor: .systemPurple)
.set(borderWidth: 2)
let messagesConfiguration = MessagesConfiguration()
.set(messagesStyle: messagesStyle)
.hide(messageComposer: true)
let cometChatUsersWithMessages = CometChatUsersWithMessages()
.hide(search: true)
.set(messagesConfiguration: messagesConfiguration)