nostros/frontend/Pages/ProfileLoadPage/index.tsx
2023-02-03 16:21:01 +01:00

167 lines
4.5 KiB
TypeScript

import React, { useContext, useEffect, useState } from 'react'
import { RelayPoolContext } from '../../Contexts/RelayPoolContext'
import { Kind } from 'nostr-tools'
import { AppContext } from '../../Contexts/AppContext'
import { UserContext } from '../../Contexts/UserContext'
import { getUsers, User } from '../../Functions/DatabaseFunctions/Users'
import { useTranslation } from 'react-i18next'
import getUnixTime from 'date-fns/getUnixTime'
import debounce from 'lodash.debounce'
import { StyleSheet, View } from 'react-native'
import Logo from '../../Components/Logo'
import { Button, Text, useTheme } from 'react-native-paper'
import { navigate } from '../../lib/Navigation'
import { useFocusEffect } from '@react-navigation/native'
export const ProfileLoadPage: React.FC = () => {
const theme = useTheme()
const { database } = useContext(AppContext)
const { relayPool, lastEventId, relayPoolReady } = useContext(RelayPoolContext)
const { publicKey, reloadUser, setUserState, name } = useContext(UserContext)
const { t } = useTranslation('common')
const [profileFound, setProfileFound] = useState<boolean>(false)
const [contactsCount, setContactsCount] = useState<number>(0)
useFocusEffect(
React.useCallback(() => {
debounce(() => {
loadMeta()
loadPets()
}, 1000)
return () =>
relayPool?.unsubscribe([
'profile-load-meta',
'profile-load-notes',
'profile-load-meta-pets',
])
}, []),
)
useEffect(() => {
loadMeta()
loadPets()
reloadUser()
if (name) {
setProfileFound(true)
loadPets()
}
}, [lastEventId, name])
useEffect(() => {
if (publicKey && relayPoolReady) loadMeta()
}, [publicKey, relayPoolReady])
const loadMeta: () => void = () => {
if (publicKey && relayPoolReady) {
relayPool?.subscribe('profile-load-meta', [
{
kinds: [Kind.Text, Kind.Contacts, Kind.Metadata],
authors: [publicKey],
},
])
relayPool?.subscribe('profile-load-meta-pets', [
{
kinds: [Kind.Contacts],
'#p': [publicKey],
},
])
}
}
const loadPets: () => void = () => {
if (database && publicKey && relayPoolReady) {
getUsers(database, {}).then((results) => {
if (results && results.length > 0) {
setContactsCount(results.filter((user) => user.contact).length)
const authors = [...results.map((user: User) => user.id), publicKey]
relayPool?.subscribe('profile-load-notes', [
{
kinds: [Kind.Metadata],
authors,
},
{
kinds: [Kind.Text],
authors,
since: getUnixTime(new Date()) - 43200,
},
])
}
})
}
}
return (
<View style={styles.container}>
<View style={styles.info}>
<View style={styles.logo}>
<Logo onlyIcon size='medium' />
</View>
<Text variant='titleMedium' style={styles.center}>
{profileFound ? t('profileLoadPage.foundProfile') : t('profileLoadPage.searchingProfile')}
</Text>
<Text variant='titleMedium' style={styles.center}>
{t('profileLoadPage.foundContacts', { contactsCount })}
</Text>
<Button mode='contained' onPress={() => setUserState('ready')}>
{t('profileLoadPage.home')}
</Button>
</View>
<View style={[styles.warning, { backgroundColor: theme.colors.primaryContainer }]}>
<Text>{t('profileLoadPage.relaysDescripion')}</Text>
<View style={styles.warningActionOuterLayout}>
<Button
style={styles.warningAction}
mode='text'
onPress={() => {
navigate('Relays')
}}
>
{t('profileLoadPage.relays')}
</Button>
</View>
</View>
</View>
)
}
const styles = StyleSheet.create({
info: {
top: 150,
height: 220,
justifyContent: 'space-between',
},
container: {
padding: 16,
justifyContent: 'space-between',
flex: 1,
},
logo: {
justifyContent: 'center',
alignContent: 'center',
flexDirection: 'row',
},
center: {
alignContent: 'center',
textAlign: 'center',
},
warning: {
borderRadius: 4,
padding: 16,
marginTop: 16,
marginBottom: 16,
},
warningTitle: {
marginBottom: 8,
},
warningAction: {
marginTop: 16,
},
warningActionOuterLayout: {
flexDirection: 'row',
justifyContent: 'flex-end',
},
})
export default ProfileLoadPage