You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
706 B
26 lines
706 B
import { connect } from 'react-redux';
|
|
import { makeGetAccount } from 'mastodon/selectors';
|
|
import FollowRequest from '../components/follow_request';
|
|
import { authorizeFollowRequest, rejectFollowRequest } from 'mastodon/actions/accounts';
|
|
|
|
const makeMapStateToProps = () => {
|
|
const getAccount = makeGetAccount();
|
|
|
|
const mapStateToProps = (state, props) => ({
|
|
account: getAccount(state, props.id),
|
|
});
|
|
|
|
return mapStateToProps;
|
|
};
|
|
|
|
const mapDispatchToProps = (dispatch, { id }) => ({
|
|
onAuthorize () {
|
|
dispatch(authorizeFollowRequest(id));
|
|
},
|
|
|
|
onReject () {
|
|
dispatch(rejectFollowRequest(id));
|
|
},
|
|
});
|
|
|
|
export default connect(makeMapStateToProps, mapDispatchToProps)(FollowRequest);
|
|
|