85 lines
2.8 KiB
JavaScript
85 lines
2.8 KiB
JavaScript
import React from 'react';
|
|
import { NavLink, withRouter } from 'react-router-dom';
|
|
import Logo from 'components/Logo';
|
|
import NavBarChannelDropdown from 'components/NavBarChannelOptionsDropdown';
|
|
import request from 'utils/request';
|
|
|
|
const VIEW = 'VIEW';
|
|
const LOGOUT = 'LOGOUT';
|
|
|
|
class NavBar extends React.Component {
|
|
constructor (props) {
|
|
super(props);
|
|
this.checkForLoggedInUser = this.checkForLoggedInUser.bind(this);
|
|
this.logoutUser = this.logoutUser.bind(this);
|
|
this.handleSelection = this.handleSelection.bind(this);
|
|
}
|
|
componentDidMount () {
|
|
// check to see if the user is already logged in
|
|
this.checkForLoggedInUser();
|
|
}
|
|
checkForLoggedInUser () {
|
|
const params = {credentials: 'include'};
|
|
request('/user', params)
|
|
.then(({ data }) => {
|
|
this.props.onChannelLogin(data.channelName, data.shortChannelId, data.channelClaimId);
|
|
})
|
|
.catch(error => {
|
|
console.log('/user error:', error.message);
|
|
});
|
|
}
|
|
logoutUser () {
|
|
const params = {credentials: 'include'};
|
|
request('/logout', params)
|
|
.then(() => {
|
|
this.props.onChannelLogout();
|
|
})
|
|
.catch(error => {
|
|
console.log('/logout error', error.message);
|
|
});
|
|
}
|
|
handleSelection (event) {
|
|
const value = event.target.selectedOptions[0].value;
|
|
switch (value) {
|
|
case LOGOUT:
|
|
this.logoutUser();
|
|
break;
|
|
case VIEW:
|
|
// redirect to channel page
|
|
this.props.history.push(`/${this.props.channelName}:${this.props.channelLongId}`);
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
render () {
|
|
const { siteDescription } = this.props;
|
|
return (
|
|
<div className='row row--wide nav-bar'>
|
|
<div className='row row--padded row--short flex-container--row flex-container--space-between-center'>
|
|
<Logo />
|
|
<div className='nav-bar--center'>
|
|
<span className='nav-bar-tagline'>{siteDescription}</span>
|
|
</div>
|
|
<div className='nav-bar--right'>
|
|
<NavLink className='nav-bar-link link--nav' activeClassName='link--nav-active' to='/' exact>Publish</NavLink>
|
|
<NavLink className='nav-bar-link link--nav' activeClassName='link--nav-active' to='/about'>About</NavLink>
|
|
{ this.props.channelName ? (
|
|
<NavBarChannelDropdown
|
|
channelName={this.props.channelName}
|
|
handleSelection={this.handleSelection}
|
|
defaultSelection={this.props.channelName}
|
|
VIEW={VIEW}
|
|
LOGOUT={LOGOUT}
|
|
/>
|
|
) : (
|
|
<NavLink id='nav-bar-login-link' className='nav-bar-link link--nav' activeClassName='link--nav-active' to='/login'>Channel</NavLink>
|
|
)}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default withRouter(NavBar);
|