Components | Description |
---|---|
CometChatList | a reusable container component having title, search box, customisable background and a List View |
CometChatListItem | a component that renders data obtained from a User object on a Tile having a title, subtitle, leading and trailing view |
onSelect
action is activated when you select the done icon while in selection mode. This returns a list of all the users that you have selected.
This action does not come with any predefined behavior. However, you have the flexibility to override this event and tailor it to suit your needs using the following code snippet.
OnItemClick
event is activated when you click on the UserList item. This action does not come with any predefined behavior. However, you have the flexibility to override this event and tailor it to suit your needs using the following code snippet.
Methods | Type | Description |
---|---|---|
setLimit | number | sets the number users that can be fetched in a single request, suitable for pagination |
setSearchKeyword | String | used for fetching users matching the passed string |
hideBlockedUsers | boolean | used for fetching all those users who are not blocked by the logged in user |
friendsOnly | boolean | used for fetching only those users in which logged in user is a member |
setRoles | List<String> | used for fetching users containing the passed tags |
setTags | List<String> | used for fetching users containing the passed tags |
withTags | boolean | used for fetching users containing tags |
setStatus | String | used for fetching users by their status online or offline |
setUIDs | List<String> | used for fetching users containing the passed users |
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.
To handle events supported by Users you have to add corresponding listeners by using CometChatUserEvents
The Users
component does not produce any events directly.
UsersStyle
to the Users Component to customize the styling.
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; |
titleTextFont | Used to customise the font of the title in the app bar | titleTextFont?: string; |
titleTextColor | Used to customise the color of the title in the app bar | titleTextColor?: string; |
emptyStateTextFont | Used to set the font style of the response text shown when fetchig the list of users has returned an empty list | emptyStateTextFont?: string; |
emptyStateTextColor | Used to set the color of the response text shown when fetchig the list of users has returned an empty list | emptyStateTextColor?: string; |
errorStateTextFont | Used to set the font style of the response text shown in case some error occurs while fetching the list of users | errorStateTextFont?: string; |
errorStateTextColor | Used to set the font style of the response text shown in case some error occurs while fetching the list of users | errorStateTextColor?: string; |
loadingIconTint | Used to set the color of the icon shown while the list of users is being fetched | loadingIconTint?: string; |
onlineStatusColor | Used to set the color of the status indicator shown if a user is online | onlineStatusColor?: string; |
separatorColor | Used to set the color of the divider separating the group member items | separatorColor?: string; |
boxShadow | Sets shadow effects around the element | boxShadow?: string; |
searchIconTint | Used to set the color of the search icon in the search box | searchIconTint?: string; |
searchBorder | Used to set the border of the search box | searchBorder?: string; |
searchBorderRadius | Used to set the border radius of the search box | searchBorderRadius?: string; |
searchBackground | Used to set the background color of the search box | searchBackground?: string; |
searchPlaceholderTextFont | Used to set the font of the placeholder text in the search box | searchPlaceholderTextFont?: string; |
searchPlaceholderTextColor | Used to set the color of the placeholder text in the search box | searchPlaceholderTextColor?: string; |
searchTextFont | Used to set the font of the text in the search box | searchTextFont?: string; |
searchTextColor | Used to set the color of the text in the search box | searchTextColor?: string; |
sectionHeaderTextFont | Used to customise the font of the section header text. | sectionHeaderTextFont?: string; |
sectionHeaderTextColor | Used to customise the color of the section header text. | sectionHeaderTextColor?: string; |
Avatar
component in the Users Component, you can use the following code snippet. For further insights on Avatar
Styles refer
ListItemStyle
component in the Users
Component, you can use the following code snippet. For further insights on ListItemStyle
Styles refer
Property | Description | Code |
---|---|---|
title report | Used to set title in the app bar | title="Your Custom Title" |
searchPlaceholderText report | Used to set search placeholder text | searchPlaceholderText="Your Custom search placeholder text" |
searchIconURL | Used to set search Icon in the search field | searchIconURL="Your Custom search icon" |
loadingIconURL | Used to set loading Icon | loadingIconURL="your custom loading icon url" |
closeButtonIconURL report | Used to set the close button Icon | closeButtonIconURL="your custom close button icon" |
hideSearch | Used to toggle visibility for search box | hideSearch={true}" |
hideError | Used to hide error on fetching users | hideError={true} |
hideSeparator | Used to hide the divider separating the user items | hideSeparator={true} |
disableUsersPresence | Used to control visibility of user indicator shown if user is online | disableUsersPresence={true} |
disableLoadingState report | Used to control visibility of loading state | disableLoadingState={true} |
emptyStateText report | Used to set a custom text response when fetching the users has returned an empty list | emptyStateText="your custom empty state text" |
errorStateText report | Used to set a custom text response when some error occurs on fetching the list of users | errorStateText="your custom error state text" |
activeUser report | Used to set the active user | activeUser={chatUser} |
userPresencePlacement report | The userPresencePlacement property determines the placement of user presence indicators, allowing options for either “right” or “bottom” positioning. | userPresencePlacement={UserPresencePlacement.right} |
searchKeyword report | The searchKeyword property facilitates searching/filtering based on the provided keyword, enhancing the functionality of the component. | searchKeyword="Alice" |
loadingStateView
to match the loading view of your app.
EmptyStateView
using emptyStateView
to match the empty view of your app.
ErrorStateView
using errorStateView
to match the empty view of your app.