2017-05-03 00:04:16 +00:00
|
|
|
import React from 'react';
|
2016-11-20 18:39:18 +00:00
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
2019-10-27 11:46:35 +00:00
|
|
|
import { injectIntl, FormattedMessage, defineMessages } from 'react-intl';
|
2017-10-05 23:07:59 +00:00
|
|
|
import { HotKeys } from 'react-hotkeys';
|
2019-10-27 11:46:35 +00:00
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import ImmutablePureComponent from 'react-immutable-pure-component';
|
|
|
|
import { me } from 'mastodon/initial_state';
|
|
|
|
import StatusContainer from 'mastodon/containers/status_container';
|
|
|
|
import AccountContainer from 'mastodon/containers/account_container';
|
2019-01-31 23:14:05 +00:00
|
|
|
import Icon from 'mastodon/components/icon';
|
2019-10-27 11:46:35 +00:00
|
|
|
import Permalink from 'mastodon/components/permalink';
|
|
|
|
|
|
|
|
const messages = defineMessages({
|
|
|
|
favourite: { id: 'notification.favourite', defaultMessage: '{name} favourited your status' },
|
|
|
|
follow: { id: 'notification.follow', defaultMessage: '{name} followed you' },
|
|
|
|
ownPoll: { id: 'notification.own_poll', defaultMessage: 'Your poll has ended' },
|
|
|
|
poll: { id: 'notification.poll', defaultMessage: 'A poll you have voted in has ended' },
|
|
|
|
reblog: { id: 'notification.reblog', defaultMessage: '{name} boosted your status' },
|
|
|
|
});
|
2016-11-20 18:39:18 +00:00
|
|
|
|
2018-08-26 15:53:26 +00:00
|
|
|
const notificationForScreenReader = (intl, message, timestamp) => {
|
|
|
|
const output = [message];
|
|
|
|
|
|
|
|
output.push(intl.formatDate(timestamp, { hour: '2-digit', minute: '2-digit', month: 'short', day: 'numeric' }));
|
|
|
|
|
|
|
|
return output.join(', ');
|
|
|
|
};
|
|
|
|
|
2018-09-14 15:59:48 +00:00
|
|
|
export default @injectIntl
|
|
|
|
class Notification extends ImmutablePureComponent {
|
2016-11-20 18:39:18 +00:00
|
|
|
|
2017-10-05 23:07:59 +00:00
|
|
|
static contextTypes = {
|
|
|
|
router: PropTypes.object,
|
|
|
|
};
|
|
|
|
|
2017-05-12 12:44:10 +00:00
|
|
|
static propTypes = {
|
2017-05-20 15:31:47 +00:00
|
|
|
notification: ImmutablePropTypes.map.isRequired,
|
2017-08-28 20:23:44 +00:00
|
|
|
hidden: PropTypes.bool,
|
2017-10-05 23:07:59 +00:00
|
|
|
onMoveUp: PropTypes.func.isRequired,
|
|
|
|
onMoveDown: PropTypes.func.isRequired,
|
|
|
|
onMention: PropTypes.func.isRequired,
|
2019-01-27 16:54:54 +00:00
|
|
|
onFavourite: PropTypes.func.isRequired,
|
|
|
|
onReblog: PropTypes.func.isRequired,
|
|
|
|
onToggleHidden: PropTypes.func.isRequired,
|
2019-03-16 19:10:42 +00:00
|
|
|
status: ImmutablePropTypes.map,
|
2018-08-26 15:53:26 +00:00
|
|
|
intl: PropTypes.object.isRequired,
|
2019-02-11 12:19:59 +00:00
|
|
|
getScrollPosition: PropTypes.func,
|
|
|
|
updateScrollBottom: PropTypes.func,
|
|
|
|
cacheMediaWidth: PropTypes.func,
|
|
|
|
cachedMediaWidth: PropTypes.number,
|
2017-05-12 12:44:10 +00:00
|
|
|
};
|
|
|
|
|
2017-10-05 23:07:59 +00:00
|
|
|
handleMoveUp = () => {
|
|
|
|
const { notification, onMoveUp } = this.props;
|
|
|
|
onMoveUp(notification.get('id'));
|
|
|
|
}
|
|
|
|
|
|
|
|
handleMoveDown = () => {
|
|
|
|
const { notification, onMoveDown } = this.props;
|
|
|
|
onMoveDown(notification.get('id'));
|
|
|
|
}
|
|
|
|
|
|
|
|
handleOpen = () => {
|
|
|
|
const { notification } = this.props;
|
|
|
|
|
|
|
|
if (notification.get('status')) {
|
|
|
|
this.context.router.history.push(`/statuses/${notification.get('status')}`);
|
|
|
|
} else {
|
|
|
|
this.handleOpenProfile();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
handleOpenProfile = () => {
|
|
|
|
const { notification } = this.props;
|
|
|
|
this.context.router.history.push(`/accounts/${notification.getIn(['account', 'id'])}`);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleMention = e => {
|
|
|
|
e.preventDefault();
|
|
|
|
|
|
|
|
const { notification, onMention } = this.props;
|
|
|
|
onMention(notification.get('account'), this.context.router.history);
|
|
|
|
}
|
|
|
|
|
2019-01-27 16:54:54 +00:00
|
|
|
handleHotkeyFavourite = () => {
|
|
|
|
const { status } = this.props;
|
|
|
|
if (status) this.props.onFavourite(status);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleHotkeyBoost = e => {
|
|
|
|
const { status } = this.props;
|
|
|
|
if (status) this.props.onReblog(status, e);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleHotkeyToggleHidden = () => {
|
|
|
|
const { status } = this.props;
|
|
|
|
if (status) this.props.onToggleHidden(status);
|
|
|
|
}
|
|
|
|
|
2017-10-05 23:07:59 +00:00
|
|
|
getHandlers () {
|
|
|
|
return {
|
2019-01-27 16:54:54 +00:00
|
|
|
reply: this.handleMention,
|
|
|
|
favourite: this.handleHotkeyFavourite,
|
|
|
|
boost: this.handleHotkeyBoost,
|
|
|
|
mention: this.handleMention,
|
2017-10-05 23:07:59 +00:00
|
|
|
open: this.handleOpen,
|
|
|
|
openProfile: this.handleOpenProfile,
|
2019-01-27 16:54:54 +00:00
|
|
|
moveUp: this.handleMoveUp,
|
|
|
|
moveDown: this.handleMoveDown,
|
|
|
|
toggleHidden: this.handleHotkeyToggleHidden,
|
2017-10-05 23:07:59 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-08-26 15:53:26 +00:00
|
|
|
renderFollow (notification, account, link) {
|
|
|
|
const { intl } = this.props;
|
|
|
|
|
2016-11-20 18:39:18 +00:00
|
|
|
return (
|
2017-10-05 23:07:59 +00:00
|
|
|
<HotKeys handlers={this.getHandlers()}>
|
2019-10-27 11:46:35 +00:00
|
|
|
<div className='notification notification-follow focusable' tabIndex='0' aria-label={notificationForScreenReader(intl, intl.formatMessage(messages.follow, { name: account.get('acct') }), notification.get('created_at'))}>
|
2017-10-05 23:07:59 +00:00
|
|
|
<div className='notification__message'>
|
|
|
|
<div className='notification__favourite-icon-wrapper'>
|
2019-01-31 23:14:05 +00:00
|
|
|
<Icon id='user-plus' fixedWidth />
|
2017-10-05 23:07:59 +00:00
|
|
|
</div>
|
2018-12-31 17:12:07 +00:00
|
|
|
|
2018-09-27 15:11:06 +00:00
|
|
|
<span title={notification.get('created_at')}>
|
|
|
|
<FormattedMessage id='notification.follow' defaultMessage='{name} followed you' values={{ name: link }} />
|
|
|
|
</span>
|
2016-12-02 13:52:41 +00:00
|
|
|
</div>
|
2018-12-31 17:12:07 +00:00
|
|
|
|
2017-10-05 23:07:59 +00:00
|
|
|
<AccountContainer id={account.get('id')} withNote={false} hidden={this.props.hidden} />
|
2016-12-02 13:52:41 +00:00
|
|
|
</div>
|
2017-10-05 23:07:59 +00:00
|
|
|
</HotKeys>
|
2016-11-20 18:39:18 +00:00
|
|
|
);
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2016-11-20 18:39:18 +00:00
|
|
|
|
|
|
|
renderMention (notification) {
|
2017-10-05 23:07:59 +00:00
|
|
|
return (
|
|
|
|
<StatusContainer
|
|
|
|
id={notification.get('status')}
|
|
|
|
withDismiss
|
|
|
|
hidden={this.props.hidden}
|
|
|
|
onMoveDown={this.handleMoveDown}
|
|
|
|
onMoveUp={this.handleMoveUp}
|
2018-07-07 17:31:19 +00:00
|
|
|
contextType='notifications'
|
2019-02-11 12:19:59 +00:00
|
|
|
getScrollPosition={this.props.getScrollPosition}
|
|
|
|
updateScrollBottom={this.props.updateScrollBottom}
|
|
|
|
cachedMediaWidth={this.props.cachedMediaWidth}
|
|
|
|
cacheMediaWidth={this.props.cacheMediaWidth}
|
2017-10-05 23:07:59 +00:00
|
|
|
/>
|
|
|
|
);
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2016-11-20 18:39:18 +00:00
|
|
|
|
|
|
|
renderFavourite (notification, link) {
|
2018-08-26 15:53:26 +00:00
|
|
|
const { intl } = this.props;
|
|
|
|
|
2016-11-20 18:39:18 +00:00
|
|
|
return (
|
2017-10-05 23:07:59 +00:00
|
|
|
<HotKeys handlers={this.getHandlers()}>
|
2019-10-27 11:46:35 +00:00
|
|
|
<div className='notification notification-favourite focusable' tabIndex='0' aria-label={notificationForScreenReader(intl, intl.formatMessage(messages.favourite, { name: notification.getIn(['account', 'acct']) }), notification.get('created_at'))}>
|
2017-10-05 23:07:59 +00:00
|
|
|
<div className='notification__message'>
|
|
|
|
<div className='notification__favourite-icon-wrapper'>
|
2019-01-31 23:14:05 +00:00
|
|
|
<Icon id='star' className='star-icon' fixedWidth />
|
2017-10-05 23:07:59 +00:00
|
|
|
</div>
|
2018-12-31 17:12:07 +00:00
|
|
|
|
|
|
|
<span title={notification.get('created_at')}>
|
|
|
|
<FormattedMessage id='notification.favourite' defaultMessage='{name} favourited your status' values={{ name: link }} />
|
2018-12-05 04:08:43 +00:00
|
|
|
</span>
|
2016-12-02 13:52:41 +00:00
|
|
|
</div>
|
|
|
|
|
2019-02-11 12:19:59 +00:00
|
|
|
<StatusContainer
|
|
|
|
id={notification.get('status')}
|
|
|
|
account={notification.get('account')}
|
|
|
|
muted
|
|
|
|
withDismiss
|
|
|
|
hidden={!!this.props.hidden}
|
|
|
|
getScrollPosition={this.props.getScrollPosition}
|
|
|
|
updateScrollBottom={this.props.updateScrollBottom}
|
|
|
|
cachedMediaWidth={this.props.cachedMediaWidth}
|
|
|
|
cacheMediaWidth={this.props.cacheMediaWidth}
|
|
|
|
/>
|
2017-10-05 23:07:59 +00:00
|
|
|
</div>
|
|
|
|
</HotKeys>
|
2016-11-20 18:39:18 +00:00
|
|
|
);
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2016-11-20 18:39:18 +00:00
|
|
|
|
|
|
|
renderReblog (notification, link) {
|
2018-08-26 15:53:26 +00:00
|
|
|
const { intl } = this.props;
|
|
|
|
|
2016-11-20 18:39:18 +00:00
|
|
|
return (
|
2017-10-05 23:07:59 +00:00
|
|
|
<HotKeys handlers={this.getHandlers()}>
|
2019-10-27 11:46:35 +00:00
|
|
|
<div className='notification notification-reblog focusable' tabIndex='0' aria-label={notificationForScreenReader(intl, intl.formatMessage(messages.reblog, { name: notification.getIn(['account', 'acct']) }), notification.get('created_at'))}>
|
2017-10-05 23:07:59 +00:00
|
|
|
<div className='notification__message'>
|
|
|
|
<div className='notification__favourite-icon-wrapper'>
|
2019-01-31 23:14:05 +00:00
|
|
|
<Icon id='retweet' fixedWidth />
|
2017-10-05 23:07:59 +00:00
|
|
|
</div>
|
2018-12-31 17:12:07 +00:00
|
|
|
|
|
|
|
<span title={notification.get('created_at')}>
|
|
|
|
<FormattedMessage id='notification.reblog' defaultMessage='{name} boosted your status' values={{ name: link }} />
|
2018-12-05 04:08:43 +00:00
|
|
|
</span>
|
2016-12-02 13:52:41 +00:00
|
|
|
</div>
|
|
|
|
|
2019-02-11 12:19:59 +00:00
|
|
|
<StatusContainer
|
|
|
|
id={notification.get('status')}
|
|
|
|
account={notification.get('account')}
|
|
|
|
muted
|
|
|
|
withDismiss
|
|
|
|
hidden={this.props.hidden}
|
|
|
|
getScrollPosition={this.props.getScrollPosition}
|
|
|
|
updateScrollBottom={this.props.updateScrollBottom}
|
|
|
|
cachedMediaWidth={this.props.cachedMediaWidth}
|
|
|
|
cacheMediaWidth={this.props.cacheMediaWidth}
|
|
|
|
/>
|
2017-10-05 23:07:59 +00:00
|
|
|
</div>
|
|
|
|
</HotKeys>
|
2016-11-20 18:39:18 +00:00
|
|
|
);
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2016-11-20 18:39:18 +00:00
|
|
|
|
2019-10-27 11:46:35 +00:00
|
|
|
renderPoll (notification, account) {
|
2019-03-10 23:49:31 +00:00
|
|
|
const { intl } = this.props;
|
2019-10-27 11:46:35 +00:00
|
|
|
const ownPoll = me === account.get('id');
|
|
|
|
const message = ownPoll ? intl.formatMessage(messages.ownPoll) : intl.formatMessage(messages.poll);
|
2019-03-10 23:49:31 +00:00
|
|
|
|
|
|
|
return (
|
|
|
|
<HotKeys handlers={this.getHandlers()}>
|
2019-10-27 11:46:35 +00:00
|
|
|
<div className='notification notification-poll focusable' tabIndex='0' aria-label={notificationForScreenReader(intl, message, notification.get('created_at'))}>
|
2019-03-10 23:49:31 +00:00
|
|
|
<div className='notification__message'>
|
|
|
|
<div className='notification__favourite-icon-wrapper'>
|
|
|
|
<Icon id='tasks' fixedWidth />
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<span title={notification.get('created_at')}>
|
2019-10-27 11:46:35 +00:00
|
|
|
{ownPoll ? (
|
2019-11-04 12:03:29 +00:00
|
|
|
<FormattedMessage id='notification.own_poll' defaultMessage='Your poll has ended' />
|
2019-10-27 11:46:35 +00:00
|
|
|
) : (
|
|
|
|
<FormattedMessage id='notification.poll' defaultMessage='A poll you have voted in has ended' />
|
|
|
|
)}
|
2019-03-10 23:49:31 +00:00
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<StatusContainer
|
|
|
|
id={notification.get('status')}
|
2019-10-27 11:46:35 +00:00
|
|
|
account={account}
|
2019-03-10 23:49:31 +00:00
|
|
|
muted
|
|
|
|
withDismiss
|
|
|
|
hidden={this.props.hidden}
|
|
|
|
getScrollPosition={this.props.getScrollPosition}
|
|
|
|
updateScrollBottom={this.props.updateScrollBottom}
|
|
|
|
cachedMediaWidth={this.props.cachedMediaWidth}
|
|
|
|
cacheMediaWidth={this.props.cacheMediaWidth}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</HotKeys>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-06-11 08:42:42 +00:00
|
|
|
render () {
|
2016-11-20 18:39:18 +00:00
|
|
|
const { notification } = this.props;
|
|
|
|
const account = notification.get('account');
|
2017-08-07 18:32:03 +00:00
|
|
|
const displayNameHtml = { __html: account.get('display_name_html') };
|
2018-01-15 17:55:10 +00:00
|
|
|
const link = <bdi><Permalink className='notification__display-name' href={account.get('url')} title={account.get('acct')} to={`/accounts/${account.get('id')}`} dangerouslySetInnerHTML={displayNameHtml} /></bdi>;
|
2016-11-20 18:39:18 +00:00
|
|
|
|
|
|
|
switch(notification.get('type')) {
|
2017-04-11 20:53:58 +00:00
|
|
|
case 'follow':
|
2018-08-26 15:53:26 +00:00
|
|
|
return this.renderFollow(notification, account, link);
|
2017-04-11 20:53:58 +00:00
|
|
|
case 'mention':
|
|
|
|
return this.renderMention(notification);
|
|
|
|
case 'favourite':
|
|
|
|
return this.renderFavourite(notification, link);
|
|
|
|
case 'reblog':
|
|
|
|
return this.renderReblog(notification, link);
|
2019-03-10 23:49:31 +00:00
|
|
|
case 'poll':
|
2019-10-27 11:46:35 +00:00
|
|
|
return this.renderPoll(notification, account);
|
2016-11-20 18:39:18 +00:00
|
|
|
}
|
2017-06-11 08:42:42 +00:00
|
|
|
|
|
|
|
return null;
|
2016-11-20 18:39:18 +00:00
|
|
|
}
|
|
|
|
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|