import { useContext } from "react";
import { ChannelsContext } from "stream-chat-react-native";
const { channels, reloadList } = useContext(ChannelsContext);ChannelsContext
ChannelsContext is provided by ChannelList. If you are not familiar with the React Context API, see the React docs.
Best Practices
- Use
useChannelsContextfor consistent access and typings. - Treat
channelsas read-only; use context helpers to mutate list state. - Use
reloadListwhen filters change, andrefreshListfor pull-to-refresh. - Check
hasNextPageandloadingNextPagebefore triggering pagination. - Keep list UI components lightweight to preserve scroll performance.
Basic Usage
Consume ChannelsContext in any child of ChannelList:
Alternatively, use the useChannelsContext hook.
import { useChannelsContext } from "stream-chat-react-native";
const { channels, reloadList } = useChannelsContext();Value
additionalFlatListProps
Additional props provided to the underlying FlatList.
Example
const flatListProps = { bounces: true };
<ChannelList additionalFlatListProps={flatListProps} />;Don't use additionalFlatListProps to access the FlatList ref, use setFlatListRef instead.
| Type |
|---|
| Object |
channels
Array of channels currently loaded within the ChannelList component.
| Type |
|---|
| Array |
error
True if a call to query channels API call within ChannelList component results in error, either during first load or during pagination.
| Type |
|---|
Error Object | Boolean |
hasNextPage
False if ChannelList has loaded all channels for the current filters.
| Type |
|---|
| Boolean |
ListHeaderComponent
Rendered when provided if the channel list is not empty via the ListHeaderComponent prop on the FlatList.
| Type |
|---|
| ComponentType |
loadingChannels
True if ChannelList component is loading the first page of channels.
| Type |
|---|
| Boolean |
loadMoreThreshold
Sets the onEndReachedThreshold of the underlying FlatList. We recommend using 0.1 as the default value for this prop, as changing it might hit additional channelQuery calls, and you might reach the limit.
| Type | Default |
|---|---|
| Number | 0.1 |
loadingNextPage
True if ChannelList component is loading more channels as part of pagination. This will be set to true when user scrolls to bottom of the list and hasNextPage is true.
| Type |
|---|
| Boolean |
loadNextPage
Loads the next page for ChannelList.
| Type |
|---|
| Function |
maxUnreadCount
Max number to display within unread notification badge. The value cannot be higher than 255, which is the limit on backend side.
| Type | Default |
|---|---|
| number | 255 |
numberOfSkeletons
The number of Skeleton items to display in the LoadingIndicator.
| Type | Default |
|---|---|
| number | 6 |
onSelect
Function called when a user presses an item in the ChannelList.
The function is called with the Channel instance corresponding to the list item as the only parameter.
This callback is often used for navigating to a channel screen.
Example
onSelect={(channel) => { /** navigation logic */ }}A Channel instance is not serializable and will therefore raise warnings if passed as a parameter through navigation to another screen.
| Type |
|---|
| function |
| Parameter | Description |
|---|---|
| channel | Channel instance |
refreshing
True if ChannelList component is refreshing the list (using refreshList function call). Refreshing state will be triggered either when user executes pull-to-refresh gesture or if network connection is being recovered.
This value is attached to refreshing prop of underlying FlatList component of ChannelList.
| Type |
|---|
| Boolean |
refreshList
Function to manually re-sync or refresh the channels in ChannelList component.
Calling refreshList will trigger a RefreshControl on underlying FlatList component.
| Type |
|---|
| Function |
reloadList
Manually reloads channels in ChannelList.
Calling reloadList clears the current list and shows a loading indicator until new results arrive.
| Type |
|---|
| Function |
setFlatListRef
Callback function to access the underlying FlatList ref.
Example
const flatListRef = useRef();
<ChannelList setFlatListRef={(ref) => (flatListRef.current = ref)} />;| Type |
|---|
| Function |
| Parameter | Description |
|---|---|
React ref | FlatList ref |
EmptyStateIndicator
Rendered when the channel list is empty and not loading via the ListEmptyComponent prop on the FlatList.
| Type | Default |
|---|---|
| ComponentType | EmptyStateIndicator |
FooterLoadingIndicator
Rendered when loadingNextPage from ChannelsContext is true via the ListFooterComponent prop on the FlatList.
| Type | Default |
|---|---|
ComponentType | ChannelListFooterLoadingIndicator |
HeaderErrorIndicator
Rendered when error from ChannelsContext is true.
| Type | Default |
|---|---|
| ComponentType | ChannelListHeaderErrorIndicator |
HeaderNetworkDownIndicator
Rendered when isOnline from ChatContext is false.
| Type | Default |
|---|---|
| ComponentType | ChannelListHeaderNetworkDownIndicator |
LoadingErrorIndicator
Rendered when error from ChannelsContext is true, and the channel list is empty and not loading.
| Type | Default |
|---|---|
| ComponentType | LoadingErrorIndicator |
LoadingIndicator
Rendered when the channel list is empty and loading via the ListEmptyComponent prop on the FlatList.
| Type | Default |
|---|---|
| ComponentType | ChannelListLoadingIndicator |
Preview
List item rendered by the underlying FlatList.
| Type | Default |
|---|---|
| ComponentType | ChannelPreviewMessenger |
PreviewAvatar
Avatar component rendered within Preview.
| Type | Default |
|---|---|
| ComponentType | ChannelAvatar |
PreviewMessage
Message component rendered within Preview.
| Type | Default |
|---|---|
| ComponentType | ChannelPreviewMessage |
PreviewStatus
Status component rendered within Preview.
| Type | Default |
|---|---|
| ComponentType | ChannelPreviewStatus |
PreviewTitle
Title component rendered within Preview.
| Type | Default |
|---|---|
| ComponentType | ChannelPreviewTitle |
PreviewUnreadCount
Unread count component rendered within Preview.
| Type | Default |
|---|---|
| ComponentType | ChannelPreviewUnreadCount |
Skeleton
Row item rendered in the LoadingIndicator.
| Type | Default |
|---|---|
| ComponentType | Skeleton |
- Best Practices
- Basic Usage
- Value
- additionalFlatListProps
- channels
- error
- hasNextPage
- ListHeaderComponent
- loadingChannels
- loadMoreThreshold
- loadingNextPage
- loadNextPage
- maxUnreadCount
- numberOfSkeletons
- onSelect
- refreshing
- refreshList
- reloadList
- setFlatListRef
- EmptyStateIndicator
- FooterLoadingIndicator
- HeaderErrorIndicator
- HeaderNetworkDownIndicator
- LoadingErrorIndicator
- LoadingIndicator
- Preview
- PreviewAvatar
- PreviewMessage
- PreviewStatus
- PreviewTitle
- PreviewUnreadCount
- Skeleton