2017-05-02 20:04:16 -04:00
|
|
|
import React from 'react';
|
2016-11-20 13:39:18 -05:00
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
|
|
|
import StatusContainer from '../../../containers/status_container';
|
|
|
|
import AccountContainer from '../../../containers/account_container';
|
|
|
|
import { FormattedMessage } from 'react-intl';
|
2016-12-02 09:05:50 -05:00
|
|
|
import Permalink from '../../../components/permalink';
|
2017-01-07 18:16:14 -05:00
|
|
|
import emojify from '../../../emoji';
|
2017-02-25 19:34:56 -05:00
|
|
|
import escapeTextContentForBrowser from 'escape-html';
|
2017-05-02 20:04:16 -04:00
|
|
|
import ImmutablePureComponent from 'react-immutable-pure-component';
|
2016-11-20 13:39:18 -05:00
|
|
|
|
2017-05-02 20:04:16 -04:00
|
|
|
class Notification extends ImmutablePureComponent {
|
2016-11-20 13:39:18 -05:00
|
|
|
|
|
|
|
renderFollow (account, link) {
|
|
|
|
return (
|
2017-04-10 16:41:52 -04:00
|
|
|
<div className='notification notification-follow'>
|
2017-02-10 16:58:29 -05:00
|
|
|
<div className='notification__message'>
|
2017-04-22 22:26:55 -04:00
|
|
|
<div className='notification__favourite-icon-wrapper'>
|
2017-02-10 16:58:29 -05:00
|
|
|
<i className='fa fa-fw fa-user-plus' />
|
2016-12-02 08:52:41 -05:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<FormattedMessage id='notification.follow' defaultMessage='{name} followed you' values={{ name: link }} />
|
|
|
|
</div>
|
|
|
|
|
2016-11-20 13:39:18 -05:00
|
|
|
<AccountContainer id={account.get('id')} withNote={false} />
|
|
|
|
</div>
|
|
|
|
);
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|
2016-11-20 13:39:18 -05:00
|
|
|
|
|
|
|
renderMention (notification) {
|
|
|
|
return <StatusContainer id={notification.get('status')} />;
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|
2016-11-20 13:39:18 -05:00
|
|
|
|
|
|
|
renderFavourite (notification, link) {
|
|
|
|
return (
|
2017-04-10 16:41:52 -04:00
|
|
|
<div className='notification notification-favourite'>
|
2017-02-10 16:58:29 -05:00
|
|
|
<div className='notification__message'>
|
2017-04-22 22:26:55 -04:00
|
|
|
<div className='notification__favourite-icon-wrapper'>
|
|
|
|
<i className='fa fa-fw fa-star star-icon'/>
|
2016-12-02 08:52:41 -05:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<FormattedMessage id='notification.favourite' defaultMessage='{name} favourited your status' values={{ name: link }} />
|
|
|
|
</div>
|
|
|
|
|
2016-11-20 13:39:18 -05:00
|
|
|
<StatusContainer id={notification.get('status')} muted={true} />
|
|
|
|
</div>
|
|
|
|
);
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|
2016-11-20 13:39:18 -05:00
|
|
|
|
|
|
|
renderReblog (notification, link) {
|
|
|
|
return (
|
2017-04-10 16:41:52 -04:00
|
|
|
<div className='notification notification-reblog'>
|
2017-02-10 16:58:29 -05:00
|
|
|
<div className='notification__message'>
|
2017-04-22 22:26:55 -04:00
|
|
|
<div className='notification__favourite-icon-wrapper'>
|
2017-02-10 16:58:29 -05:00
|
|
|
<i className='fa fa-fw fa-retweet' />
|
2016-12-02 08:52:41 -05:00
|
|
|
</div>
|
|
|
|
|
2017-01-04 21:00:50 -05:00
|
|
|
<FormattedMessage id='notification.reblog' defaultMessage='{name} boosted your status' values={{ name: link }} />
|
2016-12-02 08:52:41 -05:00
|
|
|
</div>
|
|
|
|
|
2016-11-20 13:39:18 -05:00
|
|
|
<StatusContainer id={notification.get('status')} muted={true} />
|
|
|
|
</div>
|
|
|
|
);
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|
2016-11-20 13:39:18 -05:00
|
|
|
|
2017-04-15 07:27:27 -04:00
|
|
|
render () { // eslint-disable-line consistent-return
|
2016-11-20 13:39:18 -05: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-07 18:16:14 -05:00
|
|
|
const displayNameHTML = { __html: emojify(escapeTextContentForBrowser(displayName)) };
|
2017-04-22 22:26:55 -04:00
|
|
|
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 13:39:18 -05:00
|
|
|
|
|
|
|
switch(notification.get('type')) {
|
2017-04-11 16:53:58 -04:00
|
|
|
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 13:39:18 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
Notification.propTypes = {
|
|
|
|
notification: ImmutablePropTypes.map.isRequired
|
|
|
|
};
|
2016-11-20 13:39:18 -05:00
|
|
|
|
|
|
|
export default Notification;
|