2019-02-13 11:44:58 +00:00
|
|
|
/** @format */
|
|
|
|
/**
|
|
|
|
* External dependencies
|
|
|
|
*/
|
|
|
|
import classnames from 'classnames';
|
|
|
|
import { Component } from '@wordpress/element';
|
|
|
|
import { compose } from '@wordpress/compose';
|
|
|
|
import PropTypes from 'prop-types';
|
2019-07-08 04:10:34 +00:00
|
|
|
import { SnackbarList } from '@wordpress/components';
|
|
|
|
import { withDispatch } from '@wordpress/data';
|
2019-02-13 11:44:58 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Internal dependencies
|
|
|
|
*/
|
|
|
|
import './style.scss';
|
|
|
|
import withSelect from 'wc-api/with-select';
|
|
|
|
|
|
|
|
class TransientNotices extends Component {
|
|
|
|
render() {
|
2019-07-08 04:10:34 +00:00
|
|
|
const { className, notices, onRemove } = this.props;
|
|
|
|
const classes = classnames(
|
|
|
|
'woocommerce-transient-notices',
|
|
|
|
'components-notices__snackbar',
|
|
|
|
className
|
2019-02-13 11:44:58 +00:00
|
|
|
);
|
2019-07-08 04:10:34 +00:00
|
|
|
|
|
|
|
return <SnackbarList notices={ notices } className={ classes } onRemove={ onRemove } />;
|
2019-02-13 11:44:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
TransientNotices.propTypes = {
|
|
|
|
/**
|
|
|
|
* Additional class name to style the component.
|
|
|
|
*/
|
|
|
|
className: PropTypes.string,
|
|
|
|
/**
|
|
|
|
* Array of notices to be displayed.
|
|
|
|
*/
|
|
|
|
notices: PropTypes.array,
|
|
|
|
};
|
|
|
|
|
|
|
|
export default compose(
|
|
|
|
withSelect( select => {
|
2019-07-08 04:10:34 +00:00
|
|
|
const notices = select( 'core/notices' ).getNotices();
|
2019-02-13 11:44:58 +00:00
|
|
|
|
|
|
|
return { notices };
|
2019-07-08 04:10:34 +00:00
|
|
|
} ),
|
|
|
|
withDispatch( dispatch => ( {
|
|
|
|
onRemove: dispatch( 'core/notices' ).removeNotice,
|
|
|
|
} ) )
|
2019-02-13 11:44:58 +00:00
|
|
|
)( TransientNotices );
|