35 lines
868 B
JavaScript
35 lines
868 B
JavaScript
import PropTypes from 'prop-types';
|
|
import React from 'react';
|
|
import { bindActionCreators } from 'redux';
|
|
import { connect } from 'react-redux';
|
|
import * as ToastActions from '../actions/toast';
|
|
|
|
import ExitIcon from '../../../images/exit.svg';
|
|
|
|
function Toast(props) {
|
|
return (
|
|
<section className="toast">
|
|
<p>
|
|
{props.text}
|
|
</p>
|
|
<button className="toast__close" onClick={props.hideToast} aria-label="Close Alert" >
|
|
<ExitIcon focusable="false" aria-hidden="true" />
|
|
</button>
|
|
</section>
|
|
);
|
|
}
|
|
|
|
Toast.propTypes = {
|
|
text: PropTypes.string.isRequired,
|
|
hideToast: PropTypes.func.isRequired
|
|
};
|
|
|
|
function mapStateToProps(state) {
|
|
return state.toast;
|
|
}
|
|
|
|
function mapDispatchToProps(dispatch) {
|
|
return bindActionCreators(ToastActions, dispatch);
|
|
}
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(Toast);
|