'use strict'; import React from 'react'; import { Link } from 'react-router'; import Nav from 'react-bootstrap/lib/Nav'; import Navbar from 'react-bootstrap/lib/Navbar'; import CollapsibleNav from 'react-bootstrap/lib/CollapsibleNav'; import DropdownButton from 'react-bootstrap/lib/DropdownButton'; import MenuItem from 'react-bootstrap/lib/MenuItem'; import NavItem from 'react-bootstrap/lib/NavItem'; import LinkContainer from 'react-router-bootstrap/lib/LinkContainer'; import AclProxy from './acl_proxy'; 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'; import { mergeOptions } from '../utils/general_utils'; import { getLangText } from '../utils/lang_utils'; import { constructHead } from '../utils/dom_utils'; let Header = React.createClass({ propTypes: { showAddWork: React.PropTypes.bool, routes: React.PropTypes.arrayOf(React.PropTypes.object) }, getDefaultProps() { return { showAddWork: true }; }, getInitialState() { return mergeOptions( WhitelabelStore.getState(), UserStore.getState() ); }, componentDidMount() { UserActions.fetchCurrentUser(); UserStore.listen(this.onChange); WhitelabelActions.fetchWhitelabel(); WhitelabelStore.listen(this.onChange); }, componentWillUnmount() { UserStore.unlisten(this.onChange); WhitelabelStore.unlisten(this.onChange); }, getLogo() { let { whitelabel } = this.state; if (whitelabel.head) { constructHead(whitelabel.head); } if (whitelabel.subdomain && whitelabel.subdomain !== 'www' && whitelabel.logo){ return ( Whitelabel brand ); } return ( ); }, getPoweredBy(){ return (
  • {getLangText('powered by')}
  • ); }, onChange(state) { this.setState(state); if(this.state.currentUser && this.state.currentUser.email) { EventActions.profileDidLoad.defer(this.state.currentUser); } }, onMenuItemClick() { /* 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: 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); }, render() { let account; let signup; let navRoutesLinks; if (this.state.currentUser.username){ account = ( {getLangText('Account Settings')} {getLangText('Contract Settings')} {getLangText('Log out')} ); navRoutesLinks = ; } else { account = ( {getLangText('LOGIN')} ); signup = ( {getLangText('SIGNUP')} ); } return (
    {navRoutesLinks}
    ); } }); export default Header;