2020-02-26 19:39:03 +01:00
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import { selectFollowedTags } from 'lbry-redux';
|
|
|
|
import { selectSubscriptions } from 'redux/selectors/subscriptions';
|
2020-03-12 02:43:52 +01:00
|
|
|
import { doChannelSubscribe } from 'redux/actions/subscriptions';
|
2020-02-26 19:39:03 +01:00
|
|
|
import UserChannelFollowIntro from './view';
|
|
|
|
|
|
|
|
const select = state => ({
|
|
|
|
followedTags: selectFollowedTags(state),
|
|
|
|
subscribedChannels: selectSubscriptions(state),
|
|
|
|
});
|
|
|
|
|
2020-03-12 02:43:52 +01:00
|
|
|
const perform = dispatch => ({
|
|
|
|
channelSubscribe: uri => dispatch(doChannelSubscribe(uri)),
|
|
|
|
});
|
|
|
|
|
|
|
|
export default connect(
|
|
|
|
select,
|
|
|
|
perform
|
|
|
|
)(UserChannelFollowIntro);
|