94 lines
3.1 KiB
JavaScript
94 lines
3.1 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(({success, message, data}) => {
|
|
if (success) {
|
|
this.props.onChannelLogin(data.channelName, data.shortChannelId, data.channelClaimId);
|
|
} else {
|
|
console.log(message);
|
|
}
|
|
})
|
|
.catch(error => {
|
|
console.log('request encountered an error', error);
|
|
});
|
|
}
|
|
logoutUser () {
|
|
const params = {credentials: 'include'};
|
|
request('/logout', params)
|
|
.then(({success, message}) => {
|
|
if (success) {
|
|
this.props.onChannelLogout();
|
|
} else {
|
|
console.log(message);
|
|
}
|
|
})
|
|
.catch(error => {
|
|
console.log('request encountered an error', error);
|
|
});
|
|
}
|
|
handleSelection (event) {
|
|
console.log('handling selection', event);
|
|
const value = event.target.selectedOptions[0].value;
|
|
console.log('value', 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 () {
|
|
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">Open-source, decentralized image and video sharing.</span>
|
|
</div>
|
|
<div className="nav-bar--right">
|
|
<NavLink className="nav-bar-link link--nav" activeClassName="link--nav-active" to="/" exact={true}>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);
|