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

57 lines
1.1 KiB
Vue
Raw Normal View History

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