2015-06-05 11:06:36 +02:00
|
|
|
'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
|
|
|
|
2015-06-01 18:20:15 +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';
|
2015-06-01 18:20:15 +02:00
|
|
|
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-06-01 18:20:15 +02:00
|
|
|
|
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';
|
|
|
|
|
2015-07-08 15:00:11 +02:00
|
|
|
import HeaderNotificationDebug from './header_notification_debug';
|
|
|
|
|
2015-08-25 16:33:26 +02:00
|
|
|
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';
|
2015-06-02 14:25:26 +02:00
|
|
|
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: {
|
2015-08-25 16:33:26 +02:00
|
|
|
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
|
|
|
},
|
|
|
|
|
2015-06-04 13:17:59 +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-07-08 15:00:11 +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) {
|
2015-07-27 18:06:02 +02:00
|
|
|
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-09-03 14:15:00 +02:00
|
|
|
onMenuItemClick(event) {
|
|
|
|
/*
|
|
|
|
This is a hack to make the dropdown close after clicking on an item
|
|
|
|
The function just need to be defined
|
|
|
|
|
|
|
|
from https://github.com/react-bootstrap/react-bootstrap/issues/368:
|
|
|
|
|
|
|
|
@jvillasante - Have you tried to use onSelect with the DropdownButton?
|
|
|
|
I don't have a working example that is exactly like yours,
|
|
|
|
but I just noticed that the Dropdown closes when I've attached an event handler to OnSelect:
|
|
|
|
|
|
|
|
<DropdownButton eventKey={3} title="Admin" onSelect={ this.OnSelected } >
|
|
|
|
|
|
|
|
onSelected: function(e) {
|
|
|
|
// doesn't need to have functionality (necessarily) ... just wired up
|
|
|
|
}
|
|
|
|
Internally, a call to DropdownButton.setDropDownState(false) is made which will hide the dropdown menu.
|
|
|
|
So, you should be able to call that directly on the DropdownButton instance as well if needed.
|
|
|
|
|
|
|
|
NOW, THAT DIDN'T WORK - the onSelect routine isnt triggered in all cases
|
|
|
|
Hence, we do this manually
|
|
|
|
*/
|
|
|
|
this.refs.dropdownbutton.setDropdownState(false);
|
|
|
|
},
|
|
|
|
|
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 = (
|
2015-09-01 18:38:24 +02:00
|
|
|
<DropdownButton
|
2015-09-03 14:15:00 +02:00
|
|
|
ref='dropdownbutton'
|
2015-09-01 18:38:24 +02:00
|
|
|
eventKey="1"
|
|
|
|
title={this.state.currentUser.username}>
|
2015-09-03 14:15:00 +02:00
|
|
|
<MenuItemLink
|
|
|
|
eventKey="2"
|
|
|
|
to="settings"
|
|
|
|
onClick={this.onMenuItemClick}>
|
|
|
|
{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 {
|
2015-07-01 18:58:13 +02:00
|
|
|
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;
|