lbry-desktop/ui/page/channels/index.js

23 lines
645 B
JavaScript
Raw Normal View History

import { connect } from 'react-redux';
2020-06-21 18:51:06 +02:00
import {
selectMyChannelClaims,
selectMyChannelUrls,
doFetchChannelListMine,
selectFetchingMyChannels,
} from 'lbry-redux';
import { selectYoutubeChannels } from 'redux/selectors/user';
import ChannelsPage from './view';
const select = state => ({
2020-06-21 18:51:06 +02:00
channelUrls: selectMyChannelUrls(state),
channels: selectMyChannelClaims(state),
fetchingChannels: selectFetchingMyChannels(state),
youtubeChannels: selectYoutubeChannels(state),
});
const perform = dispatch => ({
fetchChannelListMine: () => dispatch(doFetchChannelListMine()),
});
export default connect(select, perform)(ChannelsPage);