lbry-desktop/ui/page/channels/index.js
2021-12-02 21:36:53 +08:00

41 lines
1.3 KiB
JavaScript

import { connect } from 'react-redux';
import {
selectMyChannelUrls,
selectFetchingMyChannels,
makeSelectClaimIsPending,
selectPendingIds,
} from 'redux/selectors/claims';
import { doFetchChannelListMine } from 'redux/actions/claims';
import { doSetActiveChannel } from 'redux/actions/app';
import { selectYoutubeChannels } from 'redux/selectors/user';
import ChannelsPage from './view';
const select = (state) => {
const channelUrls = selectMyChannelUrls(state);
const pendingIds = selectPendingIds(state);
let pendingChannels = [];
if (channelUrls && pendingIds.length > 0) {
// TODO: should move this into a memoized selector, as this is a hot area.
// For now, I added a check to skip this loop when there are no pending
// channels, which is usually the case.
channelUrls.map((channelUrl) => {
const isPendingUrl = makeSelectClaimIsPending(channelUrl)(state);
if (isPendingUrl) pendingChannels.push(channelUrl);
});
}
return {
channelUrls,
fetchingChannels: selectFetchingMyChannels(state),
youtubeChannels: selectYoutubeChannels(state),
pendingChannels,
};
};
const perform = (dispatch) => ({
fetchChannelListMine: () => dispatch(doFetchChannelListMine()),
doSetActiveChannel: (claimId) => dispatch(doSetActiveChannel(claimId)),
});
export default connect(select, perform)(ChannelsPage);