Invalidate query for list when blocking/unblocking
This commit is contained in:
@@ -22,6 +22,7 @@ import {useToggleMutationQueue} from '#/lib/hooks/useToggleMutationQueue'
|
|||||||
import {logEvent, LogEvents, toClout} from '#/lib/statsig/statsig'
|
import {logEvent, LogEvents, toClout} from '#/lib/statsig/statsig'
|
||||||
import {Shadow} from '#/state/cache/types'
|
import {Shadow} from '#/state/cache/types'
|
||||||
import {STALE} from '#/state/queries'
|
import {STALE} from '#/state/queries'
|
||||||
|
import {RQKEY as ListConvosQueryKey} from '#/state/queries/messages/list-converations'
|
||||||
import {resetProfilePostsQueries} from '#/state/queries/post-feed'
|
import {resetProfilePostsQueries} from '#/state/queries/post-feed'
|
||||||
import {updateProfileShadow} from '../cache/profile-shadow'
|
import {updateProfileShadow} from '../cache/profile-shadow'
|
||||||
import {useAgent, useSession} from '../session'
|
import {useAgent, useSession} from '../session'
|
||||||
@@ -453,6 +454,7 @@ function useProfileBlockMutation() {
|
|||||||
onSuccess(_, {did}) {
|
onSuccess(_, {did}) {
|
||||||
queryClient.invalidateQueries({queryKey: RQKEY_MY_BLOCKED()})
|
queryClient.invalidateQueries({queryKey: RQKEY_MY_BLOCKED()})
|
||||||
resetProfilePostsQueries(queryClient, did, 1000)
|
resetProfilePostsQueries(queryClient, did, 1000)
|
||||||
|
queryClient.invalidateQueries({queryKey: ListConvosQueryKey})
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
@@ -474,6 +476,7 @@ function useProfileUnblockMutation() {
|
|||||||
},
|
},
|
||||||
onSuccess(_, {did}) {
|
onSuccess(_, {did}) {
|
||||||
resetProfilePostsQueries(queryClient, did, 1000)
|
resetProfilePostsQueries(queryClient, did, 1000)
|
||||||
|
queryClient.invalidateQueries({queryKey: ListConvosQueryKey})
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user