import React from 'react';
import Glyphicon from 'react-bootstrap/lib/Glyphicon';
import MenuItem from 'react-bootstrap/lib/MenuItem';
import NavDropdown from 'react-bootstrap/lib/NavDropdown';
import LinkContainer from 'react-router-bootstrap/lib/LinkContainer';
import NotificationActions from '../actions/notification_actions';
import NotificationStore from '../stores/notification_store';
import withContext from './context/with_context';
import { currentUserShape } from './prop_types';
import { omitFromObject } from '../utils/general';
import { getLangText } from '../utils/lang';
const { array, bool, object } = React.PropTypes;
const NotificationList = ({ isPiece, notifications, ...props }) => {
if (notifications.length) {
return (
{`${(isPiece ? 'Artworks' : 'Editions')} (${notifications.length})`}
{notifications.map((notification) => {
const pieceOrEdition = isPiece ? notification.piece : notification.edition;
const href = isPiece ? `/pieces/${pieceOrEdition.id}`
: `/editions/${pieceOrEdition.bitcoin_id}`;
if (pieceOrEdition && notification.notification) {
return (
);
} else {
return null;
}
})}
);
} else {
return null;
}
};
NotificationList.propTypes = {
notifications: array.isRequired,
isPiece: bool
};
const NotificationListItem = ({ notifications, pieceOrEdition }) => (
{pieceOrEdition.title}
by {pieceOrEdition.artist_name}
);
NotificationListItem.propTypes = {
notifications: array.isRequired,
pieceOrEdition: object.isRequired
};
const NotificationAction = ({ notifications }) => {
const additionalNotifications = notifications.length > 1 ? (
+ {notifications.length - 1} {getLangText('more...')}
) : null;
return (
{notifications[0].action_str}
{additionalNotifications}
);
};
NotificationAction.propTypes = {
notifications: array.isRequired,
};
const HeaderNotifications = React.createClass({
propTypes: {
// Injected through HOCs
currentUser: currentUserShape.isRequired,
isLoggedIn: bool.isRequired
// All other props are passed down to the backing NavDropdown
},
getInitialState() {
return NotificationStore.getState();
},
componentDidMount() {
NotificationStore.listen(this.onChange);
if (this.props.isLoggedIn) {
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);
},
refreshNotifications() {
NotificationActions.fetchPieceListNotifications();
NotificationActions.fetchEditionListNotifications();
},
render() {
const { editionListNotifications, pieceListNotifications } = this.state;
const dropdownProps = omitFromObject(this.props, ['currentUser'], ['isLoggedIn']);
if (pieceListNotifications.length || editionListNotifications.length) {
let numNotifications = 0;
if (pieceListNotifications.length) {
numNotifications += pieceListNotifications.length;
}
if (editionListNotifications.length) {
numNotifications += editionListNotifications.length;
}
return (
);
}
return null;
}
});
export default withContext(HeaderNotifications, 'currentUser', 'isLoggedIn');