nostros/frontend/Pages/RepostsFeed/index.tsx

196 lines
5.6 KiB
TypeScript
Raw Normal View History

2023-01-30 11:51:10 +00:00
import React, { useCallback, useContext, useState, useEffect } from 'react'
import {
NativeScrollEvent,
NativeSyntheticEvent,
RefreshControl,
StyleSheet,
View,
} from 'react-native'
2023-02-03 09:37:54 +00:00
import { FlashList, ListRenderItem } from '@shopify/flash-list'
2023-01-30 11:51:10 +00:00
import { AppContext } from '../../Contexts/AppContext'
import { getLastReply, getRepostedNotes, Note } from '../../Functions/DatabaseFunctions/Notes'
import { handleInfinityScroll } from '../../Functions/NativeFunctions'
import { UserContext } from '../../Contexts/UserContext'
import { RelayPoolContext } from '../../Contexts/RelayPoolContext'
import { Kind } from 'nostr-tools'
import { RelayFilters } from '../../lib/nostr/RelayPool/intex'
import { ActivityIndicator, Text } from 'react-native-paper'
import NoteCard from '../../Components/NoteCard'
import { useTheme } from '@react-navigation/native'
import MaterialCommunityIcons from 'react-native-vector-icons/MaterialCommunityIcons'
import { t } from 'i18next'
import { getLastReaction } from '../../Functions/DatabaseFunctions/Reactions'
interface RepostsFeedProps {
navigation: any
setProfileCardPubKey: (profileCardPubKey: string) => void
}
export const RepostsFeed: React.FC<RepostsFeedProps> = ({ navigation, setProfileCardPubKey }) => {
const theme = useTheme()
const { database } = useContext(AppContext)
const { publicKey } = useContext(UserContext)
const { lastEventId, relayPool, lastConfirmationtId } = useContext(RelayPoolContext)
const initialPageSize = 10
const [notes, setNotes] = useState<Note[]>([])
const [pageSize, setPageSize] = useState<number>(initialPageSize)
const [refreshing, setRefreshing] = useState(false)
useEffect(() => {
subscribeNotes()
loadNotes()
}, [])
useEffect(() => {
if (relayPool && publicKey) {
loadNotes()
}
}, [lastEventId, lastConfirmationtId])
useEffect(() => {
if (pageSize > initialPageSize) {
subscribeNotes(true)
}
}, [pageSize])
const onRefresh = useCallback(() => {
setRefreshing(true)
subscribeNotes()
}, [])
const subscribeNotes: (past?: boolean) => void = async (past) => {
if (!database || !publicKey) return
const message: RelayFilters = {
kinds: [Kind.Text],
authors: [publicKey],
limit: pageSize,
}
relayPool?.subscribe('homepage-contacts-main', [message])
setRefreshing(false)
}
const onScroll: (event: NativeSyntheticEvent<NativeScrollEvent>) => void = (event) => {
if (handleInfinityScroll(event)) {
setPageSize(pageSize + initialPageSize)
}
}
const loadNotes: () => void = () => {
if (database && publicKey) {
getRepostedNotes(database, publicKey, pageSize).then((notes) => {
setNotes(notes)
if (notes.length > 0) {
relayPool?.subscribe('homepage-contacts-meta', [
{
kinds: [Kind.Metadata],
authors: notes.map((note) => note.pubkey ?? ''),
},
])
const noteIds = notes.map((note) => note.id ?? '')
getLastReaction(database, { eventIds: notes.map((note) => note.id ?? '') }).then(
(lastReaction) => {
relayPool?.subscribe('homepage-reactions', [
{
kinds: [Kind.Reaction],
'#e': noteIds,
since: lastReaction?.created_at ?? 0,
},
])
},
)
const repostIds = notes.filter((note) => note.repost_id).map((note) => note.id ?? '')
getLastReply(database, { eventIds: notes.map((note) => note.id ?? '') }).then(
(lastReply) => {
relayPool?.subscribe('homepage-replies', [
{
kinds: [Kind.Text],
'#e': noteIds,
since: lastReply?.created_at ?? 0,
},
{
kinds: [Kind.Text],
'#e': repostIds,
},
])
},
)
}
})
}
}
const renderItem: ListRenderItem<Note> = ({ item }) => {
return (
<View style={styles.noteCard} key={item.id}>
<NoteCard
note={item}
onPressUser={(user) => {
setProfileCardPubKey(user.id)
}}
/>
</View>
)
}
2023-02-03 09:37:54 +00:00
const ListEmptyComponent = React.useMemo(
() => (
<View style={styles.blank}>
<MaterialCommunityIcons
name='cached'
size={64}
style={styles.center}
color={theme.colors.onPrimaryContainer}
/>
<Text variant='headlineSmall' style={styles.center}>
{t('repostsFeed.emptyTitle')}
</Text>
<Text variant='bodyMedium' style={styles.center}>
{t('repostsFeed.emptyDescription')}
</Text>
</View>
),
[],
)
2023-01-30 11:51:10 +00:00
return (
2023-02-03 09:37:54 +00:00
<View style={styles.list}>
<FlashList
2023-02-03 13:35:42 +00:00
estimatedItemSize={200}
2023-02-03 09:37:54 +00:00
showsVerticalScrollIndicator={false}
data={notes}
renderItem={renderItem}
refreshControl={<RefreshControl refreshing={refreshing} onRefresh={onRefresh} />}
onScroll={onScroll}
refreshing={refreshing}
ListEmptyComponent={ListEmptyComponent}
horizontal={false}
ListFooterComponent={<ActivityIndicator animating={true} />}
/>
2023-01-30 11:51:10 +00:00
</View>
)
}
const styles = StyleSheet.create({
2023-02-03 09:37:54 +00:00
list: {
height: '100%',
},
2023-01-30 11:51:10 +00:00
noteCard: {
marginTop: 16,
},
center: {
alignContent: 'center',
textAlign: 'center',
},
blank: {
justifyContent: 'space-between',
height: 158,
marginTop: 91,
},
activityIndicator: {
padding: 16,
},
})
export default RepostsFeed