mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
PLT-1300 adding jump button to bottom of center archive channel
This commit is contained in:
@@ -13,6 +13,8 @@ import PreferenceStore from '../stores/preference_store.jsx';
|
||||
import ChannelStore from '../stores/channel_store.jsx';
|
||||
import UserStore from '../stores/user_store.jsx';
|
||||
|
||||
import * as Utils from '../utils/utils.jsx';
|
||||
|
||||
import Constants from '../utils/constants.jsx';
|
||||
const TutorialSteps = Constants.TutorialSteps;
|
||||
const Preferences = Constants.Preferences;
|
||||
@@ -46,6 +48,8 @@ export default class CenterPanel extends React.Component {
|
||||
this.setState({showPostFocus: ChannelStore.getPostMode() === ChannelStore.POST_MODE_FOCUS});
|
||||
}
|
||||
render() {
|
||||
const channel = ChannelStore.getCurrent();
|
||||
var handleClick = null;
|
||||
let postsContainer;
|
||||
let createPost;
|
||||
if (this.state.showTutorialScreens) {
|
||||
@@ -53,7 +57,24 @@ export default class CenterPanel extends React.Component {
|
||||
createPost = null;
|
||||
} else if (this.state.showPostFocus) {
|
||||
postsContainer = <PostFocusView />;
|
||||
createPost = null;
|
||||
|
||||
handleClick = function clickHandler(e) {
|
||||
e.preventDefault();
|
||||
Utils.switchChannel(channel);
|
||||
};
|
||||
|
||||
createPost = (
|
||||
<div
|
||||
id='perma-link-home'
|
||||
>
|
||||
<a
|
||||
href=''
|
||||
onClick={handleClick}
|
||||
>
|
||||
{'You are viewing the Archives. Click here to jump to recent messages.'}
|
||||
</a>
|
||||
</div>
|
||||
);
|
||||
} else {
|
||||
postsContainer = <PostsViewContainer />;
|
||||
createPost = (
|
||||
|
||||
@@ -73,7 +73,7 @@ export default class PostFocusView extends React.Component {
|
||||
getIntroMessage() {
|
||||
return (
|
||||
<div className='channel-intro'>
|
||||
<h4 className='channel-intro__title'>{'Beginning of Channel'}</h4>
|
||||
<h4 className='channel-intro__title'>{'Beginning of Channel Archives'}</h4>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user