2020-07-23 10:22:57 -04:00
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import {
|
|
|
|
selectNotifications,
|
|
|
|
selectIsFetchingNotifications,
|
2020-12-14 13:52:17 -05:00
|
|
|
selectUnseenNotificationCount,
|
2020-07-23 10:22:57 -04:00
|
|
|
} from 'redux/selectors/notifications';
|
2020-12-14 13:52:17 -05:00
|
|
|
import { doSeeAllNotifications } from 'redux/actions/notifications';
|
2020-07-23 10:22:57 -04:00
|
|
|
import { selectUser } from 'redux/selectors/user';
|
|
|
|
import NotificationHeaderButton from './view';
|
|
|
|
|
|
|
|
const select = state => ({
|
|
|
|
notifications: selectNotifications(state),
|
|
|
|
fetching: selectIsFetchingNotifications(state),
|
2020-12-14 13:52:17 -05:00
|
|
|
unseenCount: selectUnseenNotificationCount(state),
|
2020-07-23 10:22:57 -04:00
|
|
|
user: selectUser(state),
|
|
|
|
});
|
|
|
|
|
|
|
|
export default connect(select, {
|
2020-12-14 13:52:17 -05:00
|
|
|
doSeeAllNotifications,
|
2020-07-23 10:22:57 -04:00
|
|
|
})(NotificationHeaderButton);
|