Eric/profile feeds list (#2049)

* Fix profile feedgens view

* Fix profile lists view

* Translate
This commit is contained in:
Eric Bailey
2023-11-30 15:40:49 -06:00
committed by GitHub
parent 47b0d36b73
commit 76a3c66f54
12 changed files with 26 additions and 20 deletions
+2 -7
View File
@@ -1,6 +1,5 @@
import React, {MutableRefObject} from 'react'
import {
ActivityIndicator,
Dimensions,
RefreshControl,
StyleProp,
@@ -23,6 +22,7 @@ import {Trans} from '@lingui/macro'
import {cleanError} from '#/lib/strings/errors'
import {useAnimatedScrollHandler} from 'react-native-reanimated'
import {useTheme} from '#/lib/ThemeContext'
import {FeedLoadingPlaceholder} from '#/view/com/util/LoadingPlaceholder'
const LOADING = {_reactKey: '__loading__'}
const EMPTY = {_reactKey: '__empty__'}
@@ -170,11 +170,7 @@ export const ProfileLists = React.forwardRef<SectionRef, ProfileListsProps>(
/>
)
} else if (item === LOADING) {
return (
<View style={{padding: 20}}>
<ActivityIndicator />
</View>
)
return <FeedLoadingPlaceholder />
}
return (
<ListCard
@@ -226,6 +222,5 @@ export const ProfileLists = React.forwardRef<SectionRef, ProfileListsProps>(
const styles = StyleSheet.create({
item: {
paddingHorizontal: 18,
paddingVertical: 4,
},
})