2018-08-29 17:24:25 +00:00
|
|
|
// @flow
|
|
|
|
|
|
|
|
import { FieldTextStateless } from '@atlaskit/field-text';
|
|
|
|
import React, { Component } from 'react';
|
2019-03-19 15:42:25 +00:00
|
|
|
import type { Dispatch } from 'redux';
|
2018-08-29 17:24:25 +00:00
|
|
|
|
2019-01-13 19:34:38 +00:00
|
|
|
import { translate } from '../../../base/i18n';
|
2019-03-21 16:38:29 +00:00
|
|
|
import { connect } from '../../../base/redux';
|
2019-01-13 19:34:38 +00:00
|
|
|
import { updateSettings } from '../../../base/settings';
|
2018-08-29 17:24:25 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The type of the React {@code Component} props of {@DisplayNameForm}.
|
|
|
|
*/
|
|
|
|
type Props = {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Invoked to set the local participant display name.
|
|
|
|
*/
|
2019-03-19 15:42:25 +00:00
|
|
|
dispatch: Dispatch<any>,
|
2018-08-29 17:24:25 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Invoked to obtain translated strings.
|
|
|
|
*/
|
|
|
|
t: Function
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The type of the React {@code Component} state of {@DisplayNameForm}.
|
|
|
|
*/
|
|
|
|
type State = {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* User provided display name when the input text is provided in the view.
|
|
|
|
*/
|
|
|
|
displayName: string
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* React Component for requesting the local participant to set a display name.
|
|
|
|
*
|
|
|
|
* @extends Component
|
|
|
|
*/
|
|
|
|
class DisplayNameForm extends Component<Props, State> {
|
|
|
|
state = {
|
|
|
|
displayName: ''
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Initializes a new {@code DisplayNameForm} instance.
|
|
|
|
*
|
|
|
|
* @param {Object} props - The read-only properties with which the new
|
|
|
|
* instance is to be initialized.
|
|
|
|
*/
|
|
|
|
constructor(props: Props) {
|
|
|
|
super(props);
|
|
|
|
|
|
|
|
// Bind event handlers so they are only bound once for every instance.
|
|
|
|
this._onDisplayNameChange = this._onDisplayNameChange.bind(this);
|
|
|
|
this._onSubmit = this._onSubmit.bind(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Implements React's {@link Component#render()}.
|
|
|
|
*
|
|
|
|
* @inheritdoc
|
|
|
|
* @returns {ReactElement}
|
|
|
|
*/
|
|
|
|
render() {
|
|
|
|
const { t } = this.props;
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div id = 'nickname'>
|
|
|
|
<span>{ this.props.t('chat.nickname.title') }</span>
|
|
|
|
<form onSubmit = { this._onSubmit }>
|
|
|
|
<FieldTextStateless
|
|
|
|
autoFocus = { true }
|
|
|
|
id = 'nickinput'
|
|
|
|
onChange = { this._onDisplayNameChange }
|
|
|
|
placeholder = { t('chat.nickname.popover') }
|
|
|
|
type = 'text'
|
|
|
|
value = { this.state.displayName } />
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
_onDisplayNameChange: (Object) => void;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Dispatches an action update the entered display name.
|
|
|
|
*
|
|
|
|
* @param {event} event - Keyboard event.
|
|
|
|
* @private
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
_onDisplayNameChange(event: Object) {
|
|
|
|
this.setState({ displayName: event.target.value });
|
|
|
|
}
|
|
|
|
|
|
|
|
_onSubmit: (Object) => void;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Dispatches an action to hit enter to change your display name.
|
|
|
|
*
|
|
|
|
* @param {event} event - Keyboard event
|
|
|
|
* that will check if user has pushed the enter key.
|
|
|
|
* @private
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
_onSubmit(event: Object) {
|
|
|
|
event.preventDefault();
|
|
|
|
|
2019-01-13 19:33:28 +00:00
|
|
|
// Store display name in settings
|
|
|
|
this.props.dispatch(updateSettings({
|
|
|
|
displayName: this.state.displayName
|
|
|
|
}));
|
2018-08-29 17:24:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-13 19:33:28 +00:00
|
|
|
export default translate(connect()(DisplayNameForm));
|