Adding profile component (de)activation logic

This commit is contained in:
Patrick Müller 2022-09-02 17:55:19 +02:00
parent 18a02f0940
commit 47c494653c
Signed by: Paddy
GPG Key ID: 37ABC11275CAABCE
18 changed files with 174 additions and 133 deletions

View File

@ -1,4 +1,4 @@
import {Component, OnDestroy, OnInit} from '@angular/core'; import {Component} from '@angular/core';
import {Player} from './models/player'; import {Player} from './models/player';
@Component({ @Component({

View File

@ -4,5 +4,5 @@
<p>Paddy</p> <p>Paddy</p>
<img src="assets/images/user.png" alt="User Icon" (click)="openProfile()"> <img src="assets/images/user.png" alt="User Icon" (click)="openProfile()">
</span> </span>
<app-profile *ngIf="showProfilePopover"></app-profile> <app-profile (showProfilePopoverChange)="closeProfile()" *ngIf="showProfilePopover"></app-profile>
</div> </div>

View File

@ -16,8 +16,10 @@ export class HeaderComponent implements OnInit {
} }
openProfile(): void { openProfile(): void {
console.log('Called'); this.showProfilePopover = true;
this.showProfilePopover = !this.showProfilePopover;
} }
closeProfile(): void {
this.showProfilePopover = false;
}
} }

View File

@ -1,3 +1,11 @@
<div id="profile-popover"> <div id="profile-popover">
<p>Test</p> <div *ngIf="isLoggedIn">
<h2 class="heading">Hello, Paddy!</h2>
<p>You're successfully logged in.</p>
<p>Your id is: 1</p>
</div>
<div *ngIf="!isLoggedIn">
<h2 class="heading">Not logged in</h2>
<p>Please log in to continue</p>
</div>
</div> </div>

View File

@ -8,6 +8,11 @@
color: $text; color: $text;
background-color: $secondary; background-color: $secondary;
width: 15em; width: 15em;
height: 20em;
border-radius: 1em; border-radius: 1em;
padding: 1em;
}
h2.heading {
text-align: center;
font-weight: bold;
} }

View File

@ -1,4 +1,4 @@
import { Component, OnInit } from '@angular/core'; import {Component, ElementRef, EventEmitter, HostListener, OnInit, Output} from '@angular/core';
@Component({ @Component({
selector: 'app-profile', selector: 'app-profile',
@ -7,9 +7,32 @@ import { Component, OnInit } from '@angular/core';
}) })
export class ProfileComponent implements OnInit { export class ProfileComponent implements OnInit {
constructor() { } initialClick = true;
@Output() showProfilePopoverChange = new EventEmitter<boolean>();
isLoggedIn = true;
constructor(private eRef: ElementRef) {
}
ngOnInit(): void { ngOnInit(): void {
} }
/**
* Used to close Profile component when user clicks outside the component
* @param event
*/
@HostListener('document:click', ['$event'])
@HostListener('document:touchstart', ['$event'])
handleOutsideClick(event: any) {
if (this.initialClick) {
this.initialClick = false;
return;
}
if (!this.eRef.nativeElement.contains(event.target)) {
this.showProfilePopoverChange.emit(false);
}
}
} }

View File

@ -7,7 +7,8 @@ import { Component, OnInit } from '@angular/core';
}) })
export class GamenightComponent implements OnInit { export class GamenightComponent implements OnInit {
constructor() { } constructor() {
}
ngOnInit(): void { ngOnInit(): void {
} }

View File

@ -10,12 +10,13 @@ export class HomeComponent implements OnInit {
constructor( constructor(
private route: ActivatedRoute private route: ActivatedRoute
) { } ) {
}
ngOnInit(): void { ngOnInit(): void {
this.route.queryParams.subscribe(params => { this.route.queryParams.subscribe(params => {
console.table(params); // Read params
}) });
} }
} }

View File

@ -7,7 +7,8 @@ import { Component, OnInit } from '@angular/core';
}) })
export class StatsComponent implements OnInit { export class StatsComponent implements OnInit {
constructor() { } constructor() {
}
ngOnInit(): void { ngOnInit(): void {
} }

View File

@ -14,7 +14,7 @@ export class StorageService {
firstName: firstName, firstName: firstName,
token: token, token: token,
sessionKey: sessionKey sessionKey: sessionKey
} };
} }
setUserInfo(user: User): void { setUserInfo(user: User): void {