2018-03-26 14:32:43 -07:00
|
|
|
import { connect } from 'react-redux';
|
2019-06-11 14:10:58 -04:00
|
|
|
import { selectSubscriptions } from 'redux/selectors/subscriptions';
|
2020-11-20 08:21:31 -05:00
|
|
|
import { selectPurchaseUriSuccess, doClearPurchasedUriSuccess } from 'lbry-redux';
|
2020-10-05 14:31:51 -04:00
|
|
|
import { selectFollowedTags } from 'redux/selectors/tags';
|
2021-06-15 18:14:56 -04:00
|
|
|
import { selectUserVerifiedEmail, selectUser } from 'redux/selectors/user';
|
2020-11-20 08:21:31 -05:00
|
|
|
import { selectHomepageData, selectLanguage } from 'redux/selectors/settings';
|
2019-12-18 00:27:08 -05:00
|
|
|
import { doSignOut } from 'redux/actions/app';
|
2021-03-16 09:42:49 +08:00
|
|
|
import { selectUnseenNotificationCount } from 'redux/selectors/notifications';
|
2020-08-10 16:47:39 -04:00
|
|
|
|
2019-12-18 00:27:08 -05:00
|
|
|
import SideNavigation from './view';
|
2018-03-26 14:32:43 -07:00
|
|
|
|
2021-03-16 09:42:49 +08:00
|
|
|
const select = (state) => ({
|
2019-06-11 14:10:58 -04:00
|
|
|
subscriptions: selectSubscriptions(state),
|
2020-09-02 10:38:40 +08:00
|
|
|
followedTags: selectFollowedTags(state),
|
2020-11-20 08:21:31 -05:00
|
|
|
language: selectLanguage(state), // trigger redraw on language change
|
2019-12-18 00:27:08 -05:00
|
|
|
email: selectUserVerifiedEmail(state),
|
2020-05-21 11:38:28 -04:00
|
|
|
purchaseSuccess: selectPurchaseUriSuccess(state),
|
2021-03-16 09:42:49 +08:00
|
|
|
unseenCount: selectUnseenNotificationCount(state),
|
2020-08-11 16:32:03 -04:00
|
|
|
user: selectUser(state),
|
2020-11-10 11:07:00 -05:00
|
|
|
homepageData: selectHomepageData(state),
|
2018-03-26 14:32:43 -07:00
|
|
|
});
|
|
|
|
|
2020-05-21 11:38:28 -04:00
|
|
|
export default connect(select, {
|
|
|
|
doSignOut,
|
|
|
|
doClearPurchasedUriSuccess,
|
|
|
|
})(SideNavigation);
|