mirror of
https://github.com/tooot-app/app
synced 2025-02-12 09:50:49 +01:00
Fix admin options not showing up
This commit is contained in:
parent
43a98be2d9
commit
a77e495b6b
@ -192,7 +192,7 @@ const ComponentInstance: React.FC<Props> = ({
|
||||
const processUpdate = useCallback(() => {
|
||||
if (domain) {
|
||||
const accounts = getGlobalStorage.object('accounts')
|
||||
if (accounts && accounts.filter(account => account.startsWith(`${domain}/`)).length) {
|
||||
if (accounts?.filter(account => account.startsWith(`${domain}/`)).length) {
|
||||
Alert.alert(
|
||||
t('componentInstance:update.alert.title'),
|
||||
t('componentInstance:update.alert.message'),
|
||||
|
@ -66,7 +66,7 @@ const TabMePush: React.FC = () => {
|
||||
|
||||
const alerts = () =>
|
||||
push?.alerts
|
||||
? PUSH_DEFAULT.map(alert => (
|
||||
? PUSH_DEFAULT().map(alert => (
|
||||
<MenuRow
|
||||
key={alert}
|
||||
title={t(`me.push.${alert}.heading`)}
|
||||
@ -94,7 +94,7 @@ const TabMePush: React.FC = () => {
|
||||
const profileQuery = useProfileQuery()
|
||||
const adminAlerts = () =>
|
||||
profileQuery.data?.role?.permissions
|
||||
? PUSH_ADMIN.map(({ type }) => (
|
||||
? PUSH_ADMIN().map(({ type }) => (
|
||||
<MenuRow
|
||||
key={type}
|
||||
title={t(`me.push.${type}.heading`)}
|
||||
|
@ -66,7 +66,7 @@ const TabNotificationsFilters: React.FC<
|
||||
return (
|
||||
<ScrollView style={{ flex: 1 }}>
|
||||
<MenuContainer>
|
||||
{PUSH_DEFAULT.map((type, index) => (
|
||||
{PUSH_DEFAULT().map((type, index) => (
|
||||
<MenuRow
|
||||
key={index}
|
||||
title={t(`screenTabs:me.push.${type}.heading`)}
|
||||
@ -74,7 +74,9 @@ const TabNotificationsFilters: React.FC<
|
||||
switchOnValueChange={() => setFilters({ ...filters, [type]: !filters[type] })}
|
||||
/>
|
||||
))}
|
||||
{PUSH_ADMIN.map(({ type }) => (
|
||||
</MenuContainer>
|
||||
<MenuContainer>
|
||||
{PUSH_ADMIN().map(({ type }) => (
|
||||
<MenuRow
|
||||
key={type}
|
||||
title={t(`screenTabs:me.push.${type}.heading`)}
|
||||
|
@ -10,16 +10,9 @@ import { QueryKeyProfile } from '@utils/queryHooks/profile'
|
||||
import { getAccountDetails, getGlobalStorage } from '@utils/storage/actions'
|
||||
import * as Notifications from 'expo-notifications'
|
||||
|
||||
export const PUSH_DEFAULT = [
|
||||
'follow',
|
||||
'follow_request',
|
||||
'favourite',
|
||||
'reblog',
|
||||
'mention',
|
||||
'poll',
|
||||
'update',
|
||||
'status'
|
||||
].filter(type => {
|
||||
export const PUSH_DEFAULT = () =>
|
||||
['follow', 'follow_request', 'favourite', 'reblog', 'mention', 'poll', 'update', 'status'].filter(
|
||||
type => {
|
||||
switch (type) {
|
||||
case 'status':
|
||||
return featureCheck('notification_type_status')
|
||||
@ -28,14 +21,17 @@ export const PUSH_DEFAULT = [
|
||||
default:
|
||||
return true
|
||||
}
|
||||
}) as ['follow', 'follow_request', 'favourite', 'reblog', 'mention', 'poll', 'update', 'status']
|
||||
}
|
||||
) as ['follow', 'follow_request', 'favourite', 'reblog', 'mention', 'poll', 'update', 'status']
|
||||
|
||||
export const PUSH_ADMIN = [
|
||||
export const PUSH_ADMIN = () =>
|
||||
[
|
||||
{ type: 'admin.sign_up', permission: PERMISSION_MANAGE_USERS },
|
||||
{ type: 'admin.report', permission: PERMISSION_MANAGE_REPORTS }
|
||||
].filter(({ type, permission }) => {
|
||||
].filter(({ type, permission }) => {
|
||||
const queryKeyProfile: QueryKeyProfile = ['Profile']
|
||||
const permissions = queryClient.getQueryData<Mastodon.Account>(queryKeyProfile)?.role?.permissions
|
||||
const permissions =
|
||||
queryClient.getQueryData<Mastodon.Account>(queryKeyProfile)?.role?.permissions
|
||||
switch (type) {
|
||||
case 'admin.sign_up':
|
||||
return (
|
||||
@ -46,7 +42,7 @@ export const PUSH_ADMIN = [
|
||||
featureCheck('notification_type_admin_report') && checkPermission(permission, permissions)
|
||||
)
|
||||
}
|
||||
}) as { type: 'admin.sign_up' | 'admin.report'; permission: number }[]
|
||||
}) as { type: 'admin.sign_up' | 'admin.report'; permission: number }[]
|
||||
|
||||
export const setChannels = async (reset: boolean | undefined = false, specificAccount?: string) => {
|
||||
const account = specificAccount || getGlobalStorage.string('account.active')
|
||||
@ -76,18 +72,18 @@ export const setChannels = async (reset: boolean | undefined = false, specificAc
|
||||
|
||||
if (!accountDetails.push.decode) {
|
||||
await setChannel('default')
|
||||
for (const push of PUSH_DEFAULT) {
|
||||
for (const push of PUSH_DEFAULT()) {
|
||||
await deleteChannel(push)
|
||||
}
|
||||
for (const { type } of PUSH_ADMIN) {
|
||||
for (const { type } of PUSH_ADMIN()) {
|
||||
await deleteChannel(type)
|
||||
}
|
||||
} else {
|
||||
await deleteChannel('default')
|
||||
for (const push of PUSH_DEFAULT) {
|
||||
for (const push of PUSH_DEFAULT()) {
|
||||
await setChannel(push)
|
||||
}
|
||||
for (const { type } of PUSH_ADMIN) {
|
||||
for (const { type } of PUSH_ADMIN()) {
|
||||
await setChannel(type)
|
||||
}
|
||||
}
|
||||
|
@ -26,7 +26,11 @@ const useProfileQuery = (
|
||||
options: UseQueryOptions<AccountWithSource, AxiosError>
|
||||
} | void
|
||||
) => {
|
||||
return useQuery(queryKey, queryFunctionProfile, params?.options)
|
||||
return useQuery(queryKey, queryFunctionProfile, {
|
||||
...params?.options,
|
||||
staleTime: Infinity,
|
||||
cacheTime: Infinity
|
||||
})
|
||||
}
|
||||
|
||||
type MutationVarsProfileBase =
|
||||
|
Loading…
x
Reference in New Issue
Block a user