* Upgrade Nx and Angular * Update changelog * Feature/eliminate angular material css vars (#1648) * Eliminate angular-material-css-vars * Update changelog
54 lines
1.7 KiB
TypeScript
54 lines
1.7 KiB
TypeScript
import { ChangeDetectionStrategy, Component, Inject } from '@angular/core';
|
|
import { MatLegacyCheckboxChange as MatCheckboxChange } from '@angular/material/legacy-checkbox';
|
|
import {
|
|
MAT_LEGACY_DIALOG_DATA as MAT_DIALOG_DATA,
|
|
MatLegacyDialogRef as MatDialogRef
|
|
} from '@angular/material/legacy-dialog';
|
|
import { Router } from '@angular/router';
|
|
import { InternetIdentityService } from '@ghostfolio/client/services/internet-identity.service';
|
|
import {
|
|
STAY_SIGNED_IN,
|
|
SettingsStorageService
|
|
} from '@ghostfolio/client/services/settings-storage.service';
|
|
import { TokenStorageService } from '@ghostfolio/client/services/token-storage.service';
|
|
|
|
@Component({
|
|
selector: 'gf-login-with-access-token-dialog',
|
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
styleUrls: ['./login-with-access-token-dialog.scss'],
|
|
templateUrl: 'login-with-access-token-dialog.html'
|
|
})
|
|
export class LoginWithAccessTokenDialog {
|
|
public constructor(
|
|
@Inject(MAT_DIALOG_DATA) public data: any,
|
|
public dialogRef: MatDialogRef<LoginWithAccessTokenDialog>,
|
|
private internetIdentityService: InternetIdentityService,
|
|
private router: Router,
|
|
private settingsStorageService: SettingsStorageService,
|
|
private tokenStorageService: TokenStorageService
|
|
) {}
|
|
|
|
ngOnInit() {}
|
|
|
|
public onChangeStaySignedIn(aValue: MatCheckboxChange) {
|
|
this.settingsStorageService.setSetting(
|
|
STAY_SIGNED_IN,
|
|
aValue.checked?.toString()
|
|
);
|
|
}
|
|
|
|
public onClose() {
|
|
this.dialogRef.close();
|
|
}
|
|
|
|
public async onLoginWithInternetIdentity() {
|
|
try {
|
|
const { authToken } = await this.internetIdentityService.login();
|
|
|
|
this.tokenStorageService.saveToken(authToken);
|
|
this.dialogRef.close();
|
|
this.router.navigate(['/']);
|
|
} catch {}
|
|
}
|
|
}
|