File size: 3,765 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 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 |
import { useMutation, useQueryClient } from '@tanstack/react-query';
import { callApi } from '../helpers';
import { useCacheKey, useIsLoggedIn } from '../hooks';
import { PostSubscription, SubscriptionManagerSubscriptionsCount } from '../types';
type UnsubscribeParams = {
id: number | string;
blog_id: number | string;
post_id: number | string;
};
type UnsubscribeResponse = {
success: boolean;
subscribed: boolean;
subscription: null;
};
type PostSubscriptions = {
comment_subscriptions: PostSubscription[];
total_comment_subscriptions_count: number;
};
type PostSubscriptionsPages = {
pageParams: [];
pages: PostSubscriptions[];
};
const usePostUnsubscribeMutation = () => {
const { isLoggedIn } = useIsLoggedIn();
const queryClient = useQueryClient();
const postSubscriptionsCacheKey = useCacheKey( [ 'read', 'post-subscriptions' ] );
const subscriptionsCountCacheKey = useCacheKey( [ 'read', 'subscriptions-count' ] );
return useMutation( {
mutationFn: async ( params: UnsubscribeParams ) => {
if ( ! params.blog_id ) {
throw new Error(
// reminder: translate this string when we add it to the UI
'Something went wrong while unsubscribing.'
);
}
const response = await callApi< UnsubscribeResponse >( {
path: `/read/site/${ params.blog_id }/comment_email_subscriptions/delete?post_id=${ params.post_id }`,
method: 'POST',
isLoggedIn,
apiVersion: '1.2',
} );
if ( ! response.success ) {
throw new Error(
// reminder: translate this string when we add it to the UI
'Something went wrong while unsubscribing.'
);
}
return response;
},
onMutate: async ( params ) => {
await queryClient.cancelQueries( { queryKey: postSubscriptionsCacheKey } );
await queryClient.cancelQueries( {
queryKey: [ 'read', 'subscriptions-count', isLoggedIn ],
} );
const previousPostSubscriptions =
queryClient.getQueryData< PostSubscriptionsPages >( postSubscriptionsCacheKey );
// remove post from comment subscriptions
if ( previousPostSubscriptions ) {
queryClient.setQueryData< PostSubscriptionsPages >( postSubscriptionsCacheKey, {
...previousPostSubscriptions,
pages: previousPostSubscriptions.pages.map( ( page ) => ( {
...page,
comment_subscriptions: page.comment_subscriptions.filter(
( subscription ) => subscription.id !== params.id
),
total_comment_subscriptions_count: page.total_comment_subscriptions_count - 1,
} ) ),
} );
}
const previousSubscriptionsCount =
queryClient.getQueryData< SubscriptionManagerSubscriptionsCount >(
subscriptionsCountCacheKey
);
// decrement the comments count
if ( previousSubscriptionsCount ) {
queryClient.setQueryData< SubscriptionManagerSubscriptionsCount >(
subscriptionsCountCacheKey,
{
...previousSubscriptionsCount,
comments: previousSubscriptionsCount?.comments
? previousSubscriptionsCount?.comments - 1
: null,
}
);
}
return { previousPostSubscriptions, previousSubscriptionsCount };
},
onError: ( error, variables, context ) => {
if ( context?.previousPostSubscriptions ) {
queryClient.setQueryData< PostSubscriptionsPages >(
postSubscriptionsCacheKey,
context.previousPostSubscriptions
);
}
if ( context?.previousSubscriptionsCount ) {
queryClient.setQueryData< SubscriptionManagerSubscriptionsCount >(
subscriptionsCountCacheKey,
context.previousSubscriptionsCount
);
}
},
onSettled: () => {
queryClient.invalidateQueries( { queryKey: postSubscriptionsCacheKey } );
queryClient.invalidateQueries( { queryKey: subscriptionsCountCacheKey } );
},
} );
};
export default usePostUnsubscribeMutation;
|