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