Sharkey/src/client/app/desktop/views/components/ui.vue

54 lines
943 B
Vue
Raw Normal View History

2018-02-10 07:56:33 +02:00
<template>
2018-05-31 10:44:11 +03:00
<div class="mk-ui">
<x-header class="header"/>
2018-02-12 12:59:24 +02:00
<div class="content">
<slot></slot>
</div>
2018-05-27 07:49:09 +03:00
<mk-stream-indicator v-if="$store.getters.isSignedIn"/>
2018-02-10 07:56:33 +02:00
</div>
</template>
2018-02-12 12:59:24 +02:00
<script lang="ts">
import Vue from 'vue';
2018-02-20 15:53:34 +02:00
import XHeader from './ui.header.vue';
2018-02-12 12:59:24 +02:00
export default Vue.extend({
2018-02-20 15:53:34 +02:00
components: {
2018-02-20 18:39:51 +02:00
XHeader
2018-02-20 15:53:34 +02:00
},
2018-02-12 12:59:24 +02: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 15:53:34 +02:00
(this as any).apis.post();
2018-02-12 12:59:24 +02:00
}
}
}
});
</script>
2018-05-31 10:44:11 +03:00
<style lang="stylus" scoped>
.mk-ui
2018-06-05 15:36:21 +03:00
display flex
flex-direction column
flex 1
2018-05-31 10:44:11 +03:00
> .header
@media (max-width 1000px)
display none
2018-06-05 15:36:21 +03:00
> .content
display flex
flex-direction column
flex 1
2018-06-06 20:06:32 +03:00
overflow hidden
2018-05-31 10:44:11 +03:00
</style>