From 466bd8415d1ff9fed0cd5b263d0eed35c87b7e2b Mon Sep 17 00:00:00 2001 From: Pierre Rudloff Date: Tue, 7 Feb 2017 16:15:02 +0100 Subject: Add a notification for new messages on mobile (#5179) (#5234) --- webapp/components/notify_counts.jsx | 21 ++++++++++++++------- 1 file changed, 14 insertions(+), 7 deletions(-) (limited to 'webapp/components/notify_counts.jsx') diff --git a/webapp/components/notify_counts.jsx b/webapp/components/notify_counts.jsx index 55ede2d90..fe40fd485 100644 --- a/webapp/components/notify_counts.jsx +++ b/webapp/components/notify_counts.jsx @@ -6,14 +6,16 @@ import ChannelStore from 'stores/channel_store.jsx'; import TeamStore from 'stores/team_store.jsx'; function getCountsStateFromStores() { - let count = 0; + let mentionCount = 0; + let messageCount = 0; const teamMembers = TeamStore.getMyTeamMembers(); const channels = ChannelStore.getAll(); const members = ChannelStore.getMyMembers(); teamMembers.forEach((member) => { if (member.team_id !== TeamStore.getCurrentId()) { - count += (member.mention_count || 0); + mentionCount += (member.mention_count || 0); + messageCount += (member.msg_count || 0); } }); @@ -24,13 +26,16 @@ function getCountsStateFromStores() { } if (channel.type === 'D') { - count += channel.total_msg_count - channelMember.msg_count; + mentionCount += channel.total_msg_count - channelMember.msg_count; } else if (channelMember.mention_count > 0) { - count += channelMember.mention_count; + mentionCount += channelMember.mention_count; + } + if (channelMember.notify_props.mark_unread !== 'mention' && channel.total_msg_count - channelMember.msg_count > 0) { + messageCount += 1; } }); - return {count}; + return {mentionCount, messageCount}; } import React from 'react'; @@ -63,8 +68,10 @@ export default class NotifyCounts extends React.Component { } } render() { - if (this.state.count) { - return {this.state.count}; + if (this.state.mentionCount) { + return {this.state.mentionCount}; + } else if (this.state.messageCount) { + return {'•'}; } return null; } -- cgit v1.2.3-1-g7c22