refactor(blackjack): rename event emitters for clarity
All checks were successful
All checks were successful
This commit is contained in:
parent
5e5fe603f9
commit
03ce527087
3 changed files with 14 additions and 16 deletions
|
@ -6,9 +6,9 @@
|
||||||
<app-dealer-hand [cards]="dealerCards"></app-dealer-hand>
|
<app-dealer-hand [cards]="dealerCards"></app-dealer-hand>
|
||||||
<app-player-hand [cards]="playerCards"></app-player-hand>
|
<app-player-hand [cards]="playerCards"></app-player-hand>
|
||||||
<app-game-controls
|
<app-game-controls
|
||||||
(onHit)="onHit()"
|
(hit)="onHit()"
|
||||||
(onStand)="onStand()"
|
(stand)="onStand()"
|
||||||
(onLeave)="leaveGame()"
|
(leave)="leaveGame()"
|
||||||
></app-game-controls>
|
></app-game-controls>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -16,7 +16,7 @@
|
||||||
<app-game-info
|
<app-game-info
|
||||||
[balance]="balance()"
|
[balance]="balance()"
|
||||||
[currentBet]="currentBet"
|
[currentBet]="currentBet"
|
||||||
(onNewGameClick)="onNewGame()"
|
(newGame)="onNewGame()"
|
||||||
></app-game-info>
|
></app-game-info>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -8,19 +8,19 @@ import { CommonModule } from '@angular/common';
|
||||||
template: `
|
template: `
|
||||||
<div class="flex justify-center gap-4">
|
<div class="flex justify-center gap-4">
|
||||||
<button
|
<button
|
||||||
(click)="onHit.emit()"
|
(click)="hit.emit()"
|
||||||
class="button-primary px-8 py-4 text-lg font-medium min-w-[120px]"
|
class="button-primary px-8 py-4 text-lg font-medium min-w-[120px]"
|
||||||
>
|
>
|
||||||
Ziehen
|
Ziehen
|
||||||
</button>
|
</button>
|
||||||
<button
|
<button
|
||||||
(click)="onStand.emit()"
|
(click)="stand.emit()"
|
||||||
class="button-primary px-8 py-4 text-lg font-medium min-w-[120px]"
|
class="button-primary px-8 py-4 text-lg font-medium min-w-[120px]"
|
||||||
>
|
>
|
||||||
Halten
|
Halten
|
||||||
</button>
|
</button>
|
||||||
<button
|
<button
|
||||||
(click)="onLeave.emit()"
|
(click)="leave.emit()"
|
||||||
class="bg-accent-red hover:bg-accent-red/80 px-8 py-4 rounded text-lg font-medium min-w-[120px] transition-all duration-300"
|
class="bg-accent-red hover:bg-accent-red/80 px-8 py-4 rounded text-lg font-medium min-w-[120px] transition-all duration-300"
|
||||||
>
|
>
|
||||||
Abbrechen
|
Abbrechen
|
||||||
|
@ -30,7 +30,7 @@ import { CommonModule } from '@angular/common';
|
||||||
changeDetection: ChangeDetectionStrategy.OnPush,
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
||||||
})
|
})
|
||||||
export class GameControlsComponent {
|
export class GameControlsComponent {
|
||||||
@Output() onHit = new EventEmitter<void>();
|
@Output() hit = new EventEmitter<void>();
|
||||||
@Output() onStand = new EventEmitter<void>();
|
@Output() stand = new EventEmitter<void>();
|
||||||
@Output() onLeave = new EventEmitter<void>();
|
@Output() leave = new EventEmitter<void>();
|
||||||
}
|
}
|
||||||
|
|
|
@ -19,16 +19,14 @@ import { CommonModule, CurrencyPipe } from '@angular/common';
|
||||||
{{ currentBet | currency: 'EUR' }}
|
{{ currentBet | currency: 'EUR' }}
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
<button class="button-primary w-full py-2" (click)="onNewGameClick.emit()">
|
<button class="button-primary w-full py-2" (click)="newGame.emit()">Neues Spiel</button>
|
||||||
Neues Spiel
|
|
||||||
</button>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
`,
|
`,
|
||||||
changeDetection: ChangeDetectionStrategy.OnPush,
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
||||||
})
|
})
|
||||||
export class GameInfoComponent {
|
export class GameInfoComponent {
|
||||||
@Input() balance: number = 0;
|
@Input() balance = 0;
|
||||||
@Input() currentBet: number = 0;
|
@Input() currentBet = 0;
|
||||||
@Output() onNewGameClick = new EventEmitter<void>();
|
@Output() newGame = new EventEmitter<void>();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue