2024-07-25 19:05:54 +02:00
|
|
|
import { injectIntl } from 'react-intl';
|
2023-05-28 16:38:10 +02:00
|
|
|
|
|
|
|
import { connect } from 'react-redux';
|
|
|
|
|
2024-07-25 19:05:54 +02:00
|
|
|
import { openModal } from 'flavours/glitch/actions/modal';
|
|
|
|
|
2016-10-28 20:05:44 +02:00
|
|
|
import {
|
|
|
|
followAccount,
|
2017-01-16 19:36:32 +01:00
|
|
|
blockAccount,
|
2017-02-06 02:51:56 +01:00
|
|
|
unblockAccount,
|
|
|
|
muteAccount,
|
|
|
|
unmuteAccount,
|
2023-11-15 12:01:51 +01:00
|
|
|
} from '../actions/accounts';
|
|
|
|
import { initMuteModal } from '../actions/mutes';
|
|
|
|
import Account from '../components/account';
|
|
|
|
import { makeGetAccount } from '../selectors';
|
2017-07-18 17:14:43 +02:00
|
|
|
|
2016-10-27 21:59:56 +02:00
|
|
|
const makeMapStateToProps = () => {
|
|
|
|
const getAccount = makeGetAccount();
|
|
|
|
|
|
|
|
const mapStateToProps = (state, props) => ({
|
|
|
|
account: getAccount(state, props.id),
|
|
|
|
});
|
|
|
|
|
|
|
|
return mapStateToProps;
|
|
|
|
};
|
|
|
|
|
2024-07-25 19:05:54 +02:00
|
|
|
const mapDispatchToProps = (dispatch) => ({
|
2017-07-18 17:14:43 +02:00
|
|
|
|
2016-10-28 20:05:44 +02:00
|
|
|
onFollow (account) {
|
2017-09-02 20:44:41 +02:00
|
|
|
if (account.getIn(['relationship', 'following']) || account.getIn(['relationship', 'requested'])) {
|
2024-07-25 19:05:54 +02:00
|
|
|
dispatch(openModal({ modalType: 'CONFIRM_UNFOLLOW', modalProps: { account } }));
|
2016-10-28 20:05:44 +02:00
|
|
|
} else {
|
|
|
|
dispatch(followAccount(account.get('id')));
|
|
|
|
}
|
2017-01-16 19:36:32 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
onBlock (account) {
|
|
|
|
if (account.getIn(['relationship', 'blocking'])) {
|
|
|
|
dispatch(unblockAccount(account.get('id')));
|
|
|
|
} else {
|
|
|
|
dispatch(blockAccount(account.get('id')));
|
|
|
|
}
|
2017-02-06 02:51:56 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
onMute (account) {
|
|
|
|
if (account.getIn(['relationship', 'muting'])) {
|
|
|
|
dispatch(unmuteAccount(account.get('id')));
|
|
|
|
} else {
|
2017-11-15 03:56:41 +01:00
|
|
|
dispatch(initMuteModal(account));
|
2017-02-06 02:51:56 +01:00
|
|
|
}
|
2017-05-20 17:31:47 +02:00
|
|
|
},
|
2017-07-18 17:14:43 +02:00
|
|
|
|
2017-11-15 03:56:41 +01:00
|
|
|
|
|
|
|
onMuteNotifications (account, notifications) {
|
|
|
|
dispatch(muteAccount(account.get('id'), notifications));
|
|
|
|
},
|
2016-10-27 21:59:56 +02:00
|
|
|
});
|
|
|
|
|
2017-07-18 17:14:43 +02:00
|
|
|
export default injectIntl(connect(makeMapStateToProps, mapDispatchToProps)(Account));
|