Rocket.Chat.ReactNative/app/views/SetUsernameView.tsx

125 lines
3.8 KiB
TypeScript
Raw Normal View History

import { useNavigation } from '@react-navigation/native';
import { StackNavigationProp } from '@react-navigation/stack';
import React, { useEffect, useLayoutEffect, useState } from 'react';
import { ScrollView, StyleSheet, Text } from 'react-native';
2019-03-12 16:23:06 +00:00
import Orientation from 'react-native-orientation-locker';
import { useDispatch } from 'react-redux';
import { useForm } from 'react-hook-form';
import * as yup from 'yup';
import { yupResolver } from '@hookform/resolvers/yup';
import { loginRequest } from '../actions/login';
import Button from '../containers/Button';
import SafeAreaView from '../containers/SafeAreaView';
import StatusBar from '../containers/StatusBar';
import { ControlledFormTextInput } from '../containers/TextInput';
import I18n from '../i18n';
import KeyboardView from '../containers/KeyboardView';
import { getUserSelector } from '../selectors/login';
import { useTheme } from '../theme';
import { isTablet, showErrorAlert } from '../lib/methods/helpers';
import scrollPersistTaps from '../lib/methods/helpers/scrollPersistTaps';
import sharedStyles from './Styles';
import { Services } from '../lib/services';
import { useAppSelector } from '../lib/hooks';
import { SetUsernameStackParamList } from '../stacks/types';
const styles = StyleSheet.create({
loginTitle: {
marginVertical: 0,
marginTop: 15
}
});
interface ISubmit {
username: string;
}
const schema = yup.object().shape({
username: yup.string().required()
});
const SetUsernameView = () => {
const {
control,
handleSubmit,
formState: { isValid },
setValue
} = useForm<ISubmit>({ mode: 'onChange', resolver: yupResolver(schema) });
const [loading, setLoading] = useState(false);
const { colors } = useTheme();
const dispatch = useDispatch();
const { server, token } = useAppSelector(state => ({ server: state.server.server, token: getUserSelector(state).token }));
const navigation = useNavigation<StackNavigationProp<SetUsernameStackParamList, 'SetUsernameView'>>();
useLayoutEffect(() => {
navigation.setOptions({ title: server });
if (!isTablet) {
Orientation.lockToPortrait();
}
}, [navigation, server]);
useEffect(() => {
const init = async () => {
const suggestion = await Services.getUsernameSuggestion();
if (suggestion.success) {
setValue('username', suggestion.result, { shouldValidate: true });
}
};
init();
}, []);
2018-12-05 20:52:08 +00:00
const submit = async ({ username }: ISubmit) => {
if (!isValid) {
2018-12-05 20:52:08 +00:00
return;
}
setLoading(true);
2018-12-05 20:52:08 +00:00
try {
await Services.saveUserProfile({ username });
dispatch(loginRequest({ resume: token }));
} catch (e: any) {
showErrorAlert(e.message, I18n.t('Oops'));
2018-12-05 20:52:08 +00:00
}
setLoading(false);
};
return (
<KeyboardView style={{ backgroundColor: colors.auxiliaryBackground }} contentContainerStyle={sharedStyles.container}>
<StatusBar />
<ScrollView {...scrollPersistTaps} contentContainerStyle={sharedStyles.containerScrollView}>
<SafeAreaView testID='set-username-view'>
<Text style={[sharedStyles.loginTitle, sharedStyles.textBold, styles.loginTitle, { color: colors.titleText }]}>
{I18n.t('Username')}
</Text>
<Text style={[sharedStyles.loginSubtitle, sharedStyles.textRegular, { color: colors.titleText }]}>
{I18n.t('Set_username_subtitle')}
</Text>
<ControlledFormTextInput
control={control}
name='username'
autoFocus
placeholder={I18n.t('Username')}
returnKeyType='send'
onSubmitEditing={handleSubmit(submit)}
testID='set-username-view-input'
clearButtonMode='while-editing'
containerStyle={sharedStyles.inputLastChild}
/>
<Button
title={I18n.t('Register')}
type='primary'
onPress={handleSubmit(submit)}
testID='set-username-view-submit'
disabled={!isValid}
loading={loading}
/>
</SafeAreaView>
</ScrollView>
</KeyboardView>
);
};
export default SetUsernameView;