Skip to content

Commit 310835d

Browse files
authored
fix: forward StreamChat constructor options via useCreateChatClient (#2463)
1 parent 43d1540 commit 310835d

File tree

2 files changed

+42
-5
lines changed

2 files changed

+42
-5
lines changed

docusaurus/docs/React/basics/getting-started.mdx

+34-1
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,40 @@ body,
144144

145145
## Chat Client & Connecting User
146146

147-
To communicate with the Stream Chat API the SDK requires a client with an established connection. The hook mentioned in the code above (`useCreateChatClient`) handles client instantiation, establishes proper connection and handles cleanups and disconnects for you. If you wish to have more control over how all of the previously mentioned is being handled see [Client and User](../guides/client-and-user.mdx) guide.
147+
To communicate with the Stream Chat API the SDK requires a client with an established connection. The hook mentioned in the code above (`useCreateChatClient`) handles client instantiation, establishes proper connection and handles cleanups and disconnects for you. If you wish to have more control over how all the previously mentioned is being handled see [Client and User](../guides/client-and-user.mdx) guide.
148+
149+
:::important
150+
The hook `useCreateChatClient` accepts parameter `options`. This is an object forwarded to the `StreamChat` constructor. Please make sure the `options` object is created outside the scope of the component invoking `useCreateChatClient` to prevent unnecessary re-renders and thus reconnects.
151+
152+
```
153+
import {
154+
Chat,
155+
StreamChatOptions,
156+
useCreateChatClient,
157+
} from 'stream-chat-react';
158+
159+
const streamChatOptions: StreamChatOptions = {
160+
timeout: 6000
161+
}
162+
163+
const App = () => {
164+
const client = useCreateChatClient({
165+
apiKey,
166+
options: streamChatOptions,
167+
tokenOrProvider: token,
168+
userData: { id: userId },
169+
});
170+
171+
if (!client) return <div>Loading...</div>;
172+
173+
return (
174+
<Chat client={client}>
175+
</Chat>
176+
);
177+
}
178+
```
179+
180+
:::
148181

149182
## Creating a Channel
150183

src/components/Chat/hooks/useCreateChatClient.ts

+8-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
import { useEffect, useState } from 'react';
22

3-
import {
3+
import { StreamChat } from 'stream-chat';
4+
5+
import type {
46
DefaultGenerics,
57
ExtendableGenerics,
68
OwnUserResponse,
7-
StreamChat,
9+
StreamChatOptions,
810
TokenOrProvider,
911
UserResponse,
1012
} from 'stream-chat';
@@ -14,12 +16,14 @@ import {
1416
*/
1517
export const useCreateChatClient = <SCG extends ExtendableGenerics = DefaultGenerics>({
1618
apiKey,
19+
options,
1720
tokenOrProvider,
1821
userData,
1922
}: {
2023
apiKey: string;
2124
tokenOrProvider: TokenOrProvider;
2225
userData: OwnUserResponse<SCG> | UserResponse<SCG>;
26+
options?: StreamChatOptions;
2327
}) => {
2428
const [chatClient, setChatClient] = useState<StreamChat<SCG> | null>(null);
2529
const [cachedUserData, setCachedUserData] = useState(userData);
@@ -29,7 +33,7 @@ export const useCreateChatClient = <SCG extends ExtendableGenerics = DefaultGene
2933
}
3034

3135
useEffect(() => {
32-
const client = new StreamChat<SCG>(apiKey);
36+
const client = new StreamChat<SCG>(apiKey, undefined, options);
3337
let didUserConnectInterrupt = false;
3438

3539
const connectionPromise = client.connectUser(cachedUserData, tokenOrProvider).then(() => {
@@ -45,7 +49,7 @@ export const useCreateChatClient = <SCG extends ExtendableGenerics = DefaultGene
4549
console.log(`Connection for user "${cachedUserData.id}" has been closed`);
4650
});
4751
};
48-
}, [apiKey, cachedUserData, tokenOrProvider]);
52+
}, [apiKey, cachedUserData, options, tokenOrProvider]);
4953

5054
return chatClient;
5155
};

0 commit comments

Comments
 (0)