iceshrimp-legacy/src/client/app/desktop/views/components/game-window.vue

38 lines
691 B
Vue
Raw Normal View History

2018-03-07 09:48:32 +01:00
<template>
<mk-window ref="window" width="500px" height="560px" :popout-url="popout" @closed="destroyDom">
<span slot="header" :class="$style.header"><fa icon="gamepad"/>%i18n:@game%</span>
2018-06-17 01:10:54 +02:00
<mk-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-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({
data() {
return {
game: null
};
},
computed: {
popout(): string {
return this.game
2018-06-17 01:10:54 +02:00
? `${url}/reversi/${this.game.id}`
: `${url}/reversi`;
2018-03-09 17:48:16 +01:00
}
}
2018-03-07 09:48:32 +01:00
});
</script>
<style lang="stylus" module>
.header
> [data-icon]
2018-03-07 09:48:32 +01:00
margin-right 4px
.content
height 100%
overflow auto
</style>