yumechi-no-kuni/src/client/app/desktop/views/components/ui.vue

54 lines
943 B
Vue
Raw Normal View History

2018-02-09 23:56:33 -06:00
<template>
2018-05-31 02:44:11 -05:00
<div class="mk-ui">
<x-header class="header"/>
2018-02-12 04:59:24 -06:00
<div class="content">
<slot></slot>
</div>
2018-05-26 23:49:09 -05:00
<mk-stream-indicator v-if="$store.getters.isSignedIn"/>
2018-02-09 23:56:33 -06:00
</div>
</template>
2018-02-12 04:59:24 -06:00
<script lang="ts">
import Vue from 'vue';
2018-02-20 07:53:34 -06:00
import XHeader from './ui.header.vue';
2018-02-12 04:59:24 -06:00
export default Vue.extend({
2018-02-20 07:53:34 -06:00
components: {
2018-02-20 10:39:51 -06:00
XHeader
2018-02-20 07:53:34 -06:00
},
2018-02-12 04:59:24 -06:00
mounted() {
document.addEventListener('keydown', this.onKeydown);
},
beforeDestroy() {
document.removeEventListener('keydown', this.onKeydown);
},
methods: {
onKeydown(e) {
if (e.target.tagName == 'INPUT' || e.target.tagName == 'TEXTAREA') return;
if (e.which == 80 || e.which == 78) { // p or n
e.preventDefault();
2018-02-20 07:53:34 -06:00
(this as any).apis.post();
2018-02-12 04:59:24 -06:00
}
}
}
});
</script>
2018-05-31 02:44:11 -05:00
<style lang="stylus" scoped>
.mk-ui
2018-06-05 07:36:21 -05:00
display flex
flex-direction column
flex 1
2018-05-31 02:44:11 -05:00
> .header
@media (max-width 1000px)
display none
2018-06-05 07:36:21 -05:00
> .content
display flex
flex-direction column
flex 1
2018-06-06 12:06:32 -05:00
overflow hidden
2018-05-31 02:44:11 -05:00
</style>