2018-02-11 08:52:37 +01:00
|
|
|
<template>
|
2018-02-13 00:31:03 +01:00
|
|
|
<div class="mk-timeline">
|
2018-02-19 11:46:31 +01:00
|
|
|
<mk-friends-maker v-if="alone"/>
|
2018-02-13 01:12:54 +01:00
|
|
|
<div class="loading" v-if="fetching">
|
|
|
|
<mk-ellipsis-icon/>
|
|
|
|
</div>
|
|
|
|
<p class="empty" v-if="posts.length == 0 && !fetching">%fa:R comments%自分の投稿や、自分がフォローしているユーザーの投稿が表示されます。</p>
|
|
|
|
<mk-posts :posts="posts" ref="timeline"/>
|
2018-02-11 15:26:35 +01:00
|
|
|
</div>
|
2018-02-11 08:52:37 +01:00
|
|
|
</template>
|
|
|
|
|
2018-02-11 09:04:03 +01:00
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
2018-02-11 08:52:37 +01:00
|
|
|
|
2018-02-11 09:04:03 +01:00
|
|
|
export default Vue.extend({
|
2018-02-13 01:12:54 +01:00
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
fetching: true,
|
|
|
|
moreFetching: false,
|
|
|
|
posts: [],
|
|
|
|
connection: null,
|
2018-02-19 10:26:20 +01:00
|
|
|
connectionId: null,
|
|
|
|
date: null
|
2018-02-13 01:12:54 +01:00
|
|
|
};
|
|
|
|
},
|
2018-02-11 09:04:03 +01:00
|
|
|
computed: {
|
2018-02-13 01:12:54 +01:00
|
|
|
alone(): boolean {
|
2018-02-18 04:35:18 +01:00
|
|
|
return (this as any).os.i.following_count == 0;
|
2018-02-11 09:04:03 +01:00
|
|
|
}
|
|
|
|
},
|
2018-02-13 01:12:54 +01:00
|
|
|
mounted() {
|
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-13 01:12:54 +01:00
|
|
|
|
|
|
|
this.connection.on('post', this.onPost);
|
|
|
|
this.connection.on('follow', this.onChangeFollowing);
|
|
|
|
this.connection.on('unfollow', this.onChangeFollowing);
|
|
|
|
|
|
|
|
document.addEventListener('keydown', this.onKeydown);
|
|
|
|
window.addEventListener('scroll', this.onScroll);
|
|
|
|
|
|
|
|
this.fetch();
|
|
|
|
},
|
|
|
|
beforeDestroy() {
|
|
|
|
this.connection.off('post', this.onPost);
|
|
|
|
this.connection.off('follow', this.onChangeFollowing);
|
|
|
|
this.connection.off('unfollow', this.onChangeFollowing);
|
2018-02-18 04:35:18 +01:00
|
|
|
(this as any).os.stream.dispose(this.connectionId);
|
2018-02-13 01:12:54 +01:00
|
|
|
|
|
|
|
document.removeEventListener('keydown', this.onKeydown);
|
|
|
|
window.removeEventListener('scroll', this.onScroll);
|
|
|
|
},
|
2018-02-11 09:04:03 +01:00
|
|
|
methods: {
|
2018-02-13 01:12:54 +01:00
|
|
|
fetch(cb?) {
|
|
|
|
this.fetching = true;
|
|
|
|
|
2018-02-18 04:35:18 +01:00
|
|
|
(this as any).api('posts/timeline', {
|
2018-02-19 10:26:20 +01:00
|
|
|
until_date: this.date ? this.date.getTime() : undefined
|
2018-02-13 01:12:54 +01:00
|
|
|
}).then(posts => {
|
|
|
|
this.fetching = false;
|
|
|
|
this.posts = posts;
|
|
|
|
if (cb) cb();
|
|
|
|
});
|
|
|
|
},
|
|
|
|
more() {
|
|
|
|
if (this.moreFetching || this.fetching || this.posts.length == 0) return;
|
|
|
|
this.moreFetching = true;
|
2018-02-18 04:35:18 +01:00
|
|
|
(this as any).api('posts/timeline', {
|
2018-02-13 01:12:54 +01:00
|
|
|
until_id: this.posts[this.posts.length - 1].id
|
|
|
|
}).then(posts => {
|
|
|
|
this.moreFetching = false;
|
|
|
|
this.posts.unshift(posts);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
onPost(post) {
|
|
|
|
this.posts.unshift(post);
|
|
|
|
},
|
|
|
|
onChangeFollowing() {
|
|
|
|
this.fetch();
|
|
|
|
},
|
|
|
|
onScroll() {
|
|
|
|
const current = window.scrollY + window.innerHeight;
|
|
|
|
if (current > document.body.offsetHeight - 8) this.more();
|
|
|
|
},
|
|
|
|
onKeydown(e) {
|
|
|
|
if (e.target.tagName != 'INPUT' && e.target.tagName != 'TEXTAREA') {
|
|
|
|
if (e.which == 84) { // t
|
|
|
|
(this.$refs.timeline as any).focus();
|
|
|
|
}
|
|
|
|
}
|
2018-02-19 10:26:20 +01:00
|
|
|
},
|
|
|
|
warp(date) {
|
|
|
|
this.date = date;
|
|
|
|
this.fetch();
|
2018-02-11 09:04:03 +01:00
|
|
|
}
|
|
|
|
}
|
2018-02-11 08:52:37 +01:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
|
|
|
.mk-timeline
|
2018-02-13 01:12:54 +01:00
|
|
|
background #fff
|
|
|
|
border solid 1px rgba(0, 0, 0, 0.075)
|
|
|
|
border-radius 6px
|
2018-02-11 08:52:37 +01:00
|
|
|
|
2018-02-16 19:01:00 +01:00
|
|
|
> .mk-following-setuper
|
2018-02-13 01:12:54 +01:00
|
|
|
border-bottom solid 1px #eee
|
2018-02-11 08:52:37 +01:00
|
|
|
|
2018-02-13 01:12:54 +01:00
|
|
|
> .loading
|
|
|
|
padding 64px 0
|
2018-02-11 08:52:37 +01:00
|
|
|
|
2018-02-13 01:12:54 +01:00
|
|
|
> .empty
|
|
|
|
display block
|
|
|
|
margin 0 auto
|
|
|
|
padding 32px
|
|
|
|
max-width 400px
|
2018-02-11 08:52:37 +01:00
|
|
|
text-align center
|
2018-02-13 01:12:54 +01:00
|
|
|
color #999
|
|
|
|
|
|
|
|
> [data-fa]
|
|
|
|
display block
|
|
|
|
margin-bottom 16px
|
|
|
|
font-size 3em
|
|
|
|
color #ccc
|
2018-02-11 08:52:37 +01:00
|
|
|
|
|
|
|
</style>
|