lbry-desktop/src/ui/component/youtubeTransferStatus/index.js

30 lines
786 B
JavaScript
Raw Normal View History

2019-09-13 03:53:33 +02:00
import { connect } from 'react-redux';
2019-09-17 23:16:36 +02:00
import {
selectYoutubeChannels,
selectYTImportPending,
selectUserIsPending,
doClaimYoutubeChannels,
doUserFetch,
selectYTImportVideosComplete,
doCheckYoutubeTransfer,
2019-09-17 23:16:36 +02:00
} from 'lbryinc';
2019-09-13 03:53:33 +02:00
import YoutubeChannelList from './view';
const select = state => ({
youtubeChannels: selectYoutubeChannels(state),
2019-09-17 23:16:36 +02:00
ytImportPending: selectYTImportPending(state),
userFetchPending: selectUserIsPending(state),
videosImported: selectYTImportVideosComplete(state),
2019-09-13 03:53:33 +02:00
});
2019-09-16 21:28:30 +02:00
const perform = dispatch => ({
claimChannels: () => dispatch(doClaimYoutubeChannels()),
updateUser: () => dispatch(doUserFetch()),
checkYoutubeTransfer: () => dispatch(doCheckYoutubeTransfer()),
2019-09-16 21:28:30 +02:00
});
2019-09-13 03:53:33 +02:00
export default connect(
select,
2019-09-16 21:28:30 +02:00
perform
2019-09-13 03:53:33 +02:00
)(YoutubeChannelList);