stream-chat-react
Version:
React components to create chat conversations or livestream style chat
34 lines (33 loc) • 1.29 kB
JavaScript
import { useEffect, useState } from 'react';
import { StreamChat } from 'stream-chat';
/**
* React hook to create, connect and return `StreamChat` client.
*/
export const useCreateChatClient = ({ apiKey, options, tokenOrProvider, userData, }) => {
const [chatClient, setChatClient] = useState(null);
const [cachedUserData, setCachedUserData] = useState(userData);
if (userData.id !== cachedUserData.id) {
setCachedUserData(userData);
}
const [cachedOptions] = useState(options);
useEffect(() => {
const client = new StreamChat(apiKey, undefined, cachedOptions);
let didUserConnectInterrupt = false;
const connectionPromise = client
.connectUser(cachedUserData, tokenOrProvider)
.then(() => {
if (!didUserConnectInterrupt)
setChatClient(client);
});
return () => {
didUserConnectInterrupt = true;
setChatClient(null);
connectionPromise
.then(() => client.disconnectUser())
.then(() => {
console.log(`Connection for user "${cachedUserData.id}" has been closed`);
});
};
}, [apiKey, cachedUserData, cachedOptions, tokenOrProvider]);
return chatClient;
};