Sharkey/src/web/app/desktop/views/components/timeline.vue

128 lines
2.8 KiB
Vue
Raw Normal View History

2018-02-11 09:52:37 +02:00
<template>
2018-02-13 01:31:03 +02:00
<div class="mk-timeline">
2018-02-13 02:12:54 +02:00
<mk-following-setuper v-if="alone"/>
<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 16:26:35 +02:00
</div>
2018-02-11 09:52:37 +02:00
</template>
2018-02-11 10:04:03 +02:00
<script lang="ts">
import Vue from 'vue';
2018-02-11 09:52:37 +02:00
2018-02-11 10:04:03 +02:00
export default Vue.extend({
2018-02-13 01:24:44 +02:00
props: {
2018-02-13 02:12:54 +02:00
date: {
type: Date,
required: false
2018-02-13 01:24:44 +02:00
}
},
2018-02-13 02:12:54 +02:00
data() {
return {
fetching: true,
moreFetching: false,
posts: [],
connection: null,
connectionId: null
};
},
2018-02-11 10:04:03 +02:00
computed: {
2018-02-13 02:12:54 +02:00
alone(): boolean {
2018-02-18 05:35:18 +02:00
return (this as any).os.i.following_count == 0;
2018-02-11 10:04:03 +02:00
}
},
2018-02-13 02:12:54 +02:00
mounted() {
2018-02-18 05:35:18 +02:00
this.connection = (this as any).os.stream.getConnection();
this.connectionId = (this as any).os.stream.use();
2018-02-13 02:12:54 +02: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 05:35:18 +02:00
(this as any).os.stream.dispose(this.connectionId);
2018-02-13 02:12:54 +02:00
document.removeEventListener('keydown', this.onKeydown);
window.removeEventListener('scroll', this.onScroll);
},
2018-02-11 10:04:03 +02:00
methods: {
2018-02-13 02:12:54 +02:00
fetch(cb?) {
this.fetching = true;
2018-02-18 05:35:18 +02:00
(this as any).api('posts/timeline', {
2018-02-13 02:12:54 +02:00
until_date: this.date ? (this.date as any).getTime() : undefined
}).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 05:35:18 +02:00
(this as any).api('posts/timeline', {
2018-02-13 02:12:54 +02: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-11 10:04:03 +02:00
}
}
2018-02-11 09:52:37 +02:00
});
</script>
<style lang="stylus" scoped>
.mk-timeline
2018-02-13 02:12:54 +02:00
background #fff
border solid 1px rgba(0, 0, 0, 0.075)
border-radius 6px
2018-02-11 09:52:37 +02:00
2018-02-16 20:01:00 +02:00
> .mk-following-setuper
2018-02-13 02:12:54 +02:00
border-bottom solid 1px #eee
2018-02-11 09:52:37 +02:00
2018-02-13 02:12:54 +02:00
> .loading
padding 64px 0
2018-02-11 09:52:37 +02:00
2018-02-13 02:12:54 +02:00
> .empty
display block
margin 0 auto
padding 32px
max-width 400px
2018-02-11 09:52:37 +02:00
text-align center
2018-02-13 02:12:54 +02:00
color #999
> [data-fa]
display block
margin-bottom 16px
font-size 3em
color #ccc
2018-02-11 09:52:37 +02:00
</style>