1
0
mirror of https://github.com/ascribe/onion.git synced 2024-06-25 18:56:28 +02:00
onion/js/components/header.js

145 lines
4.5 KiB
JavaScript
Raw Normal View History

'use strict';
2015-05-20 16:19:40 +02:00
import React from 'react';
2015-06-11 15:57:19 +02:00
import Router from 'react-router';
2015-05-21 15:14:05 +02:00
2015-09-01 14:45:14 +02:00
import Nav from 'react-bootstrap/lib/Nav';
import Navbar from 'react-bootstrap/lib/Navbar';
2015-06-22 10:50:22 +02:00
import CollapsibleNav from 'react-bootstrap/lib/CollapsibleNav';
import DropdownButton from 'react-bootstrap/lib/DropdownButton';
import MenuItem from 'react-bootstrap/lib/MenuItem';
2015-06-17 17:48:23 +02:00
import MenuItemLink from 'react-router-bootstrap/lib/MenuItemLink';
2015-06-20 16:43:18 +02:00
import NavItemLink from 'react-router-bootstrap/lib/NavItemLink';
2015-09-01 18:11:18 +02:00
import UserActions from '../actions/user_actions';
import UserStore from '../stores/user_store';
import WhitelabelActions from '../actions/whitelabel_actions';
import WhitelabelStore from '../stores/whitelabel_store';
import EventActions from '../actions/event_actions';
import HeaderNotifications from './header_notification';
import HeaderNotificationDebug from './header_notification_debug';
import NavRoutesLinks from './nav_routes_links';
2015-06-11 15:35:18 +02:00
2015-06-29 15:58:47 +02:00
import { mergeOptions } from '../utils/general_utils';
import { getLangText } from '../utils/lang_utils';
2015-05-20 16:19:40 +02:00
let Header = React.createClass({
2015-07-14 21:06:11 +02:00
propTypes: {
showAddWork: React.PropTypes.bool,
routes: React.PropTypes.element
2015-07-14 21:06:11 +02:00
},
2015-07-17 15:09:38 +02:00
mixins: [Router.State],
2015-05-20 16:19:40 +02:00
2015-07-14 21:06:11 +02:00
getDefaultProps() {
return {
showAddWork: true
};
},
2015-05-20 16:19:40 +02:00
getInitialState() {
2015-09-01 14:45:14 +02:00
return mergeOptions(
WhitelabelStore.getState(),
2015-09-01 18:11:18 +02:00
UserStore.getState()
2015-09-01 14:45:14 +02:00
);
2015-05-20 16:19:40 +02:00
},
componentDidMount() {
UserActions.fetchCurrentUser();
2015-06-05 11:40:49 +02:00
UserStore.listen(this.onChange);
2015-06-29 15:58:47 +02:00
WhitelabelActions.fetchWhitelabel();
WhitelabelStore.listen(this.onChange);
2015-06-03 11:49:39 +02:00
},
componentWillUnmount() {
2015-06-04 13:16:19 +02:00
UserStore.unlisten(this.onChange);
2015-06-29 15:58:47 +02:00
WhitelabelStore.unlisten(this.onChange);
2015-05-20 16:19:40 +02:00
},
2015-06-29 15:58:47 +02:00
getLogo(){
let logo = (
<span>
<span>ascribe </span>
<span className="glyph-ascribe-spool-chunked ascribe-color"></span>
</span>);
2015-07-17 15:41:09 +02:00
if (this.state.whitelabel && this.state.whitelabel.logo){
2015-06-29 15:58:47 +02:00
logo = <img className="img-brand" src={this.state.whitelabel.logo} />;
}
return logo;
},
getPoweredBy(){
2015-07-17 15:41:09 +02:00
if (this.state.whitelabel && this.state.whitelabel.logo) {
2015-06-30 10:42:58 +02:00
return (
2015-07-14 19:01:14 +02:00
<li>
<a className="pull-right" href="https://www.ascribe.io/" target="_blank">
<span id="powered">{getLangText('powered by')} </span>
<span>ascribe </span>
<span className="glyph-ascribe-spool-chunked ascribe-color"></span>
</a>
</li>
);
2015-06-30 10:42:58 +02:00
}
return null;
2015-06-29 15:58:47 +02:00
},
2015-05-20 16:19:40 +02:00
onChange(state) {
this.setState(state);
2015-07-14 21:47:14 +02:00
if(this.state.currentUser && this.state.currentUser.email) {
EventActions.profileDidLoad.defer(this.state.currentUser);
2015-07-14 21:47:14 +02:00
}
2015-05-20 16:19:40 +02:00
},
2015-06-15 15:28:53 +02:00
2015-05-20 16:19:40 +02:00
render() {
2015-08-28 15:29:30 +02:00
let account;
let signup;
let navRoutesLinks;
2015-06-15 12:36:27 +02:00
if (this.state.currentUser.username){
account = (
<DropdownButton eventKey="1" title={this.state.currentUser.username}>
2015-07-07 10:28:39 +02:00
<MenuItemLink eventKey="2" to="settings">{getLangText('Account Settings')}</MenuItemLink>
2015-06-22 10:50:22 +02:00
<MenuItem divider />
2015-07-17 15:02:44 +02:00
<MenuItemLink eventKey="3" to="logout">{getLangText('Log out')}</MenuItemLink>
2015-09-01 14:45:14 +02:00
</DropdownButton>
2015-06-15 12:36:27 +02:00
);
2015-08-28 15:29:30 +02:00
navRoutesLinks = <NavRoutesLinks routes={this.props.routes} navbar right/>;
2015-06-15 12:36:27 +02:00
}
2015-06-15 15:28:53 +02:00
else {
account = <NavItemLink to="login">{getLangText('LOGIN')}</NavItemLink>;
signup = <NavItemLink to="signup">{getLangText('SIGNUP')}</NavItemLink>;
2015-06-15 15:28:53 +02:00
}
2015-06-22 10:50:22 +02:00
2015-06-29 15:58:47 +02:00
return (
<div>
<Navbar
brand={
2015-07-08 14:37:20 +02:00
this.getLogo()
}
2015-07-07 10:28:39 +02:00
toggleNavKey={0}
fixedTop={true}>
2015-06-29 15:58:47 +02:00
<CollapsibleNav eventKey={0}>
2015-07-14 19:01:14 +02:00
<Nav navbar left>
{this.getPoweredBy()}
</Nav>
2015-06-29 15:58:47 +02:00
<Nav navbar right>
2015-07-08 17:06:53 +02:00
<HeaderNotificationDebug show={false}/>
2015-06-29 15:58:47 +02:00
{account}
{signup}
</Nav>
2015-09-01 18:11:18 +02:00
<HeaderNotifications />
2015-08-28 15:29:30 +02:00
{navRoutesLinks}
2015-06-29 15:58:47 +02:00
</CollapsibleNav>
</Navbar>
</div>
2015-05-21 15:20:02 +02:00
);
2015-05-20 16:19:40 +02:00
}
});
export default Header;