Revert "display loading screen when changing team" (#5403)

Этот коммит содержится в:
Jason Blais
2017-02-14 15:20:38 -05:00
коммит произвёл Corey Hulen
родитель 247ac8d1cc
Коммит 86a92f8c75
2 изменённых файлов: 9 добавлений и 32 удалений

Просмотреть файл

@@ -70,9 +70,7 @@ export default class ChannelView extends React.Component {
<ChannelHeader
channelId={this.state.channelId}
/>
<PostViewCache
channelId={this.state.channelId}
/>
<PostViewCache/>
<div
className='post-create__container'
id='post-create'

Просмотреть файл

@@ -2,7 +2,6 @@
// See License.txt for license information
import PostViewController from './post_view_controller.jsx';
import LoadingScreen from 'components/loading_screen.jsx';
import ChannelStore from 'stores/channel_store.jsx';
import UserStore from 'stores/user_store.jsx';
@@ -68,45 +67,25 @@ export default class PostViewCache extends React.Component {
});
}
shouldComponentUpdate(nextProps) {
return Boolean(nextProps.channelId);
}
render() {
const channels = this.state.channels;
const currentChannelId = this.state.currentChannelId;
const valid = this.props.channelId === this.state.currentChannelId;
const postViews = [];
let content;
if (valid) {
for (let i = 0; i < channels.length; i++) {
postViews.push(
<PostViewController
key={'postviewcontroller_' + channels[i].id}
channel={channels[i]}
active={channels[i].id === currentChannelId}
/>
);
}
content = postViews;
} else {
content = (
<LoadingScreen
position='absolute'
key='loading'
const postViews = [];
for (let i = 0; i < channels.length; i++) {
postViews.push(
<PostViewController
key={'postviewcontroller_' + channels[i].id}
channel={channels[i]}
active={channels[i].id === currentChannelId}
/>
);
}
return (
<div id='post-list'>
{content}
{postViews}
</div>
);
}
}
PostViewCache.propTypes = {
channelId: React.PropTypes.string.isRequired
};