123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281 |
- import React, { FC, ReactNode, useState } from 'react';
- import { ScrollView, Text, TouchableOpacity, View } from 'react-native';
- import { Image } from 'expo-image';
- import { createMaterialTopTabNavigator } from '@react-navigation/material-top-tabs';
- import { CommonActions, NavigationProp, useNavigation } from '@react-navigation/native';
- import {
- type Score,
- type Series,
- type SocialData,
- usePostGetProfileInfoPublicQuery,
- usePostGetProfileInfoQuery
- } from '@api/user';
- import { BigText, Button, PageWrapper, Loading, AvatarWithInitials } from '../../../components';
- import { Colors } from '../../../theme';
- import { styles } from './styles';
- import { ButtonVariants } from '../../../types/components';
- import { API_HOST } from '../../../constants';
- import { NAVIGATION_PAGES } from '../../../types';
- import { navigationOpts } from './navigation-opts';
- import { storage, StoreType } from '../../../storage';
- import { getFontSize, getYears } from '../../../utils';
- import IconFacebook from '../../../../assets/icons/facebook.svg';
- import IconInstagram from '../../../../assets/icons/instagram.svg';
- import IconTwitter from '../../../../assets/icons/x(twitter).svg';
- import IconYouTube from '../../../../assets/icons/youtube.svg';
- import IconGlobe from '../../../../assets/icons/bottom-navigation/globe.svg';
- import IconLink from '../../../../assets/icons/link.svg';
- import GearIcon from '../../../../assets/icons/gear.svg';
- const Tab = createMaterialTopTabNavigator();
- type Props = {
- navigation: NavigationProp<any>;
- route: any;
- };
- const ProfileScreen: FC<Props> = ({ navigation, route }) => {
- const isPublicView = route.name === NAVIGATION_PAGES.PUBLIC_PROFILE_VIEW;
- const token = storage.get('token', StoreType.STRING) as string;
- if (!token) return <UnauthenticatedProfileScreen />;
- const { data, isFetching } = isPublicView
- ? usePostGetProfileInfoPublicQuery(route.params?.userId, true)
- : usePostGetProfileInfoQuery(token, true);
- if (!data || isFetching) return <Loading />;
- return (
- <PageWrapper>
- <View style={styles.pageWrapper}>
- <View>
- {data.avatar ? (
- <Image
- style={{ borderRadius: 64 / 2, width: 64, height: 64 }}
- source={{ uri: API_HOST + data.avatar }}
- />
- ) : (
- <AvatarWithInitials
- text={`${data.first_name[0] ?? ''}${data.last_name[0] ?? ''}`}
- flag={API_HOST + data.homebase_flag}
- size={64}
- />
- )}
- </View>
- <View style={{ gap: 5, width: '75%' }}>
- <Text style={[styles.headerText, { fontSize: getFontSize(18), flex: 0 }]}>
- {data.first_name} {data.last_name}
- </Text>
- <View style={{ display: 'flex', justifyContent: 'space-between', flexDirection: 'row' }}>
- <View
- style={{
- display: 'flex',
- flexDirection: 'row',
- gap: 10,
- alignItems: 'center'
- }}
- >
- <Text
- style={{ color: Colors.DARK_BLUE, fontWeight: '600', fontSize: getFontSize(12) }}
- >
- Age: {getYears(data.date_of_birth)}
- </Text>
- <Image source={{ uri: API_HOST + data.homebase_flag }} style={styles.countryFlag} />
- {data.homebase2_flag && data.homebase2_flag !== data.homebase_flag ? (
- <Image
- source={{ uri: API_HOST + data.homebase2_flag }}
- style={[styles.countryFlag, { marginLeft: -15 }]}
- />
- ) : null}
- </View>
- {!isPublicView ? (
- <View>
- <TouchableOpacity onPress={() => navigation.navigate(NAVIGATION_PAGES.SETTINGS)}>
- <GearIcon fill={Colors.DARK_BLUE} />
- </TouchableOpacity>
- </View>
- ) : null}
- </View>
- </View>
- </View>
- <Tab.Navigator
- screenOptions={{
- ...navigationOpts,
- tabBarLabel: ({ children, color, focused }) => (
- <Text style={[styles.headerText, { color }]}>{children}</Text>
- )
- }}
- >
- <Tab.Screen name="Personal Info">
- {() => (
- <PersonalInfo
- data={{
- bio: data.bio,
- date_of_birth: data.date_of_birth,
- scores: data.scores,
- links: data.links,
- homebase: data.homebase_name,
- homebase2: data.homebase2_name,
- series: data.series
- }}
- />
- )}
- </Tab.Screen>
- <Tab.Screen name="Ranking">{() => <View></View>}</Tab.Screen>
- <Tab.Screen name="Photos">{() => <View></View>}</Tab.Screen>
- </Tab.Navigator>
- </PageWrapper>
- );
- };
- type PersonalInfoProps = {
- data: {
- bio: string;
- date_of_birth: string;
- scores: Score[];
- links: {
- f?: SocialData;
- t?: SocialData;
- i?: SocialData;
- y?: SocialData;
- www?: SocialData;
- other?: SocialData;
- };
- homebase: string;
- homebase2: string;
- series: Series[];
- };
- };
- const PersonalInfo: FC<PersonalInfoProps> = ({ data }) => {
- const [showMoreSeries, setShowMoreSeries] = useState(false);
- return (
- <ScrollView
- showsVerticalScrollIndicator={false}
- contentContainerStyle={{ gap: 20 }}
- style={{ marginTop: 20 }}
- >
- <InfoItem inline={true} title={'RANKING'}>
- {data.scores?.map((data, index) => {
- if (!data.score) return null;
- return (
- <View
- key={index}
- style={{ display: 'flex', flexDirection: 'column', gap: 5, alignItems: 'center' }}
- >
- <Text style={[styles.headerText, { flex: 0 }]}>{data.score}</Text>
- <Text style={[styles.titleText, { flex: 0 }]}>{data.name}</Text>
- </View>
- );
- })}
- </InfoItem>
- <InfoItem showMore={showMoreSeries} inline={true} title={'SERIES BADGES'}>
- {data.series?.slice(0, showMoreSeries ? data.series.length : 8).map((data, index) => (
- <View
- key={index}
- style={{ display: 'flex', flexDirection: 'column', gap: 5, alignItems: 'center' }}
- >
- <Image source={{ uri: API_HOST + data.icon_png }} style={{ width: 28, height: 28 }} />
- <Text style={[styles.headerText, { flex: 0 }]}>{data.score}</Text>
- </View>
- ))}
- </InfoItem>
- {data.series?.length > 8 ? (
- <Button
- children={showMoreSeries ? 'Hide series' : 'Show more'}
- variant={ButtonVariants.TEXT}
- onPress={() => setShowMoreSeries(!showMoreSeries)}
- />
- ) : null}
- <View style={{ display: 'flex', flexDirection: 'row' }}>
- <Text style={styles.headerText}>DATE OF BIRTH</Text>
- <Text style={styles.titleText}>{new Date(data.date_of_birth).toDateString()}</Text>
- </View>
- <View style={{ display: 'flex', flexDirection: 'row' }}>
- <Text style={styles.headerText}>REGION OF ORIGIN</Text>
- <Text style={styles.titleText}>{data.homebase}</Text>
- </View>
- {data.homebase2 ? (
- <View style={{ display: 'flex', flexDirection: 'row' }}>
- <Text style={styles.headerText}>SECOND REGION</Text>
- <Text style={styles.titleText}>{data.homebase2}</Text>
- </View>
- ) : null}
- <InfoItem title={'BIO'}>
- <Text style={[styles.titleText, { flex: 0 }]}>{data.bio}</Text>
- </InfoItem>
- <InfoItem title={'SOCIAL LINKS'}>
- <View style={{ display: 'flex', flexDirection: 'row', gap: 15, alignItems: 'center' }}>
- {data.links?.f?.link ? <IconFacebook fill={Colors.DARK_BLUE} /> : null}
- {data.links?.i?.link ? <IconInstagram fill={Colors.DARK_BLUE} /> : null}
- {data.links?.t?.link ? <IconTwitter fill={Colors.DARK_BLUE} /> : null}
- {data.links?.y?.link ? <IconYouTube fill={Colors.DARK_BLUE} /> : null}
- {data.links?.www?.link ? <IconGlobe fill={Colors.DARK_BLUE} /> : null}
- {data.links?.other?.link ? <IconLink fill={Colors.DARK_BLUE} /> : null}
- </View>
- </InfoItem>
- </ScrollView>
- );
- };
- const InfoItem: FC<{
- title: string;
- inline?: boolean;
- children: ReactNode;
- showMore?: boolean;
- }> = ({ title, inline, children, showMore }) => (
- <View>
- <Text style={[styles.headerText, { flex: 0 }]}>{title}</Text>
- <View
- style={[
- {
- display: 'flex',
- flexDirection: inline ? 'row' : 'column',
- justifyContent: 'space-evenly',
- marginTop: 10
- },
- showMore ? { flexWrap: 'wrap', gap: 8 } : {}
- ]}
- >
- {children}
- </View>
- </View>
- );
- const UnauthenticatedProfileScreen = () => {
- const navigation = useNavigation();
- return (
- <PageWrapper>
- <View style={{ marginTop: 15, display: 'flex', gap: 10 }}>
- <BigText children={'You are not logged in. Please login or register to access profile.'} />
- <Button
- onPress={() =>
- navigation.dispatch(
- CommonActions.reset({
- index: 1,
- routes: [{ name: NAVIGATION_PAGES.WELCOME }]
- })
- )
- }
- variant={ButtonVariants.FILL}
- >
- Go to login/register
- </Button>
- </View>
- </PageWrapper>
- );
- };
- export default ProfileScreen;
|