Sharkey/src/client/app/desktop/views/deck/deck.list-tl.vue

137 lines
2.7 KiB
Vue
Raw Normal View History

2018-06-05 20:18:08 +00:00
<template>
2018-10-21 07:18:02 +00:00
<x-notes ref="timeline" :more="existMore ? more : null" :media-view="mediaView"/>
2018-06-05 20:18:08 +00:00
</template>
<script lang="ts">
import Vue from 'vue';
import XNotes from './deck.notes.vue';
const fetchLimit = 10;
export default Vue.extend({
components: {
XNotes
},
props: {
list: {
type: Object,
required: true
2018-06-06 21:13:57 +00:00
},
mediaOnly: {
type: Boolean,
required: false,
default: false
2018-06-09 16:01:28 +00:00
},
mediaView: {
type: Boolean,
required: false,
default: false
2018-06-05 20:18:08 +00:00
}
},
data() {
return {
fetching: true,
moreFetching: false,
existMore: false,
connection: null
};
},
2018-06-06 21:13:57 +00:00
watch: {
mediaOnly() {
this.fetch();
}
},
2018-06-05 20:18:08 +00:00
mounted() {
2018-10-08 20:11:42 +00:00
if (this.connection) this.connection.dispose();
2018-11-08 23:13:34 +00:00
this.connection = this.$root.stream.connectToChannel('userList', {
2018-10-08 20:11:42 +00:00
listId: this.list.id
});
2018-06-05 20:18:08 +00:00
this.connection.on('note', this.onNote);
this.connection.on('userAdded', this.onUserAdded);
this.connection.on('userRemoved', this.onUserRemoved);
this.fetch();
},
beforeDestroy() {
2018-10-08 20:11:42 +00:00
this.connection.dispose();
2018-06-05 20:18:08 +00:00
},
methods: {
fetch() {
this.fetching = true;
(this.$refs.timeline as any).init(() => new Promise((res, rej) => {
2018-11-08 23:13:34 +00:00
this.$root.api('notes/user-list-timeline', {
2018-06-05 20:18:08 +00:00
listId: this.list.id,
limit: fetchLimit + 1,
2018-09-05 10:32:46 +00:00
withFiles: this.mediaOnly,
2018-06-05 20:18:08 +00:00
includeMyRenotes: this.$store.state.settings.showMyRenotes,
2018-08-16 14:59:22 +00:00
includeRenotedMyNotes: this.$store.state.settings.showRenotedMyNotes,
includeLocalRenotes: this.$store.state.settings.showLocalRenotes
2018-06-05 20:18:08 +00:00
}).then(notes => {
if (notes.length == fetchLimit + 1) {
notes.pop();
this.existMore = true;
}
res(notes);
this.fetching = false;
this.$emit('loaded');
}, rej);
}));
},
2018-06-05 20:18:08 +00:00
more() {
this.moreFetching = true;
2018-11-08 23:13:34 +00:00
const promise = this.$root.api('notes/user-list-timeline', {
2018-06-05 20:18:08 +00:00
listId: this.list.id,
limit: fetchLimit + 1,
untilId: (this.$refs.timeline as any).tail().id,
2018-09-05 10:32:46 +00:00
withFiles: this.mediaOnly,
2018-06-05 20:18:08 +00:00
includeMyRenotes: this.$store.state.settings.showMyRenotes,
2018-08-16 14:59:22 +00:00
includeRenotedMyNotes: this.$store.state.settings.showRenotedMyNotes,
includeLocalRenotes: this.$store.state.settings.showLocalRenotes
2018-06-05 20:18:08 +00:00
});
promise.then(notes => {
if (notes.length == fetchLimit + 1) {
notes.pop();
} else {
this.existMore = false;
}
for (const n of notes) {
(this.$refs.timeline as any).append(n);
}
2018-06-05 20:18:08 +00:00
this.moreFetching = false;
});
return promise;
},
2018-06-05 20:18:08 +00:00
onNote(note) {
2018-09-05 10:32:46 +00:00
if (this.mediaOnly && note.files.length == 0) return;
2018-06-06 21:13:57 +00:00
2018-06-05 20:18:08 +00:00
// Prepend a note
(this.$refs.timeline as any).prepend(note);
},
2018-06-05 20:18:08 +00:00
onUserAdded() {
this.fetch();
},
2018-06-05 20:18:08 +00:00
onUserRemoved() {
this.fetch();
},
focus() {
this.$refs.timeline.focus();
2018-10-21 07:18:02 +00:00
}
2018-06-05 20:18:08 +00:00
}
});
</script>