[🐴] Settings screen (#3830)

* create settings screen + api

* update api package

* use putrecord API with validate false

* create new RadioGroup component
This commit is contained in:
Samuel Newman 2024-05-14 18:57:16 +01:00 committed by GitHub
parent 9861494e34
commit 5af61ca4e4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 216 additions and 28 deletions

View file

@ -0,0 +1,64 @@
import {AppBskyActorDefs} from '@atproto/api'
import {useMutation, useQueryClient} from '@tanstack/react-query'
import {logger} from '#/logger'
import {useAgent, useSession} from '#/state/session'
import {RQKEY as PROFILE_RKEY} from '../profile'
export function useUpdateActorDeclaration({
onSuccess,
onError,
}: {
onSuccess?: () => void
onError?: (error: Error) => void
}) {
const queryClient = useQueryClient()
const {currentAccount} = useSession()
const {getAgent} = useAgent()
return useMutation({
mutationFn: async (allowIncoming: 'all' | 'none' | 'following') => {
if (!currentAccount) throw new Error('Not logged in')
// TODO(sam): remove validate: false once PDSes have the new lexicon
const result = await getAgent().api.com.atproto.repo.putRecord({
collection: 'chat.bsky.actor.declaration',
rkey: 'self',
repo: currentAccount.did,
validate: false,
record: {
$type: 'chat.bsky.actor.declaration',
allowIncoming,
},
})
return result
},
onMutate: allowIncoming => {
if (!currentAccount) return
queryClient.setQueryData(
PROFILE_RKEY(currentAccount?.did),
(old?: AppBskyActorDefs.ProfileViewDetailed) => {
if (!old) return old
return {
...old,
associated: {
...old.associated,
chat: {
allowIncoming,
},
},
} satisfies AppBskyActorDefs.ProfileViewDetailed
},
)
},
onSuccess,
onError: error => {
logger.error(error)
if (currentAccount) {
queryClient.invalidateQueries({
queryKey: PROFILE_RKEY(currentAccount.did),
})
}
onError?.(error)
},
})
}