2020-03-18 18:11:37 +01:00
|
|
|
import { connect } from 'react-redux';
|
2022-01-21 18:38:11 +01:00
|
|
|
import { selectHasChannels, selectFetchingMyChannels } from 'redux/selectors/claims';
|
2021-02-09 17:05:56 +01:00
|
|
|
import { selectActiveChannelClaim } from 'redux/selectors/app';
|
|
|
|
import { doSetActiveChannel } from 'redux/actions/app';
|
2020-03-18 22:14:11 +01:00
|
|
|
import CreatorDashboardPage from './view';
|
2020-03-18 18:11:37 +01:00
|
|
|
|
2021-10-08 05:47:39 +02:00
|
|
|
const select = (state) => ({
|
2022-01-21 18:38:11 +01:00
|
|
|
hasChannels: selectHasChannels(state),
|
2020-03-18 18:11:37 +01:00
|
|
|
fetchingChannels: selectFetchingMyChannels(state),
|
2021-02-09 17:05:56 +01:00
|
|
|
activeChannelClaim: selectActiveChannelClaim(state),
|
2020-03-18 18:11:37 +01:00
|
|
|
});
|
|
|
|
|
2021-02-09 17:05:56 +01:00
|
|
|
export default connect(select, { doSetActiveChannel })(CreatorDashboardPage);
|