domino-client/src/views/GameView.vue

115 lines
3.0 KiB
Vue
Raw Normal View History

2024-06-29 16:40:11 +02:00
<script setup lang="ts">
import GameComponent from '@/components/GameComponent.vue'
2024-07-05 01:31:55 +02:00
import { useGameStore } from '@/stores/game'
import { storeToRefs } from 'pinia'
2024-07-12 16:29:35 +02:00
import { onBeforeUnmount } from 'vue'
2024-06-29 16:40:11 +02:00
import { onMounted } from 'vue'
2024-07-05 01:31:55 +02:00
import useClipboard from 'vue-clipboard3'
2024-07-06 20:28:48 +02:00
import { useRouter } from 'vue-router'
2024-06-29 16:40:11 +02:00
2024-07-05 01:31:55 +02:00
const { toClipboard } = useClipboard()
const gameStore = useGameStore()
2024-07-06 20:28:48 +02:00
const { moveToMake, canMakeMove, sessionState, gameState, playerState } = storeToRefs(gameStore)
2024-06-29 16:40:11 +02:00
2024-07-06 20:28:48 +02:00
onMounted(async () => {
2024-07-12 16:29:35 +02:00
// startMatch()
2024-07-06 20:28:48 +02:00
})
if (!playerState?.value) {
const router = useRouter()
router.push({ name: 'home' })
}
2024-06-29 16:40:11 +02:00
2024-07-05 01:31:55 +02:00
function makeMove(move: any) {
moveToMake.value = move
canMakeMove.value = false
2024-07-12 16:29:35 +02:00
console.log('makemove :>> ', move)
2024-06-29 16:40:11 +02:00
}
onBeforeUnmount(() => {
2024-07-05 01:31:55 +02:00
// socketService.disconnect()
2024-06-29 16:40:11 +02:00
})
2024-07-05 01:31:55 +02:00
function copySeed() {
2024-07-14 21:35:03 +02:00
if (sessionState?.value?.seed) {
toClipboard(sessionState.value.seed)
}
2024-07-05 01:31:55 +02:00
}
2024-06-29 16:40:11 +02:00
</script>
<template>
2024-07-05 01:31:55 +02:00
<div class="block">
2024-07-14 21:35:03 +02:00
<section class="block info">
2024-07-16 02:14:50 +02:00
<p>Running: {{ sessionState?.sessionInProgress }}</p>
<p>Seed: {{ sessionState?.seed }}</p>
2024-07-06 20:28:48 +02:00
<p>
FreeEnds: {{ gameState?.boardFreeEnds }} - Current Player:{{
gameState?.currentPlayer?.name
}}
</p>
2024-07-16 02:14:50 +02:00
<p>Score: {{ sessionState?.scoreboard }}</p>
<p v-if="sessionState?.id">SessionID: {{ sessionState.id }}</p>
<p>PlayerID: {{ playerState?.id }}</p>
2024-07-05 01:31:55 +02:00
</section>
<section class="block">
<div class="game-container">
2024-07-06 20:28:48 +02:00
<GameComponent :playerId="playerState?.id" :canMakeMove="canMakeMove" @move="makeMove" />
2024-07-05 01:31:55 +02:00
</div>
</section>
2024-07-06 20:28:48 +02:00
<!-- <section class="block">
2024-07-05 01:31:55 +02:00
<div class="fixed-grid has-8-cols">
2024-07-06 20:28:48 +02:00
<div class="grid" v-if="!sessionState?.id">
2024-07-05 01:31:55 +02:00
<div class="cell">
<button style="width: 200px" class="button" @click="createSession">
Create Session
</button>
2024-06-29 16:40:11 +02:00
</div>
2024-07-05 01:31:55 +02:00
<div class="cell is-col-span7"></div>
2024-06-29 16:40:11 +02:00
</div>
2024-07-05 01:31:55 +02:00
<div class="grid" v-if="sessionId">
<div class="cell">
<button class="button" style="width: 200px" @click="startSession">Start Session</button>
</div>
<div class="cell is-col-span-7">
<input class="input" style="margin-bottom: 0" v-model="seed" placeholder="Seed" />
2024-06-29 16:40:11 +02:00
</div>
</div>
2024-07-05 15:37:29 +02:00
<div class="grid">
2024-07-05 01:31:55 +02:00
<div class="cell">
<button class="button" style="width: 200px" @click="joinSession">Join Session</button>
</div>
<div class="cell is-col-span-7">
<input
class="input"
style="margin-bottom: 0"
v-model="sessionId"
placeholder="Session Id"
2024-06-29 16:40:11 +02:00
/>
</div>
</div>
</div>
2024-07-06 20:28:48 +02:00
</section> -->
2024-06-29 16:40:11 +02:00
</div>
</template>
<style scoped lang="scss">
* {
box-sizing: border-box;
}
2024-07-05 01:31:55 +02:00
.game-container {
display: flex;
align-items: start;
justify-content: center;
}
2024-07-14 21:35:03 +02:00
.info {
2024-07-16 02:14:50 +02:00
color: white;
opacity: 0.1;
position: fixed;
top: 200px;
left: 10px;
2024-07-14 21:35:03 +02:00
z-index: 20;
2024-07-16 02:14:50 +02:00
pointer-events: none;
2024-06-29 16:40:11 +02:00
}
</style>