mirror of https://gitlab.com/ecentrics/concordia
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
1.9 KiB
63 lines
1.9 KiB
import React, { Component } from 'react';
|
|
import { drizzleConnect } from 'drizzle-react';
|
|
import PropTypes from 'prop-types';
|
|
|
|
import { Image, Menu } from 'semantic-ui-react'
|
|
|
|
class NavBar extends Component {
|
|
constructor(props){
|
|
super(props);
|
|
|
|
this.handleItemClick = this.handleItemClick.bind(this);
|
|
|
|
this.navRef = React.createRef();
|
|
}
|
|
|
|
handleItemClick(to) {
|
|
this.context.router.push(to);
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<Menu fixed='top' inverted>
|
|
<Menu.Item header onClick={() => {this.handleItemClick("/")}}>
|
|
<Image
|
|
size='mini'
|
|
src={require('../resources/logo.png')}
|
|
style={{ marginRight: '1.5em' }}
|
|
/>
|
|
Apella
|
|
</Menu.Item>
|
|
<Menu.Item onClick={() => {this.handleItemClick("/")}}>
|
|
Home
|
|
</Menu.Item>
|
|
{this.props.hasSignedUp
|
|
? <Menu.Item onClick={() => {this.handleItemClick("/profile")}}>
|
|
Profile
|
|
</Menu.Item>
|
|
:<Menu.Menu position='right' style={{backgroundColor: '#00b5ad'}}>
|
|
<Menu.Item onClick={() => {this.handleItemClick("/signup")}}>
|
|
Sign Up
|
|
</Menu.Item>
|
|
</Menu.Menu>
|
|
}
|
|
<div className="navBarText">
|
|
{this.props.navBarTitle !== '' && <span>{this.props.navBarTitle}</span>}
|
|
</div>
|
|
</Menu>
|
|
);
|
|
}
|
|
};
|
|
|
|
NavBar.contextTypes = {
|
|
router: PropTypes.object
|
|
};
|
|
|
|
const mapStateToProps = state => {
|
|
return {
|
|
hasSignedUp: state.user.hasSignedUp,
|
|
navBarTitle: state.interface.navBarTitle
|
|
}
|
|
};
|
|
|
|
export default drizzleConnect(NavBar, mapStateToProps);
|