2024-01-19 20:51:49 +09:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<div v-if="game == null || connection == null"><MkLoading/></div>
|
|
|
|
<GameSetting v-else-if="!game.isStarted" :game="game" :connection="connection"/>
|
|
|
|
<GameBoard v-else :game="game" :connection="connection"/>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
|
|
|
import { computed, watch, ref, onMounted, shallowRef, onUnmounted } from 'vue';
|
|
|
|
import * as Misskey from 'misskey-js';
|
|
|
|
import GameSetting from './game.setting.vue';
|
|
|
|
import GameBoard from './game.board.vue';
|
|
|
|
import { misskeyApi } from '@/scripts/misskey-api.js';
|
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata.js';
|
|
|
|
import { useStream } from '@/stream.js';
|
2024-01-21 12:05:51 +09:00
|
|
|
import { signinRequired } from '@/account.js';
|
|
|
|
import { useRouter } from '@/global/router/supplier.js';
|
|
|
|
import * as os from '@/os.js';
|
|
|
|
import { i18n } from '@/i18n.js';
|
|
|
|
|
|
|
|
const $i = signinRequired();
|
|
|
|
|
|
|
|
const router = useRouter();
|
2024-01-19 20:51:49 +09:00
|
|
|
|
|
|
|
const props = defineProps<{
|
|
|
|
gameId: string;
|
|
|
|
}>();
|
|
|
|
|
|
|
|
const game = shallowRef<Misskey.entities.ReversiGameDetailed | null>(null);
|
|
|
|
const connection = shallowRef<Misskey.ChannelConnection | null>(null);
|
|
|
|
|
|
|
|
watch(() => props.gameId, () => {
|
|
|
|
fetchGame();
|
|
|
|
});
|
|
|
|
|
|
|
|
async function fetchGame() {
|
|
|
|
const _game = await misskeyApi('reversi/show-game', {
|
|
|
|
gameId: props.gameId,
|
|
|
|
});
|
|
|
|
|
|
|
|
game.value = _game;
|
|
|
|
|
|
|
|
if (connection.value) {
|
|
|
|
connection.value.dispose();
|
|
|
|
}
|
|
|
|
connection.value = useStream().useChannel('reversiGame', {
|
|
|
|
gameId: game.value.id,
|
|
|
|
});
|
|
|
|
connection.value.on('started', x => {
|
|
|
|
game.value = x.game;
|
|
|
|
});
|
2024-01-21 12:05:51 +09:00
|
|
|
connection.value.on('canceled', x => {
|
|
|
|
connection.value?.dispose();
|
|
|
|
|
|
|
|
if (x.userId !== $i.id) {
|
|
|
|
os.alert({
|
|
|
|
type: 'warning',
|
|
|
|
text: i18n.ts._reversi.gameCanceled,
|
|
|
|
});
|
|
|
|
router.push('/reversi');
|
|
|
|
}
|
|
|
|
});
|
2024-01-19 20:51:49 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
onMounted(() => {
|
|
|
|
fetchGame();
|
|
|
|
});
|
|
|
|
|
|
|
|
onUnmounted(() => {
|
|
|
|
if (connection.value) {
|
|
|
|
connection.value.dispose();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
const headerActions = computed(() => []);
|
|
|
|
|
|
|
|
const headerTabs = computed(() => []);
|
|
|
|
|
|
|
|
definePageMetadata(computed(() => ({
|
|
|
|
title: 'Reversi',
|
|
|
|
icon: 'ti ti-device-gamepad',
|
|
|
|
})));
|
|
|
|
</script>
|