2017-07-12 04:02:51 -04:00
|
|
|
// Package imports //
|
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 { FormattedMessage } from 'react-intl';
|
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-07-12 04:02:51 -04:00
|
|
|
// Mastodon imports //
|
|
|
|
import AccountContainer from '../../../mastodon/containers/account_container';
|
|
|
|
import Permalink from '../../../mastodon/components/permalink';
|
|
|
|
import emojify from '../../../mastodon/emoji';
|
|
|
|
|
|
|
|
// Our imports //
|
2017-07-13 06:36:12 -04:00
|
|
|
import StatusContainer from '../status/container';
|
2017-07-12 04:02:51 -04:00
|
|
|
|
2017-06-23 13:36:54 -04:00
|
|
|
export default class Notification extends ImmutablePureComponent {
|
2016-11-20 13:39:18 -05:00
|
|
|
|
2017-05-12 08:44:10 -04:00
|
|
|
static propTypes = {
|
2017-05-20 11:31:47 -04:00
|
|
|
notification: ImmutablePropTypes.map.isRequired,
|
2017-06-29 01:00:54 -04:00
|
|
|
settings: ImmutablePropTypes.map.isRequired,
|
2017-05-12 08:44:10 -04:00
|
|
|
};
|
|
|
|
|
2017-07-05 21:51:03 -04:00
|
|
|
renderFollow (notification) {
|
|
|
|
const account = notification.get('account');
|
|
|
|
const displayName = account.get('display_name').length > 0 ? account.get('display_name') : account.get('username');
|
|
|
|
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 13:39:18 -05:00
|
|
|
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) {
|
2017-07-05 21:51:03 -04:00
|
|
|
return (
|
|
|
|
<StatusContainer
|
|
|
|
id={notification.get('status')}
|
|
|
|
withDismiss
|
|
|
|
/>
|
|
|
|
);
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|
2016-11-20 13:39:18 -05:00
|
|
|
|
2017-07-05 21:51:03 -04:00
|
|
|
renderFavourite (notification) {
|
2016-11-20 13:39:18 -05:00
|
|
|
return (
|
2017-07-05 21:51:03 -04:00
|
|
|
<StatusContainer
|
|
|
|
id={notification.get('status')}
|
|
|
|
account={notification.get('account')}
|
|
|
|
prepend='favourite'
|
|
|
|
muted
|
|
|
|
withDismiss
|
|
|
|
/>
|
2016-11-20 13:39:18 -05:00
|
|
|
);
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|
2016-11-20 13:39:18 -05:00
|
|
|
|
2017-07-05 21:51:03 -04:00
|
|
|
renderReblog (notification) {
|
2016-11-20 13:39:18 -05:00
|
|
|
return (
|
2017-07-05 21:51:03 -04:00
|
|
|
<StatusContainer
|
|
|
|
id={notification.get('status')}
|
|
|
|
account={notification.get('account')}
|
|
|
|
prepend='reblog'
|
|
|
|
muted
|
|
|
|
withDismiss
|
|
|
|
/>
|
2016-11-20 13:39:18 -05:00
|
|
|
);
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|
2016-11-20 13:39:18 -05:00
|
|
|
|
2017-06-11 04:42:42 -04:00
|
|
|
render () {
|
2017-07-05 21:51:03 -04:00
|
|
|
const { notification } = this.props;
|
2016-11-20 13:39:18 -05:00
|
|
|
|
|
|
|
switch(notification.get('type')) {
|
2017-04-11 16:53:58 -04:00
|
|
|
case 'follow':
|
2017-07-05 21:51:03 -04:00
|
|
|
return this.renderFollow(notification);
|
2017-04-11 16:53:58 -04:00
|
|
|
case 'mention':
|
|
|
|
return this.renderMention(notification);
|
|
|
|
case 'favourite':
|
2017-07-05 21:51:03 -04:00
|
|
|
return this.renderFavourite(notification);
|
2017-04-11 16:53:58 -04:00
|
|
|
case 'reblog':
|
2017-07-05 21:51:03 -04:00
|
|
|
return this.renderReblog(notification);
|
2016-11-20 13:39:18 -05:00
|
|
|
}
|
2017-06-11 04:42:42 -04:00
|
|
|
|
|
|
|
return null;
|
2016-11-20 13:39:18 -05:00
|
|
|
}
|
|
|
|
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|