2018-06-05 15:18:08 -05:00
|
|
|
<template>
|
2019-02-20 09:13:46 -06:00
|
|
|
<x-notes ref="timeline" :make-promise="makePromise" @inited="() => $emit('loaded')"/>
|
2018-06-05 15:18:08 -05: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 16:13:57 -05:00
|
|
|
},
|
|
|
|
mediaOnly: {
|
|
|
|
type: Boolean,
|
|
|
|
required: false,
|
|
|
|
default: false
|
2018-06-05 15:18:08 -05:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
2019-02-17 18:17:55 -06:00
|
|
|
connection: null,
|
|
|
|
makePromise: cursor => this.$root.api('notes/user-list-timeline', {
|
|
|
|
listId: this.list.id,
|
|
|
|
limit: fetchLimit + 1,
|
|
|
|
untilId: cursor ? cursor : undefined,
|
|
|
|
withFiles: this.mediaOnly,
|
|
|
|
includeMyRenotes: this.$store.state.settings.showMyRenotes,
|
|
|
|
includeRenotedMyNotes: this.$store.state.settings.showRenotedMyNotes,
|
|
|
|
includeLocalRenotes: this.$store.state.settings.showLocalRenotes
|
|
|
|
}).then(notes => {
|
|
|
|
if (notes.length == fetchLimit + 1) {
|
|
|
|
notes.pop();
|
|
|
|
return {
|
|
|
|
notes: notes,
|
2019-04-08 00:17:44 -05:00
|
|
|
more: true
|
2019-02-17 18:17:55 -06:00
|
|
|
};
|
|
|
|
} else {
|
|
|
|
return {
|
|
|
|
notes: notes,
|
2019-04-08 00:17:44 -05:00
|
|
|
more: false
|
2019-02-17 18:17:55 -06:00
|
|
|
};
|
|
|
|
}
|
|
|
|
})
|
2018-06-05 15:18:08 -05:00
|
|
|
};
|
|
|
|
},
|
|
|
|
|
2018-06-06 16:13:57 -05:00
|
|
|
watch: {
|
|
|
|
mediaOnly() {
|
2019-02-17 18:17:55 -06:00
|
|
|
this.$refs.timeline.reload();
|
2018-06-06 16:13:57 -05:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2018-06-05 15:18:08 -05:00
|
|
|
mounted() {
|
2018-10-08 15:11:42 -05:00
|
|
|
if (this.connection) this.connection.dispose();
|
2018-11-08 17:13:34 -06:00
|
|
|
this.connection = this.$root.stream.connectToChannel('userList', {
|
2018-10-08 15:11:42 -05:00
|
|
|
listId: this.list.id
|
|
|
|
});
|
2018-06-05 15:18:08 -05:00
|
|
|
this.connection.on('note', this.onNote);
|
|
|
|
this.connection.on('userAdded', this.onUserAdded);
|
|
|
|
this.connection.on('userRemoved', this.onUserRemoved);
|
|
|
|
},
|
|
|
|
|
|
|
|
beforeDestroy() {
|
2018-10-08 15:11:42 -05:00
|
|
|
this.connection.dispose();
|
2018-06-05 15:18:08 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
onNote(note) {
|
2018-09-05 05:32:46 -05:00
|
|
|
if (this.mediaOnly && note.files.length == 0) return;
|
2018-06-05 15:18:08 -05:00
|
|
|
(this.$refs.timeline as any).prepend(note);
|
|
|
|
},
|
2018-10-19 12:49:39 -05:00
|
|
|
|
2018-06-05 15:18:08 -05:00
|
|
|
onUserAdded() {
|
2019-02-17 18:17:55 -06:00
|
|
|
this.$refs.timeline.reload();
|
2018-06-05 15:18:08 -05:00
|
|
|
},
|
2018-10-19 12:49:39 -05:00
|
|
|
|
2018-06-05 15:18:08 -05:00
|
|
|
onUserRemoved() {
|
2019-02-17 18:17:55 -06:00
|
|
|
this.$refs.timeline.reload();
|
2018-10-19 12:49:39 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
focus() {
|
|
|
|
this.$refs.timeline.focus();
|
2018-10-21 02:18:02 -05:00
|
|
|
}
|
2018-06-05 15:18:08 -05:00
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|