mirror of
https://github.com/tooot-app/app
synced 2025-04-15 02:42:04 +02:00
125 lines
3.2 KiB
TypeScript
125 lines
3.2 KiB
TypeScript
import haptics from '@components/haptics'
|
|
import { MenuContainer, MenuHeader, MenuRow } from '@components/Menu'
|
|
import { toast } from '@components/toast'
|
|
import {
|
|
QueryKeyTimeline,
|
|
useTimelineMutation
|
|
} from '@utils/queryHooks/timeline'
|
|
import React from 'react'
|
|
import { useTranslation } from 'react-i18next'
|
|
import { useQueryClient } from 'react-query'
|
|
|
|
export interface Props {
|
|
queryKey?: QueryKeyTimeline
|
|
account: Pick<Mastodon.Account, 'id' | 'acct'>
|
|
setBottomSheetVisible: React.Dispatch<React.SetStateAction<boolean>>
|
|
}
|
|
|
|
const HeaderActionsAccount: React.FC<Props> = ({
|
|
queryKey,
|
|
account,
|
|
setBottomSheetVisible
|
|
}) => {
|
|
const { t } = useTranslation()
|
|
|
|
const queryClient = useQueryClient()
|
|
const mutateion = useTimelineMutation({
|
|
queryClient,
|
|
onSuccess: (_, { type }) => {
|
|
haptics('Success')
|
|
toast({
|
|
type: 'success',
|
|
message: t('common:toastMessage.success.message', {
|
|
function: t(
|
|
`timeline:shared.header.default.actions.account.${type}.function`,
|
|
{ acct: account.acct }
|
|
)
|
|
})
|
|
})
|
|
},
|
|
onError: (err: any, { type }) => {
|
|
haptics('Error')
|
|
toast({
|
|
type: 'error',
|
|
message: t('common:toastMessage.error.message', {
|
|
function: t(
|
|
`timeline:shared.header.default.actions.account.${type}.function`,
|
|
{ acct: account.acct }
|
|
)
|
|
}),
|
|
...(err.status &&
|
|
typeof err.status === 'number' &&
|
|
err.data &&
|
|
err.data.error &&
|
|
typeof err.data.error === 'string' && {
|
|
description: err.data.error
|
|
})
|
|
})
|
|
},
|
|
onSettled: () => {
|
|
queryKey && queryClient.invalidateQueries(queryKey)
|
|
}
|
|
})
|
|
|
|
return (
|
|
<MenuContainer>
|
|
<MenuHeader
|
|
heading={t('timeline:shared.header.default.actions.account.heading')}
|
|
/>
|
|
<MenuRow
|
|
onPress={() => {
|
|
setBottomSheetVisible(false)
|
|
mutateion.mutate({
|
|
type: 'updateAccountProperty',
|
|
queryKey,
|
|
id: account.id,
|
|
payload: { property: 'mute' }
|
|
})
|
|
}}
|
|
iconFront='EyeOff'
|
|
title={t('timeline:shared.header.default.actions.account.mute.button', {
|
|
acct: account.acct
|
|
})}
|
|
/>
|
|
<MenuRow
|
|
onPress={() => {
|
|
setBottomSheetVisible(false)
|
|
mutateion.mutate({
|
|
type: 'updateAccountProperty',
|
|
queryKey,
|
|
id: account.id,
|
|
payload: { property: 'block' }
|
|
})
|
|
}}
|
|
iconFront='XCircle'
|
|
title={t(
|
|
'timeline:shared.header.default.actions.account.block.button',
|
|
{
|
|
acct: account.acct
|
|
}
|
|
)}
|
|
/>
|
|
<MenuRow
|
|
onPress={() => {
|
|
setBottomSheetVisible(false)
|
|
mutateion.mutate({
|
|
type: 'updateAccountProperty',
|
|
queryKey,
|
|
id: account.id,
|
|
payload: { property: 'reports' }
|
|
})
|
|
}}
|
|
iconFront='Flag'
|
|
title={t(
|
|
'timeline:shared.header.default.actions.account.report.button',
|
|
{
|
|
acct: account.acct
|
|
}
|
|
)}
|
|
/>
|
|
</MenuContainer>
|
|
)
|
|
}
|
|
|
|
export default HeaderActionsAccount
|