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