2016-11-20 10:39:18 -08:00
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import { makeGetAccount } from '../selectors';
|
|
|
|
import Account from '../components/account';
|
2016-10-28 11:05:44 -07:00
|
|
|
import {
|
|
|
|
followAccount,
|
2017-01-16 10:36:32 -08:00
|
|
|
unfollowAccount,
|
|
|
|
blockAccount,
|
2017-02-05 17:51:56 -08:00
|
|
|
unblockAccount,
|
|
|
|
muteAccount,
|
|
|
|
unmuteAccount,
|
2016-11-20 10:39:18 -08:00
|
|
|
} from '../actions/accounts';
|
2016-10-27 12:59:56 -07:00
|
|
|
|
|
|
|
const makeMapStateToProps = () => {
|
|
|
|
const getAccount = makeGetAccount();
|
|
|
|
|
|
|
|
const mapStateToProps = (state, props) => ({
|
|
|
|
account: getAccount(state, props.id),
|
2016-10-30 07:06:43 -07:00
|
|
|
me: state.getIn(['meta', 'me'])
|
2016-10-27 12:59:56 -07:00
|
|
|
});
|
|
|
|
|
|
|
|
return mapStateToProps;
|
|
|
|
};
|
|
|
|
|
|
|
|
const mapDispatchToProps = (dispatch) => ({
|
2016-10-28 11:05:44 -07:00
|
|
|
onFollow (account) {
|
|
|
|
if (account.getIn(['relationship', 'following'])) {
|
|
|
|
dispatch(unfollowAccount(account.get('id')));
|
|
|
|
} else {
|
|
|
|
dispatch(followAccount(account.get('id')));
|
|
|
|
}
|
2017-01-16 10:36:32 -08:00
|
|
|
},
|
|
|
|
|
|
|
|
onBlock (account) {
|
|
|
|
if (account.getIn(['relationship', 'blocking'])) {
|
|
|
|
dispatch(unblockAccount(account.get('id')));
|
|
|
|
} else {
|
|
|
|
dispatch(blockAccount(account.get('id')));
|
|
|
|
}
|
2017-02-05 17:51:56 -08:00
|
|
|
},
|
|
|
|
|
|
|
|
onMute (account) {
|
|
|
|
if (account.getIn(['relationship', 'muting'])) {
|
|
|
|
dispatch(unmuteAccount(account.get('id')));
|
|
|
|
} else {
|
|
|
|
dispatch(muteAccount(account.get('id')));
|
|
|
|
}
|
2016-10-28 11:05:44 -07:00
|
|
|
}
|
2016-10-27 12:59:56 -07:00
|
|
|
});
|
|
|
|
|
|
|
|
export default connect(makeMapStateToProps, mapDispatchToProps)(Account);
|