Browse Source

Fix whitespeces and translation

pull/5262/head
ArtemDzhereleiko 5 years ago
parent
commit
942cadfc73
  1. 6
      ui-ngx/src/app/modules/home/pages/profile/profile.component.html
  2. 4
      ui-ngx/src/app/modules/home/pages/profile/profile.component.scss
  3. 12
      ui-ngx/src/app/modules/home/pages/profile/profile.component.ts
  4. 2
      ui-ngx/src/assets/locale/locale.constant-ru_RU.json
  5. 2
      ui-ngx/src/assets/locale/locale.constant-uk_UA.json

6
ui-ngx/src/app/modules/home/pages/profile/profile.component.html

@ -86,12 +86,12 @@
</div>
<div fxLayout="row" fxLayoutAlign=" center" style="padding-bottom: 16px;">
<button mat-raised-button ngxClipboard
(cbOnSuccess)="onTokenCopied($event)"
[cbContent]="token">
(cbOnSuccess)="onTokenCopied()"
[cbContent]="jwtToken">
<mat-icon svgIcon="mdi:clipboard-arrow-left"></mat-icon>
<span>{{ 'profile.copy-jwt-token' | translate }}</span>
</button>
<span style="padding: 10px; opacity: 0.7;">{{getExpirationDate}}</span>
<span class="profile-btn-subtext">{{ expirationJwtData }}</span>
</div>
<div fxLayout="row" class="layout-wrap">
<span fxFlex></span>

4
ui-ngx/src/app/modules/home/pages/profile/profile.component.scss

@ -38,6 +38,10 @@
font-size: 16px;
font-weight: 400;
}
.profile-btn-subtext {
opacity: 0.7;
padding: 10px;
}
.tb-home-dashboard {
tb-dashboard-autocomplete {
@media #{$mat-gt-sm} {

12
ui-ngx/src/app/modules/home/pages/profile/profile.component.ts

@ -34,7 +34,7 @@ import { AuthService } from '@core/auth/auth.service';
import { ActivatedRoute } from '@angular/router';
import { isDefinedAndNotNull } from '@core/utils';
import { getCurrentAuthUser } from '@core/auth/auth.selectors';
import {ActionNotificationShow} from "@core/notification/notification.actions";
import { ActionNotificationShow } from '@core/notification/notification.actions';
import { DatePipe } from '@angular/common';
@Component({
@ -50,14 +50,14 @@ export class ProfileComponent extends PageComponent implements OnInit, HasConfir
languageList = env.supportedLangs;
private readonly authUser: AuthUser;
get token() {
get jwtToken(): string {
return `Bearer ${localStorage.getItem('jwt_token')}`;
}
get getExpirationDate() {
get expirationJwtData(): string {
const expirationData = this.datePipe.transform(localStorage.getItem('jwt_token_expiration'), 'yyyy-MM-dd HH:mm:ss');
return this.translate.instant('profile.valid-till', {expirationData});
};
return this.translate.instant('profile.valid-till', { expirationData });
}
constructor(protected store: Store<AppState>,
private route: ActivatedRoute,
@ -153,7 +153,7 @@ export class ProfileComponent extends PageComponent implements OnInit, HasConfir
return this.authUser.authority === Authority.SYS_ADMIN;
}
onTokenCopied($event) {
onTokenCopied() {
this.store.dispatch(new ActionNotificationShow({
message: this.translate.instant('profile.tokenCopiedMessage'),
type: 'success',

2
ui-ngx/src/assets/locale/locale.constant-ru_RU.json

@ -1264,7 +1264,7 @@
"change-password": "Изменить пароль",
"current-password": "Текущий пароль",
"copy-jwt-token": "Копировать JWT токен",
"valid-till": "Годен до {{expirationData}}",
"valid-till": "Действителен до {{expirationData}}",
"tokenCopiedMessage": "JWT токен скопирован в буфер обмена"
},
"relation": {

2
ui-ngx/src/assets/locale/locale.constant-uk_UA.json

@ -1679,7 +1679,7 @@
"change-password": "Змінити пароль",
"current-password": "Поточний пароль",
"copy-jwt-token": "Копіювати JWT токен",
"valid-till": "Придатний до {{expirationData}}",
"valid-till": "Дійсний до {{expirationData}}",
"tokenCopiedMessage": "JWT токен скопійовано в буфер обміну"
},
"relation": {

Loading…
Cancel
Save