2018-04-24 22:36:54 -05:00
|
|
|
<template>
|
2018-04-25 08:37:08 -05:00
|
|
|
<div>
|
2018-04-25 05:53:16 -05:00
|
|
|
<mk-notes ref="timeline" :more="existMore ? more : null"/>
|
2018-04-25 08:37:08 -05:00
|
|
|
</div>
|
2018-04-24 22:36:54 -05:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
2018-04-24 23:48:02 -05:00
|
|
|
import { UserListStream } from '../../../common/scripts/streaming/user-list';
|
2018-04-24 22:36:54 -05:00
|
|
|
|
|
|
|
const fetchLimit = 10;
|
|
|
|
|
|
|
|
export default Vue.extend({
|
|
|
|
props: ['list'],
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
fetching: true,
|
|
|
|
moreFetching: false,
|
|
|
|
existMore: false,
|
|
|
|
connection: null
|
|
|
|
};
|
|
|
|
},
|
|
|
|
watch: {
|
2018-04-25 05:53:16 -05:00
|
|
|
$route: 'init'
|
2018-04-24 22:36:54 -05:00
|
|
|
},
|
|
|
|
mounted() {
|
2018-04-25 05:53:16 -05:00
|
|
|
this.init();
|
2018-04-24 22:36:54 -05:00
|
|
|
},
|
|
|
|
beforeDestroy() {
|
|
|
|
this.connection.close();
|
|
|
|
},
|
|
|
|
methods: {
|
2018-04-25 05:53:16 -05:00
|
|
|
init() {
|
2018-04-24 23:48:02 -05:00
|
|
|
if (this.connection) this.connection.close();
|
|
|
|
this.connection = new UserListStream((this as any).os, (this as any).os.i, this.list.id);
|
|
|
|
this.connection.on('note', this.onNote);
|
|
|
|
this.connection.on('userAdded', this.onUserAdded);
|
|
|
|
this.connection.on('userRemoved', this.onUserRemoved);
|
|
|
|
|
2018-04-25 05:53:16 -05:00
|
|
|
this.fetch();
|
|
|
|
},
|
|
|
|
fetch() {
|
2018-04-24 22:36:54 -05:00
|
|
|
this.fetching = true;
|
|
|
|
|
2018-04-25 05:53:16 -05:00
|
|
|
(this.$refs.timeline as any).init(() => new Promise((res, rej) => {
|
|
|
|
(this as any).api('notes/user-list-timeline', {
|
|
|
|
listId: this.list.id,
|
|
|
|
limit: fetchLimit + 1,
|
2018-04-29 03:17:15 -05:00
|
|
|
includeMyRenotes: (this as any).clientSettings.showMyRenotes,
|
|
|
|
includeRenotedMyNotes: (this as any).clientSettings.showRenotedMyNotes
|
2018-04-25 05:53:16 -05:00
|
|
|
}).then(notes => {
|
|
|
|
if (notes.length == fetchLimit + 1) {
|
|
|
|
notes.pop();
|
|
|
|
this.existMore = true;
|
|
|
|
}
|
|
|
|
res(notes);
|
|
|
|
this.fetching = false;
|
|
|
|
this.$emit('loaded');
|
|
|
|
}, rej);
|
|
|
|
}));
|
2018-04-24 22:36:54 -05:00
|
|
|
},
|
|
|
|
more() {
|
|
|
|
this.moreFetching = true;
|
|
|
|
|
2018-05-26 09:53:22 -05:00
|
|
|
const promise = (this as any).api('notes/user-list-timeline', {
|
2018-04-25 05:53:16 -05:00
|
|
|
listId: this.list.id,
|
2018-04-24 22:36:54 -05:00
|
|
|
limit: fetchLimit + 1,
|
|
|
|
untilId: (this.$refs.timeline as any).tail().id,
|
2018-04-29 03:17:15 -05:00
|
|
|
includeMyRenotes: (this as any).clientSettings.showMyRenotes,
|
|
|
|
includeRenotedMyNotes: (this as any).clientSettings.showRenotedMyNotes
|
2018-05-26 09:53:22 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
promise.then(notes => {
|
2018-04-24 22:36:54 -05:00
|
|
|
if (notes.length == fetchLimit + 1) {
|
|
|
|
notes.pop();
|
|
|
|
} else {
|
|
|
|
this.existMore = false;
|
|
|
|
}
|
|
|
|
notes.forEach(n => (this.$refs.timeline as any).append(n));
|
|
|
|
this.moreFetching = false;
|
|
|
|
});
|
2018-05-26 09:53:22 -05:00
|
|
|
|
|
|
|
return promise;
|
2018-04-25 05:53:16 -05:00
|
|
|
},
|
|
|
|
onNote(note) {
|
|
|
|
// Prepend a note
|
|
|
|
(this.$refs.timeline as any).prepend(note);
|
|
|
|
},
|
|
|
|
onUserAdded() {
|
|
|
|
this.fetch();
|
|
|
|
},
|
|
|
|
onUserRemoved() {
|
|
|
|
this.fetch();
|
2018-04-26 00:38:37 -05:00
|
|
|
}
|
2018-04-24 22:36:54 -05:00
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|