Clean up ProfileMod screen
This commit is contained in:
@@ -7,11 +7,12 @@ import Animated, {
|
|||||||
withTiming,
|
withTiming,
|
||||||
} from 'react-native-reanimated'
|
} from 'react-native-reanimated'
|
||||||
|
|
||||||
import {atoms as a} from '#/alf'
|
import {atoms as a, useTheme} from '#/alf'
|
||||||
import {Props, useCommonSVGProps} from '#/components/icons/common'
|
import {Props, useCommonSVGProps} from '#/components/icons/common'
|
||||||
import {Loader_Stroke2_Corner0_Rounded as Icon} from '#/components/icons/Loader'
|
import {Loader_Stroke2_Corner0_Rounded as Icon} from '#/components/icons/Loader'
|
||||||
|
|
||||||
export function Loader(props: Props) {
|
export function Loader(props: Props) {
|
||||||
|
const t = useTheme()
|
||||||
const common = useCommonSVGProps(props)
|
const common = useCommonSVGProps(props)
|
||||||
const rotation = useSharedValue(0)
|
const rotation = useSharedValue(0)
|
||||||
|
|
||||||
@@ -35,7 +36,10 @@ export function Loader(props: Props) {
|
|||||||
{width: common.size, height: common.size},
|
{width: common.size, height: common.size},
|
||||||
animatedStyles,
|
animatedStyles,
|
||||||
]}>
|
]}>
|
||||||
<Icon {...props} style={[a.absolute, a.inset_0, props.style]} />
|
<Icon
|
||||||
|
{...props}
|
||||||
|
style={[a.absolute, a.inset_0, props.style, t.atoms.text_contrast_high]}
|
||||||
|
/>
|
||||||
</Animated.View>
|
</Animated.View>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,9 +1,10 @@
|
|||||||
import React from 'react'
|
import React from 'react'
|
||||||
import {Dimensions, View} from 'react-native'
|
import {View} from 'react-native'
|
||||||
import {NativeStackScreenProps} from '@react-navigation/native-stack'
|
import {NativeStackScreenProps} from '@react-navigation/native-stack'
|
||||||
import {AppBskyModerationDefs} from '@atproto/api'
|
import {AppBskyModerationDefs} from '@atproto/api'
|
||||||
import {Trans, msg} from '@lingui/macro'
|
import {Trans, msg} from '@lingui/macro'
|
||||||
import {useLingui} from '@lingui/react'
|
import {useLingui} from '@lingui/react'
|
||||||
|
import {useSafeAreaFrame} from 'react-native-safe-area-context'
|
||||||
|
|
||||||
import {usePalette} from '#/lib/hooks/usePalette'
|
import {usePalette} from '#/lib/hooks/usePalette'
|
||||||
import {CommonNavigatorParams} from '#/lib/routes/types'
|
import {CommonNavigatorParams} from '#/lib/routes/types'
|
||||||
@@ -45,17 +46,32 @@ import {ErrorState} from '#/screens/ProfileModerationService/ErrorState'
|
|||||||
import {Header} from '#/screens/ProfileModerationService/Header'
|
import {Header} from '#/screens/ProfileModerationService/Header'
|
||||||
import {PreferenceRow} from '#/screens/ProfileModerationService/PreferenceRow'
|
import {PreferenceRow} from '#/screens/ProfileModerationService/PreferenceRow'
|
||||||
|
|
||||||
// TODO
|
|
||||||
const MIN_HEIGHT = Dimensions.get('window').height * 1.5
|
|
||||||
// TODO loader default color
|
|
||||||
|
|
||||||
export function ProfileModserviceScreen(
|
export function ProfileModserviceScreen(
|
||||||
props: NativeStackScreenProps<CommonNavigatorParams, 'ProfileModservice'>,
|
props: NativeStackScreenProps<CommonNavigatorParams, 'ProfileModservice'>,
|
||||||
) {
|
) {
|
||||||
const t = useTheme()
|
const t = useTheme()
|
||||||
const {_} = useLingui()
|
const {_} = useLingui()
|
||||||
|
const {height: minHeight} = useSafeAreaFrame()
|
||||||
const {name: handleOrDid} = props.route.params
|
const {name: handleOrDid} = props.route.params
|
||||||
const {isLoading, error, data: resolvedDid} = useResolveDidQuery(handleOrDid)
|
const {
|
||||||
|
isLoading: isDidResolutionLoading,
|
||||||
|
error: didResolutionError,
|
||||||
|
data: did,
|
||||||
|
} = useResolveDidQuery(handleOrDid)
|
||||||
|
const {
|
||||||
|
isLoading: isPreferencesLoading,
|
||||||
|
error: preferencesError,
|
||||||
|
data: preferences,
|
||||||
|
} = usePreferencesQuery()
|
||||||
|
const {
|
||||||
|
isLoading: isModServiceLoading,
|
||||||
|
error: modServiceError,
|
||||||
|
data: modservice,
|
||||||
|
} = useModServiceInfoQuery({did})
|
||||||
|
|
||||||
|
const isLoading =
|
||||||
|
isDidResolutionLoading || isPreferencesLoading || isModServiceLoading
|
||||||
|
const error = didResolutionError || preferencesError || modServiceError
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<CenteredView>
|
<CenteredView>
|
||||||
@@ -65,60 +81,31 @@ export function ProfileModserviceScreen(
|
|||||||
a.border_r,
|
a.border_r,
|
||||||
t.atoms.border_contrast_low,
|
t.atoms.border_contrast_low,
|
||||||
{
|
{
|
||||||
minHeight: MIN_HEIGHT,
|
minHeight,
|
||||||
},
|
},
|
||||||
]}>
|
]}>
|
||||||
{isLoading ? (
|
{isLoading ? (
|
||||||
<View style={[a.w_full, a.align_center]}>
|
<View style={[a.w_full, a.align_center]}>
|
||||||
<Loader size="xl" fill={t.atoms.text.color} />
|
<Loader size="xl" />
|
||||||
</View>
|
</View>
|
||||||
) : resolvedDid ? (
|
) : error || !(did && preferences && modservice) ? (
|
||||||
<ProfileModservicecreenIntermediate modDid={resolvedDid} />
|
|
||||||
) : (
|
|
||||||
<ErrorState
|
<ErrorState
|
||||||
error={
|
error={
|
||||||
error?.toString() ||
|
error?.toString() ||
|
||||||
_(msg`Something went wrong, please try again.`)
|
_(msg`Something went wrong, please try again.`)
|
||||||
}
|
}
|
||||||
/>
|
/>
|
||||||
|
) : (
|
||||||
|
<ProfileModserviceScreenInner
|
||||||
|
preferences={preferences}
|
||||||
|
modservice={modservice}
|
||||||
|
/>
|
||||||
)}
|
)}
|
||||||
</View>
|
</View>
|
||||||
</CenteredView>
|
</CenteredView>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
function ProfileModservicecreenIntermediate({modDid}: {modDid: string}) {
|
|
||||||
const t = useTheme()
|
|
||||||
const {_} = useLingui()
|
|
||||||
const {
|
|
||||||
isLoading: isPreferencesLoading,
|
|
||||||
error: preferencesError,
|
|
||||||
data: preferences,
|
|
||||||
} = usePreferencesQuery()
|
|
||||||
const {
|
|
||||||
isLoading: isModServiceLoading,
|
|
||||||
error: modServiceError,
|
|
||||||
data: info,
|
|
||||||
} = useModServiceInfoQuery({did: modDid})
|
|
||||||
|
|
||||||
const isLoading = isPreferencesLoading || isModServiceLoading
|
|
||||||
const error = preferencesError || modServiceError
|
|
||||||
|
|
||||||
return isLoading ? (
|
|
||||||
<View style={[a.w_full, a.align_center]}>
|
|
||||||
<Loader size="xl" fill={t.atoms.text.color} />
|
|
||||||
</View>
|
|
||||||
) : preferences && info ? (
|
|
||||||
<ProfileModserviceScreenInner preferences={preferences} modservice={info} />
|
|
||||||
) : (
|
|
||||||
<ErrorState
|
|
||||||
error={
|
|
||||||
error?.toString() || _(msg`Something went wrong, please try again.`)
|
|
||||||
}
|
|
||||||
/>
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
export function ProfileModserviceScreenInner({
|
export function ProfileModserviceScreenInner({
|
||||||
preferences,
|
preferences,
|
||||||
modservice,
|
modservice,
|
||||||
@@ -128,6 +115,7 @@ export function ProfileModserviceScreenInner({
|
|||||||
}) {
|
}) {
|
||||||
const t = useTheme()
|
const t = useTheme()
|
||||||
const {_} = useLingui()
|
const {_} = useLingui()
|
||||||
|
const {height: minHeight} = useSafeAreaFrame()
|
||||||
const pal = usePalette('default')
|
const pal = usePalette('default')
|
||||||
const {hasSession} = useSession()
|
const {hasSession} = useSession()
|
||||||
const {track} = useAnalytics()
|
const {track} = useAnalytics()
|
||||||
@@ -178,7 +166,7 @@ export function ProfileModserviceScreenInner({
|
|||||||
<ScrollView
|
<ScrollView
|
||||||
scrollEventThrottle={1}
|
scrollEventThrottle={1}
|
||||||
contentContainerStyle={{
|
contentContainerStyle={{
|
||||||
minHeight: Dimensions.get('window').height * 1.5,
|
minHeight,
|
||||||
borderWidth: 0,
|
borderWidth: 0,
|
||||||
paddingHorizontal: a.px_xl.paddingLeft,
|
paddingHorizontal: a.px_xl.paddingLeft,
|
||||||
}}>
|
}}>
|
||||||
|
|||||||
@@ -15,12 +15,14 @@ export const modServicesDetailedInfoQueryKey = (dids: string[]) => [
|
|||||||
dids,
|
dids,
|
||||||
]
|
]
|
||||||
|
|
||||||
export function useModServiceInfoQuery({did}: {did: string}) {
|
export function useModServiceInfoQuery({did}: {did?: string}) {
|
||||||
return useQuery({
|
return useQuery({
|
||||||
enabled: !!did,
|
enabled: !!did,
|
||||||
queryKey: modServiceInfoQueryKey(did),
|
queryKey: modServiceInfoQueryKey(did as string),
|
||||||
queryFn: async () => {
|
queryFn: async () => {
|
||||||
const res = await getAgent().app.bsky.moderation.getService({did})
|
const res = await getAgent().app.bsky.moderation.getService({
|
||||||
|
did: did as string,
|
||||||
|
})
|
||||||
return res.data
|
return res.data
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|||||||
Reference in New Issue
Block a user