This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2016-10-27 12:59:56 -07: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,
|
|
|
|
unfollowAccount
|
|
|
|
} 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')));
|
|
|
|
}
|
|
|
|
}
|
2016-10-27 12:59:56 -07:00
|
|
|
});
|
|
|
|
|
|
|
|
export default connect(makeMapStateToProps, mapDispatchToProps)(Account);
|