lbry-desktop/ui/component/userFirstChannel/index.js

20 lines
737 B
JavaScript
Raw Normal View History

2019-08-27 16:43:42 +02:00
import { connect } from 'react-redux';
import { selectUser, selectEmailToVerify } from 'redux/selectors/user';
import { selectCreatingChannel, selectMyChannelClaims, selectCreateChannelError } from 'redux/selectors/claims';
import { doCreateChannel } from 'redux/actions/claims';
2019-09-26 18:07:11 +02:00
import UserFirstChannel from './view';
2019-08-27 16:43:42 +02:00
const select = (state) => ({
2019-08-27 16:43:42 +02:00
email: selectEmailToVerify(state),
user: selectUser(state),
channels: selectMyChannelClaims(state),
2019-09-26 18:07:11 +02:00
creatingChannel: selectCreatingChannel(state),
createChannelError: selectCreateChannelError(state),
2019-08-27 16:43:42 +02:00
});
const perform = (dispatch) => ({
2019-08-27 16:43:42 +02:00
createChannel: (name, amount) => dispatch(doCreateChannel(name, amount)),
});
export default connect(select, perform)(UserFirstChannel);