1.7.1 • Published 2 years ago

react-native-chatkitty v1.7.1

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

ChatKitty React Native

Build text chat and video/audio calls into your React Native application in minutes.

For more information about ChatKitty on React Native, please see our documentation site.

Summary

Demo

A demo of react-native-chatkitty is available in the example subdirectory of this repository.

To run it, clone this repo and from its root directory, enter the example directory:

cd example

Start the React Native Metro Bundler:

yarn start

For Android devices then run:

yarn android

And for iOS:

yarn ios

Installing the ChatKitty React Native SDK

To use the ChatKitty React Native Calls SDK, you'll need to add the ChatKitty React Native SDK NPM package to your React Native project. You'll also need the react-native-webrtc package installed to access the WebRTC APIs:

yarn add react-native-chatkitty react-native-webrtc

Initializing the ChatKitty React Native SDK with your API key

With your API key from the ChatKitty dashboard, you can initialize a new instance of the ChatKitty client:

import ChatKitty from 'react-native-chatkitty';

const kitty = ChatKitty.getInstance('YOUR CHATKITTY API KEY HERE');

Starting a guest user session

You must create a user session before a user can begin chatting with other users using ChatKitty. A user session represents a secure bi-directional connection with ChatKitty servers allowing users to send and receive messages in real-time.

Before you learn about authenticating users with ChatKitty, you can create a guest user session. You can start a user session by passing a unique username to your ChatKitty client startSession() method. A username is a string that uniquely identifies a user within your application.

import {
  failed,
  succeeded,
} from 'react-native-chatkitty';

const result = await kitty.startSession({
  username: 'jane@chatkitty.com',
});

if (succeeded(result)) {
  const session = result.session; // Handle session
}

if (failed(result)) {
  const error = result.error; // Handle error
}

Initializing the Camera and Audio

Before you can begin a call, you'll need to initialize your device's camera in the ChatKitty.Calls context object.

await kitty.Calls.initialize({
  media: { audio: true, video: true },
});

After calling initialize(...), the ChatKitty.Calls object creates a WebRTC MediaSteam for your device's camera and is ready to start and answer calls.

Retrieving the local Media Stream

kitty.Calls.localStream exposes the React Native WebRTC MediaStream capturing video/audio from your device.

import React from 'react';
import { MediaStream, RTCView } from 'react-native-webrtc';

const Snippet = () => {
  const localStream: MediaStream | null = kitty.Calls.localStream;

  return (
    localStream && (
      <RTCView objectFit="cover" streamURL={localStream.toURL()} zOrder={1} />
    )
  );
};

Displaying Media Streams

To display a MediaStream (local or remote), use the React Native WebRTC RTCView component.

 <RTCView
  style={styles.myStream}
  objectFit="cover"
  streamURL={stream.toURL()}
  zOrder={1}
/>;

Retrieving online users

You can fetch a list of other users that are online.

import {
  succeeded,
  User,
} from 'react-native-chatkitty';

const result = await kitty.getUsers({ filter: { online: true } });

if (succeeded(result)) {
  const users: User[] = result.paginator.items;
}

Observing user online/presence changes

You can listen to changes to user presence changes across your application - when users come online or go offline.

import { User, UserPresence } from 'react-native-chatkitty';

kitty.onUserPresenceChanged(async (user: User) => {
  const presence: UserPresence = user.presence;

  // Update online users list
});

Observing call events

You can observe events related to calls by registering event listeners on the ChatKitty.Calls object.

On call invite

Called when another user invites the current user to a call.

import { Call } from 'react-native-chatkitty';

kitty.Calls.onCallInvite((call: Call) => {
  // Inform the current user about the call then accept or reject the call
});

On call active

Called when the current user starts a call or accepts an incoming call and their is device ready.

import { Call } from 'react-native-chatkitty';

kitty.Calls.onCallActive((call: Call) => {
  // Update in-call state and navigate to in-call UI
});

On participant accepted call

Called when another user accepts the call the current user is currently active in.

import { User } from 'react-native-chatkitty';

kitty.Calls.onParticipantAcceptedCall((participant: User) => {
  // Update in-call state and UI
});

On participant declined call

Called when another user rejects the call the current user is currently active in.

import { User } from 'react-native-chatkitty';

kitty.Calls.onParticipantDeclinedCall((participant: User) => {
  // Update in-call state and UI
});

On participant active

Called when another user's device is ready to send their video/audio stream and interact with the call.

import { User } from 'react-native-chatkitty';
import { MediaStream } from 'react-native-webrtc';

kitty.Calls.onParticipantActive((participant: User, stream: MediaStream) => {
  // Update in-call state and UI
});

On participant left call

Called when another user leaves the call.

import { User } from 'react-native-chatkitty';
import { MediaStream } from 'react-native-webrtc';

kitty.Calls.onParticipantLeftCall((participant: User) => {
  // Update in-call state and UI
});

On call ended

Called when this call has ended.

import { Call } from 'react-native-chatkitty';

kitty.Calls.onCallEnded((call: Call) => {
  // Update state and exit in-call UI
});

Starting a call

Start a direct call with another user.

await kitty.Calls.startCall({ members: [{ username: 'john@chatkitty.com' }] });

Accepting a call

Accept a call invite.

await kitty.Calls.acceptCall({ call });

Rejecting a call

Decline a call invite.

await kitty.Calls.declineCall({ call });

Leaving an active call

Leave the currently active call. Ends a one-to-one direct call.

kitty.Calls.leaveCall();

Switching camera

Switches the current user's camera if their device has multiple cameras (front and back).

kitty.Calls.switchCamera();

Toggling mute

Mutes/unmutes the current user's audio stream

kitty.Calls.toggleMute();

Retrieving active call mute state

Retrieve the active call's mute state using ChatKitty.Calls.isMuted.

const muted: boolean = kitty.Calls.isMuted;

Retrieving calls

Retrieve past calls.

import {
  Call,
  succeeded,
} from 'react-native-chatkitty';

const result = await kitty.Calls.getCalls({
  channel,
  filter: { active: false },
});

if (succeeded(result)) {
  const calls: Call[] = result.paginator.items;
}

Retrieving a call

Retrieving current call

Retrieve the current call if the current user has started or accepted the call using ChatKitty.Calls.currentCall

import { Call } from 'react-native-chatkitty';

const call: Call | null = kitty.Calls.currentCall;

Retrieving a call by ID

Retrieve a call with its ID.

import {
  Call,
  succeeded,
} from 'react-native-chatkitty';

const result = await kitty.Calls.getCall(id);

if (succeeded(result)) {
  const call: Call = result.call;
}

Closing the React Native Calls SDK context

Close the ChatKitty React Native Calls SDK and clean up associated system resources

kitty.Calls.close();

Ending the user session

End the user session to log the user out, close their device's concurrent connection to ChatKitty and free up resources used by the ChatKitty SDK.

kitty.endSession();

Contributing

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

License

MIT

1.6.3

2 years ago

1.7.1

2 years ago

1.7.0

2 years ago

1.6.2

2 years ago

1.6.1

2 years ago

1.6.0

2 years ago

1.5.0

2 years ago

1.4.0

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

2 years ago

1.2.0

2 years ago

1.1.1

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

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago