[🐴] 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:
parent
9861494e34
commit
5af61ca4e4
6 changed files with 216 additions and 28 deletions
64
src/state/queries/messages/actor-declaration.ts
Normal file
64
src/state/queries/messages/actor-declaration.ts
Normal 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)
|
||||
},
|
||||
})
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue