diff --git a/frontend/src/app/feature/home/home.component.ts b/frontend/src/app/feature/home/home.component.ts index ebb2f02..050c885 100644 --- a/frontend/src/app/feature/home/home.component.ts +++ b/frontend/src/app/feature/home/home.component.ts @@ -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); - } } diff --git a/frontend/src/app/model/Game.ts b/frontend/src/app/model/Game.ts new file mode 100644 index 0000000..a3f3e74 --- /dev/null +++ b/frontend/src/app/model/Game.ts @@ -0,0 +1,5 @@ +export interface Game { + id: string; + name: string; + image: string; +} diff --git a/frontend/src/app/model/Transaction.ts b/frontend/src/app/model/Transaction.ts new file mode 100644 index 0000000..21277b4 --- /dev/null +++ b/frontend/src/app/model/Transaction.ts @@ -0,0 +1,6 @@ +export interface Transaction { + id: string; + type: string; + amount: number; + date: string; +}