mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-13 12:13:09 +02:00
54 lines
1.1 KiB
Vue
54 lines
1.1 KiB
Vue
<template>
|
|
<div>
|
|
<x-room v-if="!g.isStarted" :game="g" :connection="connection"/>
|
|
<x-game v-else :init-game="g" :connection="connection" :self-nav="selfNav" @go-index="goIndex"/>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import Vue from 'vue';
|
|
import XGame from './reversi.game.vue';
|
|
import XRoom from './reversi.room.vue';
|
|
import { ReversiGameStream } from '../../../../scripts/streaming/games/reversi/reversi-game';
|
|
|
|
export default Vue.extend({
|
|
components: {
|
|
XGame,
|
|
XRoom
|
|
},
|
|
props: {
|
|
game: {
|
|
type: Object,
|
|
required: true
|
|
},
|
|
selfNav: {
|
|
type: Boolean,
|
|
require: true
|
|
}
|
|
},
|
|
data() {
|
|
return {
|
|
connection: null,
|
|
g: null
|
|
};
|
|
},
|
|
created() {
|
|
this.g = this.game;
|
|
this.connection = new ReversiGameStream((this as any).os, this.$store.state.i, this.game);
|
|
this.connection.on('started', this.onStarted);
|
|
},
|
|
beforeDestroy() {
|
|
this.connection.off('started', this.onStarted);
|
|
this.connection.close();
|
|
},
|
|
methods: {
|
|
onStarted(game) {
|
|
Object.assign(this.g, game);
|
|
this.$forceUpdate();
|
|
},
|
|
goIndex() {
|
|
this.$emit('go-index');
|
|
}
|
|
}
|
|
});
|
|
</script>
|