blob: 903d0d18fbaa95f30d5f244e289273b7e1792dac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
import React, {useContext} from 'react';
import {Image, StyleSheet} from 'react-native';
import {useSelector} from 'react-redux';
import {RootState} from '../../store/rootreducer';
import {ScreenType} from '../../types';
const PROFILE_DIM = 100;
interface AvatarProps {
style: object;
userXId: string;
screenType: ScreenType;
}
const Avatar: React.FC<AvatarProps> = ({style, screenType, userXId}) => {
const {avatar} = userXId
? useSelector((state: RootState) => state.userX[screenType][userXId])
: useSelector((state: RootState) => state.user);
return (
<Image
style={[styles.image, style]}
source={
avatar
? {uri: avatar}
: require('../../assets/images/avatar-placeholder.png')
}
/>
);
};
const styles = StyleSheet.create({
image: {
height: PROFILE_DIM,
width: PROFILE_DIM,
borderRadius: PROFILE_DIM / 2,
},
});
export default Avatar;
|