aboutsummaryrefslogtreecommitdiff
path: root/src/components/profile/Avatar.tsx
blob: aca3bf4df87094cdf7abb43e2ce7b6da2c9a9ad5 (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
import React from 'react';
import {Image, StyleSheet} from 'react-native';
import {AuthContext, ProfileContext} from '../../routes/';

const PROFILE_DIM = 100;
interface AvatarProps {
  style: object;
  isProfileView: boolean;
}
const Avatar: React.FC<AvatarProps> = ({style, isProfileView}) => {
  const {avatar} = isProfileView
    ? React.useContext(ProfileContext)
    : React.useContext(AuthContext);
  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;