2018-06-05 22:18:08 +02:00
|
|
|
<template>
|
2019-05-20 20:07:11 +02:00
|
|
|
<x-notes ref="timeline" :pagination="pagination" @inited="() => $emit('loaded')"/>
|
2018-06-05 22:18:08 +02:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
|
|
|
import XNotes from './deck.notes.vue';
|
|
|
|
|
|
|
|
export default Vue.extend({
|
|
|
|
components: {
|
|
|
|
XNotes
|
|
|
|
},
|
|
|
|
|
|
|
|
props: {
|
|
|
|
list: {
|
|
|
|
type: Object,
|
|
|
|
required: true
|
2018-06-06 23:13:57 +02:00
|
|
|
},
|
|
|
|
mediaOnly: {
|
|
|
|
type: Boolean,
|
|
|
|
required: false,
|
|
|
|
default: false
|
2018-06-05 22:18:08 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
2019-02-18 01:17:55 +01:00
|
|
|
connection: null,
|
2019-05-20 20:07:11 +02:00
|
|
|
pagination: {
|
|
|
|
endpoint: 'notes/user-list-timeline',
|
|
|
|
limit: 10,
|
|
|
|
params: init => ({
|
|
|
|
listId: this.list.id,
|
|
|
|
untilDate: init ? undefined : (this.date ? this.date.getTime() : undefined),
|
|
|
|
withFiles: this.mediaOnly,
|
|
|
|
includeMyRenotes: this.$store.state.settings.showMyRenotes,
|
|
|
|
includeRenotedMyNotes: this.$store.state.settings.showRenotedMyNotes,
|
|
|
|
includeLocalRenotes: this.$store.state.settings.showLocalRenotes
|
|
|
|
})
|
|
|
|
}
|
2018-06-05 22:18:08 +02:00
|
|
|
};
|
|
|
|
},
|
|
|
|
|
2018-06-06 23:13:57 +02:00
|
|
|
watch: {
|
|
|
|
mediaOnly() {
|
2019-02-18 01:17:55 +01:00
|
|
|
this.$refs.timeline.reload();
|
2018-06-06 23:13:57 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2018-06-05 22:18:08 +02:00
|
|
|
mounted() {
|
2018-10-08 22:11:42 +02:00
|
|
|
if (this.connection) this.connection.dispose();
|
2018-11-09 00:13:34 +01:00
|
|
|
this.connection = this.$root.stream.connectToChannel('userList', {
|
2018-10-08 22:11:42 +02:00
|
|
|
listId: this.list.id
|
|
|
|
});
|
2018-06-05 22:18:08 +02:00
|
|
|
this.connection.on('note', this.onNote);
|
|
|
|
this.connection.on('userAdded', this.onUserAdded);
|
|
|
|
this.connection.on('userRemoved', this.onUserRemoved);
|
|
|
|
},
|
|
|
|
|
|
|
|
beforeDestroy() {
|
2018-10-08 22:11:42 +02:00
|
|
|
this.connection.dispose();
|
2018-06-05 22:18:08 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
onNote(note) {
|
2018-09-05 12:32:46 +02:00
|
|
|
if (this.mediaOnly && note.files.length == 0) return;
|
2018-06-05 22:18:08 +02:00
|
|
|
(this.$refs.timeline as any).prepend(note);
|
|
|
|
},
|
2018-10-19 19:49:39 +02:00
|
|
|
|
2018-06-05 22:18:08 +02:00
|
|
|
onUserAdded() {
|
2019-02-18 01:17:55 +01:00
|
|
|
this.$refs.timeline.reload();
|
2018-06-05 22:18:08 +02:00
|
|
|
},
|
2018-10-19 19:49:39 +02:00
|
|
|
|
2018-06-05 22:18:08 +02:00
|
|
|
onUserRemoved() {
|
2019-02-18 01:17:55 +01:00
|
|
|
this.$refs.timeline.reload();
|
2018-10-19 19:49:39 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
focus() {
|
|
|
|
this.$refs.timeline.focus();
|
2018-10-21 09:18:02 +02:00
|
|
|
}
|
2018-06-05 22:18:08 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|