Frontent login

This commit is contained in:
2022-12-05 17:42:52 +01:00
parent 9f6c99a12e
commit 7330fb90f2
11 changed files with 65 additions and 96 deletions

View File

@@ -1,5 +1,6 @@
import { NgModule } from '@angular/core'; import { NgModule } from '@angular/core';
import { RouterModule, Routes } from '@angular/router'; import { RouterModule, Routes } from '@angular/router';
import { AuthGuard } from './auth/auth.guard';
import { LoginPageComponent } from './components/login-page/login-page.component'; import { LoginPageComponent } from './components/login-page/login-page.component';
import { MainViewComponent } from './main-view/main-view.component'; import { MainViewComponent } from './main-view/main-view.component';
@@ -10,7 +11,8 @@ const routes: Routes = [
}, },
{ {
path: 'app', path: 'app',
component: MainViewComponent component: MainViewComponent,
canActivate: [AuthGuard]
} }
]; ];

View File

@@ -7,7 +7,6 @@ import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { MainViewComponent } from './main-view/main-view.component'; import { MainViewComponent } from './main-view/main-view.component';
import { MaterialModule } from './material.module'; import { MaterialModule } from './material.module';
import { LoginPageComponent } from './components/login-page/login-page.component'; import { LoginPageComponent } from './components/login-page/login-page.component';
import { GoogleLoginProvider, SocialAuthServiceConfig, SocialLoginModule } from '@abacritt/angularx-social-login';
@NgModule({ @NgModule({
@@ -21,27 +20,8 @@ import { GoogleLoginProvider, SocialAuthServiceConfig, SocialLoginModule } from
AppRoutingModule, AppRoutingModule,
BrowserAnimationsModule, BrowserAnimationsModule,
MaterialModule, MaterialModule,
SocialLoginModule
],
providers: [
{
provide: 'SocialAuthServiceConfig',
useValue: {
autoLogin: false,
providers: [
{
id: GoogleLoginProvider.PROVIDER_ID,
provider: new GoogleLoginProvider(
'107631825312-bkfe438ehr9k9ecb2h76g802tj6advma.apps.googleusercontent.com'
)
},
],
onError: (err: Error) => {
console.error(err);
}
} as SocialAuthServiceConfig,
}
], ],
providers: [],
bootstrap: [AppComponent] bootstrap: [AppComponent]
}) })
export class AppModule { } export class AppModule { }

View File

@@ -1,16 +0,0 @@
import { TestBed } from '@angular/core/testing';
import { AuthGuardGuard } from './auth-guard.guard';
describe('AuthGuardGuard', () => {
let guard: AuthGuardGuard;
beforeEach(() => {
TestBed.configureTestingModule({});
guard = TestBed.inject(AuthGuardGuard);
});
it('should be created', () => {
expect(guard).toBeTruthy();
});
});

View File

@@ -1,20 +0,0 @@
import { Injectable } from '@angular/core';
import { ActivatedRouteSnapshot, CanActivate, CanActivateChild, RouterStateSnapshot, UrlTree } from '@angular/router';
import { Observable } from 'rxjs';
@Injectable({
providedIn: 'root'
})
export class AuthGuardGuard implements CanActivate, CanActivateChild {
canActivate(
route: ActivatedRouteSnapshot,
state: RouterStateSnapshot): Observable<boolean | UrlTree> | Promise<boolean | UrlTree> | boolean | UrlTree {
return true;
}
canActivateChild(
childRoute: ActivatedRouteSnapshot,
state: RouterStateSnapshot): Observable<boolean | UrlTree> | Promise<boolean | UrlTree> | boolean | UrlTree {
return true;
}
}

View File

