File tree 1 file changed +17
-0
lines changed
1 file changed +17
-0
lines changed Original file line number Diff line number Diff line change 7
7
ShowChatScreenAction ,
8
8
SetPageVisibleAction ,
9
9
SetHasAcceptedTermsAction ,
10
+ SetOpenAction ,
10
11
} from "./ui-reducer" ;
11
12
import { getStorage } from "../../helper/storage" ;
12
13
import { setHasAcceptedTermsInStorage } from "../../helper/privacyPolicy" ;
@@ -17,6 +18,7 @@ export const uiMiddleware: Middleware<object, StoreState> =
17
18
(
18
19
action :
19
20
| ToggleOpenAction
21
+ | SetOpenAction
20
22
| ShowChatScreenAction
21
23
| SetPageVisibleAction
22
24
| SetHasAcceptedTermsAction ,
@@ -34,6 +36,21 @@ export const uiMiddleware: Middleware<object, StoreState> =
34
36
break ;
35
37
}
36
38
39
+ case "SET_OPEN" : {
40
+ const open = action . open ;
41
+
42
+ const { showHomeScreen, showPrevConversations, showChatOptionsScreen } =
43
+ store . getState ( ) . ui ;
44
+ const isChatHistoryVisible =
45
+ ! showPrevConversations && ! showChatOptionsScreen && ! showHomeScreen ;
46
+
47
+ if ( open && isChatHistoryVisible ) {
48
+ store . dispatch ( clearUnseenMessages ( ) ) ;
49
+ }
50
+
51
+ break ;
52
+ }
53
+
37
54
// if the chat screen is opened while the page is active, reset unread messages
38
55
case "SHOW_CHAT_SCREEN" : {
39
56
if ( store . getState ( ) . ui . isPageVisible ) {
You can’t perform that action at this time.
0 commit comments