2020-03-18 18:11:37 +01:00
|
|
|
import { connect } from 'react-redux';
|
2020-03-19 15:38:20 +01:00
|
|
|
import { selectMyChannelClaims } from 'lbry-redux';
|
2021-02-09 17:05:56 +01:00
|
|
|
import { selectActiveChannelClaim, selectIncognito } from 'redux/selectors/app';
|
|
|
|
import { doSetActiveChannel, doSetIncognito } from 'redux/actions/app';
|
|
|
|
import SelectChannel from './view';
|
2020-03-18 18:11:37 +01:00
|
|
|
|
|
|
|
const select = state => ({
|
|
|
|
channels: selectMyChannelClaims(state),
|
2021-02-09 17:05:56 +01:00
|
|
|
activeChannelClaim: selectActiveChannelClaim(state),
|
|
|
|
incognito: selectIncognito(state),
|
2020-03-18 18:11:37 +01:00
|
|
|
});
|
|
|
|
|
2021-02-09 17:05:56 +01:00
|
|
|
export default connect(select, {
|
|
|
|
doSetActiveChannel,
|
|
|
|
doSetIncognito,
|
|
|
|
})(SelectChannel);
|