2017-04-21 20:05:35 +02:00
|
|
|
import PropTypes from 'prop-types';
|
2023-05-23 17:15:17 +02:00
|
|
|
|
2023-06-23 16:34:27 +02:00
|
|
|
import { defineMessages, injectIntl, FormattedMessage } from 'react-intl';
|
2023-05-23 17:15:17 +02:00
|
|
|
|
|
|
|
import classNames from 'classnames';
|
2022-11-13 21:10:20 +01:00
|
|
|
import { Link } from 'react-router-dom';
|
2023-05-23 17:15:17 +02:00
|
|
|
|
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
|
|
|
import ImmutablePureComponent from 'react-immutable-pure-component';
|
|
|
|
|
|
|
|
import { EmptyAccount } from 'mastodon/components/empty_account';
|
2023-07-08 11:11:58 +02:00
|
|
|
import { ShortNumber } from 'mastodon/components/short_number';
|
2023-05-09 03:11:56 +02:00
|
|
|
import { VerifiedBadge } from 'mastodon/components/verified_badge';
|
2023-05-23 17:15:17 +02:00
|
|
|
|
|
|
|
import { me } from '../initial_state';
|
|
|
|
|
|
|
|
import { Avatar } from './avatar';
|
2023-10-23 09:43:00 +02:00
|
|
|
import { Button } from './button';
|
2023-07-08 11:11:22 +02:00
|
|
|
import { FollowersCounter } from './counters';
|
2023-05-23 17:15:17 +02:00
|
|
|
import { DisplayName } from './display_name';
|
|
|
|
import { RelativeTimestamp } from './relative_timestamp';
|
2016-11-18 15:36:16 +01:00
|
|
|
|
|
|
|
const messages = defineMessages({
|
2016-12-11 23:13:05 +01:00
|
|
|
follow: { id: 'account.follow', defaultMessage: 'Follow' },
|
2017-01-16 19:36:32 +01:00
|
|
|
unfollow: { id: 'account.unfollow', defaultMessage: 'Unfollow' },
|
2023-06-06 04:14:28 +02:00
|
|
|
cancel_follow_request: { id: 'account.cancel_follow_request', defaultMessage: 'Withdraw follow request' },
|
|
|
|
unblock: { id: 'account.unblock_short', defaultMessage: 'Unblock' },
|
|
|
|
unmute: { id: 'account.unmute_short', defaultMessage: 'Unmute' },
|
|
|
|
mute_notifications: { id: 'account.mute_notifications_short', defaultMessage: 'Mute notifications' },
|
|
|
|
unmute_notifications: { id: 'account.unmute_notifications_short', defaultMessage: 'Unmute notifications' },
|
|
|
|
mute: { id: 'account.mute_short', defaultMessage: 'Mute' },
|
|
|
|
block: { id: 'account.block_short', defaultMessage: 'Block' },
|
2016-11-18 15:36:16 +01:00
|
|
|
});
|
2016-10-27 21:59:56 +02:00
|
|
|
|
2018-09-14 17:59:48 +02:00
|
|
|
class Account extends ImmutablePureComponent {
|
2016-10-27 21:59:56 +02:00
|
|
|
|
2017-05-12 14:44:10 +02:00
|
|
|
static propTypes = {
|
2022-10-31 13:06:17 +01:00
|
|
|
size: PropTypes.number,
|
2023-11-03 16:00:03 +01:00
|
|
|
account: ImmutablePropTypes.record,
|
2017-05-12 14:44:10 +02:00
|
|
|
onFollow: PropTypes.func.isRequired,
|
|
|
|
onBlock: PropTypes.func.isRequired,
|
|
|
|
onMute: PropTypes.func.isRequired,
|
2017-12-24 09:18:45 +01:00
|
|
|
onMuteNotifications: PropTypes.func.isRequired,
|
2017-05-20 17:31:47 +02:00
|
|
|
intl: PropTypes.object.isRequired,
|
2017-08-28 22:23:44 +02:00
|
|
|
hidden: PropTypes.bool,
|
2023-04-01 09:27:23 +02:00
|
|
|
minimal: PropTypes.bool,
|
2022-05-09 23:20:19 +02:00
|
|
|
defaultAction: PropTypes.string,
|
2023-06-23 16:34:27 +02:00
|
|
|
withBio: PropTypes.bool,
|
2017-05-12 14:44:10 +02:00
|
|
|
};
|
|
|
|
|
2022-10-31 13:06:17 +01:00
|
|
|
static defaultProps = {
|
|
|
|
size: 46,
|
|
|
|
};
|
|
|
|
|
2017-05-24 17:55:16 +02:00
|
|
|
handleFollow = () => {
|
2016-10-28 20:05:44 +02:00
|
|
|
this.props.onFollow(this.props.account);
|
2023-01-30 01:45:35 +01:00
|
|
|
};
|
2016-10-28 20:05:44 +02:00
|
|
|
|
2017-05-24 17:55:16 +02:00
|
|
|
handleBlock = () => {
|
2017-01-16 19:36:32 +01:00
|
|
|
this.props.onBlock(this.props.account);
|
2023-01-30 01:45:35 +01:00
|
|
|
};
|
2017-01-16 19:36:32 +01:00
|
|
|
|
2017-05-24 17:55:16 +02:00
|
|
|
handleMute = () => {
|
2017-04-15 01:23:49 +02:00
|
|
|
this.props.onMute(this.props.account);
|
2023-01-30 01:45:35 +01:00
|
|
|
};
|
2017-04-15 01:23:49 +02:00
|
|
|
|
2017-11-15 03:56:41 +01:00
|
|
|
handleMuteNotifications = () => {
|
|
|
|
this.props.onMuteNotifications(this.props.account, true);
|
2023-01-30 01:45:35 +01:00
|
|
|
};
|
2017-11-15 03:56:41 +01:00
|
|
|
|
|
|
|
handleUnmuteNotifications = () => {
|
|
|
|
this.props.onMuteNotifications(this.props.account, false);
|
2023-01-30 01:45:35 +01:00
|
|
|
};
|
2017-11-15 03:56:41 +01:00
|
|
|
|
2016-10-27 21:59:56 +02:00
|
|
|
render () {
|
2023-10-24 19:45:08 +02:00
|
|
|
const { account, intl, hidden, withBio, defaultAction, size, minimal } = this.props;
|
2016-10-27 21:59:56 +02:00
|
|
|
|
|
|
|
if (!account) {
|
2023-05-11 07:55:10 +02:00
|
|
|
return <EmptyAccount size={size} minimal={minimal} />;
|
2016-10-27 21:59:56 +02:00
|
|
|
}
|
|
|
|
|
2017-08-28 22:23:44 +02:00
|
|
|
if (hidden) {
|
|
|
|
return (
|
2023-04-01 09:27:23 +02:00
|
|
|
<>
|
2017-08-28 22:23:44 +02:00
|
|
|
{account.get('display_name')}
|
|
|
|
{account.get('username')}
|
2023-04-01 09:27:23 +02:00
|
|
|
</>
|
2017-08-28 22:23:44 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-02-09 01:20:09 +01:00
|
|
|
let buttons;
|
2016-10-28 20:05:44 +02:00
|
|
|
|
2023-10-24 19:45:08 +02:00
|
|
|
if (account.get('id') !== me && account.get('relationship', null) !== null) {
|
2016-11-01 18:03:51 +01:00
|
|
|
const following = account.getIn(['relationship', 'following']);
|
2017-01-16 19:36:32 +01:00
|
|
|
const requested = account.getIn(['relationship', 'requested']);
|
|
|
|
const blocking = account.getIn(['relationship', 'blocking']);
|
2017-04-15 01:23:49 +02:00
|
|
|
const muting = account.getIn(['relationship', 'muting']);
|
2017-01-16 19:36:32 +01:00
|
|
|
|
|
|
|
if (requested) {
|
2023-06-06 04:14:28 +02:00
|
|
|
buttons = <Button text={intl.formatMessage(messages.cancel_follow_request)} onClick={this.handleFollow} />;
|
2017-01-16 19:36:32 +01:00
|
|
|
} else if (blocking) {
|
2023-06-06 04:14:28 +02:00
|
|
|
buttons = <Button text={intl.formatMessage(messages.unblock)} onClick={this.handleBlock} />;
|
2017-04-15 01:23:49 +02:00
|
|
|
} else if (muting) {
|
2017-11-15 03:56:41 +01:00
|
|
|
let hidingNotificationsButton;
|
2023-06-06 04:14:28 +02:00
|
|
|
|
2017-12-06 16:10:54 +01:00
|
|
|
if (account.getIn(['relationship', 'muting_notifications'])) {
|
2023-06-06 04:14:28 +02:00
|
|
|
hidingNotificationsButton = <Button text={intl.formatMessage(messages.unmute_notifications)} onClick={this.handleUnmuteNotifications} />;
|
2017-11-15 03:56:41 +01:00
|
|
|
} else {
|
2023-06-06 04:14:28 +02:00
|
|
|
hidingNotificationsButton = <Button text={intl.formatMessage(messages.mute_notifications)} onClick={this.handleMuteNotifications} />;
|
2017-11-15 03:56:41 +01:00
|
|
|
}
|
2023-06-06 04:14:28 +02:00
|
|
|
|
2017-11-15 03:56:41 +01:00
|
|
|
buttons = (
|
2023-04-01 09:27:23 +02:00
|
|
|
<>
|
2023-06-06 04:14:28 +02:00
|
|
|
<Button text={intl.formatMessage(messages.unmute)} onClick={this.handleMute} />
|
2017-11-15 03:56:41 +01:00
|
|
|
{hidingNotificationsButton}
|
2023-04-01 09:27:23 +02:00
|
|
|
</>
|
2017-11-15 03:56:41 +01:00
|
|
|
);
|
2022-05-09 23:20:19 +02:00
|
|
|
} else if (defaultAction === 'mute') {
|
2023-06-06 04:14:28 +02:00
|
|
|
buttons = <Button title={intl.formatMessage(messages.mute)} onClick={this.handleMute} />;
|
2022-05-09 23:20:19 +02:00
|
|
|
} else if (defaultAction === 'block') {
|
2023-06-06 04:14:28 +02:00
|
|
|
buttons = <Button text={intl.formatMessage(messages.block)} onClick={this.handleBlock} />;
|
2023-11-09 15:50:25 +01:00
|
|
|
} else if (!account.get('suspended') && !account.get('moved') || following) {
|
2023-06-06 04:14:28 +02:00
|
|
|
buttons = <Button text={intl.formatMessage(following ? messages.unfollow : messages.follow)} onClick={this.handleFollow} />;
|
2017-01-16 19:36:32 +01:00
|
|
|
}
|
2016-10-27 21:59:56 +02:00
|
|
|
}
|
|
|
|
|
2023-03-25 08:46:32 +01:00
|
|
|
let muteTimeRemaining;
|
|
|
|
|
2020-10-13 01:01:14 +02:00
|
|
|
if (account.get('mute_expires_at')) {
|
2023-03-25 08:46:32 +01:00
|
|
|
muteTimeRemaining = <>· <RelativeTimestamp timestamp={account.get('mute_expires_at')} futureDate /></>;
|
|
|
|
}
|
|
|
|
|
|
|
|
let verification;
|
|
|
|
|
|
|
|
const firstVerifiedField = account.get('fields').find(item => !!item.get('verified_at'));
|
|
|
|
|
|
|
|
if (firstVerifiedField) {
|
2023-06-01 14:47:55 +02:00
|
|
|
verification = <VerifiedBadge link={firstVerifiedField.get('value')} />;
|
2020-10-13 01:01:14 +02:00
|
|
|
}
|
|
|
|
|
2016-10-27 21:59:56 +02:00
|
|
|
return (
|
2023-04-01 09:27:23 +02:00
|
|
|
<div className={classNames('account', { 'account--minimal': minimal })}>
|
2017-04-23 04:26:55 +02:00
|
|
|
<div className='account__wrapper'>
|
2022-11-13 21:10:20 +01:00
|
|
|
<Link key={account.get('id')} className='account__display-name' title={account.get('acct')} to={`/@${account.get('acct')}`}>
|
2023-03-25 08:46:32 +01:00
|
|
|
<div className='account__avatar-wrapper'>
|
|
|
|
<Avatar account={account} size={size} />
|
|
|
|
</div>
|
|
|
|
|
2023-06-01 14:47:55 +02:00
|
|
|
<div className='account__contents'>
|
2023-03-25 08:46:32 +01:00
|
|
|
<DisplayName account={account} />
|
2023-06-01 14:47:55 +02:00
|
|
|
{!minimal && (
|
|
|
|
<div className='account__details'>
|
2023-07-08 11:11:22 +02:00
|
|
|
<ShortNumber value={account.get('followers_count')} renderer={FollowersCounter} /> {verification} {muteTimeRemaining}
|
2023-06-01 14:47:55 +02:00
|
|
|
</div>
|
|
|
|
)}
|
2023-03-25 08:46:32 +01:00
|
|
|
</div>
|
2022-11-13 21:10:20 +01:00
|
|
|
</Link>
|
2016-10-28 20:05:44 +02:00
|
|
|
|
2023-04-01 09:27:23 +02:00
|
|
|
{!minimal && (
|
|
|
|
<div className='account__relationship'>
|
|
|
|
{buttons}
|
|
|
|
</div>
|
|
|
|
)}
|
2016-10-28 20:05:44 +02:00
|
|
|
</div>
|
2023-06-23 16:34:27 +02:00
|
|
|
|
|
|
|
{withBio && (account.get('note').length > 0 ? (
|
|
|
|
<div
|
|
|
|
className='account__note translate'
|
|
|
|
dangerouslySetInnerHTML={{ __html: account.get('note_emojified') }}
|
|
|
|
/>
|
|
|
|
) : (
|
|
|
|
<div className='account__note account__note--missing'><FormattedMessage id='account.no_bio' defaultMessage='No description provided.' /></div>
|
|
|
|
))}
|
2016-10-27 21:59:56 +02:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-21 20:05:35 +02:00
|
|
|
}
|
2023-03-24 03:17:53 +01:00
|
|
|
|
|
|
|
export default injectIntl(Account);
|