22 lines
645 B
JavaScript
22 lines
645 B
JavaScript
import { connect } from 'react-redux';
|
|
import {
|
|
selectMyChannelClaims,
|
|
selectMyChannelUrls,
|
|
doFetchChannelListMine,
|
|
selectFetchingMyChannels,
|
|
} from 'lbry-redux';
|
|
import { selectYoutubeChannels } from 'redux/selectors/user';
|
|
import ChannelsPage from './view';
|
|
|
|
const select = state => ({
|
|
channelUrls: selectMyChannelUrls(state),
|
|
channels: selectMyChannelClaims(state),
|
|
fetchingChannels: selectFetchingMyChannels(state),
|
|
youtubeChannels: selectYoutubeChannels(state),
|
|
});
|
|
|
|
const perform = dispatch => ({
|
|
fetchChannelListMine: () => dispatch(doFetchChannelListMine()),
|
|
});
|
|
|
|
export default connect(select, perform)(ChannelsPage);
|