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

21 lines
775 B
JavaScript
Raw Normal View History

2020-02-26 19:39:03 +01:00
import { connect } from 'react-redux';
import { selectFollowedTags } from 'redux/selectors/tags';
2020-02-26 19:39:03 +01:00
import { selectSubscriptions } from 'redux/selectors/subscriptions';
import { doChannelSubscribe } from 'redux/actions/subscriptions';
2020-02-26 19:39:03 +01:00
import UserChannelFollowIntro from './view';
import { selectHomepageData } from 'redux/selectors/settings';
2021-04-25 07:31:19 +02:00
import { selectPrefsReady } from 'redux/selectors/sync';
2020-02-26 19:39:03 +01:00
2021-04-25 07:31:19 +02:00
const select = (state) => ({
2020-02-26 19:39:03 +01:00
followedTags: selectFollowedTags(state),
subscribedChannels: selectSubscriptions(state),
homepageData: selectHomepageData(state),
2021-04-25 07:31:19 +02:00
prefsReady: selectPrefsReady(state),
2020-02-26 19:39:03 +01:00
});
2021-04-25 07:31:19 +02:00
const perform = (dispatch) => ({
channelSubscribe: (uri) => dispatch(doChannelSubscribe(uri)),
});
export default connect(select, perform)(UserChannelFollowIntro);