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