summaryrefslogtreecommitdiffstats
path: root/webapp/components/sidebar.jsx
diff options
context:
space:
mode:
authorJoram Wilander <jwawilander@gmail.com>2017-05-10 07:41:12 -0400
committerGitHub <noreply@github.com>2017-05-10 07:41:12 -0400
commit9625362494888c9423bb6503b7e18557b6b9cc79 (patch)
tree976611e0ee7fff14dd13e044c571c370f5895392 /webapp/components/sidebar.jsx
parent6e642036f460fb2e28572d46ca29aa81fbc8c8d1 (diff)
downloadchat-9625362494888c9423bb6503b7e18557b6b9cc79.tar.gz
chat-9625362494888c9423bb6503b7e18557b6b9cc79.tar.bz2
chat-9625362494888c9423bb6503b7e18557b6b9cc79.zip
Fix DM getting marked unread from your own message (#6373)
Diffstat (limited to 'webapp/components/sidebar.jsx')
-rw-r--r--webapp/components/sidebar.jsx24
1 files changed, 2 insertions, 22 deletions
diff --git a/webapp/components/sidebar.jsx b/webapp/components/sidebar.jsx
index aa7b98be0..5784f96ba 100644
--- a/webapp/components/sidebar.jsx
+++ b/webapp/components/sidebar.jsx
@@ -90,28 +90,8 @@ export default class Sidebar extends React.Component {
}
getTotalUnreadCount() {
- let msgs = 0;
- let mentions = 0;
- const unreadCounts = this.state.unreadCounts;
- const teamMembers = this.state.teamMembers;
-
- teamMembers.forEach((member) => {
- if (member.team_id !== this.state.currentTeam.id) {
- msgs += member.msg_count || 0;
- mentions += member.mention_count || 0;
- }
- });
-
- Object.keys(unreadCounts).forEach((chId) => {
- const channel = ChannelStore.get(chId);
-
- if (channel && (channel.type === Constants.DM_CHANNEL || channel.type === Constants.GM_CHANNEL || channel.team_id === this.state.currentTeam.id)) {
- msgs += unreadCounts[chId].msgs;
- mentions += unreadCounts[chId].mentions;
- }
- });
-
- return {msgs, mentions};
+ const unreads = ChannelUtils.getCountsStateFromStores(this.state.currentTeam, this.state.teamMembers, this.state.unreadCounts);
+ return {msgs: unreads.messageCount, mentions: unreads.mentionCount};
}
getStateFromStores() {