2017-09-20 23:51:45 +02:00
|
|
|
// `<NotificationFollow>`
|
|
|
|
// ======================
|
2017-07-14 20:13:02 +02:00
|
|
|
|
2017-09-20 23:51:45 +02:00
|
|
|
// * * * * * * * //
|
2017-07-14 20:13:02 +02:00
|
|
|
|
2017-09-20 23:51:45 +02:00
|
|
|
// Imports
|
|
|
|
// -------
|
2017-07-14 20:13:02 +02:00
|
|
|
|
2017-09-20 23:51:45 +02:00
|
|
|
// Package imports.
|
2017-07-14 20:13:02 +02:00
|
|
|
import React from 'react';
|
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
|
|
|
import PropTypes from 'prop-types';
|
2017-07-21 20:33:16 +02:00
|
|
|
import { FormattedMessage } from 'react-intl';
|
2017-07-14 20:13:02 +02:00
|
|
|
import ImmutablePureComponent from 'react-immutable-pure-component';
|
|
|
|
|
2017-09-20 23:51:45 +02:00
|
|
|
// Mastodon imports.
|
2017-07-14 20:13:02 +02:00
|
|
|
import Permalink from '../../../mastodon/components/permalink';
|
|
|
|
import AccountContainer from '../../../mastodon/containers/account_container';
|
|
|
|
|
2017-09-20 23:51:45 +02:00
|
|
|
// Our imports.
|
2017-07-21 20:33:16 +02:00
|
|
|
import NotificationOverlayContainer from '../notification/overlay/container';
|
2017-07-14 20:13:02 +02:00
|
|
|
|
2017-09-20 23:51:45 +02:00
|
|
|
// * * * * * * * //
|
2017-07-14 20:13:02 +02:00
|
|
|
|
2017-09-20 23:51:45 +02:00
|
|
|
// Implementation
|
|
|
|
// --------------
|
2017-07-14 20:13:02 +02:00
|
|
|
|
|
|
|
export default class NotificationFollow extends ImmutablePureComponent {
|
|
|
|
|
|
|
|
static propTypes = {
|
2017-09-28 10:04:20 +02:00
|
|
|
id : PropTypes.string.isRequired,
|
2017-07-14 20:13:02 +02:00
|
|
|
account : ImmutablePropTypes.map.isRequired,
|
2017-07-21 20:33:16 +02:00
|
|
|
notification : ImmutablePropTypes.map.isRequired,
|
2017-07-14 20:13:02 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
render () {
|
2017-07-21 20:33:16 +02:00
|
|
|
const { account, notification } = this.props;
|
2017-07-14 20:13:02 +02:00
|
|
|
|
2017-09-20 23:51:45 +02:00
|
|
|
// Links to the display name.
|
2017-09-28 11:03:23 +02:00
|
|
|
const displayName = account.get('display_name_html') || account.get('username');
|
2017-07-14 20:13:02 +02:00
|
|
|
const link = (
|
|
|
|
<Permalink
|
|
|
|
className='notification__display-name'
|
|
|
|
href={account.get('url')}
|
|
|
|
title={account.get('acct')}
|
|
|
|
to={`/accounts/${account.get('id')}`}
|
2017-09-28 11:03:23 +02:00
|
|
|
dangerouslySetInnerHTML={{ __html: displayName }}
|
2017-07-14 20:13:02 +02:00
|
|
|
/>
|
|
|
|
);
|
|
|
|
|
2017-09-20 23:51:45 +02:00
|
|
|
// Renders.
|
2017-07-14 20:13:02 +02:00
|
|
|
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>
|
|
|
|
|
|
|
|
<AccountContainer id={account.get('id')} withNote={false} />
|
2017-07-21 21:12:43 +02:00
|
|
|
<NotificationOverlayContainer notification={notification} />
|
2017-07-14 20:13:02 +02:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|