woocommerce/plugins/woocommerce-admin/client/layout/store-alerts/index.js

177 lines
4.5 KiB
JavaScript
Raw Normal View History

2019-02-19 21:07:19 +00:00
/** @format */
/**
* External dependencies
*/
import { __ } from '@wordpress/i18n';
import { Component, Fragment } from '@wordpress/element';
import { IconButton, Button, Dashicon } from '@wordpress/components';
import classnames from 'classnames';
import interpolateComponents from 'interpolate-components';
import { compose } from '@wordpress/compose';
import { noop } from 'lodash';
import { withDispatch } from '@wordpress/data';
2019-02-19 21:07:19 +00:00
/**
* WooCommerce dependencies
*/
import { Card } from '@woocommerce/components';
/**
* Internal dependencies
*/
import withSelect from 'wc-api/with-select';
import { QUERY_DEFAULTS } from 'wc-api/constants';
import sanitizeHTML from 'lib/sanitize-html';
import StoreAlertsPlaceholder from './placeholder';
2019-02-19 21:07:19 +00:00
import './style.scss';
2019-02-19 21:07:19 +00:00
class StoreAlerts extends Component {
constructor( props ) {
super( props );
2019-02-20 15:25:56 +00:00
const { alerts } = this.props;
2019-02-19 21:07:19 +00:00
this.state = {
2019-02-20 16:18:10 +00:00
currentIndex: alerts ? 0 : null,
2019-02-19 21:07:19 +00:00
};
this.previousAlert = this.previousAlert.bind( this );
this.nextAlert = this.nextAlert.bind( this );
}
previousAlert( event ) {
event.stopPropagation();
2019-02-20 16:18:10 +00:00
const { currentIndex } = this.state;
2019-02-19 21:07:19 +00:00
2019-02-20 16:18:10 +00:00
if ( currentIndex > 0 ) {
2019-02-19 21:07:19 +00:00
this.setState( {
2019-02-20 16:18:10 +00:00
currentIndex: currentIndex - 1,
2019-02-19 21:07:19 +00:00
} );
}
}
nextAlert( event ) {
event.stopPropagation();
2019-02-20 16:18:10 +00:00
const { alerts } = this.props;
const { currentIndex } = this.state;
2019-02-19 21:07:19 +00:00
2019-02-20 16:18:10 +00:00
if ( currentIndex < alerts.length - 1 ) {
2019-02-19 21:07:19 +00:00
this.setState( {
2019-02-20 16:18:10 +00:00
currentIndex: currentIndex + 1,
2019-02-19 21:07:19 +00:00
} );
}
}
render() {
2019-03-08 16:17:48 +00:00
const alerts = this.props.alerts || [];
const preloadAlertCount = wcSettings.alertCount && parseInt( wcSettings.alertCount );
2019-03-04 13:52:20 +00:00
if ( preloadAlertCount > 0 && this.props.isLoading ) {
2019-03-08 16:17:48 +00:00
return <StoreAlertsPlaceholder hasMultipleAlerts={ preloadAlertCount > 1 } />;
} else if ( 0 === alerts.length ) {
2019-03-04 13:52:20 +00:00
return null;
}
2019-02-20 16:18:10 +00:00
const { currentIndex } = this.state;
const numberOfAlerts = alerts.length;
2019-03-08 16:17:48 +00:00
const alert = alerts[ currentIndex ];
const type = alert.type;
2019-02-19 21:07:19 +00:00
const className = classnames( 'woocommerce-store-alerts', {
'is-alert-error': 'error' === type,
'is-alert-update': 'update' === type,
2019-02-19 21:07:19 +00:00
} );
const actions = alert.actions.map( action => {
const markStatus = () => {
this.props.updateNote( alert.id, { status: action.status } );
};
return (
<Button
key={ action.name }
isDefault
href={ action.url }
onClick={ '' === action.status ? noop : markStatus }
>
{ action.label }
</Button>
);
} );
2019-03-08 16:17:48 +00:00
return (
2019-03-04 13:52:20 +00:00
<Card
title={ [
alert.icon && <Dashicon key="icon" icon={ alert.icon } />,
<Fragment key="title">{ alert.title }</Fragment>,
] }
className={ className }
action={
numberOfAlerts > 1 && (
<div className="woocommerce-store-alerts__pagination">
<IconButton
icon="arrow-left-alt2"
onClick={ this.previousAlert }
disabled={ 0 === currentIndex }
label={ __( 'Previous Alert', 'wc-admin' ) }
/>
<span
className="woocommerce-store-alerts__pagination-label"
role="status"
aria-live="polite"
>
{ interpolateComponents( {
mixedString: __( '{{current /}} of {{total /}}', 'wc-admin' ),
components: {
current: <Fragment>{ currentIndex + 1 }</Fragment>,
total: <Fragment>{ numberOfAlerts }</Fragment>,
},
} ) }
</span>
<IconButton
icon="arrow-right-alt2"
onClick={ this.nextAlert }
disabled={ numberOfAlerts - 1 === currentIndex }
label={ __( 'Next Alert', 'wc-admin' ) }
/>
</div>
)
}
>
<div
className="woocommerce-store-alerts__message"
dangerouslySetInnerHTML={ sanitizeHTML( alert.content ) }
/>
{ actions && <div className="woocommerce-store-alerts__actions">{ actions }</div> }
</Card>
2019-02-19 21:07:19 +00:00
);
}
}
export default compose(
withSelect( select => {
const { getNotes, isGetNotesRequesting } = select( 'wc-api' );
const alertsQuery = {
page: 1,
per_page: QUERY_DEFAULTS.pageSize,
type: 'error,update',
status: 'unactioned',
};
2019-02-20 15:25:56 +00:00
// Filter out notes that may have been marked actioned or not delayed after the initial request
const filterNotes = note => 'unactioned' === note.status;
const alerts = getNotes( alertsQuery ).filter( filterNotes );
const isLoading = isGetNotesRequesting( alertsQuery );
2019-02-20 16:37:03 +00:00
return {
alerts,
isLoading,
};
} ),
withDispatch( dispatch => {
const { updateNote } = dispatch( 'wc-api' );
return {
updateNote,
};
} )
)( StoreAlerts );