Skip to content

Commit

Permalink
invalidates cost-surface fetch a second later of creation
Browse files Browse the repository at this point in the history
  • Loading branch information
andresgnlez committed Feb 20, 2024
1 parent 6ba31a1 commit 49c978f
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 4 deletions.
14 changes: 12 additions & 2 deletions app/hooks/cost-surface/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { useQuery, QueryObserverOptions, useMutation } from 'react-query';
import { useQuery, QueryObserverOptions, useMutation, useQueryClient } from 'react-query';

import { useSession } from 'next-auth/react';

Expand Down Expand Up @@ -86,6 +86,7 @@ export function useEditProjectCostSurface() {

export function useUploadProjectCostSurface() {
const { data: session } = useSession();
const queryClient = useQueryClient();

const uploadProjectCostSurface = ({ id, data }: { id: CostSurface['id']; data: FormData }) => {
return UPLOADS.request({
Expand All @@ -99,5 +100,14 @@ export function useUploadProjectCostSurface() {
});
};

return useMutation(uploadProjectCostSurface);
return useMutation(uploadProjectCostSurface, {
onSuccess: (data, variables) => {
// ? delaying the invalidation of the query to avoid falling in a "limbo" window where
// ? the application is not aware if it should refetch the list as the API processing was not fast enough to resolve before the upload callback
// ? but it is fast enough to resolve before the first polling after upload. This window time is known as "limbo".
setTimeout(() => {
queryClient.invalidateQueries(['cost-surfaces', variables.id]);
}, 1000);
},
});
}
4 changes: 2 additions & 2 deletions app/hooks/projects/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -189,8 +189,8 @@ export function useSaveProject({
};

return useMutation(saveProject, {
onSuccess: () => {
queryClient.invalidateQueries('projects');
onSuccess: async () => {
await queryClient.invalidateQueries('projects');
},
onError: (error, variables, context) => {
// An error happened!
Expand Down

0 comments on commit 49c978f

Please sign in to comment.