2018-02-10 06:56:33 +01:00
|
|
|
<template>
|
2018-02-15 09:50:19 +01:00
|
|
|
<mk-ui>
|
2018-02-20 17:12:18 +01:00
|
|
|
<mk-home :mode="mode" @loaded="loaded"/>
|
2018-02-15 09:50:19 +01:00
|
|
|
</mk-ui>
|
2018-02-10 06:56:33 +01:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
2018-02-15 21:24:23 +01:00
|
|
|
import Progress from '../../../common/scripts/loading';
|
2018-04-02 06:41:25 +02:00
|
|
|
import getPostSummary from '../../../../../renderers/get-post-summary';
|
2018-02-15 21:24:23 +01:00
|
|
|
|
2018-02-10 06:56:33 +01:00
|
|
|
export default Vue.extend({
|
|
|
|
props: {
|
|
|
|
mode: {
|
|
|
|
type: String,
|
|
|
|
default: 'timeline'
|
|
|
|
}
|
|
|
|
},
|
2018-02-15 21:24:23 +01:00
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
connection: null,
|
|
|
|
connectionId: null,
|
|
|
|
unreadCount: 0
|
|
|
|
};
|
|
|
|
},
|
|
|
|
mounted() {
|
|
|
|
document.title = 'Misskey';
|
|
|
|
|
2018-02-18 04:35:18 +01:00
|
|
|
this.connection = (this as any).os.stream.getConnection();
|
|
|
|
this.connectionId = (this as any).os.stream.use();
|
2018-02-15 21:24:23 +01:00
|
|
|
|
|
|
|
this.connection.on('post', this.onStreamPost);
|
|
|
|
document.addEventListener('visibilitychange', this.onVisibilitychange, false);
|
|
|
|
|
|
|
|
Progress.start();
|
|
|
|
},
|
|
|
|
beforeDestroy() {
|
|
|
|
this.connection.off('post', this.onStreamPost);
|
2018-02-18 04:35:18 +01:00
|
|
|
(this as any).os.stream.dispose(this.connectionId);
|
2018-02-15 21:24:23 +01:00
|
|
|
document.removeEventListener('visibilitychange', this.onVisibilitychange);
|
|
|
|
},
|
|
|
|
methods: {
|
2018-02-20 17:12:18 +01:00
|
|
|
loaded() {
|
|
|
|
Progress.done();
|
|
|
|
},
|
|
|
|
|
2018-02-15 21:24:23 +01:00
|
|
|
onStreamPost(post) {
|
2018-03-29 07:48:47 +02:00
|
|
|
if (document.hidden && post.userId != (this as any).os.i.id) {
|
2018-02-15 21:24:23 +01:00
|
|
|
this.unreadCount++;
|
|
|
|
document.title = `(${this.unreadCount}) ${getPostSummary(post)}`;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
onVisibilitychange() {
|
|
|
|
if (!document.hidden) {
|
|
|
|
this.unreadCount = 0;
|
|
|
|
document.title = 'Misskey';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-02-10 06:56:33 +01:00
|
|
|
});
|
|
|
|
</script>
|