summaryrefslogtreecommitdiffstats
path: root/webapp/components/sidebar.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/components/sidebar.jsx')
-rw-r--r--webapp/components/sidebar.jsx11
1 files changed, 8 insertions, 3 deletions
diff --git a/webapp/components/sidebar.jsx b/webapp/components/sidebar.jsx
index 71559de02..465d25576 100644
--- a/webapp/components/sidebar.jsx
+++ b/webapp/components/sidebar.jsx
@@ -116,14 +116,19 @@ export default class Sidebar extends React.Component {
const currentChannelId = ChannelStore.getCurrentId();
const tutorialStep = PreferenceStore.getInt(Preferences.TUTORIAL_STEP, UserStore.getCurrentId(), 999);
- const allChannels = ChannelStore.getAll().map((channel) => Object.assign({}, channel));
- const channelList = ChannelUtils.buildDisplayableChannelList(allChannels);
+ const channels = ChannelStore.getAll();
+ let displayableChannels = {};
+ if (channels !== this.oldChannels) {
+ const channelsArray = channels.map((channel) => Object.assign({}, channel));
+ displayableChannels = ChannelUtils.buildDisplayableChannelList(channelsArray);
+ }
+ this.oldChannels = channels;
return {
activeId: currentChannelId,
members,
teamMembers,
- ...channelList,
+ ...displayableChannels,
unreadCounts: JSON.parse(JSON.stringify(ChannelStore.getUnreadCounts())),
showTutorialTip: tutorialStep === TutorialSteps.CHANNEL_POPOVER,
currentTeam: TeamStore.getCurrent(),