summaryrefslogtreecommitdiff
path: root/src/web/app/mobile/views/components/ui.vue
blob: aa5e2457c0016a8fbca832b7dad97ac331fc241e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<template>
<div class="mk-ui">
	<mk-ui-header/>
	<mk-ui-nav :is-open="isDrawerOpening"/>
	<div class="content">
		<slot></slot>
	</div>
	<mk-stream-indicator v-if="$root.$data.os.isSignedIn"/>
</div>
</template>

<script lang="ts">
import Vue from 'vue';
export default Vue.extend({
	data() {
		return {
			isDrawerOpening: false,
			connection: null,
			connectionId: null
		};
	},
	mounted() {
		if (this.$root.$data.os.isSignedIn) {
			this.connection = this.$root.$data.os.stream.getConnection();
			this.connectionId = this.$root.$data.os.stream.use();

			this.connection.on('notification', this.onNotification);
		}
	},
	beforeDestroy() {
		if (this.$root.$data.os.isSignedIn) {
			this.connection.off('notification', this.onNotification);
			this.$root.$data.os.stream.dispose(this.connectionId);
		}
	},
	methods: {
		onNotification(notification) {
			// TODO: ユーザーが画面を見てないと思われるとき(ブラウザやタブがアクティブじゃないなど)は送信しない
			this.connection.send({
				type: 'read_notification',
				id: notification.id
			});

			document.body.appendChild(new MkNotify({
				propsData: {
					notification
				}
			}).$mount().$el);
		}
	}
});
</script>

<style lang="stylus" scoped>
.mk-ui
	padding-top 48px
</style>