+
+
+ {this.renderAvatar()}
+
+
+
{
+ const el = this.inputEl.current;
+ if (el) {
+ el.click();
+ }
+ }}
+ />
+
+
+
+
+
{i18n('editProfileDisplayNameWarning')}
+
{this.state.errorMessage}
+
+
+
+
+
+ );
+ }
+
+ private onFileSelected() {
+ const file = this.inputEl.current.files[0];
+ const url = window.URL.createObjectURL(file);
+
+ this.setState({
+ avatar: url,
+ });
+ }
+
+ private renderAvatar() {
+ const avatarPath = this.state.avatar;
+ const color = this.props.avatarColor;
+
+ return (
+
+ );
+ }
+
+ private onNameEdited(e: any) {
+ e.persist();
+
+ const newName = e.target.value.replace(window.displayNameRegex, '');
+
+ this.setState(state => {
+ return {
+ ...state,
+ profileName: newName,
+ };
+ });
+ }
+
+ private onKeyUp(event: any) {
+ switch (event.key) {
+ case 'Enter':
+ this.onClickOK();
+ break;
+ case 'Esc':
+ case 'Escape':
+ this.closeDialog();
+ break;
+ default:
+ }
+ }
+
+ private showError(msg: string) {
+ if (this.state.errorDisplayed) {
+ return;
+ }
+
+ this.setState({
+ errorDisplayed: true,
+ errorMessage: msg,
+ });
+
+ setTimeout(() => {
+ this.setState({
+ errorDisplayed: false,
+ });
+ }, 3000);
+ }
+
+ private onClickOK() {
+ const newName = this.state.profileName.trim();
+
+ if (newName === '') {
+ this.showError(this.props.i18n('emptyProfileNameError'));
+
+ return;
+ }
+
+ const avatar =
+ this.inputEl &&
+ this.inputEl.current &&
+ this.inputEl.current.files &&
+ this.inputEl.current.files.length > 0
+ ? this.inputEl.current.files[0]
+ : null;
+
+ this.props.onOk(newName, avatar);
+ this.closeDialog();
+ }
+
+ private closeDialog() {
+ window.removeEventListener('keyup', this.onKeyUp);
+
+ this.props.onClose();
+ }
+}
diff --git a/ts/components/MainHeader.tsx b/ts/components/MainHeader.tsx
index 2f3d6d9b3..f44d6979f 100644
--- a/ts/components/MainHeader.tsx
+++ b/ts/components/MainHeader.tsx
@@ -334,8 +334,8 @@ export class MainHeader extends React.Component
{
onClick: onCopyPublicKey,
},
{
- id: 'editDisplayName',
- name: i18n('editDisplayName'),
+ id: 'editProfile',
+ name: i18n('editProfile'),
onClick: () => {
trigger('onEditProfile');
},