25 lines
558 B
JavaScript
25 lines
558 B
JavaScript
/** @format */
|
|
|
|
/**
|
|
* External dependencies
|
|
*/
|
|
import { dispatch } from '@wordpress/data';
|
|
import apiFetch from '@wordpress/api-fetch';
|
|
|
|
/**
|
|
* Internal dependencies
|
|
*/
|
|
import { stringifyQuery } from 'lib/nav-utils';
|
|
import { NAMESPACE } from 'store/constants';
|
|
|
|
export default {
|
|
async getNotes( state, query ) {
|
|
try {
|
|
const notes = await apiFetch( { path: NAMESPACE + 'admin/notes' + stringifyQuery( query ) } );
|
|
dispatch( 'wc-admin' ).setNotes( notes, query );
|
|
} catch ( error ) {
|
|
dispatch( 'wc-admin' ).setNotesError( query );
|
|
}
|
|
},
|
|
};
|