118 lines
2.4 KiB
Vue
118 lines
2.4 KiB
Vue
<template>
|
|
<div>
|
|
<mk-notes ref="timeline" :more="existMore ? more : null"/>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import Vue from 'vue';
|
|
|
|
const fetchLimit = 10;
|
|
|
|
export default Vue.extend({
|
|
props: ['list'],
|
|
|
|
data() {
|
|
return {
|
|
fetching: true,
|
|
moreFetching: false,
|
|
existMore: false,
|
|
connection: null
|
|
};
|
|
},
|
|
|
|
computed: {
|
|
canFetchMore(): boolean {
|
|
return !this.moreFetching && !this.fetching && this.existMore;
|
|
}
|
|
},
|
|
|
|
watch: {
|
|
$route: 'init'
|
|
},
|
|
|
|
mounted() {
|
|
this.init();
|
|
},
|
|
|
|
beforeDestroy() {
|
|
this.connection.dispose();
|
|
},
|
|
|
|
methods: {
|
|
init() {
|
|
if (this.connection) this.connection.dispose();
|
|
this.connection = this.$root.stream.connectToChannel('userList', {
|
|
listId: this.list.id
|
|
});
|
|
this.connection.on('note', this.onNote);
|
|
this.connection.on('userAdded', this.onUserAdded);
|
|
this.connection.on('userRemoved', this.onUserRemoved);
|
|
|
|
this.fetch();
|
|
},
|
|
|
|
fetch() {
|
|
this.fetching = true;
|
|
|
|
(this.$refs.timeline as any).init(() => new Promise((res, rej) => {
|
|
this.$root.api('notes/user-list-timeline', {
|
|
listId: this.list.id,
|
|
limit: fetchLimit + 1,
|
|
includeMyRenotes: this.$store.state.settings.showMyRenotes,
|
|
includeRenotedMyNotes: this.$store.state.settings.showRenotedMyNotes,
|
|
includeLocalRenotes: this.$store.state.settings.showLocalRenotes
|
|
}).then(notes => {
|
|
if (notes.length == fetchLimit + 1) {
|
|
notes.pop();
|
|
this.existMore = true;
|
|
}
|
|
res(notes);
|
|
this.fetching = false;
|
|
this.$emit('loaded');
|
|
}, rej);
|
|
}));
|
|
},
|
|
|
|
more() {
|
|
if (!this.canFetchMore) return;
|
|
|
|
this.moreFetching = true;
|
|
|
|
const promise = this.$root.api('notes/user-list-timeline', {
|
|
listId: this.list.id,
|
|
limit: fetchLimit + 1,
|
|
untilId: (this.$refs.timeline as any).tail().id,
|
|
includeMyRenotes: this.$store.state.settings.showMyRenotes,
|
|
includeRenotedMyNotes: this.$store.state.settings.showRenotedMyNotes,
|
|
includeLocalRenotes: this.$store.state.settings.showLocalRenotes
|
|
});
|
|
|
|
promise.then(notes => {
|
|
if (notes.length == fetchLimit + 1) {
|
|
notes.pop();
|
|
} else {
|
|
this.existMore = false;
|
|
}
|
|
notes.forEach(n => (this.$refs.timeline as any).append(n));
|
|
this.moreFetching = false;
|
|
});
|
|
|
|
return promise;
|
|
},
|
|
|
|
onNote(note) {
|
|
// Prepend a note
|
|
(this.$refs.timeline as any).prepend(note);
|
|
},
|
|
|
|
onUserAdded() {
|
|
this.fetch();
|
|
},
|
|
|
|
onUserRemoved() {
|
|
this.fetch();
|
|
}
|
|
}
|
|
});
|
|
</script>
|