'use strict'; import React from 'react'; import { Link } from 'react-router'; import DropdownButton from 'react-bootstrap/lib/DropdownButton'; import Glyphicon from 'react-bootstrap/lib/Glyphicon'; import MenuItem from 'react-bootstrap/lib/MenuItem'; import Nav from 'react-bootstrap/lib/Nav'; import NotificationActions from '../actions/notification_actions'; import NotificationStore from '../stores/notification_store'; import { getLangText } from '../utils/lang_utils'; let HeaderNotifications = React.createClass({ propTypes: { currentUser: React.PropTypes.object.isRequired }, getInitialState() { return NotificationStore.getState(); }, componentDidMount() { NotificationStore.listen(this.onChange); if (this.props.currentUser.email) { this.refreshNotifications(); } }, componentWillReceiveProps(nextProps) { if (nextProps.currentUser && nextProps.currentUser.email !== this.props.currentUser.email) { this.refreshNotifications(); } }, componentWillUnmount() { NotificationStore.unlisten(this.onChange); }, onChange(state) { this.setState(state); }, 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); }, refreshNotifications() { NotificationActions.fetchPieceListNotifications(); NotificationActions.fetchEditionListNotifications(); }, renderNotifications({ notifications, isPiece }) { if (notifications.length) { return (
{`${(isPiece ? 'Artworks' : 'Editions')} (${notifications.length})`}
{notifications.map((notification, i) => { return ( ); })}
); } else { return null; } }, render() { const { editionListNotifications, pieceListNotifications } = this.state; if (pieceListNotifications.length || editionListNotifications.length) { let numNotifications = 0; if (pieceListNotifications.length) { numNotifications += pieceListNotifications.length; } if (editionListNotifications.length) { numNotifications += editionListNotifications.length; } return ( ); } return null; } }); let NotificationListItem = React.createClass({ propTypes: { notification: React.PropTypes.array, pieceOrEdition: React.PropTypes.object, onClick: React.PropTypes.func }, isPiece() { return !(this.props.pieceOrEdition && this.props.pieceOrEdition.parent); }, getLinkData() { let { pieceOrEdition } = this.props; if (this.isPiece()) { return `/pieces/${pieceOrEdition.id}`; } else { return `/editions/${pieceOrEdition.bitcoin_id}`; } }, onClick(event){ this.props.onClick(event); }, getNotificationText(){ let numNotifications = null; if (this.props.notification.length > 1){ numNotifications =
+ {this.props.notification.length - 1} {getLangText('more...')}
; } return (
{this.props.notification[0].action_str} {numNotifications}
); }, render() { if (this.props.pieceOrEdition) { return (

{this.props.pieceOrEdition.title}

by {this.props.pieceOrEdition.artist_name}
{this.getNotificationText()}
); } return null; } }); export default HeaderNotifications;