2020-07-23 16:22:57 +02:00
|
|
|
import { connect } from 'react-redux';
|
2021-12-20 13:32:32 +01:00
|
|
|
import { selectUnseenNotificationCount } from 'redux/selectors/notifications';
|
2020-12-14 19:52:17 +01:00
|
|
|
import { doSeeAllNotifications } from 'redux/actions/notifications';
|
2020-07-23 16:22:57 +02:00
|
|
|
import { selectUser } from 'redux/selectors/user';
|
|
|
|
import NotificationHeaderButton from './view';
|
|
|
|
|
2021-12-20 13:32:32 +01:00
|
|
|
const select = (state) => ({
|
2020-12-14 19:52:17 +01:00
|
|
|
unseenCount: selectUnseenNotificationCount(state),
|
2020-07-23 16:22:57 +02:00
|
|
|
user: selectUser(state),
|
|
|
|
});
|
|
|
|
|
|
|
|
export default connect(select, {
|
2020-12-14 19:52:17 +01:00
|
|
|
doSeeAllNotifications,
|
2020-07-23 16:22:57 +02:00
|
|
|
})(NotificationHeaderButton);
|