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