2018-01-09 15:50:55 +01:00
import React , { Fragment } from 'react' ;
2016-10-27 21:59:56 +02:00
import ImmutablePropTypes from 'react-immutable-proptypes' ;
2017-04-21 20:05:35 +02:00
import PropTypes from 'prop-types' ;
2016-11-20 19:39:18 +01:00
import Avatar from './avatar' ;
import DisplayName from './display_name' ;
2016-12-02 15:05:50 +01:00
import Permalink from './permalink' ;
2016-11-20 19:39:18 +01:00
import IconButton from './icon_button' ;
2016-11-18 15:36:16 +01:00
import { defineMessages , injectIntl } from 'react-intl' ;
2017-05-03 02:04:16 +02:00
import ImmutablePureComponent from 'react-immutable-pure-component' ;
2017-12-04 08:26:40 +01:00
import { me } from 'flavours/glitch/util/initial_state' ;
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' } ,
requested : { id : 'account.requested' , defaultMessage : 'Awaiting approval' } ,
2017-04-27 12:03:28 +02:00
unblock : { id : 'account.unblock' , defaultMessage : 'Unblock @{name}' } ,
2017-05-20 17:31:47 +02:00
unmute : { id : 'account.unmute' , defaultMessage : 'Unmute @{name}' } ,
2017-09-14 05:54:14 +02:00
mute _notifications : { id : 'account.mute_notifications' , defaultMessage : 'You are not currently muting notifications from @{name}. Click to mute notifications' } ,
unmute _notifications : { id : 'account.unmute_notifications' , defaultMessage : 'You are currently muting notifications from @{name}. Click to unmute notifications' } ,
2016-11-18 15:36:16 +01:00
} ) ;
2016-10-27 21:59:56 +02:00
2017-06-23 19:36:54 +02:00
@ injectIntl
export default class Account extends ImmutablePureComponent {
2016-10-27 21:59:56 +02:00
2017-05-12 14:44:10 +02:00
static propTypes = {
account : ImmutablePropTypes . map . isRequired ,
onFollow : PropTypes . func . isRequired ,
onBlock : PropTypes . func . isRequired ,
onMute : PropTypes . func . isRequired ,
2017-12-26 20:25:43 +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 ,
2017-12-24 07:16:45 +01:00
small : PropTypes . bool ,
2017-05-12 14:44:10 +02:00
} ;
2017-05-24 17:55:16 +02:00
handleFollow = ( ) => {
2016-10-28 20:05:44 +02:00
this . props . onFollow ( this . props . account ) ;
2017-04-21 20:05:35 +02: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 ) ;
2017-04-21 20:05:35 +02: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 ) ;
2017-04-21 20:05:35 +02: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 ) ;
}
handleUnmuteNotifications = ( ) => {
this . props . onMuteNotifications ( this . props . account , false ) ;
}
2016-10-27 21:59:56 +02:00
render ( ) {
2017-12-24 07:16:45 +01:00
const {
account ,
hidden ,
intl ,
small ,
} = this . props ;
2016-10-27 21:59:56 +02:00
if ( ! account ) {
return < div / > ;
}
2017-08-28 22:23:44 +02:00
if ( hidden ) {
return (
2019-01-10 20:22:28 +01:00
< Fragment >
2017-08-28 22:23:44 +02:00
{ account . get ( 'display_name' ) }
{ account . get ( 'username' ) }
2019-01-10 20:22:28 +01:00
< / F r a g m e n t >
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
2017-12-24 07:16:45 +01:00
if ( account . get ( 'id' ) !== me && ! small && 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 ) {
2017-06-06 13:20:07 +02:00
buttons = < IconButton disabled icon = 'hourglass' title = { intl . formatMessage ( messages . requested ) } / > ;
2017-01-16 19:36:32 +01:00
} else if ( blocking ) {
2019-02-01 16:15:44 +01:00
buttons = < IconButton active icon = 'unlock' title = { intl . formatMessage ( messages . unblock , { name : account . get ( 'username' ) } ) } onClick = { this . handleBlock } / > ;
2017-04-15 01:23:49 +02:00
} else if ( muting ) {
2017-11-15 03:56:41 +01:00
let hidingNotificationsButton ;
2017-12-07 01:23:28 +01:00
if ( account . getIn ( [ 'relationship' , 'muting_notifications' ] ) ) {
2017-11-15 03:56:41 +01:00
hidingNotificationsButton = < IconButton active icon = 'bell' title = { intl . formatMessage ( messages . unmute _notifications , { name : account . get ( 'username' ) } ) } onClick = { this . handleUnmuteNotifications } / > ;
} else {
hidingNotificationsButton = < IconButton active icon = 'bell-slash' title = { intl . formatMessage ( messages . mute _notifications , { name : account . get ( 'username' ) } ) } onClick = { this . handleMuteNotifications } / > ;
}
buttons = (
2018-01-09 15:50:55 +01:00
< Fragment >
2017-11-15 03:56:41 +01:00
< IconButton active icon = 'volume-up' title = { intl . formatMessage ( messages . unmute , { name : account . get ( 'username' ) } ) } onClick = { this . handleMute } / >
{ hidingNotificationsButton }
2018-01-09 15:50:55 +01:00
< / F r a g m e n t >
2017-11-15 03:56:41 +01:00
) ;
2018-03-29 14:46:00 +02:00
} else if ( ! account . get ( 'moved' ) || following ) {
2017-12-07 01:23:28 +01:00
buttons = < IconButton icon = { following ? 'user-times' : 'user-plus' } title = { intl . formatMessage ( following ? messages . unfollow : messages . follow ) } onClick = { this . handleFollow } active = { following } / > ;
2017-01-16 19:36:32 +01:00
}
2016-10-27 21:59:56 +02:00
}
2017-12-24 07:16:45 +01:00
return small ? (
2018-01-06 05:04:13 +01:00
< Permalink
className = 'account small'
href = { account . get ( 'url' ) }
to = { ` /accounts/ ${ account . get ( 'id' ) } ` }
>
< div className = 'account__avatar-wrapper' >
< Avatar
account = { account }
size = { 24 }
/ >
< / d i v >
< DisplayName
account = { account }
inline
/ >
< / P e r m a l i n k >
2017-12-24 07:16:45 +01:00
) : (
2017-02-09 01:20:09 +01:00
< div className = 'account' >
2017-04-23 04:26:55 +02:00
< div className = 'account__wrapper' >
2017-02-09 01:20:09 +01:00
< Permalink key = { account . get ( 'id' ) } className = 'account__display-name' href = { account . get ( 'url' ) } to = { ` /accounts/ ${ account . get ( 'id' ) } ` } >
2017-08-07 19:44:55 +02:00
< div className = 'account__avatar-wrapper' > < Avatar account = { account } size = { 36 } / > < / d i v >
2016-10-28 20:05:44 +02:00
< DisplayName account = { account } / >
2016-12-02 15:05:50 +01:00
< / P e r m a l i n k >
2017-12-24 07:16:45 +01:00
{ buttons ?
< div className = 'account__relationship' >
{ buttons }
< / d i v >
2018-01-18 16:13:07 +01:00
: null }
2016-10-28 20:05:44 +02:00
< / d i v >
2016-10-27 21:59:56 +02:00
< / d i v >
) ;
}
2017-04-21 20:05:35 +02:00
}