2017-12-21 22:08:54 +01:00
|
|
|
import { connect } from 'react-redux';
|
2020-06-12 22:44:25 +02:00
|
|
|
import { doDismissToast } from 'redux/actions/notifications';
|
2022-05-06 12:08:09 +02:00
|
|
|
import { selectToast, selectToastCount } from 'redux/selectors/notifications';
|
2017-12-21 22:08:54 +01:00
|
|
|
import SnackBar from './view';
|
2017-05-23 09:21:21 +02:00
|
|
|
|
2022-05-06 12:08:09 +02:00
|
|
|
const perform = (dispatch) => ({
|
2018-10-29 18:23:53 +01:00
|
|
|
removeSnack: () => dispatch(doDismissToast()),
|
2017-06-06 06:21:55 +02:00
|
|
|
});
|
2017-05-23 09:21:21 +02:00
|
|
|
|
2022-05-06 12:08:09 +02:00
|
|
|
const select = (state) => ({
|
2018-10-29 18:23:53 +01:00
|
|
|
snack: selectToast(state),
|
2022-05-06 12:08:09 +02:00
|
|
|
snackCount: selectToastCount(state),
|
2017-06-06 06:21:55 +02:00
|
|
|
});
|
2017-05-23 09:21:21 +02:00
|
|
|
|
2020-06-12 22:44:25 +02:00
|
|
|
export default connect(select, perform)(SnackBar);
|