Merge pull request 'refactor: refactor and clean up of home.component.ts' (!41) from refactor/home into main
Reviewed-on: https://git.simonis.lol/projects/casino/pulls/41 Reviewed-by: Kjan Jattenhoff <jan@kjan.email> Reviewed-by: Huy <ptran@noreply@simonis.lol>
This commit is contained in:
commit
9c5e05f29d
3 changed files with 14 additions and 34 deletions
|
@ -1,21 +1,8 @@
|
||||||
import { ChangeDetectionStrategy, Component, inject } from '@angular/core';
|
import { ChangeDetectionStrategy, Component } from '@angular/core';
|
||||||
import { KeycloakService } from 'keycloak-angular';
|
|
||||||
import { MatDialog } from '@angular/material/dialog';
|
|
||||||
import { DepositComponent } from '../deposit/deposit.component';
|
|
||||||
import { NavbarComponent } from '../../shared/components/navbar/navbar.component';
|
import { NavbarComponent } from '../../shared/components/navbar/navbar.component';
|
||||||
import { CurrencyPipe, NgFor } from '@angular/common';
|
import { CurrencyPipe, NgFor } from '@angular/common';
|
||||||
|
import { Game } from '../../model/Game';
|
||||||
interface Game {
|
import { Transaction } from '../../model/Transaction';
|
||||||
id: string;
|
|
||||||
name: string;
|
|
||||||
image: string;
|
|
||||||
}
|
|
||||||
interface Transaction {
|
|
||||||
id: string;
|
|
||||||
type: string;
|
|
||||||
amount: number;
|
|
||||||
date: string;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-homepage',
|
selector: 'app-homepage',
|
||||||
|
@ -25,14 +12,6 @@ interface Transaction {
|
||||||
changeDetection: ChangeDetectionStrategy.OnPush,
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
||||||
})
|
})
|
||||||
export default class HomeComponent {
|
export default class HomeComponent {
|
||||||
private keycloakService: KeycloakService = inject(KeycloakService);
|
|
||||||
public dialog: MatDialog = inject(MatDialog);
|
|
||||||
|
|
||||||
userAvatar = '/assets/images/default-avatar.png';
|
|
||||||
username = this.keycloakService.getUsername();
|
|
||||||
vipLevel = 1;
|
|
||||||
balance = 1000.0;
|
|
||||||
|
|
||||||
featuredGames: Game[] = [
|
featuredGames: Game[] = [
|
||||||
{
|
{
|
||||||
id: '1',
|
id: '1',
|
||||||
|
@ -88,14 +67,4 @@ export default class HomeComponent {
|
||||||
date: '2024-03-18',
|
date: '2024-03-18',
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
public logout() {
|
|
||||||
const baseUrl = window.location.origin;
|
|
||||||
|
|
||||||
this.keycloakService.logout(`${baseUrl}/`);
|
|
||||||
}
|
|
||||||
|
|
||||||
public openDialog() {
|
|
||||||
this.dialog.open(DepositComponent);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
5
frontend/src/app/model/Game.ts
Normal file
5
frontend/src/app/model/Game.ts
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
export interface Game {
|
||||||
|
id: string;
|
||||||
|
name: string;
|
||||||
|
image: string;
|
||||||
|
}
|
6
frontend/src/app/model/Transaction.ts
Normal file
6
frontend/src/app/model/Transaction.ts
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
export interface Transaction {
|
||||||
|
id: string;
|
||||||
|
type: string;
|
||||||
|
amount: number;
|
||||||
|
date: string;
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue