2019-09-24 01:18:32 +02:00
|
|
|
import * as SETTINGS from 'constants/settings';
|
2018-03-26 23:32:43 +02:00
|
|
|
import { connect } from 'react-redux';
|
2019-06-11 20:10:58 +02:00
|
|
|
import { selectSubscriptions } from 'redux/selectors/subscriptions';
|
2019-09-24 01:18:32 +02:00
|
|
|
import { selectFollowedTags } from 'lbry-redux';
|
2019-12-18 06:27:08 +01:00
|
|
|
import { selectUploadCount, selectUserVerifiedEmail } from 'lbryinc';
|
2019-06-12 23:51:39 +02:00
|
|
|
import { makeSelectClientSetting } from 'redux/selectors/settings';
|
2019-12-18 06:27:08 +01:00
|
|
|
import { doSignOut } from 'redux/actions/app';
|
|
|
|
import SideNavigation from './view';
|
2018-03-26 23:32:43 +02:00
|
|
|
|
|
|
|
const select = state => ({
|
2019-06-11 20:10:58 +02:00
|
|
|
subscriptions: selectSubscriptions(state),
|
|
|
|
followedTags: selectFollowedTags(state),
|
2019-06-12 23:51:39 +02:00
|
|
|
language: makeSelectClientSetting(SETTINGS.LANGUAGE)(state), // trigger redraw on language change
|
2019-10-11 02:37:18 +02:00
|
|
|
uploadCount: selectUploadCount(state),
|
2019-12-18 06:27:08 +01:00
|
|
|
email: selectUserVerifiedEmail(state),
|
2018-03-26 23:32:43 +02:00
|
|
|
});
|
|
|
|
|
2018-06-25 08:07:45 +02:00
|
|
|
export default connect(
|
|
|
|
select,
|
2019-12-18 06:27:08 +01:00
|
|
|
{
|
|
|
|
doSignOut,
|
|
|
|
}
|
|
|
|
)(SideNavigation);
|