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