File size: 1,440 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 |
import { registerHandlers } from 'calypso/state/data-layer/handler-registry';
import { http } from 'calypso/state/data-layer/wpcom-http/actions';
import { dispatchRequest } from 'calypso/state/data-layer/wpcom-http/utils';
import { READER_SEEN_MARK_AS_SEEN_REQUEST } from 'calypso/state/reader/action-types';
import { requestFollows } from 'calypso/state/reader/follows/actions';
import { receiveMarkAsSeen } from 'calypso/state/reader/seen-posts/actions';
import { requestUnseenStatus } from 'calypso/state/reader-ui/seen-posts/actions';
const toApi = ( action ) => {
return {
feed_id: action.feedId,
feed_item_ids: action.feedItemIds,
source: action.source,
};
};
export function fetch( action ) {
return http(
{
method: 'POST',
apiNamespace: 'wpcom/v2',
path: `/seen-posts/seen/new`,
body: toApi( action ),
},
action
);
}
export const onSuccess = ( action, response ) => ( dispatch ) => {
const { feedId, feedUrl, globalIds } = action;
if ( response.status ) {
// re-request unseen status and followed feeds
dispatch( requestUnseenStatus() );
dispatch( requestFollows() );
dispatch( receiveMarkAsSeen( { feedId, feedUrl, globalIds } ) );
}
};
export function onError() {
// don't do much
return [];
}
registerHandlers( 'state/data-layer/wpcom/seen-posts/seen/new/index.js', {
[ READER_SEEN_MARK_AS_SEEN_REQUEST ]: [
dispatchRequest( {
fetch,
onSuccess,
onError,
} ),
],
} );
|