Skip to main content
Version: 0.1.x

Chat using PubSub - React Native

For communication or any kind of messaging between participants, VideoSDK provides the usePubSub hook, which utilizes the Publish-Subscribe mechanism. It can be employed to develop a wide variety of functionalities. For example, participants could use it to send chat messages to each other, share files or other media, or even trigger actions like muting or unmuting audio or video.

This guide focuses on using PubSub to implement Chat functionality. If you are not familiar with the PubSub mechanism and the usePubSub hook, you can follow this guide.

Implementing Chat

  1. The initial step in setting up a group chat involves selecting a topic to which all participants will publish and subscribe, facilitating the exchange of messages. In the following example, CHAT is used as the topic. Next, obtain the publish() and messages from the usePubSubhook.
// importing usePubSub hook from react-native-sdk
import { usePubSub } from "@videosdk.live/react-native-sdk";

function ChatView() {
// destructure publish method from usePubSub hook
const { publish, messages } = usePubSub("CHAT");

return <>...</>;
}
  1. Next create a message input and a send button to publish the messages.
import { SafeAreaView, TouchableOpacity, TextInput, Text } from "react-native";

function ChatView() {
// destructure publish method from usePubSub hook
const { publish, messages } = usePubSub("CHAT");

// State to store the user typed message
const [message, setMessage] = useState("");

const handleSendMessage = () => {
// Sending the Message using the publish method
publish(message, { persist: true });
// Clearing the message input
setMessage("");
};

return (
<SafeAreaView>
<TextInput
style={{
height: 40,
margin: 12,
borderWidth: 1,
padding: 10,
}}
onChangeText={setMessage}
value={message}
/>

<TouchableOpacity
onPress={() => {
handleSendMessage();
}}
>
<Text>Send Message</Text>
</TouchableOpacity>
</SafeAreaView>
);
}
  1. The final step in the group chat is to display the messages sent by others. For this use the messages and display all the messages.
import { SafeAreaView, TouchableOpacity, TextInput, Text } from "react-native";

function ChatView() {
// destructure publish method from usePubSub hook
const { publish, messages } = usePubSub("CHAT");

const [message, setMessage] = useState("");

const handleSendMessage = () => {
...
};

return (
<SafeAreaView>
{messages.map((message) => {
return (
<Text style={{ fontSize: 12 }}>
{messsage.senderName} says {message.message}
</Text>
);
})}
<TextInput
style={{
height: 40,
margin: 12,
borderWidth: 1,
padding: 10,
}}
onChangeText={setMessage}
value={message}
/>
<TouchableOpacity
onPress={() => {
handleSendMessage();
}}
>
<Text>Send Message</Text>
</TouchableOpacity>
</SafeAreaView>
);
}

Showing Latest Message Notificaiton

To show the notification to the user when a new message arrives, following code snippet has to be followed.

function ChatView() {
// destructure publish method from usePubSub hook
const { publish, messages } = usePubSub("CHAT", {
onMessageReceived: (message)=>{
window.alert(message.senderName + "says" + message.message);
}
});
const [message, setMessage] = useState("");
const handleSendMessage = () => {
...
};
return <>...</>;
}

Downloading Chat Messages

All the messages from PubSub published with persist : true can be downloaded as an .csv file. This file will be accessible in the VideoSDK dashboard and through the Sessions API.

API Reference

The API references for all the methods and events utilized in this guide are provided below.

Got a Question? Ask us on discord