Skip to main content
Version: v4

Call Log With Details

Overview

The CometChatCallLogsWithDetails is a Composite Component encompassing components such as Call Logs and Call Log Details. Both of these component contributes to the functionality and structure of the overall CallLogsWithDetails component.

Image
ComponentsDescription
Call LogsThe Call Logs component is designed to show the list of Call Log available . By default, names are shown for all listed users, along with their avatar if available.
Call Log DetailsThe Call Log Details component is designed to displays all the information related to a call. This component displays information like user/group information, participants of the call, recordings of the call (if available) & history of all the previous calls.

Usage

Integration

import { CometChatCallLogsWithDetails } from "@cometchat/chat-uikit-react";
import React from "react";

const CallLogsWithDetailsDemo = () => {
return <CometChatCallLogsWithDetails />;
};

export default CallLogsWithDetailsDemo;

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.

While the CallLogsWithDetails component does not have its actions, its components - Call Logs, and Call Log Details - each have their own set of actions.

The Action of the components can be overridden through the use of the Configurations object of its components. Here is an example code snippet.

CallLogsWithDetailsDemo.tsx
import {
CallLogDetailsConfiguration,
CallLogsConfiguration,
CometChatCallLogsWithDetails,
} from "@cometchat/chat-uikit-react";
import React from "react";

const CallLogsWithDetailsDemo = () => {
function getOnInfoClick(item: any): void {
//Your Custom on info click Actions
}

function getOnBackClick(): void {
//Your Custom on back click Actions
}

return (
<CometChatCallLogsWithDetails
callLogsConfiguration={
new CallLogsConfiguration({
onInfoClick: getOnInfoClick,
})
}
callLogDetailsConfiguration={
new CallLogDetailsConfiguration({
onBackClick: getOnBackClick,
})
}
/>
);
};

export default CallLogsWithDetailsDemo;

The CometChatCallLogsWithDetails component overrides several actions from its components to reach its default behavior. The list of actions overridden by GroupsWithMessages includes:

Image

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 ChatSDK.

While the CallLogsWithDetails component does not have filters, its components do, For more detail on individual filters of its component refer to Call Logs and Call Log Details.

By utilizing the Configurations object of its components, you can apply filters.

In the following example, we are applying a filter to the Call Logs by setting the status to show only 'missed' calls and setting the limit to 5 using the callLogRequestBuilder.

CallLogsWithDetailsDemo.tsx
import { CallLogRequestBuilder } from "@cometchat/calls-sdk-javascript";
import {
CallLogsConfiguration,
CometChatCallLogsWithDetails,
} from "@cometchat/chat-uikit-react";
import React from "react";

const CallLogsWithDetailsDemo = () => {
return (
<CometChatCallLogsWithDetails
callLogsConfiguration={
new CallLogsConfiguration({
callLogRequestBuilder: new CallLogRequestBuilder()
.setAuthToken("auth-token")
.setLimit(5)
.setCallStatus("missed"),
})
}
/>
);
};

export default CallLogsWithDetailsDemo;

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 CallLogsWithDetails does not produce any events.


Customization

To fit your app's design requirements, you have the ability to customize the appearance of the CallLogsWithDetails 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. WithDetailsStyle

You can set the withDetailsStyle to the CallLogsWithDetails Component to customize the styling.

Image
CallLogsWithDetailsDemo.tsx
import {
CometChatCallLogsWithDetails,
WithDetailsStyle,
} from "@cometchat/chat-uikit-react";
import React from "react";

const CallLogsWithDetailsDemo = () => {
const withDetailsStyle = new WithDetailsStyle({
background: "#d1cfff",
messageTextColor: "#6b2af7",
border: "1px solid #E0E0E0",
});
return <CometChatCallLogsWithDetails withDetailsStyle={withDetailsStyle} />;
};

export default CallLogsWithDetailsDemo;

You can also customize its component styles. For more details on individual component styles, you can refer Call Logs Styles and Call Log Details Styles.

Styles can be applied to SubComponents using their respective configurations.

Example

CallLogsWithDetailsDemo.tsx
import {
CometChatCallLogsWithDetails,
CallLogDetailsStyle,
CallLogsStyle,
CallLogsConfiguration,
CallLogDetailsConfiguration,
} from "@cometchat/chat-uikit-react";
import React from "react";

const CallLogsWithDetailsDemo = () => {
const callLogsStyle = new CallLogsStyle({
background: "#ece6f5",
titleColor: "#000000",
dateTextColor: "#dac6f5",
});

const callLogDetailsStyle = new CallLogDetailsStyle({
background: "#ece6f5",
titleColor: "#000000",
nameTextColor: "#6b2af7",
});

return (
<CometChatCallLogsWithDetails
callLogsConfiguration={
new CallLogsConfiguration({
callLogsStyle: callLogsStyle,
})
}
callLogDetailsConfiguration={
new CallLogDetailsConfiguration({
callLogDetailsStyle: callLogDetailsStyle,
})
}
/>
);
};

export default CallLogsWithDetailsDemo;

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.

CallLogsWithDetailsDemo.tsx
import { CometChatCallLogsWithDetails } from "@cometchat/chat-uikit-react";
import React from "react";

const CallLogsWithDetailsDemo = () => {
return (
<CometChatCallLogsWithDetails
isMobileView={false}
messageText="Your Custom Message Text"
/>
);
};

export default CallLogsWithDetailsDemo;

Below is a list of customizations along with corresponding code snippets:

PropertyDescriptionCode
isMobileViewA boolean indicating if the component should render in mobile view for optimized display on mobile devices.isMobileView: false
messageTextIt represents the textual content which will be replaced with the Call Log Details component when user clicks on a particular info button call logs.messageText="Your Custom Message Text"

Components

Nearly all functionality customizations available for a Component are also available for the composite component. Using Configuration, you can modify the properties of its components to suit your needs.

You can find the list of all Functionality customization of individual components in Call Logs and Call Log Details Styles.

Example

CallLogsWithDetailsDemo.tsx
import {
CometChatCallLogsWithDetails,
CallLogDetailsConfiguration,
CallLogsConfiguration,
} from "@cometchat/chat-uikit-react";
import React from "react";

const CallLogsWithDetailsDemo = () => {
return (
<CometChatCallLogsWithDetails
callLogsConfiguration={
new CallLogsConfiguration({
hideSeparator: true,
infoIconUrl: "custom info icon",
})
}
callLogDetailsConfiguration={
new CallLogDetailsConfiguration({
backIconUrl: "custom back icon",
})
}
/>
);
};

export default CallLogsWithDetailsDemo;

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 GroupsWithMessages.

Example

CallLogsWithDetailsDemo.tsx
import { CallLog } from "@cometchat/calls-sdk-javascript";
import {
CometChatCallLogsWithDetails,
CallLogDetailsConfiguration,
CallLogsConfiguration,
} from "@cometchat/chat-uikit-react";
import React from "react";

const CallLogsWithDetailsDemo = () => {
const getSubtitleView = (call: CallLog): JSX.Element => {
return (
<div
style={{
display: "flex",
alignItems: "left",
padding: "2px",
fontSize: "10px",
}}
>
<div style={{ color: "gray", fontSize: "15px" }}>
{call.getStatus()}
</div>
</div>
);
};

return (
<CometChatCallLogsWithDetails
callLogsConfiguration={
new CallLogsConfiguration({
subtitleView: getSubtitleView,
})
}
/>
);
};

export default CallLogsWithDetailsDemo;

To find all the details on individual Component advance customization you can refer, Call Logs Advance and Call Log Details Advance.

CallLogsWithDetails uses advanced-level customization of both Call Logs & Call Log Details components to achieve its default behavior.

  1. CallLogsWithDetails utilizes the onInfoClick property of the Call Logs subcomponent to navigate the Call Log Details from Call Logs to Call Log Details.
Image
  1. CallLogsWithDetails utilizes the onBack action of the Call Log Details subcomponent to close the Call Log Details Component
Image
warning

When you override onItemClick and onBack, the default behavior of CallLogsWithDetails will also be overridden.

Configurations

Configurations offer the ability to customize the properties of each component within a Composite Component.

CallLogsWithDetails has Call Logs and Call Log Details component. Hence, each of these components will have its individual Configuration.

  • Configurations expose properties that are available in its individual components.

Call Logs

You can customize the properties of the Groups component by making use of the callLogsConfiguration. You can accomplish this by employing the callLogsConfiguration props as demonstrated below:

 callLogsConfiguration={new CallLogsConfiguration({
//Override the properties of call logs
})}

All exposed properties of CallLogsConfiguration can be found under Call Logs. Properties marked with the report symbol are not accessible within the Configuration Object.

Example

Let's say you want to change the style of the Call Logs subcomponent and, in addition, you only want to hide the separator of the Call Logs.

You can modify the style using the callLogsStyle property and hide the separator using hideSeparator property.

Image
CallLogsWithDetailsDemo.tsx
import {
CometChatCallLogsWithDetails,
CallLogsStyle,
CallLogsConfiguration,
} from "@cometchat/chat-uikit-react";
import React from "react";

const CallLogsWithDetailsDemo = () => {
const callLogsStyle = new CallLogsStyle({
background: "#ece6f5",
titleColor: "#000000",
dateTextColor: "#dac6f5",
});
return (
<CometChatCallLogsWithDetails
callLogsConfiguration={
new CallLogsConfiguration({
hideSeparator: true,
callLogsStyle: callLogsStyle,
})
}
/>
);
};

export default CallLogsWithDetailsDemo;

Call Log Details

You can customize the properties of the Call Log Details component by making use of the callLogDetailsConfiguration. You can accomplish this by employing the callLogDetailsConfiguration props as demonstrated below:

  callLogDetailsConfiguration={new CallLogDetailsConfiguration({
//Override the properties of call log details
})}

All exposed properties of CallLogDetailsConfiguration can be found under Call Log Details. Properties marked with the report symbol are not accessible within the Configuration Object.

Example

Let's say you want to change the style of the Call Log Details subcomponent and, in addition, you only want to change the Back Icon.

You can modify the style using the callLogDetailsStyle property and change the back icon using `` property.

Image
CallLogsWithDetailsDemo.tsx
import {
CometChatCallLogsWithDetails,
CallLogDetailsConfiguration,
CallLogDetailsStyle,
} from "@cometchat/chat-uikit-react";
import React from "react";

const CallLogsWithDetailsDemo = () => {
const callLogDetailsStyle = new CallLogDetailsStyle({
background: "#ece6f5",
titleColor: "#000000",
nameTextColor: "#6b2af7",
});

return (
<CometChatCallLogsWithDetails
callLogDetailsConfiguration={
new CallLogDetailsConfiguration({
callLogDetailsStyle: callLogDetailsStyle,
backIconUrl: "custom back icon",
})
}
/>
);
};

export default CallLogsWithDetailsDemo;