@@ -1,16 +0,0 @@
import { TestBed } from '@angular/core/testing';
import { AuthServiceService } from './auth-service.service';
describe('AuthServiceService', () => {
let service: AuthServiceService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(AuthServiceService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});

View File

@@ -0,0 +1,25 @@
import { Injectable } from '@angular/core';
import { ActivatedRouteSnapshot, CanActivate, CanActivateChild, Router, RouterStateSnapshot, UrlTree } from '@angular/router';
import { Observable } from 'rxjs';
import { DataService } from '../services/data.service';
@Injectable({
providedIn: 'root'
})
export class AuthGuard implements CanActivate {
constructor(
private data$: DataService,
private router$: Router
) {}
canActivate(
route: ActivatedRouteSnapshot,
state: RouterStateSnapshot,
): Observable<boolean | UrlTree> | Promise<boolean | UrlTree> | boolean | UrlTree {
if (this.data$.currentUser) {
return true;
} else {
this.router$.navigate(['']);
return false;
}
}
}

View File

@@ -1,14 +1,19 @@
import { GoogleLoginProvider, SocialAuthService } from '@abacritt/angularx-social-login';
import { Component, OnInit } from '@angular/core'; import { Component, OnInit } from '@angular/core';
import { Router } from '@angular/router';
import jwt_decode from "jwt-decode";
import { User } from 'src/app/models/user';
import { DataService } from 'src/app/services/data.service';
@Component({ @Component({
selector: 'app-login-page', selector: 'app-login-page',
templateUrl: './login-page.component.html', templateUrl: './login-page.component.html',
styleUrls: ['./login-page.component.scss'] styleUrls: ['./login-page.component.scss']
}) })
export class LoginPageComponent implements OnInit { export class LoginPageComponent implements OnInit {
constructor( constructor(
private authService: SocialAuthService private data$: DataService,
private router$: Router
) {} ) {}
ngOnInit(): void { ngOnInit(): void {
@@ -16,9 +21,8 @@ export class LoginPageComponent implements OnInit {
google.accounts.id.initialize({ google.accounts.id.initialize({
client_id: "107631825312-bkfe438ehr9k9ecb2h76g802tj6advma.apps.googleusercontent.com", client_id: "107631825312-bkfe438ehr9k9ecb2h76g802tj6advma.apps.googleusercontent.com",
callback: this.handleCredentialResponse.bind(this), callback: this.handleCredentialResponse.bind(this),
auto_select: false, auto_select: true,
cancel_on_tap_outside: true, cancel_on_tap_outside: true,
}); });
// @ts-ignore // @ts-ignore
google.accounts.id.renderButton( google.accounts.id.renderButton(
@@ -27,17 +31,23 @@ export class LoginPageComponent implements OnInit {
{ theme: "outline", size: "large", width: "100%" } { theme: "outline", size: "large", width: "100%" }
); );
// @ts-ignore // @ts-ignore
google.accounts.id.prompt((notification: PromptMomentNotification) => { }); google.accounts.id.prompt();
} }
async handleCredentialResponse(response: any) { async handleCredentialResponse(response: any) {
// Here will be your response from Google. try {
console.log(response); const responsePayload: any = jwt_decode(response.credential);
// const responsePayload = decodeJwtResponse(response.credential); this.data$.currentUser = new User({
id: 1,
googledId: responsePayload.aud,
userName: `${responsePayload.given_name} ${responsePayload.family_name}`,
email: responsePayload.email,
avatar: responsePayload.picture
});
this.router$.navigate(['/app']);
} catch (e) {
console.error('Get user error', e);
} }
login() {
this.authService.signIn(GoogleLoginProvider.PROVIDER_ID);
} }
} }

View File

@@ -1,7 +1,7 @@
<div class="loading-container" *ngIf="loading"> <div class="loading-container" *ngIf="loading">
<img class="loading-img" src="../../assets/loader.gif" /> <img class="loading-img" src="../../assets/loader.gif" />
</div> </div>
<div class="flip-container" *ngIf="_device.flipPhone"> <div class="flip-container" *ngIf="device$.flipPhone">
<div class="flip-msg"> <div class="flip-msg">
Obróć telefon.<br> Obróć telefon.<br>
<mat-icon>screen_rotation</mat-icon> <mat-icon>screen_rotation</mat-icon>
@@ -14,9 +14,9 @@
</button> </button>
<h1>Diuna</h1> <h1>Diuna</h1>
<span class="fill-to-right"></span> <span class="fill-to-right"></span>
<span class="topbar-user-name" *ngIf="_data.currentUser"> <span class="topbar-user-name" *ngIf="data$.currentUser">
<img *ngIf="_data.currentUser.avatar" src="{{_data.currentUser.avatar}}" class="avatar"> <img *ngIf="data$.currentUser.avatar" src="{{data$.currentUser.avatar}}" class="avatar">
{{_data.currentUser.userName}} {{data$.currentUser.userName}}
</span> </span>
<button mat-icon-button (click)="logout()"> <button mat-icon-button (click)="logout()">
<mat-icon>exit_to_app</mat-icon> <mat-icon>exit_to_app</mat-icon>

View File

@@ -1,6 +1,6 @@
import { OnInit } from '@angular/core';
import { Component, ViewChild } from '@angular/core'; import { Component, ViewChild } from '@angular/core';
import { MatSidenav } from '@angular/material/sidenav'; import { MatSidenav } from '@angular/material/sidenav';
import { Router } from '@angular/router';
import * as moment from 'moment'; import * as moment from 'moment';
import packageInfo from 'package.json'; import packageInfo from 'package.json';
import { DataService } from '../services/data.service'; import { DataService } from '../services/data.service';
@@ -23,14 +23,18 @@ export class MainViewComponent {
loading: boolean = false; loading: boolean = false;
constructor( constructor(
public _data: DataService, public data$: DataService,
public _device: DeviceService public device$: DeviceService,
private router$: Router
) { } ) { }
reloadApp() { reloadApp() {
document.location.reload(); document.location.reload();
} }
logout() { logout() {
// @ts-ignore
google.accounts.id.disableAutoSelect();
this.router$.navigate(['']);
this.data$.currentUser = null;
} }
} }

View File

@@ -6,7 +6,7 @@ import { User } from '../models/user';
providedIn: 'root' providedIn: 'root'
}) })
export class DataService { export class DataService {
currentUser?: User; currentUser?: User | null;
public showLoader: BehaviorSubject<boolean> = new BehaviorSubject<boolean>(false); public showLoader: BehaviorSubject<boolean> = new BehaviorSubject<boolean>(false);
constructor() { } constructor() { }