glitch-soc/app/javascript/flavours/glitch/features/notifications/components/follow.jsx

109 lines
3.1 KiB
React
Raw Normal View History

2017-11-17 22:11:18 -05:00
import PropTypes from 'prop-types';
2017-11-17 22:11:18 -05:00
import { FormattedMessage } from 'react-intl';
import classNames from 'classnames';
import { withRouter } from 'react-router-dom';
import ImmutablePropTypes from 'react-immutable-proptypes';
2017-11-17 22:11:18 -05:00
import ImmutablePureComponent from 'react-immutable-pure-component';
2017-11-17 22:11:18 -05:00
import { HotKeys } from 'react-hotkeys';
import { Icon } from 'flavours/glitch/components/icon';
2017-12-04 02:26:40 -05:00
import Permalink from 'flavours/glitch/components/permalink';
import AccountContainer from 'flavours/glitch/containers/account_container';
import { WithRouterPropTypes } from 'flavours/glitch/utils/react_router';
2017-11-17 22:11:18 -05:00
import NotificationOverlayContainer from '../containers/overlay_container';
class NotificationFollow extends ImmutablePureComponent {
2017-11-17 22:11:18 -05:00
static propTypes = {
hidden: PropTypes.bool,
2017-11-17 22:11:18 -05:00
id: PropTypes.string.isRequired,
account: ImmutablePropTypes.map.isRequired,
notification: ImmutablePropTypes.map.isRequired,
unread: PropTypes.bool,
...WithRouterPropTypes,
2017-11-17 22:11:18 -05:00
};
handleMoveUp = () => {
const { notification, onMoveUp } = this.props;
onMoveUp(notification.get('id'));
};
2017-11-17 22:11:18 -05:00
handleMoveDown = () => {
const { notification, onMoveDown } = this.props;
onMoveDown(notification.get('id'));
};
2017-11-17 22:11:18 -05:00
handleOpen = () => {
this.handleOpenProfile();
};
2017-11-17 22:11:18 -05:00
handleOpenProfile = () => {
const { history, notification } = this.props;
history.push(`/@${notification.getIn(['account', 'acct'])}`);
};
2017-11-17 22:11:18 -05:00
handleMention = e => {
e.preventDefault();
const { history, notification, onMention } = this.props;
onMention(notification.get('account'), history);
};
2017-11-17 22:11:18 -05:00
getHandlers () {
return {
moveUp: this.handleMoveUp,
moveDown: this.handleMoveDown,
open: this.handleOpen,
openProfile: this.handleOpenProfile,
mention: this.handleMention,
reply: this.handleMention,
};
}
render () {
const { account, notification, hidden, unread } = this.props;
2017-11-17 22:11:18 -05:00
// Links to the display name.
const displayName = account.get('display_name_html') || account.get('username');
const link = (
<bdi><Permalink
2017-11-17 22:11:18 -05:00
className='notification__display-name'
href={account.get('url')}
title={account.get('acct')}
to={`/@${account.get('acct')}`}
2017-11-17 22:11:18 -05:00
dangerouslySetInnerHTML={{ __html: displayName }}
/></bdi>
2017-11-17 22:11:18 -05:00
);
// Renders.
return (
<HotKeys handlers={this.getHandlers()}>
<div className={classNames('notification notification-follow focusable', { unread })} tabIndex={0}>
2017-11-17 22:11:18 -05:00
<div className='notification__message'>
<div className='notification__favourite-icon-wrapper'>
<Icon fixedWidth id='user-plus' />
2017-11-17 22:11:18 -05:00
</div>
<FormattedMessage
id='notification.follow'
defaultMessage='{name} followed you'
values={{ name: link }}
/>
</div>
<AccountContainer hidden={hidden} id={account.get('id')} withNote={false} />
2017-11-17 22:11:18 -05:00
<NotificationOverlayContainer notification={notification} />
</div>
</HotKeys>
);
}
}
export default withRouter(NotificationFollow);