2022-12-07 23:17:08 +00:00
|
|
|
import React, { useEffect, useLayoutEffect, useRef, useState } from 'react';
|
2022-12-07 03:11:25 +00:00
|
|
|
import { ScrollView, View } from 'react-native';
|
2022-12-07 05:01:00 +00:00
|
|
|
import { RouteProp, useNavigation, useRoute } from '@react-navigation/native';
|
|
|
|
import { StackNavigationProp } from '@react-navigation/stack';
|
2022-12-07 03:11:25 +00:00
|
|
|
|
|
|
|
import KeyboardView from '../../containers/KeyboardView';
|
|
|
|
import sharedStyles from '../Styles';
|
|
|
|
import scrollPersistTaps from '../../lib/methods/helpers/scrollPersistTaps';
|
2022-12-07 23:17:08 +00:00
|
|
|
import { showConfirmationAlert, handleError } from '../../lib/methods/helpers/info';
|
2022-12-07 03:11:25 +00:00
|
|
|
import StatusBar from '../../containers/StatusBar';
|
|
|
|
import { useTheme } from '../../theme';
|
|
|
|
import SafeAreaView from '../../containers/SafeAreaView';
|
|
|
|
import * as List from '../../containers/List';
|
|
|
|
import styles from './styles';
|
|
|
|
import { useAppSelector } from '../../lib/hooks';
|
|
|
|
import { getUserSelector } from '../../selectors/login';
|
|
|
|
import Avatar from '../../containers/Avatar';
|
|
|
|
import AvatarUrl from './AvatarUrl';
|
|
|
|
import Button from '../../containers/Button';
|
|
|
|
import I18n from '../../i18n';
|
2022-12-07 05:01:00 +00:00
|
|
|
import { ChatsStackParamList } from '../../stacks/types';
|
|
|
|
import { IAvatar } from '../../definitions';
|
|
|
|
import { Services } from '../../lib/services';
|
|
|
|
import AvatarSuggestion from './AvatarSuggestion';
|
2022-12-07 23:17:08 +00:00
|
|
|
import log from '../../lib/methods/helpers/log';
|
2022-12-07 03:11:25 +00:00
|
|
|
|
|
|
|
const ChangeAvatarView = () => {
|
2022-12-07 23:17:08 +00:00
|
|
|
const [avatar, setAvatarState] = useState<IAvatar>();
|
2022-12-07 05:01:00 +00:00
|
|
|
const [avatarSuggestions, setAvatarSuggestions] = useState<IAvatar[]>([]);
|
2022-12-07 23:17:08 +00:00
|
|
|
const [textAvatar, setTextAvatar] = useState('');
|
|
|
|
const [saving, setSaving] = useState(false);
|
2022-12-07 03:11:25 +00:00
|
|
|
const { colors } = useTheme();
|
2022-12-07 23:17:08 +00:00
|
|
|
const { user } = useAppSelector(state => ({
|
|
|
|
user: getUserSelector(state),
|
|
|
|
isMasterDetail: state.app.isMasterDetail
|
|
|
|
}));
|
|
|
|
|
|
|
|
const avatarUrl = useRef<string | undefined>('');
|
2022-12-07 03:11:25 +00:00
|
|
|
|
2022-12-07 05:01:00 +00:00
|
|
|
const navigation = useNavigation<StackNavigationProp<ChatsStackParamList, 'ChangeAvatarView'>>();
|
|
|
|
const { fromUser, titleHeader } = useRoute<RouteProp<ChatsStackParamList, 'ChangeAvatarView'>>().params;
|
|
|
|
|
|
|
|
useLayoutEffect(() => {
|
2022-12-07 23:17:08 +00:00
|
|
|
navigation.setOptions({
|
|
|
|
title: titleHeader || I18n.t('Avatar')
|
|
|
|
});
|
2022-12-07 05:01:00 +00:00
|
|
|
}, [titleHeader, navigation]);
|
|
|
|
|
2022-12-07 23:17:08 +00:00
|
|
|
useEffect(() => {
|
|
|
|
navigation.addListener('beforeRemove', e => {
|
|
|
|
if (!avatarUrl.current) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
|
|
|
showConfirmationAlert({
|
|
|
|
title: I18n.t('Discard_changes'),
|
|
|
|
message: I18n.t('Discard_changes_description'),
|
|
|
|
confirmationText: I18n.t('Discard'),
|
|
|
|
onPress: () => {
|
|
|
|
navigation.dispatch(e.data.action);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}, [navigation]);
|
|
|
|
|
2022-12-07 05:01:00 +00:00
|
|
|
const getAvatarSuggestion = async () => {
|
|
|
|
const result = await Services.getAvatarSuggestion();
|
|
|
|
const suggestions = Object.keys(result).map(service => {
|
|
|
|
const { url, blob, contentType } = result[service];
|
|
|
|
return {
|
|
|
|
url,
|
|
|
|
data: blob,
|
|
|
|
service,
|
|
|
|
contentType
|
|
|
|
};
|
|
|
|
});
|
|
|
|
setAvatarSuggestions(suggestions);
|
|
|
|
};
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
if (fromUser) {
|
|
|
|
getAvatarSuggestion();
|
|
|
|
}
|
|
|
|
}, [fromUser]);
|
|
|
|
|
2022-12-07 23:17:08 +00:00
|
|
|
const setAvatar = (value?: IAvatar) => {
|
|
|
|
avatarUrl.current = value?.url;
|
|
|
|
setAvatarState(value);
|
|
|
|
};
|
|
|
|
|
|
|
|
const submit = async () => {
|
|
|
|
if (avatar?.url) {
|
|
|
|
try {
|
|
|
|
setSaving(true);
|
|
|
|
await Services.setAvatarFromService(avatar);
|
|
|
|
setSaving(false);
|
|
|
|
avatarUrl.current = '';
|
|
|
|
return navigation.goBack();
|
|
|
|
} catch (e) {
|
|
|
|
log(e);
|
|
|
|
setSaving(false);
|
|
|
|
return handleError(e, 'setAvatarFromService', 'changing_avatar');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (textAvatar) {
|
|
|
|
try {
|
|
|
|
setSaving(true);
|
|
|
|
await Services.resetAvatar(user.id);
|
|
|
|
setSaving(false);
|
|
|
|
avatarUrl.current = '';
|
|
|
|
return navigation.goBack();
|
|
|
|
} catch (e) {
|
|
|
|
setSaving(false);
|
|
|
|
handleError(e, 'resetAvatar', 'changing_avatar');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
const resetAvatar = () => {
|
|
|
|
setAvatar(undefined);
|
|
|
|
setTextAvatar(`@${user.username}`);
|
|
|
|
avatarUrl.current = `@${user.username}`;
|
|
|
|
};
|
2022-12-07 03:11:25 +00:00
|
|
|
|
|
|
|
return (
|
|
|
|
<KeyboardView
|
|
|
|
style={{ backgroundColor: colors.auxiliaryBackground }}
|
|
|
|
contentContainerStyle={sharedStyles.container}
|
|
|
|
keyboardVerticalOffset={128}
|
|
|
|
>
|
|
|
|
<StatusBar />
|
|
|
|
<SafeAreaView testID='change-avatar-view'>
|
|
|
|
<ScrollView
|
|
|
|
contentContainerStyle={sharedStyles.containerScrollView}
|
|
|
|
testID='change-avatar-view-list'
|
|
|
|
{...scrollPersistTaps}
|
|
|
|
>
|
|
|
|
<View style={styles.avatarContainer} testID='change-avatar-view-avatar'>
|
2022-12-07 23:17:08 +00:00
|
|
|
<Avatar text={textAvatar || user.username} avatar={avatar?.url} isStatic={avatar?.url} size={100} />
|
2022-12-07 03:11:25 +00:00
|
|
|
</View>
|
2022-12-07 23:17:08 +00:00
|
|
|
<AvatarUrl submit={value => setAvatar({ url: value, data: value, service: 'url' })} />
|
2022-12-07 03:11:25 +00:00
|
|
|
<List.Separator style={styles.separator} />
|
2022-12-07 23:17:08 +00:00
|
|
|
{fromUser && avatarSuggestions.length ? (
|
|
|
|
<AvatarSuggestion resetAvatar={resetAvatar} user={user} onPress={setAvatar} avatarSuggestions={avatarSuggestions} />
|
|
|
|
) : null}
|
2022-12-07 03:11:25 +00:00
|
|
|
|
|
|
|
<Button
|
|
|
|
title={I18n.t('Upload_image')}
|
|
|
|
type='secondary'
|
2022-12-07 23:17:08 +00:00
|
|
|
disabled={saving}
|
2022-12-07 03:11:25 +00:00
|
|
|
backgroundColor={colors.chatComponentBackground}
|
|
|
|
onPress={() => {}}
|
|
|
|
testID='change-avatar-view-logout-other-locations'
|
|
|
|
/>
|
2022-12-07 23:17:08 +00:00
|
|
|
{!fromUser ? (
|
|
|
|
<Button
|
|
|
|
title={I18n.t('Delete_image')}
|
|
|
|
type='primary'
|
|
|
|
disabled={saving}
|
|
|
|
backgroundColor={colors.dangerColor}
|
|
|
|
onPress={() => {}}
|
|
|
|
testID='change-avatar-view-delete-my-account'
|
|
|
|
/>
|
|
|
|
) : null}
|
2022-12-07 03:11:25 +00:00
|
|
|
<Button
|
2022-12-07 23:17:08 +00:00
|
|
|
title={I18n.t('Save')}
|
|
|
|
disabled={!avatarUrl.current || saving}
|
2022-12-07 03:11:25 +00:00
|
|
|
type='primary'
|
2022-12-07 23:17:08 +00:00
|
|
|
loading={saving}
|
|
|
|
onPress={submit}
|
|
|
|
testID='change-avatar-view-submit'
|
2022-12-07 03:11:25 +00:00
|
|
|
/>
|
|
|
|
</ScrollView>
|
|
|
|
</SafeAreaView>
|
|
|
|
</KeyboardView>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default ChangeAvatarView;
|