2018-02-15 09:50:19 +01:00
|
|
|
<template>
|
2018-02-21 19:11:24 +01:00
|
|
|
<mk-ui :func="fn">
|
2018-02-15 09:50:19 +01:00
|
|
|
<span slot="header">%fa:home%%i18n:mobile.tags.mk-home.home%</span>
|
2018-02-21 19:11:24 +01:00
|
|
|
<template slot="funcIcon">%fa:pencil-alt%</template>
|
2018-02-15 09:50:19 +01:00
|
|
|
<mk-home @loaded="onHomeLoaded"/>
|
|
|
|
</mk-ui>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
|
|
|
import Progress from '../../../common/scripts/loading';
|
|
|
|
import getPostSummary from '../../../../../common/get-post-summary';
|
|
|
|
|
|
|
|
export default Vue.extend({
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
connection: null,
|
|
|
|
connectionId: null,
|
|
|
|
unreadCount: 0
|
|
|
|
};
|
|
|
|
},
|
|
|
|
mounted() {
|
|
|
|
document.title = 'Misskey';
|
|
|
|
document.documentElement.style.background = '#313a42';
|
|
|
|
|
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 09:50:19 +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 09:50:19 +01:00
|
|
|
document.removeEventListener('visibilitychange', this.onVisibilitychange);
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
fn() {
|
2018-02-21 19:11:24 +01:00
|
|
|
(this as any).apis.post();
|
2018-02-15 09:50:19 +01:00
|
|
|
},
|
|
|
|
onHomeLoaded() {
|
|
|
|
Progress.done();
|
|
|
|
},
|
|
|
|
onStreamPost(post) {
|
2018-02-18 04:35:18 +01:00
|
|
|
if (document.hidden && post.user_id !== (this as any).os.i.id) {
|
2018-02-15 09:50:19 +01:00
|
|
|
this.unreadCount++;
|
|
|
|
document.title = `(${this.unreadCount}) ${getPostSummary(post)}`;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
onVisibilitychange() {
|
|
|
|
if (!document.hidden) {
|
|
|
|
this.unreadCount = 0;
|
|
|
|
document.title = 'Misskey';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|