style: format code and add missing newlines
All checks were successful
All checks were successful
This commit is contained in:
parent
732d475a84
commit
f1c70f5f2c
3 changed files with 11 additions and 6 deletions
|
@ -3,4 +3,4 @@ export enum GameState {
|
||||||
IN_PROGRESS = 'IN_PROGRESS',
|
IN_PROGRESS = 'IN_PROGRESS',
|
||||||
PLAYER_LOST = 'PLAYER_LOST',
|
PLAYER_LOST = 'PLAYER_LOST',
|
||||||
DRAW = 'DRAW',
|
DRAW = 'DRAW',
|
||||||
}
|
}
|
||||||
|
|
|
@ -16,7 +16,10 @@ import { GameControlsService } from '../../services/game-controls.service';
|
||||||
Deine Punkte: {{ gameControlsService.calculateHandValue(playerCards) }}
|
Deine Punkte: {{ gameControlsService.calculateHandValue(playerCards) }}
|
||||||
</div>
|
</div>
|
||||||
<div class="text-text-secondary">
|
<div class="text-text-secondary">
|
||||||
Status: <span [class]="gameControlsService.getStatusClass(gameState)">{{ gameControlsService.getStatusText(gameState) }}</span>
|
Status:
|
||||||
|
<span [class]="gameControlsService.getStatusClass(gameState)">{{
|
||||||
|
gameControlsService.getStatusText(gameState)
|
||||||
|
}}</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -54,7 +57,9 @@ import { GameControlsService } from '../../services/game-controls.service';
|
||||||
<button
|
<button
|
||||||
(click)="doubleDown.emit()"
|
(click)="doubleDown.emit()"
|
||||||
class="button-primary px-8 py-4 text-lg font-medium min-w-[120px] relative"
|
class="button-primary px-8 py-4 text-lg font-medium min-w-[120px] relative"
|
||||||
[disabled]="gameState !== GameState.IN_PROGRESS || playerCards.length !== 2 || isActionInProgress"
|
[disabled]="
|
||||||
|
gameState !== GameState.IN_PROGRESS || playerCards.length !== 2 || isActionInProgress
|
||||||
|
"
|
||||||
[class.opacity-50]="isActionInProgress"
|
[class.opacity-50]="isActionInProgress"
|
||||||
>
|
>
|
||||||
<span [class.invisible]="isActionInProgress">Verdoppeln</span>
|
<span [class.invisible]="isActionInProgress">Verdoppeln</span>
|
||||||
|
@ -82,7 +87,7 @@ import { GameControlsService } from '../../services/game-controls.service';
|
||||||
export class GameControlsComponent {
|
export class GameControlsComponent {
|
||||||
@Input() playerCards: Card[] = [];
|
@Input() playerCards: Card[] = [];
|
||||||
@Input() gameState: GameState = GameState.IN_PROGRESS;
|
@Input() gameState: GameState = GameState.IN_PROGRESS;
|
||||||
@Input() isActionInProgress: boolean = false;
|
@Input() isActionInProgress = false;
|
||||||
|
|
||||||
@Output() hit = new EventEmitter<void>();
|
@Output() hit = new EventEmitter<void>();
|
||||||
@Output() stand = new EventEmitter<void>();
|
@Output() stand = new EventEmitter<void>();
|
||||||
|
|
|
@ -3,7 +3,7 @@ import { Card } from '../models/blackjack.model';
|
||||||
import { GameState } from '../../../../enum/gameState';
|
import { GameState } from '../../../../enum/gameState';
|
||||||
|
|
||||||
@Injectable({
|
@Injectable({
|
||||||
providedIn: 'root'
|
providedIn: 'root',
|
||||||
})
|
})
|
||||||
export class GameControlsService {
|
export class GameControlsService {
|
||||||
calculateHandValue(cards: Card[]): number {
|
calculateHandValue(cards: Card[]): number {
|
||||||
|
@ -71,4 +71,4 @@ export class GameControlsService {
|
||||||
return 'text-white';
|
return 'text-white';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue