@sendbird/uikit-react
Advanced tools
Changelog
[v3.15.14] (Feb 7 2025)
state
and actions
properties.
useGroupChannelList
, replacing useGroupChannelListContext
useCreateChannel
, replacing useCreateChannelContext
useChannelSettings
, replacing useChannelSettingsContext
useGroupChannel
, replacing useGroupChannelContext
useMessageSearch
, replacing useMessageSearchContext
useThread
, replacing useThreadContext
import { useGroupChannel } from '@sendbird/uikit-react/GroupChannel/context';
// Implement your code inside the react function component.
const Component = () => {
// const { currentChannel, scrollToBottom } = useGroupChannelContext();
const {
state : {
currentChannel,
},
actions : {
scrollToBottom
},
} = useGroupChannel();
const onScrollDownButtonClick = () => {
scrollToBottom();
};
// ...
}
MessageInput
did not shows properly.Changelog
[v3.15.13] (Jan 31 2025)
messageSearchQuery.keyword
when searching in MessageSearch module
searchString
now takes higher priority, while messageSearchQuery.keyword
is assigned secondary priority.Changelog
[v3.15.12] (Jan 9 2025)
useConnectionState
that you can get the connection state of SDK.Changelog
[v3.15.11] (Dec 19 2024)