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
555 lines
15 KiB
JavaScript
555 lines
15 KiB
JavaScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
import AppDispatcher from '../dispatcher/app_dispatcher.jsx';
|
|
import EventEmitter from 'events';
|
|
|
|
import TeamStore from 'stores/team_store.jsx';
|
|
import UserStore from 'stores/user_store.jsx';
|
|
|
|
var ChannelUtils;
|
|
var Utils;
|
|
import {ActionTypes, Constants} from 'utils/constants.jsx';
|
|
import {isSystemMessage, isFromWebhook} from 'utils/post_utils.jsx';
|
|
const NotificationPrefs = Constants.NotificationPrefs;
|
|
|
|
const CHANGE_EVENT = 'change';
|
|
const STATS_EVENT = 'stats';
|
|
const LAST_VIEVED_EVENT = 'last_viewed';
|
|
|
|
class ChannelStoreClass extends EventEmitter {
|
|
constructor(props) {
|
|
super(props);
|
|
this.setMaxListeners(600);
|
|
this.clear();
|
|
}
|
|
|
|
clear() {
|
|
this.currentId = null;
|
|
this.postMode = this.POST_MODE_CHANNEL;
|
|
this.channels = [];
|
|
this.members_in_channel = {};
|
|
this.myChannelMembers = {};
|
|
this.moreChannels = {};
|
|
this.stats = {};
|
|
this.unreadCounts = {};
|
|
}
|
|
|
|
get POST_MODE_CHANNEL() {
|
|
return 1;
|
|
}
|
|
|
|
get POST_MODE_FOCUS() {
|
|
return 2;
|
|
}
|
|
|
|
emitChange() {
|
|
this.emit(CHANGE_EVENT);
|
|
}
|
|
|
|
addChangeListener(callback) {
|
|
this.on(CHANGE_EVENT, callback);
|
|
}
|
|
|
|
removeChangeListener(callback) {
|
|
this.removeListener(CHANGE_EVENT, callback);
|
|
}
|
|
|
|
emitStatsChange() {
|
|
this.emit(STATS_EVENT);
|
|
}
|
|
|
|
addStatsChangeListener(callback) {
|
|
this.on(STATS_EVENT, callback);
|
|
}
|
|
|
|
removeStatsChangeListener(callback) {
|
|
this.removeListener(STATS_EVENT, callback);
|
|
}
|
|
|
|
emitLastViewed() {
|
|
this.emit(LAST_VIEVED_EVENT);
|
|
}
|
|
|
|
addLastViewedListener(callback) {
|
|
this.on(LAST_VIEVED_EVENT, callback);
|
|
}
|
|
|
|
removeLastViewedListener(callback) {
|
|
this.removeListener(LAST_VIEVED_EVENT, callback);
|
|
}
|
|
|
|
findFirstBy(field, value) {
|
|
return this.doFindFirst(field, value, this.getChannels());
|
|
}
|
|
|
|
findFirstMoreBy(field, value) {
|
|
return this.doFindFirst(field, value, this.getMoreChannels());
|
|
}
|
|
|
|
doFindFirst(field, value, channels) {
|
|
for (var i = 0; i < channels.length; i++) {
|
|
if (channels[i][field] === value) {
|
|
return channels[i];
|
|
}
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
get(id) {
|
|
return this.findFirstBy('id', id);
|
|
}
|
|
|
|
getMyMember(id) {
|
|
return this.getMyMembers()[id];
|
|
}
|
|
|
|
getByName(name) {
|
|
return this.findFirstBy('name', name);
|
|
}
|
|
|
|
getByDisplayName(displayName) {
|
|
return this.findFirstBy('display_name', displayName);
|
|
}
|
|
|
|
getMoreByName(name) {
|
|
return this.findFirstMoreBy('name', name);
|
|
}
|
|
|
|
getAll() {
|
|
return this.getChannels();
|
|
}
|
|
|
|
getMoreAll() {
|
|
return this.getMoreChannels();
|
|
}
|
|
|
|
setCurrentId(id) {
|
|
this.currentId = id;
|
|
}
|
|
|
|
resetCounts(id) {
|
|
const cm = this.myChannelMembers;
|
|
for (const cmid in cm) {
|
|
if (cm[cmid].channel_id === id) {
|
|
const channel = this.get(id);
|
|
if (channel) {
|
|
cm[cmid].msg_count = channel.total_msg_count;
|
|
cm[cmid].mention_count = 0;
|
|
this.setUnreadCountByChannel(id);
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
getCurrentId() {
|
|
return this.currentId;
|
|
}
|
|
|
|
getCurrent() {
|
|
var currentId = this.getCurrentId();
|
|
|
|
if (currentId) {
|
|
return this.get(currentId);
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
getCurrentMember() {
|
|
var currentId = this.getCurrentId();
|
|
|
|
if (currentId) {
|
|
return this.getMyMembers()[currentId];
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
getCurrentStats() {
|
|
return this.getStats(this.getCurrentId());
|
|
}
|
|
|
|
getStats(channelId) {
|
|
let stats;
|
|
|
|
if (channelId) {
|
|
stats = this.stats[channelId];
|
|
}
|
|
|
|
if (stats) {
|
|
// create a defensive copy
|
|
stats = Object.assign({}, stats);
|
|
} else {
|
|
stats = {member_count: 0};
|
|
}
|
|
|
|
return stats;
|
|
}
|
|
|
|
storeChannel(channel) {
|
|
var channels = this.getChannels();
|
|
var found;
|
|
|
|
for (var i = 0; i < channels.length; i++) {
|
|
if (channels[i].id === channel.id) {
|
|
channels[i] = channel;
|
|
found = true;
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (!found) {
|
|
channels.push(channel);
|
|
}
|
|
|
|
if (!ChannelUtils) {
|
|
ChannelUtils = require('utils/channel_utils.jsx'); //eslint-disable-line global-require
|
|
}
|
|
|
|
channels = channels.sort(ChannelUtils.sortChannelsByDisplayName);
|
|
this.storeChannels(channels);
|
|
}
|
|
|
|
storeChannels(channels) {
|
|
this.channels = channels;
|
|
}
|
|
|
|
getChannels() {
|
|
return this.channels;
|
|
}
|
|
|
|
getChannelById(id) {
|
|
return this.channels.filter((c) => c.id === id)[0];
|
|
}
|
|
|
|
storeMyChannelMember(channelMember) {
|
|
const members = Object.assign({}, this.getMyMembers());
|
|
members[channelMember.channel_id] = channelMember;
|
|
this.storeMyChannelMembers(members);
|
|
}
|
|
|
|
storeMyChannelMembers(channelMembers) {
|
|
this.myChannelMembers = channelMembers;
|
|
}
|
|
|
|
storeMyChannelMembersList(channelMembers) {
|
|
channelMembers.forEach((m) => {
|
|
this.myChannelMembers[m.channel_id] = m;
|
|
});
|
|
}
|
|
|
|
getMyMembers() {
|
|
return this.myChannelMembers;
|
|
}
|
|
|
|
saveMembersInChannel(channelId = this.getCurrentId(), members) {
|
|
const oldMembers = this.members_in_channel[channelId] || {};
|
|
this.members_in_channel[channelId] = Object.assign({}, oldMembers, members);
|
|
}
|
|
|
|
removeMemberInChannel(channelId = this.getCurrentId(), userId) {
|
|
if (this.members_in_channel[channelId]) {
|
|
Reflect.deleteProperty(this.members_in_channel[channelId], userId);
|
|
}
|
|
}
|
|
|
|
getMembersInChannel(channelId = this.getCurrentId()) {
|
|
return Object.assign({}, this.members_in_channel[channelId]) || {};
|
|
}
|
|
|
|
hasActiveMemberInChannel(channelId = this.getCurrentId(), userId) {
|
|
if (this.members_in_channel[channelId] && this.members_in_channel[channelId][userId]) {
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
storeMoreChannels(channels, teamId = TeamStore.getCurrentId()) {
|
|
const newChannels = {};
|
|
for (let i = 0; i < channels.length; i++) {
|
|
newChannels[channels[i].id] = channels[i];
|
|
}
|
|
this.moreChannels[teamId] = Object.assign({}, this.moreChannels[teamId], newChannels);
|
|
}
|
|
|
|
removeMoreChannel(channelId, teamId = TeamStore.getCurrentId()) {
|
|
Reflect.deleteProperty(this.moreChannels[teamId], channelId);
|
|
}
|
|
|
|
getMoreChannels(teamId = TeamStore.getCurrentId()) {
|
|
return Object.assign({}, this.moreChannels[teamId]);
|
|
}
|
|
|
|
getMoreChannelsList(teamId = TeamStore.getCurrentId()) {
|
|
const teamChannels = this.moreChannels[teamId] || {};
|
|
|
|
if (!ChannelUtils) {
|
|
ChannelUtils = require('utils/channel_utils.jsx'); //eslint-disable-line global-require
|
|
}
|
|
|
|
return Object.keys(teamChannels).map((cid) => teamChannels[cid]).sort(ChannelUtils.sortChannelsByDisplayName);
|
|
}
|
|
|
|
storeStats(stats) {
|
|
this.stats = stats;
|
|
}
|
|
|
|
isDefault(channel) {
|
|
return channel.name === Constants.DEFAULT_CHANNEL;
|
|
}
|
|
|
|
setPostMode(mode) {
|
|
this.postMode = mode;
|
|
}
|
|
|
|
getPostMode() {
|
|
return this.postMode;
|
|
}
|
|
|
|
setUnreadCountsByMembers(members) {
|
|
members.forEach((m) => {
|
|
this.setUnreadCountByChannel(m.channel_id);
|
|
});
|
|
}
|
|
|
|
setUnreadCountsByCurrentMembers() {
|
|
Object.keys(this.myChannelMembers).forEach((key) => {
|
|
this.setUnreadCountByChannel(this.myChannelMembers[key].channel_id);
|
|
});
|
|
}
|
|
|
|
setUnreadCountsByChannels(channels) {
|
|
channels.forEach((c) => {
|
|
this.setUnreadCountByChannel(c.id);
|
|
});
|
|
}
|
|
|
|
setUnreadCountByChannel(id) {
|
|
const ch = this.get(id);
|
|
const chMember = this.getMyMember(id);
|
|
|
|
if (ch == null || chMember == null) {
|
|
return;
|
|
}
|
|
|
|
const chMentionCount = chMember.mention_count;
|
|
let chUnreadCount = ch.total_msg_count - chMember.msg_count;
|
|
|
|
if (chMember.notify_props && chMember.notify_props.mark_unread === NotificationPrefs.MENTION) {
|
|
chUnreadCount = 0;
|
|
}
|
|
|
|
this.unreadCounts[id] = {msgs: chUnreadCount, mentions: chMentionCount};
|
|
}
|
|
|
|
getUnreadCount(id) {
|
|
return this.unreadCounts[id] || {msgs: 0, mentions: 0};
|
|
}
|
|
|
|
getUnreadCounts() {
|
|
return this.unreadCounts;
|
|
}
|
|
|
|
getChannelNamesMap() {
|
|
var channelNamesMap = {};
|
|
|
|
var channels = this.getChannels();
|
|
for (var key in channels) {
|
|
if (channels.hasOwnProperty(key)) {
|
|
var channel = channels[key];
|
|
channelNamesMap[channel.name] = channel;
|
|
}
|
|
}
|
|
|
|
var moreChannels = this.getMoreChannels();
|
|
for (var moreKey in moreChannels) {
|
|
if (moreChannels.hasOwnProperty(moreKey)) {
|
|
var moreChannel = moreChannels[moreKey];
|
|
channelNamesMap[moreChannel.name] = moreChannel;
|
|
}
|
|
}
|
|
|
|
return channelNamesMap;
|
|
}
|
|
|
|
isChannelAdminForCurrentChannel() {
|
|
if (!Utils) {
|
|
Utils = require('utils/utils.jsx'); //eslint-disable-line global-require
|
|
}
|
|
|
|
const member = this.getMyMember(this.getCurrentId());
|
|
|
|
if (!member) {
|
|
return false;
|
|
}
|
|
|
|
return Utils.isChannelAdmin(member.roles);
|
|
}
|
|
|
|
isChannelAdmin(userId, channelId) {
|
|
if (!Utils) {
|
|
Utils = require('utils/utils.jsx'); //eslint-disable-line global-require
|
|
}
|
|
|
|
const channelMembers = this.getMembersInChannel(channelId);
|
|
const channelMember = channelMembers[userId];
|
|
|
|
if (channelMember) {
|
|
return Utils.isChannelAdmin(channelMember.roles);
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
incrementMessages(id, markRead = false) {
|
|
if (!this.unreadCounts[id]) {
|
|
return;
|
|
}
|
|
|
|
const member = this.getMyMember(id);
|
|
if (member && member.notify_props && member.notify_props.mark_unread === NotificationPrefs.MENTION) {
|
|
return;
|
|
}
|
|
|
|
this.get(id).total_msg_count++;
|
|
|
|
if (markRead) {
|
|
this.resetCounts(id);
|
|
} else {
|
|
this.unreadCounts[id].msgs++;
|
|
}
|
|
}
|
|
|
|
incrementMentionsIfNeeded(id, msgProps) {
|
|
let mentions = [];
|
|
if (msgProps && msgProps.mentions) {
|
|
mentions = JSON.parse(msgProps.mentions);
|
|
}
|
|
|
|
if (!this.unreadCounts[id]) {
|
|
return;
|
|
}
|
|
|
|
if (mentions.indexOf(UserStore.getCurrentId()) !== -1) {
|
|
this.unreadCounts[id].mentions++;
|
|
this.getMyMember(id).mention_count++;
|
|
}
|
|
}
|
|
}
|
|
|
|
var ChannelStore = new ChannelStoreClass();
|
|
|
|
ChannelStore.dispatchToken = AppDispatcher.register((payload) => {
|
|
var action = payload.action;
|
|
var currentId;
|
|
|
|
switch (action.type) {
|
|
case ActionTypes.CLICK_CHANNEL:
|
|
ChannelStore.setCurrentId(action.id);
|
|
ChannelStore.setPostMode(ChannelStore.POST_MODE_CHANNEL);
|
|
ChannelStore.emitChange();
|
|
break;
|
|
|
|
case ActionTypes.RECEIVED_FOCUSED_POST: {
|
|
const post = action.post_list.posts[action.postId];
|
|
ChannelStore.setCurrentId(post.channel_id);
|
|
ChannelStore.setPostMode(ChannelStore.POST_MODE_FOCUS);
|
|
ChannelStore.emitChange();
|
|
break;
|
|
}
|
|
|
|
case ActionTypes.RECEIVED_CHANNELS:
|
|
ChannelStore.storeChannels(action.channels);
|
|
ChannelStore.setUnreadCountsByChannels(action.channels);
|
|
ChannelStore.emitChange();
|
|
break;
|
|
|
|
case ActionTypes.RECEIVED_CHANNEL:
|
|
ChannelStore.storeChannel(action.channel);
|
|
if (action.member) {
|
|
ChannelStore.storeMyChannelMember(action.member);
|
|
}
|
|
currentId = ChannelStore.getCurrentId();
|
|
if (currentId && window.isActive) {
|
|
ChannelStore.resetCounts(currentId);
|
|
}
|
|
ChannelStore.setUnreadCountByChannel(action.channel.id);
|
|
ChannelStore.emitChange();
|
|
break;
|
|
|
|
case ActionTypes.RECEIVED_MY_CHANNEL_MEMBERS:
|
|
ChannelStore.storeMyChannelMembersList(action.members);
|
|
currentId = ChannelStore.getCurrentId();
|
|
if (currentId && window.isActive) {
|
|
ChannelStore.resetCounts(currentId);
|
|
}
|
|
ChannelStore.setUnreadCountsByMembers(action.members);
|
|
ChannelStore.emitChange();
|
|
ChannelStore.emitLastViewed();
|
|
break;
|
|
case ActionTypes.RECEIVED_CHANNEL_MEMBER:
|
|
ChannelStore.storeMyChannelMember(action.member);
|
|
currentId = ChannelStore.getCurrentId();
|
|
if (currentId && window.isActive) {
|
|
ChannelStore.resetCounts(currentId);
|
|
}
|
|
ChannelStore.setUnreadCountsByCurrentMembers();
|
|
ChannelStore.emitChange();
|
|
ChannelStore.emitLastViewed();
|
|
break;
|
|
case ActionTypes.RECEIVED_MORE_CHANNELS:
|
|
ChannelStore.storeMoreChannels(action.channels);
|
|
ChannelStore.emitChange();
|
|
break;
|
|
case ActionTypes.RECEIVED_MEMBERS_IN_CHANNEL:
|
|
ChannelStore.saveMembersInChannel(action.channel_id, action.channel_members);
|
|
ChannelStore.emitChange();
|
|
break;
|
|
case ActionTypes.RECEIVED_CHANNEL_STATS:
|
|
var stats = Object.assign({}, ChannelStore.getStats());
|
|
stats[action.stats.channel_id] = action.stats;
|
|
ChannelStore.storeStats(stats);
|
|
ChannelStore.emitStatsChange();
|
|
break;
|
|
|
|
case ActionTypes.RECEIVED_POST:
|
|
if (Constants.IGNORE_POST_TYPES.indexOf(action.post.type) !== -1) {
|
|
return;
|
|
}
|
|
|
|
if (action.post.user_id === UserStore.getCurrentId() && !isSystemMessage(action.post) && !isFromWebhook(action.post)) {
|
|
return;
|
|
}
|
|
|
|
var id = action.post.channel_id;
|
|
var teamId = action.websocketMessageProps ? action.websocketMessageProps.team_id : null;
|
|
var markRead = id === ChannelStore.getCurrentId() && window.isActive;
|
|
|
|
if (TeamStore.getCurrentId() === teamId || teamId === '') {
|
|
ChannelStore.incrementMentionsIfNeeded(id, action.websocketMessageProps);
|
|
ChannelStore.incrementMessages(id, markRead);
|
|
ChannelStore.emitChange();
|
|
}
|
|
break;
|
|
|
|
case ActionTypes.CREATE_POST:
|
|
ChannelStore.incrementMessages(action.post.channel_id, true);
|
|
ChannelStore.emitChange();
|
|
break;
|
|
|
|
case ActionTypes.CREATE_COMMENT:
|
|
ChannelStore.incrementMessages(action.post.channel_id, true);
|
|
ChannelStore.emitChange();
|
|
break;
|
|
|
|
default:
|
|
break;
|
|
}
|
|
});
|
|
|
|
export default ChannelStore;
|