275 lines
9.4 KiB
JavaScript
275 lines
9.4 KiB
JavaScript
import { injectIntl, FormattedMessage } from 'react-intl';
|
|
import ImmutablePureComponent from 'react-immutable-pure-component';
|
|
import { HotKeys } from 'react-hotkeys';
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
|
import StatusContainer from '../../../../containers/status_container';
|
|
import AccountContainer from '../../../../containers/account_container';
|
|
import Button from '../../../../components/button'
|
|
import Icon from '../../../../components/icon';
|
|
|
|
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(', ');
|
|
};
|
|
|
|
export default
|
|
@injectIntl
|
|
class Notification extends ImmutablePureComponent {
|
|
|
|
static contextTypes = {
|
|
router: PropTypes.object,
|
|
};
|
|
|
|
static propTypes = {
|
|
notification: ImmutablePropTypes.map.isRequired,
|
|
hidden: PropTypes.bool,
|
|
onMoveUp: PropTypes.func.isRequired,
|
|
onMoveDown: PropTypes.func.isRequired,
|
|
onMention: PropTypes.func.isRequired,
|
|
onFavorite: PropTypes.func.isRequired,
|
|
onRepost: PropTypes.func.isRequired,
|
|
onToggleHidden: PropTypes.func.isRequired,
|
|
status: ImmutablePropTypes.map,
|
|
intl: PropTypes.object.isRequired,
|
|
getScrollPosition: PropTypes.func,
|
|
updateScrollBottom: PropTypes.func,
|
|
cacheMediaWidth: PropTypes.func,
|
|
cachedMediaWidth: PropTypes.number,
|
|
};
|
|
|
|
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(`/${notification.getIn(['account', 'acct'])}/posts/${notification.get('status')}`);
|
|
} else {
|
|
this.handleOpenProfile();
|
|
}
|
|
}
|
|
|
|
handleOpenProfile = () => {
|
|
const { notification } = this.props;
|
|
this.context.router.history.push(`/${notification.getIn(['account', 'acct'])}`);
|
|
}
|
|
|
|
handleMention = e => {
|
|
e.preventDefault();
|
|
|
|
const { notification, onMention } = this.props;
|
|
onMention(notification.get('account'), this.context.router.history);
|
|
}
|
|
|
|
handleHotkeyFavorite = () => {
|
|
const { status } = this.props;
|
|
if (status) this.props.onFavorite(status);
|
|
}
|
|
|
|
handleHotkeyBoost = e => {
|
|
const { status } = this.props;
|
|
if (status) this.props.onRepost(status, e);
|
|
}
|
|
|
|
handleHotkeyToggleHidden = () => {
|
|
const { status } = this.props;
|
|
if (status) this.props.onToggleHidden(status);
|
|
}
|
|
|
|
getHandlers() {
|
|
return {
|
|
reply: this.handleMention,
|
|
favorite: this.handleHotkeyFavorite,
|
|
boost: this.handleHotkeyBoost,
|
|
mention: this.handleMention,
|
|
open: this.handleOpen,
|
|
openProfile: this.handleOpenProfile,
|
|
moveUp: this.handleMoveUp,
|
|
moveDown: this.handleMoveDown,
|
|
toggleHidden: this.handleHotkeyToggleHidden,
|
|
};
|
|
}
|
|
|
|
renderFollow(notification, account, link) {
|
|
const { intl } = this.props;
|
|
|
|
return (
|
|
<HotKeys handlers={this.getHandlers()}>
|
|
<div className='notification notification--follow focusable' tabIndex='0' aria-label={notificationForScreenReader(intl, intl.formatMessage({ id: 'notification.follow', defaultMessage: '{name} followed you' }, { name: account.get('acct') }), notification.get('created_at'))}>
|
|
<div className='notification__message'>
|
|
<div className='notification__favorite-icon-wrapper'>
|
|
<Icon id='user-plus' fixedWidth />
|
|
</div>
|
|
|
|
<span title={notification.get('created_at')}>
|
|
<FormattedMessage id='notification.follow' defaultMessage='{name} followed you' values={{ name: link }} />
|
|
</span>
|
|
</div>
|
|
|
|
<AccountContainer id={account.get('id')} withNote={false} hidden={this.props.hidden} />
|
|
</div>
|
|
</HotKeys>
|
|
);
|
|
}
|
|
|
|
renderMention(notification) {
|
|
return (
|
|
<StatusContainer
|
|
id={notification.get('status')}
|
|
withDismiss
|
|
hidden={this.props.hidden}
|
|
onMoveDown={this.handleMoveDown}
|
|
onMoveUp={this.handleMoveUp}
|
|
contextType='notifications'
|
|
getScrollPosition={this.props.getScrollPosition}
|
|
updateScrollBottom={this.props.updateScrollBottom}
|
|
cachedMediaWidth={this.props.cachedMediaWidth}
|
|
cacheMediaWidth={this.props.cacheMediaWidth}
|
|
/>
|
|
);
|
|
}
|
|
|
|
renderFavorite(notification, link) {
|
|
const { intl } = this.props;
|
|
|
|
return (
|
|
<HotKeys handlers={this.getHandlers()}>
|
|
<div className='notification notification--favorite focusable' tabIndex='0' aria-label={notificationForScreenReader(intl, intl.formatMessage({ id: 'notification.favorite', defaultMessage: '{name} favorited your status' }, { name: notification.getIn(['account', 'acct']) }), notification.get('created_at'))}>
|
|
<div className='notification__message'>
|
|
<div className='notification__favorite-icon-wrapper'>
|
|
<Icon id='star' className='star-icon' fixedWidth />
|
|
</div>
|
|
|
|
<span title={notification.get('created_at')}>
|
|
<FormattedMessage id='notification.favorite' defaultMessage='{name} favorited your status' values={{ name: link }} />
|
|
</span>
|
|
</div>
|
|
|
|
{ /*
|
|
<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}
|
|
/> */ }
|
|
</div>
|
|
</HotKeys>
|
|
);
|
|
}
|
|
|
|
renderRepost(notification, link) {
|
|
const { intl } = this.props;
|
|
|
|
return (
|
|
<HotKeys handlers={this.getHandlers()}>
|
|
<div className='notification notification--reblog focusable' tabIndex='0' aria-label={notificationForScreenReader(intl, intl.formatMessage({ id: 'notification.reblog', defaultMessage: '{name} reposted your status' }, { name: notification.getIn(['account', 'acct']) }), notification.get('created_at'))}>
|
|
<div className='notification__message'>
|
|
<div className='notification__favorite-icon-wrapper'>
|
|
<Icon id='retweet' fixedWidth />
|
|
</div>
|
|
|
|
<span title={notification.get('created_at')}>
|
|
<FormattedMessage id='notification.reblog' defaultMessage='{name} reposted your status' values={{ name: link }} />
|
|
</span>
|
|
</div>
|
|
{ /*
|
|
<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}
|
|
/> */ }
|
|
</div>
|
|
</HotKeys>
|
|
);
|
|
}
|
|
|
|
renderPoll(notification) {
|
|
const { intl } = this.props;
|
|
|
|
return (
|
|
<HotKeys handlers={this.getHandlers()}>
|
|
<div className='notification notification--poll focusable' tabIndex='0' aria-label={notificationForScreenReader(intl, intl.formatMessage({ id: 'notification.poll', defaultMessage: 'A poll you have voted in has ended' }), notification.get('created_at'))}>
|
|
<div className='notification__message'>
|
|
<div className='notification__favorite-icon-wrapper'>
|
|
<Icon id='tasks' fixedWidth />
|
|
</div>
|
|
|
|
<span title={notification.get('created_at')}>
|
|
<FormattedMessage id='notification.poll' defaultMessage='A poll you have voted in has ended' />
|
|
</span>
|
|
</div>
|
|
{ /*
|
|
<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}
|
|
/> */}
|
|
</div>
|
|
</HotKeys>
|
|
);
|
|
}
|
|
|
|
render() {
|
|
const { notification } = this.props;
|
|
const account = notification.get('account');
|
|
const displayNameHtml = { __html: account.get('display_name_html') };
|
|
const link = (
|
|
<bdi>
|
|
<Button
|
|
className='notification__display-name'
|
|
href={`/${account.get('acct')}`}
|
|
title={account.get('acct')}
|
|
to={`/${account.get('acct')}`}
|
|
dangerouslySetInnerHTML={displayNameHtml}
|
|
/>
|
|
</bdi>
|
|
);
|
|
|
|
// console.log("notification:", notification)
|
|
|
|
switch (notification.get('type')) {
|
|
// case 'follow':
|
|
// return this.renderFollow(notification, account, link);
|
|
// case 'mention':
|
|
// return this.renderMention(notification);
|
|
case 'favourite':
|
|
return this.renderFavorite(notification, link);
|
|
// case 'reblog':
|
|
// return this.renderRepost(notification, link);
|
|
// case 'poll':
|
|
// return this.renderPoll(notification);
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
}
|