Sharkey/src/client/app/desktop/views/components/user-list-timeline.vue

94 lines
2.2 KiB
Vue
Raw Normal View History

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