2020-03-27 13:59:38 -07:00
import React from 'react' ;
import { defineMessages , injectIntl , FormattedMessage } from 'react-intl' ;
2022-01-10 14:17:52 -08:00
import { connect } from 'react-redux' ;
2022-01-10 14:25:06 -08:00
2020-03-27 13:59:38 -07:00
import {
followAccount ,
unfollowAccount ,
blockAccount ,
unblockAccount ,
muteAccount ,
unmuteAccount ,
} from '../actions/accounts' ;
2022-02-02 05:33:12 -08:00
import { openModal } from '../actions/modals' ;
2020-03-27 13:59:38 -07:00
import { initMuteModal } from '../actions/mutes' ;
2020-04-28 11:49:39 -07:00
import { getSettings } from '../actions/settings' ;
2022-01-10 14:17:52 -08:00
import Account from '../components/account' ;
import { makeGetAccount } from '../selectors' ;
2020-03-27 13:59:38 -07:00
const messages = defineMessages ( {
unfollowConfirm : { id : 'confirmations.unfollow.confirm' , defaultMessage : 'Unfollow' } ,
} ) ;
const makeMapStateToProps = ( ) => {
const getAccount = makeGetAccount ( ) ;
const mapStateToProps = ( state , props ) => ( {
account : getAccount ( state , props . id ) ,
} ) ;
return mapStateToProps ;
} ;
const mapDispatchToProps = ( dispatch , { intl } ) => ( {
2020-04-14 14:47:35 -07:00
onFollow ( account ) {
2020-04-21 12:41:13 -07:00
dispatch ( ( _ , getState ) => {
2020-04-28 11:49:39 -07:00
const unfollowModal = getSettings ( getState ( ) ) . get ( 'unfollowModal' ) ;
2020-04-21 12:41:13 -07:00
if ( account . getIn ( [ 'relationship' , 'following' ] ) || account . getIn ( [ 'relationship' , 'requested' ] ) ) {
if ( unfollowModal ) {
dispatch ( openModal ( 'CONFIRM' , {
2021-12-30 08:38:57 -08:00
icon : require ( '@tabler/icons/icons/minus.svg' ) ,
heading : < FormattedMessage id = 'confirmations.unfollow.heading' defaultMessage = 'Unfollow {name}' values = { { name : < strong > @ { account . get ( 'acct' ) } < /strong> }} / > ,
2020-04-21 12:41:13 -07:00
message : < FormattedMessage id = 'confirmations.unfollow.message' defaultMessage = 'Are you sure you want to unfollow {name}?' values = { { name : < strong > @ { account . get ( 'acct' ) } < /strong> }} / > ,
confirm : intl . formatMessage ( messages . unfollowConfirm ) ,
onConfirm : ( ) => dispatch ( unfollowAccount ( account . get ( 'id' ) ) ) ,
} ) ) ;
} else {
dispatch ( unfollowAccount ( account . get ( 'id' ) ) ) ;
}
2020-03-27 13:59:38 -07:00
} else {
2020-04-21 12:41:13 -07:00
dispatch ( followAccount ( account . get ( 'id' ) ) ) ;
2020-03-27 13:59:38 -07:00
}
2020-04-21 12:41:13 -07:00
} ) ;
2020-03-27 13:59:38 -07:00
} ,
2020-04-14 14:47:35 -07:00
onBlock ( account ) {
2020-03-27 13:59:38 -07:00
if ( account . getIn ( [ 'relationship' , 'blocking' ] ) ) {
dispatch ( unblockAccount ( account . get ( 'id' ) ) ) ;
} else {
dispatch ( blockAccount ( account . get ( 'id' ) ) ) ;
}
} ,
2020-04-14 14:47:35 -07:00
onMute ( account ) {
2020-03-27 13:59:38 -07:00
if ( account . getIn ( [ 'relationship' , 'muting' ] ) ) {
dispatch ( unmuteAccount ( account . get ( 'id' ) ) ) ;
} else {
dispatch ( initMuteModal ( account ) ) ;
}
} ,
2020-04-14 14:47:35 -07:00
onMuteNotifications ( account , notifications ) {
2020-03-27 13:59:38 -07:00
dispatch ( muteAccount ( account . get ( 'id' ) , notifications ) ) ;
} ,
} ) ;
export default injectIntl ( connect ( makeMapStateToProps , mapDispatchToProps ) ( Account ) ) ;