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'; 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({ 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>(); 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(); }, []); const submit = async ({ username }: ISubmit) => { if (!isValid) { return; } setLoading(true); try { await Services.saveUserProfile({ username }); dispatch(loginRequest({ resume: token })); } catch (e: any) { showErrorAlert(e.message, I18n.t('Oops')); } setLoading(false); }; return ( {I18n.t('Username')} {I18n.t('Set_username_subtitle')}