From 95de1468acfffb08fb4da170613b985d1e1b5b61 Mon Sep 17 00:00:00 2001 From: Harrison Healey Date: Mon, 2 May 2016 17:16:10 -0400 Subject: Reverted New Messages indicator in center channel (#2853) --- webapp/components/posts_view.jsx | 20 -------------------- 1 file changed, 20 deletions(-) (limited to 'webapp/components/posts_view.jsx') diff --git a/webapp/components/posts_view.jsx b/webapp/components/posts_view.jsx index fc36e3261..0515b696c 100644 --- a/webapp/components/posts_view.jsx +++ b/webapp/components/posts_view.jsx @@ -50,7 +50,6 @@ export default class PostsView extends React.Component { centerPosts: PreferenceStore.get(Preferences.CATEGORY_DISPLAY_SETTINGS, Preferences.CHANNEL_DISPLAY_MODE, Preferences.CHANNEL_DISPLAY_MODE_DEFAULT) === Preferences.CHANNEL_DISPLAY_MODE_CENTERED, isScrolling: false, topPostId: null, - showUnreadMessageAlert: false, currentUser: UserStore.getCurrentUser(), profiles: UserStore.getProfiles() }; @@ -409,13 +408,6 @@ export default class PostsView extends React.Component { } } componentWillReceiveProps(nextProps) { - if (this.props.postList && this.props.postList.order.length) { - if (this.props.postList.order[0] !== nextProps.postList.order[0] && nextProps.scrollType !== PostsView.SCROLL_TYPE_BOTTOM && nextProps.scrollType !== PostsView.SCROLL_TYPE_NEW_MESSAGE && nextProps.postList.posts[nextProps.postList.order[0]].user_id !== nextProps.currentUser.id && this.props.postList.order[1] !== nextProps.postList.order[0]) { // new message from another user and not deleted - this.setState({showUnreadMessageAlert: true}); - } else if (nextProps.scrollType === PostsView.SCROLL_TYPE_BOTTOM) { - this.setState({showUnreadMessageAlert: false}); - } - } if (!this.props.isActive && nextProps.isActive) { this.updateState(); PreferenceStore.addChangeListener(this.updateState); @@ -550,18 +542,6 @@ export default class PostsView extends React.Component { - ); } -- cgit v1.2.3-1-g7c22