misskey/src/client/app/mobile/views/components/timeline.vue

125 lines
2.9 KiB
Vue
Raw Normal View History

2018-02-14 04:24:49 +01:00
<template>
<div class="mk-timeline">
2018-02-14 05:35:51 +01:00
<mk-friends-maker v-if="alone"/>
2018-04-07 19:30:37 +02:00
<mk-notes :notes="notes">
2018-02-14 04:24:49 +01:00
<div class="init" v-if="fetching">
%fa:spinner .pulse%%i18n:common.loading%
</div>
2018-04-07 19:30:37 +02:00
<div class="empty" v-if="!fetching && notes.length == 0">
2018-02-14 04:24:49 +01:00
%fa:R comments%
2018-04-14 22:22:16 +02:00
%i18n:@empty%
2018-02-14 04:24:49 +01:00
</div>
2018-02-23 00:07:30 +01:00
<button v-if="!fetching && existMore" @click="more" :disabled="moreFetching" slot="tail">
2018-04-14 18:04:40 +02:00
<span v-if="!moreFetching">%i18n:@load-more%</span>
2018-02-23 00:07:30 +01:00
<span v-if="moreFetching">%i18n:common.loading%<mk-ellipsis/></span>
2018-02-14 04:24:49 +01:00
</button>
2018-04-07 19:30:37 +02:00
</mk-notes>
2018-02-14 04:24:49 +01:00
</div>
</template>
<script lang="ts">
import Vue from 'vue';
2018-02-23 00:07:30 +01:00
const limit = 10;
2018-02-14 04:24:49 +01:00
export default Vue.extend({
props: {
date: {
type: Date,
2018-04-14 22:22:16 +02:00
required: false,
default: null
2018-02-14 04:24:49 +01:00
}
},
data() {
return {
fetching: true,
moreFetching: false,
2018-04-07 19:30:37 +02:00
notes: [],
2018-02-23 00:07:30 +01:00
existMore: false,
2018-02-14 04:24:49 +01:00
connection: null,
2018-04-15 13:57:37 +02:00
connectionId: null,
2018-04-15 14:00:28 +02:00
isTop: true
2018-02-14 04:24:49 +01:00
};
},
computed: {
alone(): boolean {
2018-03-29 07:48:47 +02:00
return (this as any).os.i.followingCount == 0;
2018-02-14 04:24:49 +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-14 04:24:49 +01:00
2018-04-07 19:30:37 +02:00
this.connection.on('note', this.onNote);
2018-02-14 04:24:49 +01:00
this.connection.on('follow', this.onChangeFollowing);
this.connection.on('unfollow', this.onChangeFollowing);
2018-04-15 13:57:37 +02:00
window.addEventListener('scroll', this.onScroll);
2018-02-14 04:24:49 +01:00
this.fetch();
},
beforeDestroy() {
2018-04-07 19:30:37 +02:00
this.connection.off('note', this.onNote);
2018-02-14 04:24:49 +01:00
this.connection.off('follow', this.onChangeFollowing);
this.connection.off('unfollow', this.onChangeFollowing);
2018-04-16 13:44:55 +02:00
this.connection.off('unfollow', this.onChangeFollowing);
2018-02-18 04:35:18 +01:00
(this as any).os.stream.dispose(this.connectionId);
2018-04-16 13:44:55 +02:00
window.removeEventListener('scroll', this.onScroll);
2018-02-14 04:24:49 +01:00
},
methods: {
fetch(cb?) {
this.fetching = true;
2018-04-07 19:30:37 +02:00
(this as any).api('notes/timeline', {
2018-02-23 00:07:30 +01:00
limit: limit + 1,
2018-03-29 07:48:47 +02:00
untilDate: this.date ? (this.date as any).getTime() : undefined
2018-04-07 19:30:37 +02:00
}).then(notes => {
if (notes.length == limit + 1) {
notes.pop();
2018-02-23 00:07:30 +01:00
this.existMore = true;
}
2018-04-07 19:30:37 +02:00
this.notes = notes;
2018-02-19 15:37:09 +01:00
this.fetching = false;
2018-02-22 09:38:48 +01:00
this.$emit('loaded');
2018-02-14 04:24:49 +01:00
if (cb) cb();
});
},
more() {
this.moreFetching = true;
2018-04-07 19:30:37 +02:00
(this as any).api('notes/timeline', {
2018-02-23 00:07:30 +01:00
limit: limit + 1,
2018-04-07 19:30:37 +02:00
untilId: this.notes[this.notes.length - 1].id
}).then(notes => {
if (notes.length == limit + 1) {
notes.pop();
2018-02-23 00:07:30 +01:00
this.existMore = true;
} else {
this.existMore = false;
}
2018-04-07 19:30:37 +02:00
this.notes = this.notes.concat(notes);
2018-02-14 04:24:49 +01:00
this.moreFetching = false;
});
},
2018-04-07 19:30:37 +02:00
onNote(note) {
2018-04-15 16:50:00 +02:00
this.isTop = window.scrollY < 100;
2018-02-14 04:24:49 +01:00
},
onChangeFollowing() {
this.fetch();
2018-04-15 13:57:37 +02:00
},
onScroll() {
if ((this as any).os.i.clientSettings.fetchOnScroll !== false) {
const current = window.scrollY + window.innerHeight;
if (current > document.body.offsetHeight - 8) this.more();
}
if (window.scrollY > 100) this.isTop = false;
else this.isTop = true;
2018-02-14 04:24:49 +01:00
}
}
});
</script>
2018-02-22 09:51:08 +01:00
<style lang="stylus" scoped>
.mk-friends-maker
margin-bottom 8px
</style>