CometChatRecordings
is a Component that shows a paginated list of recordings of a particular call. This allows the user to see all the recordings along with the duration as well as a download link using which one can download the recording.
CallRecordings
is comprised of the following components:
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 Group object on a Tile having a title, subtitle, leading and trailing view |
cometchat-date | This Component used to show the date and time. You can also customize the appearance of this widget by modifying its logic. |
cometchat-button | This component represents a button with optional icon and text. |
onItemPress
is triggered when you click on a ListItem of the of the CallRecordings
component. It does not have a default behavior. However, you can override its behavior using the following code snippet.
onBack
function is built to respond when you press the back button in the AppBar. The back button is only displayed when the prop showBackButton
is set to true.
onDownloadIconPress
is triggered when you click on the download of the of the CallRecordings
component. you can override its behavior using the following code snippet.
CallRecordings
component.
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 CallRecordings
component does not have any exposed filters.
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 CallRecordings
does not produce any events.
CallLogRecordings
component. We provide exposed methods that allow you to modify the experience and behavior according to your specific needs.
ListItemStyle
component within the CallRecordings
Component, you can use the following code snippet. For more information, you can refer ListItem Styles.
CallRecordings
component.
Property | Description | Code |
---|---|---|
title | Used to set custom title | title='Your Custom Title' |
downloadIcon | Used to set custom download icon | downloadIcon?: ImageType |
datePattern | Used to set custom date pattern | datePattern={DatePatterns.DayDateTime} |
data | Used to set the list oif Recordings | data: Recording[]; |
showBackButton | Used to control the visibility of the back button | showBackButton?: boolean |
BackButton | Used to set custom Back Button | BackButton?: JSX.Element |
hideDownloadButton | Used to control the visibility of the download button in the user interface. | hideDownloadButton={true} |
CallRecordings
Component.