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:
Huy 2025-02-26 09:46:14 +00:00
commit 9c5e05f29d
3 changed files with 14 additions and 34 deletions

View file

@ -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);
}
}

View file

@ -0,0 +1,5 @@
export interface Game {
id: string;
name: string;
image: string;
}

View file

@ -0,0 +1,6 @@
export interface Transaction {
id: string;
type: string;
amount: number;
date: string;
}