/** * External dependencies */ import { __, _n } from '@wordpress/i18n'; import { useEffect, useState } from '@wordpress/element'; import { EmptyContent, Section, Badge, EllipsisMenu, } from '@woocommerce/components'; import { Card, CardHeader, Button } from '@wordpress/components'; import { NOTES_STORE_NAME, useUserPreferences, QUERY_DEFAULTS, } from '@woocommerce/data'; import { useSelect, useDispatch } from '@wordpress/data'; import { recordEvent } from '@woocommerce/tracks'; import { CSSTransition, TransitionGroup } from 'react-transition-group'; import { InboxNoteCard, InboxNotePlaceholder, Text, } from '@woocommerce/experimental'; /** * Internal dependencies */ import { ActivityCard } from '../header/activity-panel/activity-card'; import { hasValidNotes } from './utils'; import { getScreenName } from '../utils'; import './index.scss'; const renderEmptyCard = () => ( { __( 'As things begin to happen in your store your inbox will start to fill up. ' + "You'll see things like achievements, new feature announcements, extension recommendations and more!", 'woocommerce-admin' ) } ); const onBodyLinkClick = ( note, innerLink ) => { recordEvent( 'inbox_action_click', { note_name: note.name, note_title: note.title, note_content_inner_link: innerLink, } ); }; const renderNotes = ( { hasNotes, isBatchUpdating, lastRead, notes, dismissNote, onNoteActionClick, } ) => { if ( isBatchUpdating ) { return; } if ( ! hasNotes ) { return renderEmptyCard(); } const screen = getScreenName(); const onNoteVisible = ( note ) => { recordEvent( 'inbox_note_view', { note_content: note.content, note_name: note.name, note_title: note.title, note_type: note.type, screen, } ); }; const notesArray = Object.keys( notes ).map( ( key ) => notes[ key ] ); return (
{ __( 'Inbox', 'woocommerce-admin' ) }
(
) } />
{ notesArray.map( ( note ) => { const { id: noteId, is_deleted: isDeleted } = note; if ( isDeleted ) { return null; } return ( ); } ) }
); }; const INBOX_QUERY = { page: 1, per_page: QUERY_DEFAULTS.pageSize, status: 'unactioned', type: QUERY_DEFAULTS.noteTypes, orderby: 'date', order: 'desc', _fields: [ 'id', 'name', 'title', 'content', 'type', 'status', 'actions', 'date_created', 'date_created_gmt', 'layout', 'image', 'is_deleted', ], }; const InboxPanel = () => { const { createNotice } = useDispatch( 'core/notices' ); const { removeNote, updateNote, triggerNoteAction } = useDispatch( NOTES_STORE_NAME ); const { isError, isResolvingNotes, isBatchUpdating, notes } = useSelect( ( select ) => { const { getNotes, getNotesError, isResolving, isNotesRequesting, } = select( NOTES_STORE_NAME ); return { notes: getNotes( INBOX_QUERY ), isError: Boolean( getNotesError( 'getNotes', [ INBOX_QUERY ] ) ), isResolvingNotes: isResolving( 'getNotes', [ INBOX_QUERY ] ), isBatchUpdating: isNotesRequesting( 'batchUpdateNotes' ), }; } ); const { updateUserPreferences, ...userPrefs } = useUserPreferences(); const [ lastRead ] = useState( userPrefs.activity_panel_inbox_last_read ); useEffect( () => { const mountTime = Date.now(); const userDataFields = { activity_panel_inbox_last_read: mountTime, }; updateUserPreferences( userDataFields ); }, [] ); const dismissNote = ( note ) => { const screen = getScreenName(); recordEvent( 'inbox_action_dismiss', { note_name: note.name, note_title: note.title, note_name_dismiss_all: false, note_name_dismiss_confirmation: true, screen, } ); const noteId = note.id; try { removeNote( noteId ); createNotice( 'success', __( 'Message dismissed', 'woocommerce-admin' ), { actions: [ { label: __( 'Undo', 'woocommerce-admin' ), onClick: () => { updateNote( noteId, { is_deleted: 0, } ); }, }, ], } ); } catch ( e ) { createNotice( 'error', _n( 'Message could not be dismissed', 'Messages could not be dismissed', 1, 'woocommerce-admin' ) ); } }; const onNoteActionClick = ( note, action ) => { triggerNoteAction( note.id, action.id ); }; if ( isError ) { const title = __( 'There was an error getting your inbox. Please try again.', 'woocommerce-admin' ); const actionLabel = __( 'Reload', 'woocommerce-admin' ); const actionCallback = () => { // @todo Add tracking for how often an error is displayed, and the reload action is clicked. window.location.reload(); }; return ( ); } const hasNotes = hasValidNotes( notes ); // @todo After having a pagination implemented we should call the method "getNotes" with a different query since // the current one is only getting 25 notes and the count of unread notes only will refer to this 25 and not all the existing ones. return ( <>
{ ( isResolvingNotes || isBatchUpdating ) && (
) }
{ ! isResolvingNotes && ! isBatchUpdating && renderNotes( { hasNotes, isBatchUpdating, lastRead, notes, dismissNote, onNoteActionClick, } ) }
); }; export default InboxPanel;