2018-03-07 09:48:32 +01:00
|
|
|
<template>
|
2018-09-17 22:35:06 +02:00
|
|
|
<mk-window ref="window" width="500px" height="560px" :popout-url="popout" @closed="destroyDom">
|
2019-02-18 03:13:56 +01:00
|
|
|
<template #header><fa icon="gamepad"/> {{ $t('game') }}</template>
|
2018-11-06 07:37:41 +01:00
|
|
|
<x-reversi :class="$style.content" @gamed="g => game = g"/>
|
2018-03-07 09:48:32 +01:00
|
|
|
</mk-window>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
2018-11-08 19:44:35 +01:00
|
|
|
import i18n from '../../../i18n';
|
2018-03-09 17:48:16 +01:00
|
|
|
import { url } from '../../../config';
|
2018-03-07 09:48:32 +01:00
|
|
|
|
2018-03-09 17:48:16 +01:00
|
|
|
export default Vue.extend({
|
2018-11-08 19:44:35 +01:00
|
|
|
i18n: i18n('desktop/views/components/game-window.vue'),
|
2018-11-06 07:37:41 +01:00
|
|
|
components: {
|
2018-11-11 20:09:02 +01:00
|
|
|
XReversi: () => import('../../../common/views/components/games/reversi/reversi.vue').then(m => m.default)
|
2018-11-06 07:37:41 +01:00
|
|
|
},
|
2018-03-09 17:48:16 +01:00
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
game: null
|
|
|
|
};
|
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
popout(): string {
|
|
|
|
return this.game
|
2019-01-21 09:25:36 +01:00
|
|
|
? `${url}/games/reversi/${this.game.id}`
|
|
|
|
: `${url}/games/reversi`;
|
2018-03-09 17:48:16 +01:00
|
|
|
}
|
|
|
|
}
|
2018-03-07 09:48:32 +01:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" module>
|
|
|
|
.content
|
|
|
|
height 100%
|
|
|
|
overflow auto
|
|
|
|
|
|
|
|
</style>
|