Spaces:
Running
Running
File size: 941 Bytes
6bcb42f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
import React from 'react';
import PropTypes from 'prop-types';
import {connect} from 'react-redux';
import {
closeAlert,
filterPopupAlerts
} from '../reducers/alerts';
import AlertsComponent from '../components/alerts/alerts.jsx';
const Alerts = ({
alertsList,
className,
onCloseAlert
}) => (
<AlertsComponent
// only display standard and extension alerts here
alertsList={filterPopupAlerts(alertsList)}
className={className}
onCloseAlert={onCloseAlert}
/>
);
Alerts.propTypes = {
alertsList: PropTypes.arrayOf(PropTypes.object),
className: PropTypes.string,
onCloseAlert: PropTypes.func
};
const mapStateToProps = state => ({
alertsList: state.scratchGui.alerts.alertsList
});
const mapDispatchToProps = dispatch => ({
onCloseAlert: index => dispatch(closeAlert(index))
});
export default connect(
mapStateToProps,
mapDispatchToProps
)(Alerts);
|