/** @format */
/**
* External dependencies
*/
import { __ } from '@wordpress/i18n';
import { Button } from '@wordpress/components';
import { Component, Fragment } from '@wordpress/element';
import { compose } from '@wordpress/compose';
import Gridicon from 'gridicons';
import { withSelect } from '@wordpress/data';
/**
* Internal dependencies
*/
import { ActivityCard, ActivityCardPlaceholder } from '../activity-card';
import ActivityHeader from '../activity-header';
import { EmptyContent, Section } from '@woocommerce/components';
import sanitizeHTML from 'lib/sanitize-html';
class InboxPanel extends Component {
render() {
const { isError, isRequesting, notes } = this.props;
if ( isError ) {
const title = __( 'There was an error getting your inbox. Please try again.', 'wc-admin' );
const actionLabel = __( 'Reload', 'wc-admin' );
const actionCallback = () => {
// TODO Add tracking for how often an error is displayed, and the reload action is clicked.
window.location.reload();
};
return (
);
}
const getButtonsFromActions = actions => {
if ( ! actions ) {
return [];
}
return actions.map( action => (
) );
};
const notesArray = Object.keys( notes ).map( key => notes[ key ] );
return (
{ isRequesting ? (
) : (
notesArray.map( note => (
}
unread={ 'unread' === note.status }
actions={ getButtonsFromActions( note.actions ) }
>
) )
) }
);
}
}
export default compose(
withSelect( select => {
const { getNotes, isGetNotesError, isGetNotesRequesting } = select( 'wc-admin' );
const inboxQuery = {
page: 1,
per_page: 25,
};
const notes = getNotes( inboxQuery );
const isError = isGetNotesError( inboxQuery );
const isRequesting = isGetNotesRequesting( inboxQuery );
return { notes, isError, isRequesting };
} )
)( InboxPanel );