2018-03-24 09:54:19 +00:00
|
|
|
import { injectIntl } from 'react-intl';
|
2023-05-23 15:15:17 +00:00
|
|
|
|
2016-11-20 18:39:18 +00:00
|
|
|
import { connect } from 'react-redux';
|
2023-05-23 15:15:17 +00:00
|
|
|
|
2016-11-20 18:39:18 +00:00
|
|
|
import { NotificationStack } from 'react-notification';
|
2023-05-23 15:15:17 +00:00
|
|
|
|
2024-09-12 08:16:07 +00:00
|
|
|
import { dismissAlert } from 'mastodon/actions/alerts';
|
|
|
|
import { getAlerts } from 'mastodon/selectors';
|
2016-09-12 17:20:55 +00:00
|
|
|
|
2023-07-08 18:01:08 +00:00
|
|
|
const mapStateToProps = (state, { intl }) => ({
|
2024-09-12 08:16:07 +00:00
|
|
|
notifications: getAlerts(state, { intl }),
|
2023-07-08 18:01:08 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
const mapDispatchToProps = (dispatch) => ({
|
|
|
|
onDismiss (alert) {
|
|
|
|
dispatch(dismissAlert(alert));
|
|
|
|
},
|
|
|
|
});
|
2016-09-12 17:20:55 +00:00
|
|
|
|
2018-03-24 09:54:19 +00:00
|
|
|
export default injectIntl(connect(mapStateToProps, mapDispatchToProps)(NotificationStack));
|