import React from 'react'; import { StackNavigationOptions, StackNavigationProp } from '@react-navigation/stack'; import { Dispatch } from 'redux'; import { ScrollView, StyleSheet, Text } from 'react-native'; import { connect } from 'react-redux'; import Orientation from 'react-native-orientation-locker'; import { RouteProp } from '@react-navigation/native'; import { loginRequest as loginRequestAction } from '../actions/login'; import TextInput from '../containers/TextInput'; import Button from '../containers/Button'; import KeyboardView from '../presentation/KeyboardView'; import scrollPersistTaps from '../utils/scrollPersistTaps'; import I18n from '../i18n'; import RocketChat from '../lib/rocketchat'; import StatusBar from '../containers/StatusBar'; import { withTheme } from '../theme'; import { themes } from '../constants/colors'; import { isTablet } from '../utils/deviceInfo'; import { getUserSelector } from '../selectors/login'; import { showErrorAlert } from '../utils/info'; import SafeAreaView from '../containers/SafeAreaView'; import sharedStyles from './Styles'; const styles = StyleSheet.create({ loginTitle: { marginVertical: 0, marginTop: 15 } }); interface ISetUsernameViewState { username: string; saving: boolean; } interface ISetUsernameViewProps { navigation: StackNavigationProp; route: RouteProp<{ SetUsernameView: { title: string } }, 'SetUsernameView'>; server: string; userId: string; loginRequest: ({ resume }: { resume: string }) => void; token: string; theme: string; } class SetUsernameView extends React.Component { static navigationOptions = ({ route }: Pick): StackNavigationOptions => ({ title: route.params?.title }); constructor(props: ISetUsernameViewProps) { super(props); this.state = { username: '', saving: false }; const { server } = this.props; props.navigation.setOptions({ title: server }); if (!isTablet) { Orientation.lockToPortrait(); } } async componentDidMount() { const suggestion = await RocketChat.getUsernameSuggestion(); if (suggestion.success) { this.setState({ username: suggestion.result }); } } shouldComponentUpdate(nextProps: ISetUsernameViewProps, nextState: ISetUsernameViewState) { const { username, saving } = this.state; const { theme } = this.props; if (nextProps.theme !== theme) { return true; } if (nextState.username !== username) { return true; } if (nextState.saving !== saving) { return true; } return false; } submit = async () => { const { username } = this.state; const { loginRequest, token } = this.props; if (!username.trim()) { return; } this.setState({ saving: true }); try { await RocketChat.saveUserProfile({ username }); await loginRequest({ resume: token }); } catch (e: any) { showErrorAlert(e.message, I18n.t('Oops')); } this.setState({ saving: false }); }; render() { const { username, saving } = this.state; const { theme } = this.props; return ( {I18n.t('Username')} {I18n.t('Set_username_subtitle')} this.setState({ username: value })} value={username} onSubmitEditing={this.submit} testID='set-username-view-input' clearButtonMode='while-editing' containerStyle={sharedStyles.inputLastChild} theme={theme} />