import React from 'react'; import PropTypes from 'prop-types'; import { Text, ScrollView, StyleSheet } from 'react-native'; import { connect } from 'react-redux'; import SafeAreaView from 'react-native-safe-area-view'; import Navigation from '../lib/Navigation'; import { loginRequest as loginRequestAction } from '../actions/login'; import TextInput from '../containers/TextInput'; import Button from '../containers/Button'; import KeyboardView from '../presentation/KeyboardView'; import sharedStyles from './Styles'; import scrollPersistTaps from '../utils/scrollPersistTaps'; import LoggedView from './View'; import I18n from '../i18n'; import { DARK_HEADER } from '../constants/headerOptions'; import RocketChat from '../lib/rocketchat'; const styles = StyleSheet.create({ loginTitle: { marginVertical: 0, marginTop: 15 } }); @connect(state => ({ server: state.server.server, token: state.login.user && state.login.user.token }), dispatch => ({ loginRequest: params => dispatch(loginRequestAction(params)) })) /** @extends React.Component */ export default class SetUsernameView extends LoggedView { static options() { return { ...DARK_HEADER }; } static propTypes = { componentId: PropTypes.string, server: PropTypes.string, userId: PropTypes.string, loginRequest: PropTypes.func, token: PropTypes.string } constructor(props) { super('SetUsernameView', props); this.state = { username: '', saving: false }; const { componentId, server } = this.props; Navigation.mergeOptions(componentId, { topBar: { title: { text: server } } }); } async componentDidMount() { this.timeout = setTimeout(() => { this.usernameInput.focus(); }, 600); const suggestion = await RocketChat.getUsernameSuggestion(); if (suggestion.success) { this.setState({ username: suggestion.result }); } } shouldComponentUpdate(nextProps, nextState) { const { username, saving } = this.state; if (nextState.username !== username) { return true; } if (nextState.saving !== saving) { return true; } return false; } componentWillUnmount() { if (this.timeout) { clearTimeout(this.timeout); } } submit = async() => { const { username } = this.state; const { loginRequest, token } = this.props; if (!username.trim()) { return; } this.setState({ saving: true }); try { await RocketChat.setUsername(username); await loginRequest({ resume: token }); } catch (e) { console.log('SetUsernameView -> catch -> e', e); } this.setState({ saving: false }); } render() { const { username, saving } = this.state; return ( {I18n.t('Username')} {I18n.t('Set_username_subtitle')} this.usernameInput = e} placeholder={I18n.t('Username')} returnKeyType='send' iconLeft='mention' onChangeText={value => this.setState({ username: value })} value={username} onSubmitEditing={this.submit} testID='set-username-view-input' clearButtonMode='while-editing' containerStyle={sharedStyles.inputLastChild} />