blob: f5ccf1458b3ad0576f90aa59802fc69abc9e068a (
plain) (
blame)
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
|
import {useCallback} from 'react'
import {useQueryClient} from '@tanstack/react-query'
import {logger} from '#/logger'
import {updateProfileShadow} from '#/state/cache/profile-shadow'
import {useAgent} from '#/state/session'
import type * as bsky from '#/types/bsky'
/**
* Fetches a fresh verification state from the app view and updates our profile
* cache. This state is computed using a variety of factors on the server, so
* we need to get this data from the server.
*/
export function useUpdateProfileVerificationCache() {
const qc = useQueryClient()
const agent = useAgent()
return useCallback(
async ({profile}: {profile: bsky.profile.AnyProfileView}) => {
try {
const {data: updated} = await agent.getProfile({
actor: profile.did ?? '',
})
updateProfileShadow(qc, profile.did, {
verification: updated.verification,
})
} catch (e) {
logger.error(`useUpdateProfileVerificationCache failed`, {
safeMessage: e,
})
}
},
[agent, qc],
)
}
|