2017-05-02 20:04:16 -04:00
import React from 'react' ;
2016-09-18 12:18:46 -04:00
import ImmutablePropTypes from 'react-immutable-proptypes' ;
2017-04-21 14:05:35 -04:00
import PropTypes from 'prop-types' ;
2016-11-23 17:34:12 -05:00
import { defineMessages , injectIntl , FormattedMessage } from 'react-intl' ;
import IconButton from '../../../components/icon_button' ;
2017-10-16 03:36:15 -04:00
import Motion from '../../ui/util/optional_motion' ;
2017-05-20 08:58:13 -04:00
import spring from 'react-motion/lib/spring' ;
2017-05-02 20:04:16 -04:00
import ImmutablePureComponent from 'react-immutable-pure-component' ;
2017-10-30 22:27:48 -04:00
import { autoPlayGif , me } from '../../../initial_state' ;
2017-11-18 13:39:02 -05:00
import classNames from 'classnames' ;
2016-11-23 17:34:12 -05:00
const messages = defineMessages ( {
unfollow : { id : 'account.unfollow' , defaultMessage : 'Unfollow' } ,
follow : { id : 'account.follow' , defaultMessage : 'Follow' } ,
2017-09-02 14:44:41 -04:00
requested : { id : 'account.requested' , defaultMessage : 'Awaiting approval. Click to cancel follow request' } ,
2018-03-04 23:09:35 -05:00
unblock : { id : 'account.unblock' , defaultMessage : 'Unblock @{name}' } ,
2018-05-30 12:41:47 -04:00
edit _profile : { id : 'account.edit_profile' , defaultMessage : 'Edit profile' } ,
2018-09-18 10:45:58 -04:00
linkVerifiedOn : { id : 'account.link_verified_on' , defaultMessage : 'Ownership of this link was checked on {date}' } ,
2018-12-01 08:25:15 -05:00
account _locked : { id : 'account.locked_info' , defaultMessage : 'This account privacy status is set to locked. The owner manually reviews who can follow them.' } ,
2016-11-23 17:34:12 -05:00
} ) ;
2016-09-18 12:18:46 -04:00
2018-09-18 10:45:58 -04:00
const dateFormatOptions = {
month : 'short' ,
day : 'numeric' ,
year : 'numeric' ,
hour12 : false ,
hour : '2-digit' ,
minute : '2-digit' ,
} ;
2017-05-02 20:04:16 -04:00
class Avatar extends ImmutablePureComponent {
2017-03-31 08:23:44 -04:00
2017-05-12 08:44:10 -04:00
static propTypes = {
account : ImmutablePropTypes . map . isRequired ,
} ;
2017-04-22 22:26:55 -04:00
2017-05-12 08:44:10 -04:00
state = {
2017-05-20 11:31:47 -04:00
isHovered : false ,
2017-05-12 08:44:10 -04:00
} ;
2017-04-22 22:26:55 -04:00
2017-05-12 08:44:10 -04:00
handleMouseOver = ( ) => {
2017-03-31 08:23:44 -04:00
if ( this . state . isHovered ) return ;
this . setState ( { isHovered : true } ) ;
2017-04-21 14:05:35 -04:00
}
2017-03-31 08:23:44 -04:00
2017-05-12 08:44:10 -04:00
handleMouseOut = ( ) => {
2017-03-31 08:23:44 -04:00
if ( ! this . state . isHovered ) return ;
this . setState ( { isHovered : false } ) ;
2017-04-21 14:05:35 -04:00
}
2017-03-31 08:23:44 -04:00
render ( ) {
2017-10-27 11:04:44 -04:00
const { account } = this . props ;
2017-03-31 08:23:44 -04:00
const { isHovered } = this . state ;
return (
< Motion defaultStyle = { { radius : 90 } } style = { { radius : spring ( isHovered ? 30 : 90 , { stiffness : 180 , damping : 12 } ) } } >
2018-01-17 10:57:15 -05:00
{ ( { radius } ) => (
2017-07-27 18:54:48 -04:00
< a
2017-04-15 07:27:27 -04:00
href = { account . get ( 'url' ) }
className = 'account__header__avatar'
2017-07-27 18:54:48 -04:00
role = 'presentation'
2017-04-15 07:27:27 -04:00
target = '_blank'
rel = 'noopener'
2017-04-22 22:26:55 -04:00
style = { { borderRadius : ` ${ radius } px ` , backgroundImage : ` url( ${ autoPlayGif || isHovered ? account . get ( 'avatar' ) : account . get ( 'avatar_static' ) } ) ` } }
2017-04-15 07:27:27 -04:00
onMouseOver = { this . handleMouseOver }
onMouseOut = { this . handleMouseOut }
onFocus = { this . handleMouseOver }
2017-04-17 19:57:50 -04:00
onBlur = { this . handleMouseOut }
2017-07-27 18:54:48 -04:00
>
< span style = { { display : 'none' } } > { account . get ( 'acct' ) } < / s p a n >
< / a >
2018-01-17 10:57:15 -05:00
) }
2017-03-31 08:23:44 -04:00
< / M o t i o n >
) ;
}
2017-04-21 14:05:35 -04:00
}
2017-03-31 08:23:44 -04:00
2018-09-14 11:59:48 -04:00
export default @ injectIntl
class Header extends ImmutablePureComponent {
2016-09-18 12:18:46 -04:00
2017-05-12 08:44:10 -04:00
static propTypes = {
account : ImmutablePropTypes . map ,
onFollow : PropTypes . func . isRequired ,
2018-03-04 23:09:35 -05:00
onBlock : PropTypes . func . isRequired ,
2017-05-12 08:44:10 -04:00
intl : PropTypes . object . isRequired ,
} ;
2018-05-30 12:41:47 -04:00
openEditProfile = ( ) => {
window . open ( '/settings/profile' , '_blank' ) ;
}
2016-09-18 12:18:46 -04:00
render ( ) {
2017-10-30 22:27:48 -04:00
const { account , intl } = this . props ;
2016-09-18 12:18:46 -04:00
2017-02-20 18:10:49 -05:00
if ( ! account ) {
return null ;
}
2016-11-15 12:38:57 -05:00
let info = '' ;
2018-03-04 23:09:35 -05:00
let mutingInfo = '' ;
2016-11-23 17:34:12 -05:00
let actionBtn = '' ;
2016-12-22 18:04:52 -05:00
let lockedIcon = '' ;
2016-10-06 16:07:32 -04:00
2016-10-09 16:19:15 -04:00
if ( me !== account . get ( 'id' ) && account . getIn ( [ 'relationship' , 'followed_by' ] ) ) {
2017-05-20 11:31:47 -04:00
info = < span className = 'account--follows-info' > < FormattedMessage id = 'account.follows_you' defaultMessage = 'Follows you' / > < / s p a n > ;
2018-03-04 23:09:35 -05:00
} else if ( me !== account . get ( 'id' ) && account . getIn ( [ 'relationship' , 'blocking' ] ) ) {
info = < span className = 'account--follows-info' > < FormattedMessage id = 'account.blocked' defaultMessage = 'Blocked' / > < / s p a n > ;
}
if ( me !== account . get ( 'id' ) && account . getIn ( [ 'relationship' , 'muting' ] ) ) {
mutingInfo = < span className = 'account--muting-info' > < FormattedMessage id = 'account.muted' defaultMessage = 'Muted' / > < / s p a n > ;
2018-03-05 10:45:36 -05:00
} else if ( me !== account . get ( 'id' ) && account . getIn ( [ 'relationship' , 'domain_blocking' ] ) ) {
mutingInfo = < span className = 'account--muting-info' > < FormattedMessage id = 'account.domain_blocked' defaultMessage = 'Domain hidden' / > < / s p a n > ;
2016-10-09 16:19:15 -04:00
}
2016-11-23 17:34:12 -05:00
if ( me !== account . get ( 'id' ) ) {
2018-08-25 16:46:59 -04:00
if ( ! account . get ( 'relationship' ) ) { // Wait until the relationship is loaded
actionBtn = '' ;
} else if ( account . getIn ( [ 'relationship' , 'requested' ] ) ) {
2016-12-22 17:03:57 -05:00
actionBtn = (
2017-05-19 05:42:54 -04:00
< div className = 'account--action-button' >
2017-09-02 14:44:41 -04:00
< IconButton size = { 26 } active icon = 'hourglass' title = { intl . formatMessage ( messages . requested ) } onClick = { this . props . onFollow } / >
2016-12-22 17:03:57 -05:00
< / d i v >
) ;
2017-02-05 14:58:09 -05:00
} else if ( ! account . getIn ( [ 'relationship' , 'blocking' ] ) ) {
2016-12-22 17:03:57 -05:00
actionBtn = (
2017-05-19 05:42:54 -04:00
< div className = 'account--action-button' >
2016-12-22 17:03:57 -05:00
< IconButton size = { 26 } icon = { account . getIn ( [ 'relationship' , 'following' ] ) ? 'user-times' : 'user-plus' } active = { account . getIn ( [ 'relationship' , 'following' ] ) } title = { intl . formatMessage ( account . getIn ( [ 'relationship' , 'following' ] ) ? messages . unfollow : messages . follow ) } onClick = { this . props . onFollow } / >
< / d i v >
) ;
2018-03-04 23:09:35 -05:00
} else if ( account . getIn ( [ 'relationship' , 'blocking' ] ) ) {
actionBtn = (
< div className = 'account--action-button' >
< IconButton size = { 26 } icon = 'unlock-alt' title = { intl . formatMessage ( messages . unblock , { name : account . get ( 'username' ) } ) } onClick = { this . props . onBlock } / >
< / d i v >
) ;
2016-12-22 17:03:57 -05:00
}
2018-05-30 12:41:47 -04:00
} else {
actionBtn = (
< div className = 'account--action-button' >
2018-09-27 20:11:14 -04:00
< IconButton size = { 26 } icon = 'pencil' title = { intl . formatMessage ( messages . edit _profile ) } onClick = { this . openEditProfile } / >
2018-05-30 12:41:47 -04:00
< / d i v >
) ;
2016-11-23 17:34:12 -05:00
}
2018-01-15 12:42:15 -05:00
if ( account . get ( 'moved' ) && ! account . getIn ( [ 'relationship' , 'following' ] ) ) {
2017-11-18 13:39:02 -05:00
actionBtn = '' ;
}
2016-12-22 18:04:52 -05:00
if ( account . get ( 'locked' ) ) {
2018-12-01 08:25:15 -05:00
lockedIcon = < i className = 'fa fa-lock' title = { intl . formatMessage ( messages . account _locked ) } / > ;
2016-12-22 18:04:52 -05:00
}
2017-08-07 14:32:03 -04:00
const content = { _ _html : account . get ( 'note_emojified' ) } ;
const displayNameHtml = { _ _html : account . get ( 'display_name_html' ) } ;
2018-04-14 06:41:08 -04:00
const fields = account . get ( 'fields' ) ;
2018-05-07 03:31:07 -04:00
const badge = account . get ( 'bot' ) ? ( < div className = 'roles' > < div className = 'account-role bot' > < FormattedMessage id = 'account.badges.bot' defaultMessage = 'Bot' / > < / d i v > < / d i v > ) : n u l l ;
2016-11-06 19:14:12 -05:00
2016-09-18 12:18:46 -04:00
return (
2018-12-14 14:34:18 -05:00
< div className = { classNames ( 'account__header' , { inactive : ! ! account . get ( 'moved' ) } ) } style = { { backgroundImage : ` url( ${ autoPlayGif ? account . get ( 'header' ) : account . get ( 'header_static' ) } ) ` } } >
2017-05-19 05:42:54 -04:00
< div >
2017-10-27 11:04:44 -04:00
< Avatar account = { account } / >
2016-09-18 12:18:46 -04:00
2017-08-07 14:32:03 -04:00
< span className = 'account__header__display-name' dangerouslySetInnerHTML = { displayNameHtml } / >
2017-05-19 05:42:54 -04:00
< span className = 'account__header__username' > @ { account . get ( 'acct' ) } { lockedIcon } < / s p a n >
2018-05-07 03:31:07 -04:00
{ badge }
2017-05-19 05:42:54 -04:00
< div className = 'account__header__content' dangerouslySetInnerHTML = { content } / >
2016-10-09 16:19:15 -04:00
2018-04-14 06:41:08 -04:00
{ fields . size > 0 && (
2018-05-04 18:55:09 -04:00
< div className = 'account__header__fields' >
{ fields . map ( ( pair , i ) => (
< dl key = { i } >
< dt dangerouslySetInnerHTML = { { _ _html : pair . get ( 'name_emojified' ) } } title = { pair . get ( 'name' ) } / >
2018-09-18 10:45:58 -04:00
< dd className = { pair . get ( 'verified_at' ) && 'verified' } title = { pair . get ( 'value_plain' ) } >
2018-09-27 20:11:14 -04:00
{ pair . get ( 'verified_at' ) && < span title = { intl . formatMessage ( messages . linkVerifiedOn , { date : intl . formatDate ( pair . get ( 'verified_at' ) , dateFormatOptions ) } ) } > < i className = 'fa fa-check verified__mark' / > < /span>} <span dangerouslySetInnerHTML={{ __html: pair.get('value_emojified') }} / >
2018-09-18 10:45:58 -04:00
< / d d >
2018-05-04 18:55:09 -04:00
< / d l >
) ) }
< / d i v >
2018-04-14 06:41:08 -04:00
) }
2016-10-09 16:19:15 -04:00
{ info }
2018-03-04 23:09:35 -05:00
{ mutingInfo }
2016-11-23 17:34:12 -05:00
{ actionBtn }
2016-09-18 12:18:46 -04:00
< / d i v >
< / d i v >
) ;
}
2017-04-21 14:05:35 -04:00
}