2020-03-27 13:59:38 -07:00
'use strict' ;
import React from 'react' ;
2020-04-01 19:20:47 -07:00
import { connect } from 'react-redux' ;
2020-03-27 13:59:38 -07:00
import ImmutablePropTypes from 'react-immutable-proptypes' ;
import PropTypes from 'prop-types' ;
import { defineMessages , injectIntl , FormattedMessage } from 'react-intl' ;
2021-10-13 11:23:07 -07:00
import IconButton from 'soapbox/components/icon_button' ;
2020-03-27 13:59:38 -07:00
import ImmutablePureComponent from 'react-immutable-pure-component' ;
2021-07-13 10:30:24 -07:00
import {
isStaff ,
isAdmin ,
isModerator ,
isVerified ,
isLocal ,
2021-08-23 12:14:47 -07:00
isRemote ,
getDomain ,
2021-07-13 10:30:24 -07:00
} from 'soapbox/utils/accounts' ;
2020-03-27 13:59:38 -07:00
import classNames from 'classnames' ;
2020-05-28 15:52:07 -07:00
import Avatar from 'soapbox/components/avatar' ;
2021-10-07 19:39:03 -07:00
import { shortNumberFormat } from 'soapbox/utils/numbers' ;
import { NavLink } from 'react-router-dom' ;
2020-05-28 15:52:07 -07:00
import DropdownMenuContainer from 'soapbox/containers/dropdown_menu_container' ;
2021-09-18 17:17:55 -07:00
import BundleContainer from 'soapbox/features/ui/containers/bundle_container' ;
import { ProfileInfoPanel } from 'soapbox/features/ui/util/async-components' ;
2020-03-27 13:59:38 -07:00
import { debounce } from 'lodash' ;
2020-06-10 06:30:33 -07:00
import StillImage from 'soapbox/components/still_image' ;
2020-08-02 19:16:13 -07:00
import ActionButton from 'soapbox/features/ui/components/action_button' ;
2021-06-26 10:27:53 -07:00
import SubscriptionButton from 'soapbox/features/ui/components/subscription_button' ;
2021-05-01 13:02:27 -07:00
import { openModal } from 'soapbox/actions/modal' ;
import { List as ImmutableList , Map as ImmutableMap } from 'immutable' ;
2021-09-13 10:29:34 -07:00
import { getFeatures } from 'soapbox/utils/features' ;
2020-03-27 13:59:38 -07:00
const messages = defineMessages ( {
edit _profile : { id : 'account.edit_profile' , defaultMessage : 'Edit profile' } ,
linkVerifiedOn : { id : 'account.link_verified_on' , defaultMessage : 'Ownership of this link was checked on {date}' } ,
account _locked : { id : 'account.locked_info' , defaultMessage : 'This account privacy status is set to locked. The owner manually reviews who can follow them.' } ,
mention : { id : 'account.mention' , defaultMessage : 'Mention' } ,
2021-10-02 13:39:12 -07:00
chat : { id : 'account.chat' , defaultMessage : 'Chat with @{name}' } ,
2020-03-27 13:59:38 -07:00
direct : { id : 'account.direct' , defaultMessage : 'Direct message @{name}' } ,
unmute : { id : 'account.unmute' , defaultMessage : 'Unmute @{name}' } ,
block : { id : 'account.block' , defaultMessage : 'Block @{name}' } ,
2020-08-14 15:16:38 -07:00
unblock : { id : 'account.unblock' , defaultMessage : 'Unblock @{name}' } ,
2020-03-27 13:59:38 -07:00
mute : { id : 'account.mute' , defaultMessage : 'Mute @{name}' } ,
report : { id : 'account.report' , defaultMessage : 'Report @{name}' } ,
share : { id : 'account.share' , defaultMessage : 'Share @{name}\'s profile' } ,
media : { id : 'account.media' , defaultMessage : 'Media' } ,
blockDomain : { id : 'account.block_domain' , defaultMessage : 'Hide everything from {domain}' } ,
unblockDomain : { id : 'account.unblock_domain' , defaultMessage : 'Unhide {domain}' } ,
hideReblogs : { id : 'account.hide_reblogs' , defaultMessage : 'Hide reposts from @{name}' } ,
showReblogs : { id : 'account.show_reblogs' , defaultMessage : 'Show reposts from @{name}' } ,
preferences : { id : 'navigation_bar.preferences' , defaultMessage : 'Preferences' } ,
follow _requests : { id : 'navigation_bar.follow_requests' , defaultMessage : 'Follow requests' } ,
blocks : { id : 'navigation_bar.blocks' , defaultMessage : 'Blocked users' } ,
domain _blocks : { id : 'navigation_bar.domain_blocks' , defaultMessage : 'Hidden domains' } ,
mutes : { id : 'navigation_bar.mutes' , defaultMessage : 'Muted users' } ,
endorse : { id : 'account.endorse' , defaultMessage : 'Feature on profile' } ,
unendorse : { id : 'account.unendorse' , defaultMessage : 'Don\'t feature on profile' } ,
admin _account : { id : 'status.admin_account' , defaultMessage : 'Open moderation interface for @{name}' } ,
add _or _remove _from _list : { id : 'account.add_or_remove_from_list' , defaultMessage : 'Add or Remove from lists' } ,
2021-01-18 16:25:36 -08:00
deactivateUser : { id : 'admin.users.actions.deactivate_user' , defaultMessage : 'Deactivate @{name}' } ,
deleteUser : { id : 'admin.users.actions.delete_user' , defaultMessage : 'Delete @{name}' } ,
2021-03-15 19:50:16 -07:00
verifyUser : { id : 'admin.users.actions.verify_user' , defaultMessage : 'Verify @{name}' } ,
unverifyUser : { id : 'admin.users.actions.unverify_user' , defaultMessage : 'Unverify @{name}' } ,
2021-07-13 10:21:12 -07:00
promoteToAdmin : { id : 'admin.users.actions.promote_to_admin' , defaultMessage : 'Promote @{name} to an admin' } ,
promoteToModerator : { id : 'admin.users.actions.promote_to_moderator' , defaultMessage : 'Promote @{name} to a moderator' } ,
demoteToModerator : { id : 'admin.users.actions.demote_to_moderator' , defaultMessage : 'Demote @{name} to a moderator' } ,
demoteToUser : { id : 'admin.users.actions.demote_to_user' , defaultMessage : 'Demote @{name} to a regular user' } ,
2021-06-27 09:52:12 -07:00
subscribe : { id : 'account.subscribe' , defaultMessage : 'Subscribe to notifications from @{name}' } ,
unsubscribe : { id : 'account.unsubscribe' , defaultMessage : 'Unsubscribe to notifications from @{name}' } ,
2021-11-26 21:36:17 -08:00
suggestUser : { id : 'admin.users.actions.suggest_user' , defaultMessage : 'Suggest @{name}' } ,
unsuggestUser : { id : 'admin.users.actions.unsuggest_user' , defaultMessage : 'Unsuggest @{name}' } ,
2020-03-27 13:59:38 -07:00
} ) ;
2020-04-01 19:20:47 -07:00
const mapStateToProps = state => {
2020-04-18 13:22:40 -07:00
const me = state . get ( 'me' ) ;
2021-07-13 10:21:12 -07:00
const account = state . getIn ( [ 'accounts' , me ] ) ;
2021-09-13 10:29:34 -07:00
const instance = state . get ( 'instance' ) ;
const features = getFeatures ( instance ) ;
2021-07-13 10:21:12 -07:00
2020-04-01 19:20:47 -07:00
return {
2020-04-18 13:22:40 -07:00
me ,
2021-07-13 10:21:12 -07:00
meAccount : account ,
2021-09-13 10:29:34 -07:00
features ,
2020-04-01 19:20:47 -07:00
} ;
} ;
export default @ connect ( mapStateToProps )
@ injectIntl
2020-03-27 13:59:38 -07:00
class Header extends ImmutablePureComponent {
static propTypes = {
account : ImmutablePropTypes . map ,
2021-07-13 10:21:12 -07:00
meAccount : ImmutablePropTypes . map ,
2020-03-27 13:59:38 -07:00
identity _props : ImmutablePropTypes . list ,
intl : PropTypes . object . isRequired ,
username : PropTypes . string ,
2021-09-13 10:29:34 -07:00
features : PropTypes . object ,
2020-03-27 13:59:38 -07:00
} ;
state = {
isSmallScreen : ( window . innerWidth <= 895 ) ,
}
isStatusesPageActive = ( match , location ) => {
if ( ! match ) {
return false ;
}
return ! location . pathname . match ( /\/(followers|following|favorites|pins)\/?$/ ) ;
}
2020-06-17 18:42:30 -07:00
componentDidMount ( ) {
2020-03-27 13:59:38 -07:00
window . addEventListener ( 'resize' , this . handleResize , { passive : true } ) ;
}
2020-04-14 14:47:35 -07:00
componentWillUnmount ( ) {
2020-03-27 13:59:38 -07:00
window . removeEventListener ( 'resize' , this . handleResize ) ;
}
handleResize = debounce ( ( ) => {
this . setState ( { isSmallScreen : ( window . innerWidth <= 895 ) } ) ;
} , 5 , {
trailing : true ,
} ) ;
2021-05-01 13:02:27 -07:00
onAvatarClick = ( ) => {
const avatar _url = this . props . account . get ( 'avatar' ) ;
const avatar = ImmutableMap ( {
type : 'image' ,
preview _url : avatar _url ,
url : avatar _url ,
description : '' ,
} ) ;
this . props . dispatch ( openModal ( 'MEDIA' , { media : ImmutableList . of ( avatar ) , index : 0 } ) ) ;
}
handleAvatarClick = ( e ) => {
if ( e . button === 0 && ! ( e . ctrlKey || e . metaKey ) ) {
e . preventDefault ( ) ;
this . onAvatarClick ( ) ;
}
}
2021-08-27 13:52:14 -07:00
onHeaderClick = ( ) => {
const header _url = this . props . account . get ( 'header' ) ;
const header = ImmutableMap ( {
type : 'image' ,
preview _url : header _url ,
url : header _url ,
description : '' ,
} ) ;
this . props . dispatch ( openModal ( 'MEDIA' , { media : ImmutableList . of ( header ) , index : 0 } ) ) ;
}
handleHeaderClick = ( e ) => {
if ( e . button === 0 && ! ( e . ctrlKey || e . metaKey ) ) {
e . preventDefault ( ) ;
this . onHeaderClick ( ) ;
}
}
2021-10-15 07:45:03 -07:00
handleShare = ( ) => {
navigator . share ( {
text : ` @ ${ this . props . account . get ( 'acct' ) } ` ,
url : this . props . account . get ( 'url' ) ,
} ) . catch ( ( e ) => {
if ( e . name !== 'AbortError' ) console . error ( e ) ;
} ) ;
}
2020-03-27 13:59:38 -07:00
makeMenu ( ) {
2021-09-13 10:29:34 -07:00
const { account , intl , me , meAccount , features } = this . props ;
2020-03-27 13:59:38 -07:00
2021-08-03 10:10:42 -07:00
const menu = [ ] ;
2020-03-27 13:59:38 -07:00
if ( ! account || ! me ) {
return [ ] ;
}
if ( 'share' in navigator ) {
2021-11-04 12:54:28 -07:00
menu . push ( {
text : intl . formatMessage ( messages . share , { name : account . get ( 'username' ) } ) ,
action : this . handleShare ,
icon : require ( '@tabler/icons/icons/share.svg' ) ,
} ) ;
2020-03-27 13:59:38 -07:00
menu . push ( null ) ;
}
if ( account . get ( 'id' ) === me ) {
2021-11-04 12:19:04 -07:00
menu . push ( {
text : intl . formatMessage ( messages . edit _profile ) ,
to : '/settings/profile' ,
icon : require ( '@tabler/icons/icons/user.svg' ) ,
} ) ;
menu . push ( {
text : intl . formatMessage ( messages . preferences ) ,
to : '/settings/preferences' ,
icon : require ( '@tabler/icons/icons/settings.svg' ) ,
} ) ;
2020-03-27 13:59:38 -07:00
menu . push ( null ) ;
2021-11-04 12:19:04 -07:00
menu . push ( {
text : intl . formatMessage ( messages . follow _requests ) ,
to : '/follow_requests' ,
icon : require ( '@tabler/icons/icons/user-plus.svg' ) ,
} ) ;
2020-03-27 13:59:38 -07:00
menu . push ( null ) ;
2021-11-04 12:19:04 -07:00
menu . push ( {
text : intl . formatMessage ( messages . mutes ) ,
to : '/mutes' ,
icon : require ( '@tabler/icons/icons/circle-x.svg' ) ,
} ) ;
menu . push ( {
text : intl . formatMessage ( messages . blocks ) ,
to : '/blocks' ,
icon : require ( '@tabler/icons/icons/ban.svg' ) ,
} ) ;
menu . push ( {
text : intl . formatMessage ( messages . domain _blocks ) ,
to : '/domain_blocks' ,
icon : require ( '@tabler/icons/icons/ban.svg' ) ,
} ) ;
2020-03-27 13:59:38 -07:00
} else {
2021-11-04 12:19:04 -07:00
menu . push ( {
text : intl . formatMessage ( messages . mention , { name : account . get ( 'username' ) } ) ,
action : this . props . onMention ,
icon : require ( 'feather-icons/dist/icons/at-sign.svg' ) ,
} ) ;
2021-10-02 13:39:12 -07:00
if ( account . getIn ( [ 'pleroma' , 'accepts_chat_messages' ] , false ) === true ) {
2021-11-04 12:19:04 -07:00
menu . push ( {
text : intl . formatMessage ( messages . chat , { name : account . get ( 'username' ) } ) ,
action : this . props . onChat ,
icon : require ( '@tabler/icons/icons/messages.svg' ) ,
} ) ;
2021-10-13 11:23:07 -07:00
} else {
2021-11-04 12:19:04 -07:00
menu . push ( {
text : intl . formatMessage ( messages . direct , { name : account . get ( 'username' ) } ) ,
action : this . props . onDirect ,
2021-11-24 09:28:35 -08:00
icon : require ( '@tabler/icons/icons/mail.svg' ) ,
2021-11-04 12:19:04 -07:00
} ) ;
2021-10-02 13:39:12 -07:00
}
2020-03-27 13:59:38 -07:00
if ( account . getIn ( [ 'relationship' , 'following' ] ) ) {
if ( account . getIn ( [ 'relationship' , 'showing_reblogs' ] ) ) {
2021-11-04 12:19:04 -07:00
menu . push ( {
text : intl . formatMessage ( messages . hideReblogs , { name : account . get ( 'username' ) } ) ,
action : this . props . onReblogToggle ,
icon : require ( '@tabler/icons/icons/repeat.svg' ) ,
} ) ;
2020-03-27 13:59:38 -07:00
} else {
2021-11-04 12:19:04 -07:00
menu . push ( {
text : intl . formatMessage ( messages . showReblogs , { name : account . get ( 'username' ) } ) ,
action : this . props . onReblogToggle ,
icon : require ( '@tabler/icons/icons/repeat.svg' ) ,
} ) ;
2020-03-27 13:59:38 -07:00
}
2021-09-18 13:03:38 -07:00
if ( features . accountSubscriptions ) {
if ( account . getIn ( [ 'relationship' , 'subscribing' ] ) ) {
2021-11-04 12:19:04 -07:00
menu . push ( {
text : intl . formatMessage ( messages . unsubscribe , { name : account . get ( 'username' ) } ) ,
action : this . props . onSubscriptionToggle ,
icon : require ( '@tabler/icons/icons/bell.svg' ) ,
} ) ;
2021-09-18 13:03:38 -07:00
} else {
2021-11-04 12:19:04 -07:00
menu . push ( {
text : intl . formatMessage ( messages . subscribe , { name : account . get ( 'username' ) } ) ,
action : this . props . onSubscriptionToggle ,
icon : require ( '@tabler/icons/icons/bell-off.svg' ) ,
} ) ;
2021-09-18 13:03:38 -07:00
}
}
if ( features . lists ) {
2021-11-04 12:19:04 -07:00
menu . push ( {
text : intl . formatMessage ( messages . add _or _remove _from _list ) ,
action : this . props . onAddToList ,
icon : require ( '@tabler/icons/icons/list.svg' ) ,
} ) ;
2021-06-27 09:52:12 -07:00
}
2020-08-15 22:23:06 -07:00
// menu.push({ text: intl.formatMessage(account.getIn(['relationship', 'endorsed']) ? messages.unendorse : messages.endorse), action: this.props.onEndorseToggle });
2020-03-27 13:59:38 -07:00
menu . push ( null ) ;
2021-09-18 13:03:38 -07:00
} else if ( features . lists && features . unrestrictedLists ) {
2021-11-04 12:19:04 -07:00
menu . push ( {
text : intl . formatMessage ( messages . add _or _remove _from _list ) ,
action : this . props . onAddToList ,
icon : require ( '@tabler/icons/icons/list.svg' ) ,
} ) ;
2020-05-26 05:49:05 -07:00
}
2020-03-27 13:59:38 -07:00
if ( account . getIn ( [ 'relationship' , 'muting' ] ) ) {
2021-11-04 12:19:04 -07:00
menu . push ( {
text : intl . formatMessage ( messages . unmute , { name : account . get ( 'username' ) } ) ,
action : this . props . onMute ,
icon : require ( '@tabler/icons/icons/circle-x.svg' ) ,
} ) ;
2020-03-27 13:59:38 -07:00
} else {
2021-11-04 12:19:04 -07:00
menu . push ( {
text : intl . formatMessage ( messages . mute , { name : account . get ( 'username' ) } ) ,
action : this . props . onMute ,
icon : require ( '@tabler/icons/icons/circle-x.svg' ) ,
} ) ;
2020-03-27 13:59:38 -07:00
}
if ( account . getIn ( [ 'relationship' , 'blocking' ] ) ) {
2021-11-04 12:19:04 -07:00
menu . push ( {
text : intl . formatMessage ( messages . unblock , { name : account . get ( 'username' ) } ) ,
action : this . props . onBlock ,
icon : require ( '@tabler/icons/icons/ban.svg' ) ,
} ) ;
2020-03-27 13:59:38 -07:00
} else {
2021-11-04 12:19:04 -07:00
menu . push ( {
text : intl . formatMessage ( messages . block , { name : account . get ( 'username' ) } ) ,
action : this . props . onBlock ,
icon : require ( '@tabler/icons/icons/ban.svg' ) ,
} ) ;
2020-03-27 13:59:38 -07:00
}
2021-11-04 12:19:04 -07:00
menu . push ( {
text : intl . formatMessage ( messages . report , { name : account . get ( 'username' ) } ) ,
action : this . props . onReport ,
icon : require ( '@tabler/icons/icons/flag.svg' ) ,
} ) ;
2020-03-27 13:59:38 -07:00
}
2021-08-23 12:14:47 -07:00
if ( isRemote ( account ) ) {
const domain = getDomain ( account ) ;
2020-03-27 13:59:38 -07:00
menu . push ( null ) ;
if ( account . getIn ( [ 'relationship' , 'domain_blocking' ] ) ) {
2021-11-04 12:19:04 -07:00
menu . push ( {
text : intl . formatMessage ( messages . unblockDomain , { domain } ) ,
action : this . props . onUnblockDomain ,
icon : require ( '@tabler/icons/icons/ban.svg' ) ,
} ) ;
2020-03-27 13:59:38 -07:00
} else {
2021-11-04 12:19:04 -07:00
menu . push ( {
text : intl . formatMessage ( messages . blockDomain , { domain } ) ,
action : this . props . onBlockDomain ,
icon : require ( '@tabler/icons/icons/ban.svg' ) ,
} ) ;
2020-03-27 13:59:38 -07:00
}
}
2021-07-13 10:21:12 -07:00
if ( isStaff ( meAccount ) ) {
2020-03-27 13:59:38 -07:00
menu . push ( null ) ;
2021-07-13 10:21:12 -07:00
if ( isAdmin ( meAccount ) ) {
2021-11-04 12:19:04 -07:00
menu . push ( {
text : intl . formatMessage ( messages . admin _account , { name : account . get ( 'username' ) } ) ,
href : ` /pleroma/admin/#/users/ ${ account . get ( 'id' ) } / ` , newTab : true ,
icon : require ( 'icons/gavel.svg' ) ,
} ) ;
2021-07-13 10:21:12 -07:00
}
2021-07-13 10:39:53 -07:00
if ( account . get ( 'id' ) !== me && isLocal ( account ) ) {
2021-07-13 10:30:24 -07:00
if ( isAdmin ( account ) ) {
2021-11-04 12:19:04 -07:00
menu . push ( {
text : intl . formatMessage ( messages . demoteToModerator , { name : account . get ( 'username' ) } ) ,
action : this . props . onPromoteToModerator ,
icon : require ( '@tabler/icons/icons/arrow-up-circle.svg' ) ,
} ) ;
menu . push ( {
text : intl . formatMessage ( messages . demoteToUser , { name : account . get ( 'username' ) } ) ,
action : this . props . onDemoteToUser ,
icon : require ( '@tabler/icons/icons/arrow-down-circle.svg' ) ,
} ) ;
2021-07-13 10:30:24 -07:00
} else if ( isModerator ( account ) ) {
2021-11-04 12:19:04 -07:00
menu . push ( {
text : intl . formatMessage ( messages . promoteToAdmin , { name : account . get ( 'username' ) } ) ,
action : this . props . onPromoteToAdmin ,
icon : require ( '@tabler/icons/icons/arrow-up-circle.svg' ) ,
} ) ;
menu . push ( {
text : intl . formatMessage ( messages . demoteToUser , { name : account . get ( 'username' ) } ) ,
action : this . props . onDemoteToUser ,
icon : require ( '@tabler/icons/icons/arrow-down-circle.svg' ) ,
} ) ;
2021-07-13 10:30:24 -07:00
} else {
2021-11-04 12:19:04 -07:00
menu . push ( {
text : intl . formatMessage ( messages . promoteToAdmin , { name : account . get ( 'username' ) } ) ,
action : this . props . onPromoteToAdmin ,
icon : require ( '@tabler/icons/icons/arrow-up-circle.svg' ) ,
} ) ;
menu . push ( {
text : intl . formatMessage ( messages . promoteToModerator , { name : account . get ( 'username' ) } ) ,
action : this . props . onPromoteToModerator ,
icon : require ( '@tabler/icons/icons/arrow-up-circle.svg' ) ,
} ) ;
2021-07-13 10:30:24 -07:00
}
2021-07-13 10:21:12 -07:00
}
2021-03-15 19:50:16 -07:00
if ( isVerified ( account ) ) {
2021-11-04 12:19:04 -07:00
menu . push ( {
text : intl . formatMessage ( messages . unverifyUser , { name : account . get ( 'username' ) } ) ,
action : this . props . onUnverifyUser ,
icon : require ( '@tabler/icons/icons/check.svg' ) ,
} ) ;
2021-03-15 19:50:16 -07:00
} else {
2021-11-04 12:19:04 -07:00
menu . push ( {
text : intl . formatMessage ( messages . verifyUser , { name : account . get ( 'username' ) } ) ,
action : this . props . onVerifyUser ,
icon : require ( '@tabler/icons/icons/check.svg' ) ,
} ) ;
2021-03-15 19:50:16 -07:00
}
2021-11-26 21:36:17 -08:00
if ( account . getIn ( [ 'pleroma' , 'is_suggested' ] ) ) {
menu . push ( {
text : intl . formatMessage ( messages . unsuggestUser , { name : account . get ( 'username' ) } ) ,
action : this . props . onUnsuggestUser ,
icon : require ( '@tabler/icons/icons/user-x.svg' ) ,
} ) ;
} else {
menu . push ( {
text : intl . formatMessage ( messages . suggestUser , { name : account . get ( 'username' ) } ) ,
action : this . props . onSuggestUser ,
icon : require ( '@tabler/icons/icons/user-check.svg' ) ,
} ) ;
}
2021-03-15 19:57:24 -07:00
if ( account . get ( 'id' ) !== me ) {
2021-11-04 12:19:04 -07:00
menu . push ( {
text : intl . formatMessage ( messages . deactivateUser , { name : account . get ( 'username' ) } ) ,
action : this . props . onDeactivateUser ,
icon : require ( '@tabler/icons/icons/user-off.svg' ) ,
} ) ;
menu . push ( {
text : intl . formatMessage ( messages . deleteUser , { name : account . get ( 'username' ) } ) ,
icon : require ( '@tabler/icons/icons/user-minus.svg' ) ,
} ) ;
2021-03-15 19:57:24 -07:00
}
2020-03-27 13:59:38 -07:00
}
return menu ;
}
makeInfo ( ) {
2020-04-14 13:45:38 -07:00
const { account , me } = this . props ;
2020-03-27 13:59:38 -07:00
2021-08-03 10:10:42 -07:00
const info = [ ] ;
2020-03-27 13:59:38 -07:00
if ( ! account || ! me ) return info ;
if ( me !== account . get ( 'id' ) && account . getIn ( [ 'relationship' , 'followed_by' ] ) ) {
info . push ( < span key = 'followed_by' className = 'relationship-tag' > < FormattedMessage id = 'account.follows_you' defaultMessage = 'Follows you' / > < / s p a n > ) ;
} else if ( me !== account . get ( 'id' ) && account . getIn ( [ 'relationship' , 'blocking' ] ) ) {
info . push ( < span key = 'blocked' className = 'relationship-tag' > < FormattedMessage id = 'account.blocked' defaultMessage = 'Blocked' / > < / s p a n > ) ;
}
if ( me !== account . get ( 'id' ) && account . getIn ( [ 'relationship' , 'muting' ] ) ) {
info . push ( < span key = 'muted' className = 'relationship-tag' > < FormattedMessage id = 'account.muted' defaultMessage = 'Muted' / > < / s p a n > ) ;
} else if ( me !== account . get ( 'id' ) && account . getIn ( [ 'relationship' , 'domain_blocking' ] ) ) {
info . push ( < span key = 'domain_blocked' className = 'relationship-tag' > < FormattedMessage id = 'account.domain_blocked' defaultMessage = 'Domain hidden' / > < / s p a n > ) ;
}
return info ;
2021-08-03 12:22:51 -07:00
}
2020-03-27 13:59:38 -07:00
2021-10-13 11:23:07 -07:00
renderMessageButton ( ) {
2021-10-13 11:55:02 -07:00
const { intl , account , me } = this . props ;
2021-10-13 11:23:07 -07:00
if ( ! me || ! account || account . get ( 'id' ) === me ) {
return null ;
}
const canChat = account . getIn ( [ 'pleroma' , 'accepts_chat_messages' ] , false ) === true ;
if ( canChat ) {
2021-10-13 11:55:02 -07:00
return (
< IconButton
src = { require ( '@tabler/icons/icons/messages.svg' ) }
onClick = { this . props . onChat }
title = { intl . formatMessage ( messages . chat , { name : account . get ( 'username' ) } ) }
/ >
) ;
2021-10-13 11:23:07 -07:00
} else {
2021-10-13 11:55:02 -07:00
return (
< IconButton
src = { require ( '@tabler/icons/icons/mail.svg' ) }
onClick = { this . props . onDirect }
title = { intl . formatMessage ( messages . direct , { name : account . get ( 'username' ) } ) }
/ >
) ;
2021-10-13 11:23:07 -07:00
}
}
2020-04-14 14:47:35 -07:00
render ( ) {
2021-10-07 19:39:03 -07:00
const { account , intl , username , me , features } = this . props ;
2020-03-27 13:59:38 -07:00
const { isSmallScreen } = this . state ;
if ( ! account ) {
return (
< div className = 'account__header' >
2020-04-14 11:44:40 -07:00
< div className = 'account__header__image account__header__image--none' / >
2020-03-27 13:59:38 -07:00
< div className = 'account__header__bar' >
< div className = 'account__header__extra' >
2020-04-14 11:44:40 -07:00
< div className = 'account__header__avatar' / >
2020-03-27 13:59:38 -07:00
< / d i v >
2021-09-18 17:17:55 -07:00
{ isSmallScreen && (
2020-03-27 13:59:38 -07:00
< div className = 'account-mobile-container account-mobile-container--nonuser' >
2021-09-18 17:17:55 -07:00
< BundleContainer fetchComponent = { ProfileInfoPanel } >
{ Component => < Component username = { username } / > }
< / B u n d l e C o n t a i n e r >
2020-03-27 13:59:38 -07:00
< / d i v >
2021-09-18 17:17:55 -07:00
) }
2020-03-27 13:59:38 -07:00
< / d i v >
< / d i v >
) ;
}
2021-10-07 19:39:03 -07:00
const ownAccount = account . get ( 'id' ) === me ;
2020-03-27 13:59:38 -07:00
const info = this . makeInfo ( ) ;
const menu = this . makeMenu ( ) ;
2021-07-13 13:24:39 -07:00
const header = account . get ( 'header' , '' ) ;
2021-10-09 10:47:30 -07:00
// const headerMissing = !header || ['/images/banner.png', '/headers/original/missing.png'].some(path => header.endsWith(path));
2020-03-27 13:59:38 -07:00
const avatarSize = isSmallScreen ? 90 : 200 ;
2021-01-18 11:59:24 -08:00
const deactivated = ! account . getIn ( [ 'pleroma' , 'is_active' ] , true ) ;
2020-03-27 13:59:38 -07:00
return (
2020-08-25 11:47:02 -07:00
< div className = { classNames ( 'account__header' , { inactive : ! ! account . get ( 'moved' ) , deactivated : deactivated } ) } >
2021-10-09 10:47:30 -07:00
< div className = { classNames ( 'account__header__image' , { /* 'account__header__image--none': headerMissing || deactivated */ } ) } >
2020-03-27 13:59:38 -07:00
< div className = 'account__header__info' >
{ info }
< / d i v >
2021-08-27 13:52:14 -07:00
{ header && < a className = 'account__header__header' href = { account . get ( 'header' ) } onClick = { this . handleHeaderClick } target = '_blank' >
< StillImage src = { account . get ( 'header' ) } alt = '' className = 'parallax' / >
< / a > }
2021-09-14 04:55:52 -07:00
2021-09-14 05:10:23 -07:00
{ features . accountSubscriptions && < div className = 'account__header__subscribe' >
2021-09-14 04:55:52 -07:00
< SubscriptionButton account = { account } / >
2021-09-14 05:10:23 -07:00
< / d i v > }
2020-03-27 13:59:38 -07:00
< / d i v >
< div className = 'account__header__bar' >
< div className = 'account__header__extra' >
2021-05-01 13:02:27 -07:00
< a className = 'account__header__avatar' href = { account . get ( 'avatar' ) } onClick = { this . handleAvatarClick } target = '_blank' >
2020-08-25 11:47:02 -07:00
< Avatar account = { account } size = { avatarSize } / >
2021-05-01 13:02:27 -07:00
< / a >
2020-03-27 13:59:38 -07:00
2021-10-07 19:39:03 -07:00
< div className = 'account__header__extra__links' >
< NavLink isActive = { this . isStatusesPageActive } activeClassName = 'active' to = { ` /@ ${ account . get ( 'acct' ) } ` } title = { intl . formatNumber ( account . get ( 'statuses_count' ) ) } >
< span > { shortNumberFormat ( account . get ( 'statuses_count' ) ) } < / s p a n >
< span > < FormattedMessage id = 'account.posts' defaultMessage = 'Posts' / > < / s p a n >
< / N a v L i n k >
{ ( ownAccount || ! account . getIn ( [ 'pleroma' , 'hide_follows' ] , false ) ) && < NavLink exact activeClassName = 'active' to = { ` /@ ${ account . get ( 'acct' ) } /following ` } title = { intl . formatNumber ( account . get ( 'following_count' ) ) } >
{ account . getIn ( [ 'pleroma' , 'hide_follows_count' ] , false ) ? < span > • < / s p a n > : < s p a n > { s h o r t N u m b e r F o r m a t ( a c c o u n t . g e t ( ' f o l l o w i n g _ c o u n t ' ) ) } < / s p a n > }
< span > < FormattedMessage id = 'account.follows' defaultMessage = 'Follows' / > < / s p a n >
< / N a v L i n k > }
{ ( ownAccount || ! account . getIn ( [ 'pleroma' , 'hide_followers' ] , false ) ) && < NavLink exact activeClassName = 'active' to = { ` /@ ${ account . get ( 'acct' ) } /followers ` } title = { intl . formatNumber ( account . get ( 'followers_count' ) ) } >
{ account . getIn ( [ 'pleroma' , 'hide_followers_count' ] , false ) ? < span > • < / s p a n > : < s p a n > { s h o r t N u m b e r F o r m a t ( a c c o u n t . g e t ( ' f o l l o w e r s _ c o u n t ' ) ) } < / s p a n > }
< span > < FormattedMessage id = 'account.followers' defaultMessage = 'Followers' / > < / s p a n >
< / N a v L i n k > }
{ ( ownAccount || ! account . getIn ( [ 'pleroma' , 'hide_favorites' ] , true ) ) && < NavLink exact activeClassName = 'active' to = { ` /@ ${ account . get ( 'acct' ) } /favorites ` } >
{ /* : TODO : shortNumberFormat(account.get('favourite_count')) */ }
< span > • < / s p a n >
< span > < FormattedMessage id = 'navigation_bar.favourites' defaultMessage = 'Likes' / > < / s p a n >
< / N a v L i n k > }
{ ownAccount &&
< NavLink
exact activeClassName = 'active' to = { ` /@ ${ account . get ( 'acct' ) } /pins ` }
>
{ /* : TODO : shortNumberFormat(account.get('pinned_count')) */ }
< span > • < / s p a n >
< span > < FormattedMessage id = 'navigation_bar.pins' defaultMessage = 'Pins' / > < / s p a n >
< / N a v L i n k >
}
< / d i v >
2021-09-18 17:17:55 -07:00
{ isSmallScreen && (
2020-08-12 11:02:20 -07:00
< div className = { classNames ( 'account-mobile-container' , { 'deactivated' : deactivated } ) } >
2021-09-18 17:17:55 -07:00
< BundleContainer fetchComponent = { ProfileInfoPanel } >
{ Component => < Component username = { username } account = { account } / > }
< / B u n d l e C o n t a i n e r >
2020-03-27 13:59:38 -07:00
< / d i v >
2021-09-18 17:17:55 -07:00
) }
2020-03-27 13:59:38 -07:00
2020-08-30 19:15:02 -07:00
< div className = 'account__header__extra__buttons' >
2021-10-13 11:23:07 -07:00
{ me && < DropdownMenuContainer items = { menu } src = { require ( '@tabler/icons/icons/dots.svg' ) } direction = 'right' / > }
{ this . renderMessageButton ( ) }
2020-08-30 19:15:02 -07:00
< ActionButton account = { account } / >
< / d i v >
2020-03-27 13:59:38 -07:00
< / d i v >
< / d i v >
< / d i v >
) ;
}
}