2018-03-09 10:48:16 -06:00
|
|
|
<template>
|
|
|
|
<component :is="ui ? 'mk-ui' : 'div'">
|
|
|
|
<mk-othello v-if="!fetching" :init-game="game" @gamed="onGamed"/>
|
|
|
|
</component>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
|
|
|
import Progress from '../../../common/scripts/loading';
|
|
|
|
|
|
|
|
export default Vue.extend({
|
|
|
|
props: {
|
|
|
|
ui: {
|
|
|
|
default: false
|
|
|
|
}
|
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
fetching: false,
|
|
|
|
game: null
|
|
|
|
};
|
|
|
|
},
|
|
|
|
watch: {
|
|
|
|
$route: 'fetch'
|
|
|
|
},
|
|
|
|
created() {
|
|
|
|
this.fetch();
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
fetch() {
|
|
|
|
if (this.$route.params.game == null) return;
|
|
|
|
|
|
|
|
Progress.start();
|
|
|
|
this.fetching = true;
|
|
|
|
|
|
|
|
(this as any).api('othello/games/show', {
|
2018-03-29 00:48:47 -05:00
|
|
|
gameId: this.$route.params.game
|
2018-03-09 10:48:16 -06:00
|
|
|
}).then(game => {
|
|
|
|
this.game = game;
|
|
|
|
this.fetching = false;
|
|
|
|
|
|
|
|
Progress.done();
|
|
|
|
});
|
|
|
|
},
|
|
|
|
onGamed(game) {
|
|
|
|
history.pushState(null, null, '/othello/' + game.id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|