104 lines
3.8 KiB
JavaScript
104 lines
3.8 KiB
JavaScript
import React, { useState, useEffect } from 'react';
|
|
import { Text, StyleSheet, View } from 'react-native';
|
|
import Icon from 'react-native-vector-icons/MaterialIcons';
|
|
import { Avatar, Button, Card, Title, Paragraph } from 'react-native-paper';
|
|
import API from './../API.js';
|
|
import { useNavigation } from '@react-navigation/native';
|
|
import AsyncStorage from '@react-native-async-storage/async-storage';
|
|
import FollowButton from './basics/FollowButton.js';
|
|
|
|
const DefaultPhoto = "https://social.emmint.com/uploads/e6f9be6d665dc43417701bf16a90122c.png";
|
|
|
|
const storeName = async (key, value) => {
|
|
try {
|
|
const jsonValue = JSON.stringify(value)
|
|
await AsyncStorage.setItem('Name_' + key, jsonValue)
|
|
} catch (e) {
|
|
}
|
|
}
|
|
|
|
const getName = async (key) => {
|
|
try {
|
|
const value = await AsyncStorage.getItem('Name_' + key)
|
|
if (value !== null) {
|
|
return JSON.parse(value);
|
|
}
|
|
} catch (e) {
|
|
return []
|
|
}
|
|
}
|
|
|
|
let ProfileCardHorizontal = ({ profileid, hideIcon, profileObj, skipFollow, skiptOnPress }) => {
|
|
let [profile, setProfile] = useState(profileObj || {});
|
|
const navigation = useNavigation();
|
|
|
|
useEffect(() => {
|
|
let subscribed = true;
|
|
const getData = async () => {
|
|
if (profile?._id) return 0;
|
|
let cacheProfile = await getName(profileid);
|
|
if (cacheProfile && cacheProfile.profile && subscribed) setProfile(cacheProfile);
|
|
let p = await API.getUserProfile(profileid).catch(() => { return {} });
|
|
if (subscribed) setProfile(p);
|
|
storeName(profileid, p)
|
|
};
|
|
getData();
|
|
return () => {
|
|
subscribed = false;
|
|
}
|
|
}, [profileid]);
|
|
|
|
let icon = profile._id ? (!profile.isGroup ? "person-outline" : "group") : '';
|
|
icon = icon === "person-outline" && profile.subscription && profile.subscription > (new Date() - 0) ? "assignment-ind" : icon;
|
|
icon = icon === "group" && profile.isCourse ? "subscriptions" : icon;
|
|
let photoUrl = profile.profile?.photo ? 'https://social.emmint.com/' + profile.profile.photo : DefaultPhoto;
|
|
|
|
const onPress = () => {
|
|
if(skiptOnPress) return 0;
|
|
return navigation.navigate('Profile', { profileid: profile._id })
|
|
}
|
|
|
|
return (
|
|
<Card style={styles.content} mode="elevated">
|
|
<Card.Content>
|
|
<View style={{ flexDirection: "row", alignItems: "center" }}>
|
|
<View onPress={onPress}>
|
|
<Avatar.Image size={75} source={{ uri: photoUrl }} />
|
|
</View>
|
|
<View style={{ paddingLeft: 10 }}>
|
|
<Title onPress={onPress} numberOfLines={1}>
|
|
<Text>
|
|
{profile.profile && profile.profile.firstName} {profile.profile && profile.profile.lastName}
|
|
</Text>
|
|
</Title>
|
|
<Paragraph lineBreakMode="clip" numberOfLines={3} style={{ width: 250 }}>{profile.profile?.description}</Paragraph>
|
|
</View>
|
|
|
|
</View>
|
|
{skipFollow ? <></> :
|
|
<View style={{
|
|
position: "absolute",
|
|
top: 0,
|
|
right: 0,
|
|
width: 50,
|
|
height: 50,
|
|
backgroundColor:"#ddd",
|
|
borderRadius: 25,
|
|
opacity: 0.7
|
|
}}>
|
|
<FollowButton profile={profile._id ? profile : { _id: profileid }} />
|
|
</View>
|
|
}
|
|
</Card.Content>
|
|
</Card>
|
|
);
|
|
}
|
|
|
|
export default React.memo(ProfileCardHorizontal);
|
|
|
|
const styles = StyleSheet.create({
|
|
content: {
|
|
margin: 4,
|
|
},
|
|
});
|