|
|
@ -1,4 +1,4 @@
|
|
|
|
import React, { Fragment } from 'react';
|
|
|
|
import React from 'react';
|
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import Avatar from './avatar';
|
|
|
|
import Avatar from './avatar';
|
|
|
@ -13,6 +13,7 @@ import { Link } from 'react-router-dom';
|
|
|
|
import { counterRenderer } from 'mastodon/components/common_counter';
|
|
|
|
import { counterRenderer } from 'mastodon/components/common_counter';
|
|
|
|
import ShortNumber from 'mastodon/components/short_number';
|
|
|
|
import ShortNumber from 'mastodon/components/short_number';
|
|
|
|
import Icon from 'mastodon/components/icon';
|
|
|
|
import Icon from 'mastodon/components/icon';
|
|
|
|
|
|
|
|
import classNames from 'classnames';
|
|
|
|
|
|
|
|
|
|
|
|
const messages = defineMessages({
|
|
|
|
const messages = defineMessages({
|
|
|
|
follow: { id: 'account.follow', defaultMessage: 'Follow' },
|
|
|
|
follow: { id: 'account.follow', defaultMessage: 'Follow' },
|
|
|
@ -57,6 +58,7 @@ class Account extends ImmutablePureComponent {
|
|
|
|
onMuteNotifications: PropTypes.func.isRequired,
|
|
|
|
onMuteNotifications: PropTypes.func.isRequired,
|
|
|
|
intl: PropTypes.object.isRequired,
|
|
|
|
intl: PropTypes.object.isRequired,
|
|
|
|
hidden: PropTypes.bool,
|
|
|
|
hidden: PropTypes.bool,
|
|
|
|
|
|
|
|
minimal: PropTypes.bool,
|
|
|
|
actionIcon: PropTypes.string,
|
|
|
|
actionIcon: PropTypes.string,
|
|
|
|
actionTitle: PropTypes.string,
|
|
|
|
actionTitle: PropTypes.string,
|
|
|
|
defaultAction: PropTypes.string,
|
|
|
|
defaultAction: PropTypes.string,
|
|
|
@ -92,14 +94,14 @@ class Account extends ImmutablePureComponent {
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
render () {
|
|
|
|
render () {
|
|
|
|
const { account, intl, hidden, onActionClick, actionIcon, actionTitle, defaultAction, size } = this.props;
|
|
|
|
const { account, intl, hidden, onActionClick, actionIcon, actionTitle, defaultAction, size, minimal } = this.props;
|
|
|
|
|
|
|
|
|
|
|
|
if (!account) {
|
|
|
|
if (!account) {
|
|
|
|
return (
|
|
|
|
return (
|
|
|
|
<div className='account'>
|
|
|
|
<div className={classNames('account', { 'account--minimal': minimal })}>
|
|
|
|
<div className='account__wrapper'>
|
|
|
|
<div className='account__wrapper'>
|
|
|
|
<div className='account__display-name'>
|
|
|
|
<div className='account__display-name'>
|
|
|
|
<div className='account__avatar-wrapper'><Skeleton width={36} height={36} /></div>
|
|
|
|
<div className='account__avatar-wrapper'><Skeleton width={size} height={size} /></div>
|
|
|
|
|
|
|
|
|
|
|
|
<div>
|
|
|
|
<div>
|
|
|
|
<DisplayName />
|
|
|
|
<DisplayName />
|
|
|
@ -113,10 +115,10 @@ class Account extends ImmutablePureComponent {
|
|
|
|
|
|
|
|
|
|
|
|
if (hidden) {
|
|
|
|
if (hidden) {
|
|
|
|
return (
|
|
|
|
return (
|
|
|
|
<Fragment>
|
|
|
|
<>
|
|
|
|
{account.get('display_name')}
|
|
|
|
{account.get('display_name')}
|
|
|
|
{account.get('username')}
|
|
|
|
{account.get('username')}
|
|
|
|
</Fragment>
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
@ -144,10 +146,10 @@ class Account extends ImmutablePureComponent {
|
|
|
|
hidingNotificationsButton = <IconButton active icon='bell-slash' title={intl.formatMessage(messages.mute_notifications, { name: account.get('username') })} onClick={this.handleMuteNotifications} />;
|
|
|
|
hidingNotificationsButton = <IconButton active icon='bell-slash' title={intl.formatMessage(messages.mute_notifications, { name: account.get('username') })} onClick={this.handleMuteNotifications} />;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
buttons = (
|
|
|
|
buttons = (
|
|
|
|
<Fragment>
|
|
|
|
<>
|
|
|
|
<IconButton active icon='volume-up' title={intl.formatMessage(messages.unmute, { name: account.get('username') })} onClick={this.handleMute} />
|
|
|
|
<IconButton active icon='volume-up' title={intl.formatMessage(messages.unmute, { name: account.get('username') })} onClick={this.handleMute} />
|
|
|
|
{hidingNotificationsButton}
|
|
|
|
{hidingNotificationsButton}
|
|
|
|
</Fragment>
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
);
|
|
|
|
} else if (defaultAction === 'mute') {
|
|
|
|
} else if (defaultAction === 'mute') {
|
|
|
|
buttons = <IconButton icon='volume-off' title={intl.formatMessage(messages.mute, { name: account.get('username') })} onClick={this.handleMute} />;
|
|
|
|
buttons = <IconButton icon='volume-off' title={intl.formatMessage(messages.mute, { name: account.get('username') })} onClick={this.handleMute} />;
|
|
|
@ -173,7 +175,7 @@ class Account extends ImmutablePureComponent {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
return (
|
|
|
|
<div className='account'>
|
|
|
|
<div className={classNames('account', { 'account--minimal': minimal })}>
|
|
|
|
<div className='account__wrapper'>
|
|
|
|
<div className='account__wrapper'>
|
|
|
|
<Link key={account.get('id')} className='account__display-name' title={account.get('acct')} to={`/@${account.get('acct')}`}>
|
|
|
|
<Link key={account.get('id')} className='account__display-name' title={account.get('acct')} to={`/@${account.get('acct')}`}>
|
|
|
|
<div className='account__avatar-wrapper'>
|
|
|
|
<div className='account__avatar-wrapper'>
|
|
|
@ -182,13 +184,15 @@ class Account extends ImmutablePureComponent {
|
|
|
|
|
|
|
|
|
|
|
|
<div>
|
|
|
|
<div>
|
|
|
|
<DisplayName account={account} />
|
|
|
|
<DisplayName account={account} />
|
|
|
|
<ShortNumber value={account.get('followers_count')} renderer={counterRenderer('followers')} /> {verification} {muteTimeRemaining}
|
|
|
|
{!minimal && <><ShortNumber value={account.get('followers_count')} renderer={counterRenderer('followers')} /> {verification} {muteTimeRemaining}</>}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</Link>
|
|
|
|
</Link>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
{!minimal && (
|
|
|
|
<div className='account__relationship'>
|
|
|
|
<div className='account__relationship'>
|
|
|
|
{buttons}
|
|
|
|
{buttons}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
)}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
);
|
|
|
|