mastodon/app/javascript/mastodon/features/notifications/components/notification.js

90 lines
3.3 KiB
JavaScript
Raw Normal View History

import React from 'react';
2016-11-20 19:39:18 +01:00
import ImmutablePropTypes from 'react-immutable-proptypes';
import StatusContainer from '../../../containers/status_container';
import AccountContainer from '../../../containers/account_container';
import Avatar from '../../../components/avatar';
2016-11-20 19:39:18 +01:00
import { FormattedMessage } from 'react-intl';
import Permalink from '../../../components/permalink';
2017-01-08 00:16:14 +01:00
import emojify from '../../../emoji';
import escapeTextContentForBrowser from 'escape-html';
import ImmutablePureComponent from 'react-immutable-pure-component';
2016-11-20 19:39:18 +01:00
class Notification extends ImmutablePureComponent {
2016-11-20 19:39:18 +01:00
renderFollow (account, link) {
return (
<div className='notification notification-follow'>
<div className='notification__message'>
<div className='notification__favourite-icon-wrapper'>
<i className='fa fa-fw fa-user-plus' />
</div>
<FormattedMessage id='notification.follow' defaultMessage='{name} followed you' values={{ name: link }} />
</div>
2016-11-20 19:39:18 +01:00
<AccountContainer id={account.get('id')} withNote={false} />
</div>
);
}
2016-11-20 19:39:18 +01:00
renderMention (notification) {
return <StatusContainer id={notification.get('status')} />;
}
2016-11-20 19:39:18 +01:00
renderFavourite (notification, link) {
return (
<div className='notification notification-favourite'>
<div className='notification__message'>
<div className='notification__favourite-icon-wrapper'>
<i className='fa fa-fw fa-star star-icon'/>
</div>
<FormattedMessage id='notification.favourite' defaultMessage='{name} favourited your status' values={{ name: link }} />
</div>
<StatusContainer id={notification.get('status')} account={notification.get('account')} muted={true} />
2016-11-20 19:39:18 +01:00
</div>
);
}
2016-11-20 19:39:18 +01:00
renderReblog (notification, link) {
return (
<div className='notification notification-reblog'>
<div className='notification__message'>
<div className='notification__favourite-icon-wrapper'>
<i className='fa fa-fw fa-retweet' />
</div>
<FormattedMessage id='notification.reblog' defaultMessage='{name} boosted your status' values={{ name: link }} />
</div>
<StatusContainer id={notification.get('status')} account={notification.get('account')} muted={true} />
2016-11-20 19:39:18 +01:00
</div>
);
}
2016-11-20 19:39:18 +01:00
render () { // eslint-disable-line consistent-return
2016-11-20 19:39:18 +01:00
const { notification } = this.props;
const account = notification.get('account');
const displayName = account.get('display_name').length > 0 ? account.get('display_name') : account.get('username');
2017-01-08 00:16:14 +01:00
const displayNameHTML = { __html: emojify(escapeTextContentForBrowser(displayName)) };
const link = <Permalink className='notification__display-name' href={account.get('url')} title={account.get('acct')} to={`/accounts/${account.get('id')}`} dangerouslySetInnerHTML={displayNameHTML} />;
2016-11-20 19:39:18 +01:00
switch(notification.get('type')) {
case 'follow':
return this.renderFollow(account, link);
case 'mention':
return this.renderMention(notification);
case 'favourite':
return this.renderFavourite(notification, link);
case 'reblog':
return this.renderReblog(notification, link);
2016-11-20 19:39:18 +01:00
}
}
}
Notification.propTypes = {
notification: ImmutablePropTypes.map.isRequired
};
2016-11-20 19:39:18 +01:00
export default Notification;