username field consistency

pull/3589/head
Chocobozzz 2021-01-18 11:45:00 +01:00
parent a8a63b1ffe
commit 9dfaa38c9a
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
3 changed files with 11 additions and 15 deletions

View File

@ -3,13 +3,13 @@
<form role="form" (ngSubmit)="updateMyProfile()" [formGroup]="form">
<div class="form-group">
<label i18n for="user-name">User name</label>
<label i18n for="username">Username</label>
<input
type="text" id="user-name" class="form-control"
formControlName="user-name"
type="text" id="username" class="form-control"
formControlName="username" readonly
>
<div class="text-muted" i18n>
People can find you @{{ user.username }}@{{ instanceHost }}
People can find you using @{{ user.username }}@{{ instanceHost }}
</div>
</div>

View File

@ -10,20 +10,16 @@ label {
margin-bottom: 15px;
}
input#username + .text-muted {
margin-top: 5px;
}
input[type=text] {
@include peertube-input-text(340px);
display: block;
}
input#user-name {
border: none;
& + div {
padding-left: 15px;
}
}
input[type=submit] {
@include peertube-button;
@include orange-button;

View File

@ -25,15 +25,15 @@ export class MyAccountProfileComponent extends FormReactive implements OnInit {
ngOnInit () {
this.buildForm({
'user-name': null,
username: null,
'display-name': USER_DISPLAY_NAME_REQUIRED_VALIDATOR,
description: USER_DESCRIPTION_VALIDATOR
})
this.form.controls['user-name'].disable()
this.form.controls['username'].disable()
this.userInformationLoaded.subscribe(() => {
this.form.patchValue({
'user-name': this.user.username,
username: this.user.username,
'display-name': this.user.account.displayName,
description: this.user.account.description
})