mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
* PLT-5860 Updated copyright date in about modal * PLT-5860 Updated copyright notice in JSX files * PLT-5860 Updated copyright notice in go files * Fixed misc copyright dates * Fixed component snapshots
79 lines
2.5 KiB
JavaScript
79 lines
2.5 KiB
JavaScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
import * as utils from 'utils/utils.jsx';
|
|
import ChannelStore from 'stores/channel_store.jsx';
|
|
import TeamStore from 'stores/team_store.jsx';
|
|
|
|
function getCountsStateFromStores() {
|
|
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()) {
|
|
mentionCount += (member.mention_count || 0);
|
|
messageCount += (member.msg_count || 0);
|
|
}
|
|
});
|
|
|
|
channels.forEach((channel) => {
|
|
const channelMember = members[channel.id];
|
|
if (channelMember == null) {
|
|
return;
|
|
}
|
|
|
|
if (channel.type === 'D') {
|
|
mentionCount += channel.total_msg_count - channelMember.msg_count;
|
|
} else if (channelMember.mention_count > 0) {
|
|
mentionCount += channelMember.mention_count;
|
|
}
|
|
if (channelMember.notify_props.mark_unread !== 'mention' && channel.total_msg_count - channelMember.msg_count > 0) {
|
|
messageCount += 1;
|
|
}
|
|
});
|
|
|
|
return {mentionCount, messageCount};
|
|
}
|
|
|
|
import React from 'react';
|
|
|
|
export default class NotifyCounts extends React.Component {
|
|
constructor(props) {
|
|
super(props);
|
|
|
|
this.onListenerChange = this.onListenerChange.bind(this);
|
|
|
|
this.state = getCountsStateFromStores();
|
|
this.mounted = false;
|
|
}
|
|
componentDidMount() {
|
|
this.mounted = true;
|
|
ChannelStore.addChangeListener(this.onListenerChange);
|
|
TeamStore.addChangeListener(this.onListenerChange);
|
|
}
|
|
componentWillUnmount() {
|
|
this.mounted = false;
|
|
ChannelStore.removeChangeListener(this.onListenerChange);
|
|
TeamStore.removeChangeListener(this.onListenerChange);
|
|
}
|
|
onListenerChange() {
|
|
if (this.mounted) {
|
|
var newState = getCountsStateFromStores();
|
|
if (!utils.areObjectsEqual(newState, this.state)) {
|
|
this.setState(newState);
|
|
}
|
|
}
|
|
}
|
|
render() {
|
|
if (this.state.mentionCount) {
|
|
return <span className='badge badge-notify'>{this.state.mentionCount}</span>;
|
|
} else if (this.state.messageCount) {
|
|
return <span className='badge badge-notify'>{'•'}</span>;
|
|
}
|
|
return null;
|
|
}
|
|
}
|