2017-12-07 14:59:31 +00:00
|
|
|
import React, { Fragment } from 'react';
|
2016-10-27 19:59:56 +00:00
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
2017-04-21 18:05:35 +00:00
|
|
|
import PropTypes from 'prop-types';
|
2016-11-20 18:39:18 +00:00
|
|
|
import Avatar from './avatar';
|
|
|
|
import DisplayName from './display_name';
|
2016-12-02 14:05:50 +00:00
|
|
|
import Permalink from './permalink';
|
2016-11-20 18:39:18 +00:00
|
|
|
import IconButton from './icon_button';
|
2016-11-18 14:36:16 +00:00
|
|
|
import { defineMessages, injectIntl } from 'react-intl';
|
2017-05-03 00:04:16 +00:00
|
|
|
import ImmutablePureComponent from 'react-immutable-pure-component';
|
2017-10-31 02:27:48 +00:00
|
|
|
import { me } from '../initial_state';
|
2020-10-12 23:01:14 +00:00
|
|
|
import RelativeTimestamp from './relative_timestamp';
|
2016-11-18 14:36:16 +00:00
|
|
|
|
|
|
|
const messages = defineMessages({
|
2016-12-11 22:13:05 +00:00
|
|
|
follow: { id: 'account.follow', defaultMessage: 'Follow' },
|
2017-01-16 18:36:32 +00:00
|
|
|
unfollow: { id: 'account.unfollow', defaultMessage: 'Unfollow' },
|
|
|
|
requested: { id: 'account.requested', defaultMessage: 'Awaiting approval' },
|
2017-04-27 10:03:28 +00:00
|
|
|
unblock: { id: 'account.unblock', defaultMessage: 'Unblock @{name}' },
|
2017-05-20 15:31:47 +00:00
|
|
|
unmute: { id: 'account.unmute', defaultMessage: 'Unmute @{name}' },
|
2017-11-15 02:56:41 +00:00
|
|
|
mute_notifications: { id: 'account.mute_notifications', defaultMessage: 'Mute notifications from @{name}' },
|
|
|
|
unmute_notifications: { id: 'account.unmute_notifications', defaultMessage: 'Unmute notifications from @{name}' },
|
2016-11-18 14:36:16 +00:00
|
|
|
});
|
2016-10-27 19:59:56 +00:00
|
|
|
|
2018-09-14 15:59:48 +00:00
|
|
|
export default @injectIntl
|
|
|
|
class Account extends ImmutablePureComponent {
|
2016-10-27 19:59:56 +00:00
|
|
|
|
2017-05-12 12:44:10 +00:00
|
|
|
static propTypes = {
|
|
|
|
account: ImmutablePropTypes.map.isRequired,
|
|
|
|
onFollow: PropTypes.func.isRequired,
|
|
|
|
onBlock: PropTypes.func.isRequired,
|
|
|
|
onMute: PropTypes.func.isRequired,
|
2017-12-24 08:18:45 +00:00
|
|
|
onMuteNotifications: PropTypes.func.isRequired,
|
2017-05-20 15:31:47 +00:00
|
|
|
intl: PropTypes.object.isRequired,
|
2017-08-28 20:23:44 +00:00
|
|
|
hidden: PropTypes.bool,
|
2018-10-22 22:08:39 +00:00
|
|
|
actionIcon: PropTypes.string,
|
|
|
|
actionTitle: PropTypes.string,
|
|
|
|
onActionClick: PropTypes.func,
|
2017-05-12 12:44:10 +00:00
|
|
|
};
|
|
|
|
|
2017-05-24 15:55:16 +00:00
|
|
|
handleFollow = () => {
|
2016-10-28 18:05:44 +00:00
|
|
|
this.props.onFollow(this.props.account);
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2016-10-28 18:05:44 +00:00
|
|
|
|
2017-05-24 15:55:16 +00:00
|
|
|
handleBlock = () => {
|
2017-01-16 18:36:32 +00:00
|
|
|
this.props.onBlock(this.props.account);
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2017-01-16 18:36:32 +00:00
|
|
|
|
2017-05-24 15:55:16 +00:00
|
|
|
handleMute = () => {
|
2017-04-14 23:23:49 +00:00
|
|
|
this.props.onMute(this.props.account);
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2017-04-14 23:23:49 +00:00
|
|
|
|
2017-11-15 02:56:41 +00:00
|
|
|
handleMuteNotifications = () => {
|
|
|
|
this.props.onMuteNotifications(this.props.account, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleUnmuteNotifications = () => {
|
|
|
|
this.props.onMuteNotifications(this.props.account, false);
|
|
|
|
}
|
|
|
|
|
2018-10-22 22:08:39 +00:00
|
|
|
handleAction = () => {
|
|
|
|
this.props.onActionClick(this.props.account);
|
|
|
|
}
|
|
|
|
|
2016-10-27 19:59:56 +00:00
|
|
|
render () {
|
2018-10-22 22:08:39 +00:00
|
|
|
const { account, intl, hidden, onActionClick, actionIcon, actionTitle } = this.props;
|
2016-10-27 19:59:56 +00:00
|
|
|
|
|
|
|
if (!account) {
|
|
|
|
return <div />;
|
|
|
|
}
|
|
|
|
|
2017-08-28 20:23:44 +00:00
|
|
|
if (hidden) {
|
|
|
|
return (
|
2019-01-07 07:23:09 +00:00
|
|
|
<Fragment>
|
2017-08-28 20:23:44 +00:00
|
|
|
{account.get('display_name')}
|
|
|
|
{account.get('username')}
|
2019-01-07 07:23:09 +00:00
|
|
|
</Fragment>
|
2017-08-28 20:23:44 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-02-09 00:20:09 +00:00
|
|
|
let buttons;
|
2016-10-28 18:05:44 +00:00
|
|
|
|
2021-04-16 08:06:42 +00:00
|
|
|
if (actionIcon) {
|
|
|
|
if (onActionClick) {
|
|
|
|
buttons = <IconButton icon={actionIcon} title={actionTitle} onClick={this.handleAction} />;
|
|
|
|
}
|
2018-10-22 22:08:39 +00:00
|
|
|
} else if (account.get('id') !== me && account.get('relationship', null) !== null) {
|
2016-11-01 17:03:51 +00:00
|
|
|
const following = account.getIn(['relationship', 'following']);
|
2017-01-16 18:36:32 +00:00
|
|
|
const requested = account.getIn(['relationship', 'requested']);
|
|
|
|
const blocking = account.getIn(['relationship', 'blocking']);
|
2017-04-14 23:23:49 +00:00
|
|
|
const muting = account.getIn(['relationship', 'muting']);
|
2017-01-16 18:36:32 +00:00
|
|
|
|
|
|
|
if (requested) {
|
2017-06-06 11:20:07 +00:00
|
|
|
buttons = <IconButton disabled icon='hourglass' title={intl.formatMessage(messages.requested)} />;
|
2017-01-16 18:36:32 +00:00
|
|
|
} else if (blocking) {
|
2019-01-31 12:45:15 +00:00
|
|
|
buttons = <IconButton active icon='unlock' title={intl.formatMessage(messages.unblock, { name: account.get('username') })} onClick={this.handleBlock} />;
|
2017-04-14 23:23:49 +00:00
|
|
|
} else if (muting) {
|
2017-11-15 02:56:41 +00:00
|
|
|
let hidingNotificationsButton;
|
2017-12-06 15:10:54 +00:00
|
|
|
if (account.getIn(['relationship', 'muting_notifications'])) {
|
2017-11-15 02:56:41 +00:00
|
|
|
hidingNotificationsButton = <IconButton active icon='bell' title={intl.formatMessage(messages.unmute_notifications, { name: account.get('username') })} onClick={this.handleUnmuteNotifications} />;
|
|
|
|
} else {
|
|
|
|
hidingNotificationsButton = <IconButton active icon='bell-slash' title={intl.formatMessage(messages.mute_notifications, { name: account.get('username') })} onClick={this.handleMuteNotifications} />;
|
|
|
|
}
|
|
|
|
buttons = (
|
2017-12-07 14:59:31 +00:00
|
|
|
<Fragment>
|
2017-11-15 02:56:41 +00:00
|
|
|
<IconButton active icon='volume-up' title={intl.formatMessage(messages.unmute, { name: account.get('username') })} onClick={this.handleMute} />
|
|
|
|
{hidingNotificationsButton}
|
2017-12-07 14:59:31 +00:00
|
|
|
</Fragment>
|
2017-11-15 02:56:41 +00:00
|
|
|
);
|
2018-01-15 17:42:15 +00:00
|
|
|
} else if (!account.get('moved') || following) {
|
2017-12-06 15:10:54 +00:00
|
|
|
buttons = <IconButton icon={following ? 'user-times' : 'user-plus'} title={intl.formatMessage(following ? messages.unfollow : messages.follow)} onClick={this.handleFollow} active={following} />;
|
2017-01-16 18:36:32 +00:00
|
|
|
}
|
2016-10-27 19:59:56 +00:00
|
|
|
}
|
|
|
|
|
2020-10-12 23:01:14 +00:00
|
|
|
let mute_expires_at;
|
|
|
|
if (account.get('mute_expires_at')) {
|
|
|
|
mute_expires_at = <div><RelativeTimestamp timestamp={account.get('mute_expires_at')} futureDate /></div>;
|
|
|
|
}
|
|
|
|
|
2016-10-27 19:59:56 +00:00
|
|
|
return (
|
2017-02-09 00:20:09 +00:00
|
|
|
<div className='account'>
|
2017-04-23 02:26:55 +00:00
|
|
|
<div className='account__wrapper'>
|
2021-09-26 03:46:13 +00:00
|
|
|
<Permalink key={account.get('id')} className='account__display-name' title={account.get('acct')} href={account.get('url')} to={`/@${account.get('acct')}`}>
|
2017-08-07 17:44:55 +00:00
|
|
|
<div className='account__avatar-wrapper'><Avatar account={account} size={36} /></div>
|
2020-10-12 23:01:14 +00:00
|
|
|
{mute_expires_at}
|
2016-10-28 18:05:44 +00:00
|
|
|
<DisplayName account={account} />
|
2016-12-02 14:05:50 +00:00
|
|
|
</Permalink>
|
2016-10-28 18:05:44 +00:00
|
|
|
|
2017-04-23 02:26:55 +00:00
|
|
|
<div className='account__relationship'>
|
2016-12-02 13:52:41 +00:00
|
|
|
{buttons}
|
|
|
|
</div>
|
2016-10-28 18:05:44 +00:00
|
|
|
</div>
|
2016-10-27 19:59:56 +00:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|