misskey/src/client/app/common/views/components/games/reversi/reversi.gameroom.vue

55 lines
974 B
Vue
Raw Normal View History

2018-03-08 08:57:57 +00:00
<template>
<div>
2018-03-29 05:48:47 +00:00
<x-room v-if="!g.isStarted" :game="g" :connection="connection"/>
2018-08-05 04:40:26 +00:00
<x-game v-else :init-game="g" :connection="connection" :self-nav="selfNav" @go-index="goIndex"/>
2018-03-08 08:57:57 +00:00
</div>
</template>
<script lang="ts">
import Vue from 'vue';
2018-06-16 23:10:54 +00:00
import XGame from './reversi.game.vue';
import XRoom from './reversi.room.vue';
2018-03-08 08:57:57 +00:00
export default Vue.extend({
components: {
XGame,
XRoom
},
2018-08-05 04:40:26 +00:00
props: {
game: {
type: Object,
required: true
},
selfNav: {
type: Boolean,
require: true
}
},
2018-03-08 08:57:57 +00:00
data() {
return {
connection: null,
g: null
};
},
created() {
this.g = this.game;
this.connection = (this as any).os.stream.connectToChannel('gamesReversiGame', {
gameId: this.game.id
});
2018-03-08 08:57:57 +00:00
this.connection.on('started', this.onStarted);
},
beforeDestroy() {
this.connection.dispose();
2018-03-08 08:57:57 +00:00
},
methods: {
onStarted(game) {
Object.assign(this.g, game);
this.$forceUpdate();
2018-08-05 04:40:26 +00:00
},
goIndex() {
this.$emit('go-index');
2018-03-08 08:57:57 +00:00
}
}
});
</script>