Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release: v3.15.14 #1309

Merged
merged 2 commits into from
Feb 7, 2025
Merged

release: v3.15.14 #1309

merged 2 commits into from
Feb 7, 2025

Conversation

git-babel
Copy link
Contributor

[v3.15.14] (Feb 7 2025)

Features:

  • Added custom hooks for each module replacing the previous context hook. The custom hook allows access to the provider's data, which are divided into state and actions properties.
    • Added useGroupChannelList, replacing useGroupChannelListContext
    • Added useCreateChannel, replacing useCreateChannelContext
    • Added useChannelSettings, replacing useChannelSettingsContext
    • Added useGroupChannel, replacing useGroupChannelContext
    • Added useMessageSearch, replacing useMessageSearchContext
    • Added useThread, replacing useThreadContext
      • How to Use?
      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();
      };
      
      // ...
      }

Fixes:

  • Fixed an issue where the pasting the formatted text to MessageInput did not shows properly.
  • Fixed a bug with forwardRef Rules of Hooks violation.

Copy link

netlify bot commented Feb 7, 2025

Deploy Preview for sendbird-uikit-react ready!

Name Link
🔨 Latest commit 9b770c4
🔍 Latest deploy log https://app.netlify.com/sites/sendbird-uikit-react/deploys/67a5b490d526020008b0048c
😎 Deploy Preview https://deploy-preview-1309--sendbird-uikit-react.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

@git-babel
Copy link
Contributor Author

/bot create ticket

Copy link

github-actions bot commented Feb 7, 2025

Copy link

github-actions bot commented Feb 7, 2025

@sendbird-sdk-deployment
Copy link
Collaborator

[Creating Ticket] 🔖 Done https://sendbird.atlassian.net/browse/SDKRLSD-1531

@git-babel git-babel requested a review from chrisallo February 7, 2025 07:41
@chrisallo chrisallo merged commit 4d6e55e into main Feb 7, 2025
12 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants