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

Fix "Unread Messages" Indicator #88

Merged
merged 3 commits into from
Mar 31, 2025
Merged

Conversation

kwinto
Copy link
Contributor

@kwinto kwinto commented Mar 28, 2025

Implemented the SET_OPEN case in the uiMiddleware function to clear unseen messages when the chat is opened and chat history is visible immidiately as it was a missing peace of the logic. Other scenarios were handled well.

Success criteria

  • When opening the Webchat with messages, the unread message indicator should go away.

How to test

  1. Init with these settings:
unreadMessages: {
    enableIndicator: true,
    enableBadge: true,
    enablePreview: true,
    enableSound: true,
},
  1. Talk to a bot and press the Webchat toggle button before the messages arrive.
  2. Indicator should eventually appear.
  3. Click the toggle button again.
  4. Indicator should dissapear when chat history opens.

Copy link
Contributor

@Copilot Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull Request Overview

This PR addresses the missing logic for clearing unseen messages when opening the chat by adding a new SET_OPEN action case in the uiMiddleware. The changes include:

  • Adding SET_OPEN to the action union type.
  • Implementing a condition to clear unseen messages when the chat is opened and the chat history is visible.
  • Updating the middleware to dispatch clearUnseenMessages accordingly.
Comments suppressed due to low confidence (1)

src/webchat/store/ui/ui-middleware.ts:42

  • [nitpick] Consider adding an inline comment to explain the rationale for using these three state flags to determine chat history visibility.
const { showHomeScreen, showPrevConversations, showChatOptionsScreen } = store.getState().ui;

@kwinto kwinto merged commit 1523510 into main Mar 31, 2025
5 checks passed
@kwinto kwinto deleted the 91476/bug-unread-messages-indicator branch March 31, 2025 10:37
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.

2 participants