2017-05-03 00:04:16 +00:00
import React from 'react' ;
2017-01-30 20:40:55 +00:00
import { connect } from 'react-redux' ;
import { makeGetAccount } from '../../../selectors' ;
import Header from '../components/header' ;
import {
followAccount ,
unfollowAccount ,
blockAccount ,
2017-02-06 01:51:56 +00:00
unblockAccount ,
muteAccount ,
2017-05-20 15:31:47 +00:00
unmuteAccount ,
2017-01-30 20:40:55 +00:00
} from '../../../actions/accounts' ;
import { mentionCompose } from '../../../actions/compose' ;
2017-02-14 19:59:26 +00:00
import { initReport } from '../../../actions/reports' ;
2017-04-23 02:39:50 +00:00
import { openModal } from '../../../actions/modal' ;
2017-05-19 19:05:32 +00:00
import { blockDomain , unblockDomain } from '../../../actions/domain_blocks' ;
2017-04-23 02:39:50 +00:00
import { defineMessages , injectIntl , FormattedMessage } from 'react-intl' ;
const messages = defineMessages ( {
blockConfirm : { id : 'confirmations.block.confirm' , defaultMessage : 'Block' } ,
2017-05-19 19:05:32 +00:00
muteConfirm : { id : 'confirmations.mute.confirm' , defaultMessage : 'Mute' } ,
blockDomainConfirm : { id : 'confirmations.domain_block.confirm' , defaultMessage : 'Hide entire domain' } ,
2017-04-23 02:39:50 +00:00
} ) ;
2017-01-30 20:40:55 +00:00
const makeMapStateToProps = ( ) => {
const getAccount = makeGetAccount ( ) ;
const mapStateToProps = ( state , { accountId } ) => ( {
account : getAccount ( state , Number ( accountId ) ) ,
2017-05-20 15:31:47 +00:00
me : state . getIn ( [ 'meta' , 'me' ] ) ,
2017-01-30 20:40:55 +00:00
} ) ;
return mapStateToProps ;
} ;
2017-04-23 02:39:50 +00:00
const mapDispatchToProps = ( dispatch , { intl } ) => ( {
2017-01-30 20:40:55 +00:00
onFollow ( account ) {
if ( account . getIn ( [ 'relationship' , 'following' ] ) ) {
dispatch ( unfollowAccount ( account . get ( 'id' ) ) ) ;
} else {
dispatch ( followAccount ( account . get ( 'id' ) ) ) ;
}
} ,
onBlock ( account ) {
if ( account . getIn ( [ 'relationship' , 'blocking' ] ) ) {
dispatch ( unblockAccount ( account . get ( 'id' ) ) ) ;
} else {
2017-04-23 02:39:50 +00:00
dispatch ( openModal ( 'CONFIRM' , {
message : < FormattedMessage id = 'confirmations.block.message' defaultMessage = 'Are you sure you want to block {name}?' values = { { name : < strong > @ { account . get ( 'acct' ) } < /strong> }} / > ,
confirm : intl . formatMessage ( messages . blockConfirm ) ,
2017-05-20 15:31:47 +00:00
onConfirm : ( ) => dispatch ( blockAccount ( account . get ( 'id' ) ) ) ,
2017-04-23 02:39:50 +00:00
} ) ) ;
2017-01-30 20:40:55 +00:00
}
} ,
onMention ( account , router ) {
dispatch ( mentionCompose ( account , router ) ) ;
2017-02-14 19:59:26 +00:00
} ,
onReport ( account ) {
dispatch ( initReport ( account ) ) ;
2017-02-06 01:51:56 +00:00
} ,
onMute ( account ) {
if ( account . getIn ( [ 'relationship' , 'muting' ] ) ) {
dispatch ( unmuteAccount ( account . get ( 'id' ) ) ) ;
} else {
2017-04-23 02:39:50 +00:00
dispatch ( openModal ( 'CONFIRM' , {
message : < FormattedMessage id = 'confirmations.mute.message' defaultMessage = 'Are you sure you want to mute {name}?' values = { { name : < strong > @ { account . get ( 'acct' ) } < /strong> }} / > ,
confirm : intl . formatMessage ( messages . muteConfirm ) ,
2017-05-20 15:31:47 +00:00
onConfirm : ( ) => dispatch ( muteAccount ( account . get ( 'id' ) ) ) ,
2017-04-23 02:39:50 +00:00
} ) ) ;
2017-02-06 01:51:56 +00:00
}
2017-05-19 19:05:32 +00:00
} ,
onBlockDomain ( domain , accountId ) {
dispatch ( openModal ( 'CONFIRM' , {
message : < FormattedMessage id = 'confirmations.domain_block.message' defaultMessage = 'Are you really, really sure you want to block the entire {domain}? In most cases a few targeted blocks or mutes are sufficient and preferable.' values = { { domain : < strong > { domain } < /strong> }} / > ,
confirm : intl . formatMessage ( messages . blockDomainConfirm ) ,
2017-05-20 15:31:47 +00:00
onConfirm : ( ) => dispatch ( blockDomain ( domain , accountId ) ) ,
2017-05-19 19:05:32 +00:00
} ) ) ;
} ,
onUnblockDomain ( domain , accountId ) {
dispatch ( unblockDomain ( domain , accountId ) ) ;
2017-05-20 15:31:47 +00:00
} ,
2017-01-30 20:40:55 +00:00
} ) ;
2017-04-23 02:39:50 +00:00
export default injectIntl ( connect ( makeMapStateToProps , mapDispatchToProps ) ( Header ) ) ;