import React from 'react' import {StyleSheet, View} from 'react-native' import Svg, {Circle, Path} from 'react-native-svg' import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome' import {IconProp} from '@fortawesome/fontawesome-svg-core' import {HighPriorityImage} from 'view/com/util/images/Image' import { openCamera, openCropper, openPicker, PickedMedia, } from '../../../lib/media/picker' import { usePhotoLibraryPermission, useCameraPermission, } from 'lib/hooks/usePermissions' import {useStores} from 'state/index' import {colors} from 'lib/styles' import {DropdownButton} from './forms/DropdownButton' import {usePalette} from 'lib/hooks/usePalette' import {isWeb} from 'platform/detection' function DefaultAvatar({size}: {size: number}) { return ( ) } export function UserAvatar({ size, avatar, hasWarning, onSelectNewAvatar, }: { size: number avatar?: string | null hasWarning?: boolean onSelectNewAvatar?: (img: PickedMedia | null) => void }) { const store = useStores() const pal = usePalette('default') const {requestCameraAccessIfNeeded} = useCameraPermission() const {requestPhotoAccessIfNeeded} = usePhotoLibraryPermission() const dropdownItems = [ !isWeb && { testID: 'changeAvatarCameraBtn', label: 'Camera', icon: 'camera' as IconProp, onPress: async () => { if (!(await requestCameraAccessIfNeeded())) { return } onSelectNewAvatar?.( await openCamera(store, { mediaType: 'photo', width: 1000, height: 1000, cropperCircleOverlay: true, }), ) }, }, { testID: 'changeAvatarLibraryBtn', label: 'Library', icon: 'image' as IconProp, onPress: async () => { if (!(await requestPhotoAccessIfNeeded())) { return } const items = await openPicker(store, { mediaType: 'photo', }) onSelectNewAvatar?.( await openCropper(store, { mediaType: 'photo', path: items[0].path, width: 1000, height: 1000, cropperCircleOverlay: true, }), ) }, }, { testID: 'changeAvatarRemoveBtn', label: 'Remove', icon: ['far', 'trash-can'] as IconProp, onPress: async () => { onSelectNewAvatar?.(null) }, }, ] const warning = React.useMemo(() => { if (!hasWarning) { return <> } return ( ) }, [hasWarning, size, pal]) // onSelectNewAvatar is only passed as prop on the EditProfile component return onSelectNewAvatar ? ( {avatar ? ( ) : ( )} ) : avatar ? ( {warning} ) : ( {warning} ) } const styles = StyleSheet.create({ editButtonContainer: { position: 'absolute', width: 24, height: 24, bottom: 0, right: 0, borderRadius: 12, alignItems: 'center', justifyContent: 'center', backgroundColor: colors.gray5, }, avatarImage: { width: 80, height: 80, borderRadius: 40, }, warningIconContainer: { position: 'absolute', right: 0, bottom: 0, borderRadius: 100, }, warningIcon: { color: colors.red3, }, })