aboutsummaryrefslogtreecommitdiffstats
path: root/frontend/src/views/JoinView.vue
blob: abfbd1a6f3c6266c95c5b1fb53b74893822352dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<script setup lang="ts">
import { ref } from 'vue';
import { useRoute } from 'vue-router';

const route = useRoute();
const sessionId = route.params.id;

const joiningGame = ref(true);
const connected = ref(false);
const gameState = ref('');

const socket = new WebSocket(`${import.meta.env.VITE_BACKEND_WS_URL}`);
socket.onopen = () => {
  socket.send(JSON.stringify({
    action: 'join',
    sessionId: sessionId,
  }));
};
socket.onmessage = (event) => {
  const data = JSON.parse(event.data);
  if (data.action === 'state') {
    gameState.value = data.state;
    joiningGame.value = false;
    connected.value = true;
  }
};

function sendMove(move: string) {
  socket.send(JSON.stringify({
    action: 'move',
    sessionId: sessionId,
    move: move,
  }));
}

function sendLeft() {
  sendMove('left');
}

function sendRotate() {
  sendMove('rotate');
}

function sendRight() {
  sendMove('right');
}
</script>

<template>
  <main>
    <h1 v-if="joiningGame">Joining game "{{ sessionId }}"...</h1>
    <h1 v-if="connected">Connected to "{{ sessionId }}"</h1>
    <h1 v-if="gameState === 'waiting'">Waiting for host to start the game...</h1>
    <div v-if="gameState === 'playing'">
      <button @click="sendLeft">Left</button>
      <button @click="sendRotate">Rotate</button>
      <button @click="sendRight">Right</button>
    </div>
  </main>
</template>