summaryrefslogtreecommitdiffstats
path: root/web/react/components/notify_counts.jsx
diff options
context:
space:
mode:
authorCorey Hulen <corey@hulen.com>2015-08-18 08:31:25 -0700
committerCorey Hulen <corey@hulen.com>2015-08-18 08:31:25 -0700
commit72b743efa5e071db4fba818ef09549183c7fc05e (patch)
tree7ba68e3043efc6ddc70dd7020949b6b1e17a148d /web/react/components/notify_counts.jsx
parentfda8b01297e2d932ef0b90981341bd61efc89fbf (diff)
parent0a9293ef523cbc75e92108e3bea8e0347a3e0c7e (diff)
downloadchat-72b743efa5e071db4fba818ef09549183c7fc05e.tar.gz
chat-72b743efa5e071db4fba818ef09549183c7fc05e.tar.bz2
chat-72b743efa5e071db4fba818ef09549183c7fc05e.zip
Merge pull request #390 from rgarmsen2295/mm-1802
MM-1802 Clicking on a PM channel name in mobile view now opens the channel menu
Diffstat (limited to 'web/react/components/notify_counts.jsx')
-rw-r--r--web/react/components/notify_counts.jsx49
1 files changed, 49 insertions, 0 deletions
diff --git a/web/react/components/notify_counts.jsx b/web/react/components/notify_counts.jsx
new file mode 100644
index 000000000..ebc49882b
--- /dev/null
+++ b/web/react/components/notify_counts.jsx
@@ -0,0 +1,49 @@
+// Copyright (c) 2015 Spinpunch, Inc. All Rights Reserved.
+// See License.txt for license information.
+
+var utils = require('../utils/utils.jsx');
+var ChannelStore = require('../stores/channel_store.jsx');
+
+function getCountsStateFromStores() {
+ var count = 0;
+ var channels = ChannelStore.getAll();
+ var members = ChannelStore.getAllMembers();
+
+ channels.forEach(function setChannelInfo(channel) {
+ var channelMember = members[channel.id];
+ if (channel.type === 'D') {
+ count += channel.total_msg_count - channelMember.msg_count;
+ } else if (channelMember.mention_count > 0) {
+ count += channelMember.mention_count;
+ } else if (channelMember.notify_level !== 'quiet' && channel.total_msg_count - channelMember.msg_count > 0) {
+ count += 1;
+ }
+ });
+
+ return {count: count};
+}
+
+module.exports = React.createClass({
+ displayName: 'NotifyCounts',
+ componentDidMount: function() {
+ ChannelStore.addChangeListener(this.onListenerChange);
+ },
+ componentWillUnmount: function() {
+ ChannelStore.removeChangeListener(this.onListenerChange);
+ },
+ onListenerChange: function() {
+ var newState = getCountsStateFromStores();
+ if (!utils.areStatesEqual(newState, this.state)) {
+ this.setState(newState);
+ }
+ },
+ getInitialState: function() {
+ return getCountsStateFromStores();
+ },
+ render: function() {
+ if (this.state.count) {
+ return <span className='badge badge-notify'>{this.state.count}</span>;
+ }
+ return null;
+ }
+});