41 lines
1006 B
JavaScript
41 lines
1006 B
JavaScript
/** @format */
|
|
/**
|
|
* External dependencies
|
|
*/
|
|
import { Button } from '@wordpress/components';
|
|
import classnames from 'classnames';
|
|
import { Component } from '@wordpress/element';
|
|
import PropTypes from 'prop-types';
|
|
|
|
class AgendaItem extends Component {
|
|
render() {
|
|
const { children, className, onClick, href, actionLabel } = this.props;
|
|
const classes = classnames( 'woocommerce-dashboard__agenda-item-wrapper', className );
|
|
|
|
const action = href !== undefined ? { href } : { onClick };
|
|
|
|
return (
|
|
<div className={ classes }>
|
|
{ children && (
|
|
<div className="woocommerce-dashboard__agenda-item-content"> { children } </div>
|
|
) }
|
|
<Button
|
|
className="woocommerce-dashboard__agenda-item-action-button button-secondary"
|
|
{ ...action }
|
|
>
|
|
{ actionLabel }
|
|
</Button>
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
AgendaItem.propTypes = {
|
|
onClick: PropTypes.func,
|
|
href: PropTypes.string,
|
|
actionLabel: PropTypes.string.isRequired,
|
|
className: PropTypes.string,
|
|
};
|
|
|
|
export default AgendaItem;
|