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 { KeycloakService } from 'keycloak-angular';
|
||||
import { MatDialog } from '@angular/material/dialog';
|
||||
import { DepositComponent } from '../deposit/deposit.component';
|
||||
import { ChangeDetectionStrategy, Component } from '@angular/core';
|
||||
import { NavbarComponent } from '../../shared/components/navbar/navbar.component';
|
||||
import { CurrencyPipe, NgFor } from '@angular/common';
|
||||
|
||||
interface Game {
|
||||
id: string;
|
||||
name: string;
|
||||
image: string;
|
||||
}
|
||||
interface Transaction {
|
||||
id: string;
|
||||
type: string;
|
||||
amount: number;
|
||||
date: string;
|
||||
}
|
||||
import { Game } from '../../model/Game';
|
||||
import { Transaction } from '../../model/Transaction';
|
||||
|
||||
@Component({
|
||||
selector: 'app-homepage',
|
||||
|
@ -25,14 +12,6 @@ interface Transaction {
|
|||
changeDetection: ChangeDetectionStrategy.OnPush,
|
||||
})
|
||||
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[] = [
|
||||
{
|
||||
id: '1',
|
||||
|
@ -88,14 +67,4 @@ export default class HomeComponent {
|
|||
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