Sharkey/src/web/app/common/views/components/othello.vue

95 lines
2.1 KiB
Vue
Raw Normal View History

2018-03-06 18:54:56 +02:00
<template>
<div>
2018-03-07 04:40:40 +02:00
<div v-if="game">
<x-game :game="game"/>
</div>
<div v-if="matching">
<h1><b>{{ matching.name }}</b>を待っています<mk-ellipsis/></h1>
2018-03-06 18:54:56 +02:00
</div>
<div v-else>
<h1>Misskey Othello</h1>
<p>他のMisskeyユーザーとオセロで対戦しよう</p>
<button>フリーマッチ(準備中)</button>
2018-03-07 04:40:40 +02:00
<button @click="match">指名</button>
<section>
<h2>対局の招待があります:</h2>
</section>
2018-03-06 18:54:56 +02:00
<section>
<h2>過去の対局</h2>
</section>
</div>
</div>
</template>
<script lang="ts">
import Vue from 'vue';
2018-03-07 04:40:40 +02:00
import XGame from './othello.game.vue';
2018-03-06 18:54:56 +02:00
export default Vue.extend({
2018-03-07 04:40:40 +02:00
components: {
XGame
},
data() {
return {
game: null,
games: [],
gamesFetching: true,
gamesMoreFetching: false,
matching: false,
invitations: [],
connection: null,
connectionId: null
};
},
mounted() {
this.connection = (this as any).os.streams.othelloStream.getConnection();
this.connectionId = (this as any).os.streams.othelloStream.use();
this.connection.on('macthed', this.onMatched);
this.connection.on('invited', this.onInvited);
2018-03-06 18:54:56 +02:00
2018-03-07 04:40:40 +02:00
(this as any).api('othello/games').then(games => {
this.games = games;
this.gamesFetching = false;
});
(this as any).api('othello/invitations').then(invitations => {
this.invitations = this.invitations.concat(invitations);
});
},
beforeDestroy() {
this.connection.off('macthed', this.onMatched);
this.connection.off('invited', this.onInvited);
(this as any).streams.othelloStream.dispose(this.connectionId);
},
methods: {
match() {
(this as any).apis.input({
title: 'ユーザー名を入力してください'
}).then(username => {
(this as any).api('users/show', {
username
}).then(user => {
(this as any).api('othello/match', {
user_id: user.id
}).then(res => {
if (res == null) {
this.matching = user;
} else {
this.game = res;
}
});
});
});
},
onMatched(game) {
this.game = game;
},
onInvited(invite) {
this.invitations.unshift(invite);
2018-03-06 18:54:56 +02:00
}
}
});
</script>