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

101 lines
2.3 KiB
Vue
Raw Normal View History

2018-04-25 05:36:54 +02:00
<template>
2018-04-25 15:37:08 +02:00
<div>
2018-04-25 12:53:16 +02:00
<mk-notes ref="timeline" :more="existMore ? more : null"/>
2018-04-25 15:37:08 +02:00
</div>
2018-04-25 05:36:54 +02:00
</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
};
},
watch: {
2018-04-25 12:53:16 +02:00
$route: 'init'
2018-04-25 05:36:54 +02:00
},
mounted() {
2018-04-25 12:53:16 +02:00
this.init();
2018-04-25 05:36:54 +02:00
},
beforeDestroy() {
2018-10-08 22:11:42 +02:00
this.connection.dispose();
2018-04-25 05:36:54 +02:00
},
methods: {
2018-04-25 12:53:16 +02:00
init() {
2018-10-08 22:11:42 +02:00
if (this.connection) this.connection.dispose();
this.connection = (this as any).os.stream.connectToChannel('userList', {
listId: this.list.id
});
2018-04-25 06:48:02 +02:00
this.connection.on('note', this.onNote);
this.connection.on('userAdded', this.onUserAdded);
this.connection.on('userRemoved', this.onUserRemoved);
2018-04-25 12:53:16 +02:00
this.fetch();
},
fetch() {
2018-04-25 05:36:54 +02:00
this.fetching = true;
2018-04-25 12:53:16 +02: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-05-27 06:49:09 +02:00
includeMyRenotes: this.$store.state.settings.showMyRenotes,
2018-08-16 16:59:22 +02:00
includeRenotedMyNotes: this.$store.state.settings.showRenotedMyNotes,
includeLocalRenotes: this.$store.state.settings.showLocalRenotes
2018-04-25 12:53:16 +02:00
}).then(notes => {
if (notes.length == fetchLimit + 1) {
notes.pop();
this.existMore = true;
}
res(notes);
this.fetching = false;
this.$emit('loaded');
}, rej);
}));
2018-04-25 05:36:54 +02:00
},
more() {
this.moreFetching = true;
2018-05-26 16:53:22 +02:00
const promise = (this as any).api('notes/user-list-timeline', {
2018-04-25 12:53:16 +02:00
listId: this.list.id,
2018-04-25 05:36:54 +02:00
limit: fetchLimit + 1,
untilId: (this.$refs.timeline as any).tail().id,
2018-05-27 06:49:09 +02:00
includeMyRenotes: this.$store.state.settings.showMyRenotes,
2018-08-16 16:59:22 +02:00
includeRenotedMyNotes: this.$store.state.settings.showRenotedMyNotes,
includeLocalRenotes: this.$store.state.settings.showLocalRenotes
2018-05-26 16:53:22 +02:00
});
promise.then(notes => {
2018-04-25 05:36:54 +02: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 16:53:22 +02:00
return promise;
2018-04-25 12:53:16 +02:00
},
onNote(note) {
// Prepend a note
(this.$refs.timeline as any).prepend(note);
},
onUserAdded() {
this.fetch();
},
onUserRemoved() {
this.fetch();
2018-04-26 07:38:37 +02:00
}
2018-04-25 05:36:54 +02:00
}
});
</script>