Incoming call
is a Component that serves as a visual representation when the user receives an incoming call, such as a voice call or video call, providing options to answer or decline the call.
Incoming Call
is comprised of the following base components:
Components | Description |
---|---|
cometchat-list-item | This component’s view consists of avatar, status indicator , title, and subtitle. The fields are then mapped with the SDK’s user, group class. |
cometchat-avatar | This component component displays an image or user’s avatar with fallback to the first two letters of the username |
onAccept
is triggered when you click the accept button of the Incoming Call
component. You can override this action using the following code snippet.
onDecline
is triggered when you click the Decline button of the Incoming Call
component. This action does not have a predefined behavior. You can override this action using the following code snippet.
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 Incoming Call
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 list of events emitted by the Incoming Call component is as follows.
Event | Description |
---|---|
ccCallRejected | This event is triggered when the initiated call is rejected by the receiver. |
ccCallAccepted | This event is triggered when the initiated call is accepted by the receiver. |
ccCallEnded | This event is triggered when the initiated call successfully ends. |
ccCallFailled | This event is triggered when an error occurs during the intiated call. |
IncomingCallStyle
object to the Incoming Call
component.
In this example, we are employing the IncomingCallStyle
.
Property | Description | Code |
---|---|---|
border | Used to set border | border?: BorderStyleInterface, |
borderRadius | Used to set border radius | borderRadius?: number; |
backgroundColor | Used to set background colour | background?: string; |
height | Used to set height | height?: number | string; |
width | Used to set width | width?: number | string; |
titleFont | Used to customise the font of the title in the app bar | titleFont?: FontStyleInterface; |
titleColor | Used to customise the color of the title in the app bar | titleColor?: string; |
subtitleColor | Used to set the color for group item subtitle | subtitleColor?: string; |
subtitleFont | Used to set the font style for group item subtitle | subtitle Font?: FontStyleInterface; |
onlineStatusColor | Used to set online status color | onlineStatusColor?: string; |
acceptButtonTextColor | Used to set accept button text color | acceptButtonTextColor?: string; |
acceptButtonTextFont | Used to set accept button text font | acceptButtonTextFont?: FontStyleInterface; |
acceptButtonBackgroundColor | Used to set accept button background color | acceptButtonBackgroundColor?: string; |
acceptButtonBorder | Used to set accept button border | acceptButtonBorder?: BorderStyleInterface; |
declineButtonTextColor | Used to set decline button text color | declineButtonTextColor?: string; |
declineButtonTextFont | Used to set decline button text font | declineButtonTextFont?: FontStyleInterface; |
declineButtonBackgroundColor | Used to set decline button background color | declineButtonBackgroundColor?: string; |
declineButtonBorder | Used to set decline button border | declineButtonBorder?: BorderStyleInterface; |
Avatar
component within the Incoming Call
Component, you can use the following code snippet. For more information you can refer Avatar Styles.
OngoingCallScreen
component within the Incoming Call
Component.
Incoming Call
component.
Property | Description | Code |
---|---|---|
title | Used to set title | title?: string |
acceptButtonText | Used to set custom accept button text | acceptButtonText?: string |
declineButtonText | Used to set custom decline button text | declineButtonText?: string |
customSoundForCalls | Used to set custom sound for incoming calls | customSoundForCalls?: string |
disableSoundForCalls | Used to disable/enable the sound of incoming calls, by default it is set to false | disableSoundForCalls?: string |
call | CometChat call object consumed by the component to launch itself | disableSoundForMessages={true} |
SubtitleView
property, you can modify the SubtitleView to meet your specific needs.