1.3.9 • Published 2 years ago

zd-callkit v1.3.9

Weekly downloads
-
License
MIT
Repository
-
Last release
2 years ago

chat-callkit is an open-source audio and video UI library developed based on Agora's real-time communications and signaling services. With this library, you can implement audio and video calling functionalities with enhanced synchronization between multiple devices. In scenarios where a user ID is logged in to multiple devices, once the user deals with an incoming call that is ringing on one device, all the other devices stop ringing simultaneously.

This page describes how to implement real-time audio and video communications using the chat-callkit.

其他语言版本: 简体中文

Understand the tech

The basic process for implementing real-time audio and video communications with chat-callkit is as follows:

  1. Initialize chat-callkit by calling init.
  2. Call startCall on the caller's client to send a call invitation for one-to-one or group calls.
  3. On the callee's client, accept or decline the call invitation after receiving onInvite. Once a user accepts the invitation, they enter the call.
  4. When the call ends, the SDK triggers the onStateChange callback.

Prerequisites

Before proceeding, ensure that your development environment has the following:

Project setup

Take the following steps to download and import chat-callkit into your project

  1. In your terminal, run the following command to install the call kit:

    npm install chat-callkit
  2. Add the following line to import the callkit:

    import Callkit from 'chat-callkit';

Implement audio and video calling

This section introduces the core steps for implementing audio and video calls in your project.

Initialize chat-callkit

Call init to initialize the chat-callkit.

/**
 * Initialize chat-callkit
 *
 * @param appId       The Agora App ID.
 * @param agoraUid    The Agora user ID (UID).
 * @param connection  The Agora Chat SDK Connection instance.
 */
CallKit.init(appId, agoraUid, connection);

Send a call invitation

From the caller's client, call startCall to send a call invitation for a one-to-one call or group call. You need to specify the call type when calling the method.

  • One-to-one call

    In a one-to-one call, the caller sends a text message to the callee as the call invitation.

    let options = {
    	/** The call type:
    	 * 0: One-to-one audio call
    	 * 1: One-to-one video call
    	 * 2: Group video call
    	 * 3: Group audio call
    	 */
    	callType: 0,
    	chatType: 'singleChat',
    	/** The Agora Chat user ID. */
    	to: 'userId',
    	/** The invitation message. */
    	message: 'Join me on the call',
    	/** The channel name for the call. */
    	channel: 'channel',
    	/** The Agora RTC token. */
    	accessToken: 'Agora token',
    };
    CallKit.startCall(options);
  • Group call

    In a group call, the caller sends a text message to the chat group or chat room, while sending a CMD message to the users for joining the call.

    let options = {
    	/** The call type:
    	 * 0: One-to-one audio call
    	 * 1: One-to-one video call
    	 * 2: Group video call
    	 * 3: Group audio call
    	 */
    	callType: 2,
    	chatType: 'groupChat',
    	/** The Agora Chat user ID. */
    	to: ['userId'],
    	/** The invitation message. */
    	message: 'Join me on the call',
    	/** The group ID. */
    	groupId: 'groupId',
    	/** The group name. */
    	groupName: 'group name',
    	/** The Agora RTC token. */
    	accessToken: 'Agora token',
    	/** The channel name for the call. */
    	channel: 'channel',
    };
    CallKit.startCall(options);

The following screenshot gives an example of the user interface after sending a call invitation for one-to-one video call:

npm.io

Receive the invitation

Once a call invitaion is sent, if the callee is online and available for a call, the callee receives the invitation in the onInvite callback. You can pop out a user interface that allows the callee to accept or decline the invitation in this callback.

/**
 * Handles the call invitation.
 *
 * @param result Whether to pop out the user interface for answering the call.
 *               - true: Yes.
 *               - false: No. In this situation, you do not need to pass the RTC token.
 * @param accessToken The Agora RTC token.
 */
CallKit.answerCall(result, accessToken);

The following screenshot gives an example of the user interface after receiving a call invitation for one-to-one video call:

npm.io

Send a call invitation during a group call

In call sessions with multiple users, these users can also send call invitations to other users. After sending the invitation, the SDK triggers the onAddPerson callback on the sender's client. In this callback, you can ask the senders to specify the user they want to invite to the group call and then call startCall to send out the invitation.

Listen for callback events

During the call, you can also listen for the following callback events:

function Call() {
	// Handles call state changes.
	const handleCallStateChange = (info) => {
		switch (info.type) {
			case 'hangup':
				// The call is hung up.
				break;
			case 'accept':
				// The callee accepts the call invitation.
				break;
			case 'refuse':
				// The callee refuses the call invitation.
				break;
			case 'user-published':
				// A remote user publishes media streams during the call.
				break;
			case 'user-unpublished':
				// A remote user stops publishing media streams during the call.
				break;
			case 'user-left':
				// A remote user leaves the call.
				break;
			default:
				break;
		}
	};
	return <Callkit onStateChange={handleCallStateChange} />;
}

End the call

A one-to-one call ends as soon as one of the two users hangs up, while a group call ends only after the local user hangs up. If the local user hangs up the call, the SDK triggers onStateChange with the info.type of hangup. If the remote user hangs up the call, the SDK triggers onStateChange with the info.type of user-left.

Next steps

This section contains extra steps you can take for the audio and video call functionalities in your project.

Authenticate users with the RTC token

To enhance communication security, Agora recommends that you authenticate app users with the RTC token before they join a call. To do this, you need to make sure that the Primary Certificate of your project is enabled.

Tokens are generated on your app server using the token generator provided by Agora. After you retrieve the token, pass the token to the callkit when calling startCall and answerCall. For how to generate a token on the server and retrieve and renew the token on the client, see Authenticate Your Users with Tokens.

Reference

This section provides other reference information that you can refer to when implementing real-time audio and video communications functionalities.

API list

chat-callkit provides the following APIs:

Methods:

MethodDescription
initWithConfig:delegateInitializes chat-callkit.
startCallStarts a call.
answerCallAnswers the call.
setUserIdMapSets the mapping between Agora Chat user ID and Agora user ID (UID). The format is {[uid1]: 'custom name', [uid2]: 'custom name'}.

Callbacks:

EventDescription
onAddPersonOccurs when the user invites another user to the call.
onInviteOccurs when the call invitation is received.
onStateChangeOccurs when the call state changes.

Attributes

AttributeDescription
contactAvatarThe avatar displayed during one-to-one calls.
groupAvatarThe avatar displayed during group calls.
ringingSourceThe ringing file.

Sample project

Agora provides an open-source chat-callkit sample project on GitHub. You can download the sample to try it out or view the source code.

The sample project uses the Agora Chat user ID to join a channel, which enables displaying the user ID in the view of the call. If you use the methods of the Agora RTC SDK to start a call, you can also use the Integer UID to join a channel.

1.1.1

2 years ago

1.3.7

2 years ago

1.3.6

2 years ago

1.3.5

2 years ago

1.3.4

2 years ago

1.3.3

2 years ago

1.3.2

2 years ago

1.3.1

2 years ago

1.1.3

2 years ago

1.3.0

2 years ago

1.1.2

2 years ago

1.3.9

2 years ago

1.3.8

2 years ago

1.1.0

2 years ago

1.0.9

2 years ago

1.0.8

2 years ago

1.0.7

2 years ago

1.0.6

2 years ago

1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago