npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

react-native-agora-chat-callkit

v1.0.0

Published

test

Downloads

9

Readme

react-native-chat-callkit

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

Environment Requirements

  • react-native: 0.63.0 or later
  • nodejs: 16.18.0 or later

download link

git clone [email protected]:AgoraIO-Usecase/AgoraChat-UIKit-rn.git

Initialization

In the terminal, change to the project root directory.

cd react-native-chat-library
yarn && yarn run generate-source-env

Introduction

The Agora Chat CallKit SDK is designed on the basis of the Agora Chat SDK. The two SDKS work together to implement one-to-one audio and video calls and group calls.

The Agora Chat CallKit SDK mainly provides a call manager, a call listener, and call views to implement calls.

| function | description | | ------------ | -------------------------------------------------------------------------------------------------------------------------------------- | | CallManager | A manager that provides functions such as adding and removing listeners. | | CallListener | Listener for receiving notifications such as invitations. | | SingleCall | A one-to-one call page for audio and video call operations such as inviting a user, answering the call, and hanging up the call. | | MultiCall | A group call page for audio and video call operations operations such as inviting a user, answering the call, and hanging up the call. |

Manager

The CallManager manager is mainly for call management by providing the following APIs:

  • addListener: adds a listener.
  • removeListener: removes a listener.

Listener

The CallListener listener receives call invitations by providing the following callbacks:

  • onCallReceived: Occurs when a call invitation is received.
  • onCallOccurError: Occurs when an error is reported.

Call pages

SingleCall provides one-to-one audio and video page components. MultiCall provides group audio and video page components. These two components have common functions, so there is also the basic audio and video component BasicCall.

Common properties provided by the two components are as follows:

| Property | Type | Description | | :------------------ | :------ | :-------------------------------------------------------------------------------- | | inviterId | String | The user ID of the inviter. | | inviterName | String | The nickname of the inviter. | | inviterAvatar | String | The avatar URL of the inviter. | | currentId | String | The current user ID. | | currentName | String | The nickname of the current user. | | currentAvatar | String | The avatar URL of the current user. | | timeout | Number | The timeout time. If the timeout period expires, the call hangs up automatically. | | bottomButtonType | String | Initial Button group style. | | muteVideo | Boolean | Whether to disable video. | | callType | String | The call type, i.e., audio call or video call. | | callState | String | The call state. | | isMinimize | Boolean | Whether the call page is the minimized state. | | isTest | Boolean | Whether to enable the test mode. It is disabled by default. |

Common events provided by the two components are as follows:

| Event | Description | | :-------------- | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | onHangUp | Occurs when a user hangs up a call. When a user hangs up a call, the local user receives the onHangUp event and the onClose event. | | onCancel | Occurs when the call is cancelled. Only the caller receives the event. | | onRefuse | Occurs when the call is rejected by the callee when a call invitation is received. The callee(s) receive this event. | | onClose | Occurs when a user hangs up a call. In one-to-one call, both users in the call receive this event. In a group call, the user that hangs up the call receives the event. This events also shows the call duration. In this event, you can close the call page to release resources. | | onError | Occurs when a call error is reported. | | onInitialized | Occurs when the page initialization is complete. | | onSelfJoined | Occurs when a user joins a call. The user that successfully joins the call receives the event. |

Besides the common properties and events, SingleCall provides the following property and event:

  • inviteeId: The user ID of the invitee. The property value is of the string type.
  • inviteeName: The user name of the invitee. The property value is of the string type.
  • inviteeAvatar: The user avatar url of the invitee. The property value is of the string type.
  • onPeerJoined: Occurs when the invitee joins the call. The caller receives this event.

Besides the common properties and events, MultiCall provides the following properties:

  • inviteeIds: The list of user IDs of the invitees when a group call is started. The property value is of the array type.
  • inviteeList: The list of user IDs of the invitees during an ongoing group call. The property value is of the array type.
  • invitees: Information about the invitees. Include name and avatar.
  • groupAvatar: The avatar of the multi call. Use group avatars when calls are minimized.

For group audio and video calls, the Agora Chat CallKit SDK supports up to 18 video channels and 128 audio channels.

Example Demo

Reference

Contributing

See the contributing guide to learn how to contribute to the repository and the development workflow.

License

MIT