Back

1 vs 1 Game

Game ID: {{ facade.gameId }}

@if (facade.loading) {

Loading game state...

} @else if (facade.state) { @if (facade.isGameFinished && facade.gameCompletionMessage) {

{{ facade.gameCompletionMessage }}

Start a new game

} @if (facade.isGameFinished && facade.gameCompletionMessage) {

{{ facade.gameCompletionMessage }}

Start a new game

}

Timers

White

{{ formatTimer(whiteTimerSeconds) }}

Black

{{ formatTimer(blackTimerSeconds) }}

Board Design

Move History

@if (facade.state.moves.length === 0) {

No moves yet.

} @else {
    @for (move of facade.state.moves; track $index) {
  1. {{ $index + 1 }}. {{ move }}
  2. }
}

Export

@if (exportNotice) {

{{ exportNotice }}

}
} @if (facade.errorMessage) {

{{ facade.errorMessage }}

}