2018-09-16 09:15:02 -05:00
|
|
|
<template>
|
2019-05-20 13:07:11 -05:00
|
|
|
<x-notes ref="timeline" :pagination="pagination" @inited="() => $emit('loaded')"/>
|
2018-09-16 09:15:02 -05:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
|
|
|
import XNotes from './deck.notes.vue';
|
|
|
|
|
|
|
|
export default Vue.extend({
|
|
|
|
components: {
|
|
|
|
XNotes
|
|
|
|
},
|
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
2019-02-17 18:17:55 -06:00
|
|
|
connection: null,
|
2019-05-20 13:07:11 -05:00
|
|
|
pagination: {
|
|
|
|
endpoint: 'notes/mentions',
|
|
|
|
limit: 10,
|
|
|
|
params: init => ({
|
|
|
|
untilDate: init ? undefined : (this.date ? this.date.getTime() : undefined),
|
|
|
|
includeMyRenotes: this.$store.state.settings.showMyRenotes,
|
|
|
|
includeRenotedMyNotes: this.$store.state.settings.showRenotedMyNotes,
|
|
|
|
includeLocalRenotes: this.$store.state.settings.showLocalRenotes
|
|
|
|
})
|
|
|
|
}
|
2018-09-16 09:15:02 -05:00
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
mounted() {
|
2018-11-08 17:13:34 -06:00
|
|
|
this.connection = this.$root.stream.useSharedConnection('main');
|
2018-09-16 09:15:02 -05:00
|
|
|
this.connection.on('mention', this.onNote);
|
|
|
|
},
|
|
|
|
|
|
|
|
beforeDestroy() {
|
2018-10-06 21:06:17 -05:00
|
|
|
this.connection.dispose();
|
2018-09-16 09:15:02 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
onNote(note) {
|
|
|
|
(this.$refs.timeline as any).prepend(note);
|
2018-10-19 12:49:39 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
focus() {
|
|
|
|
this.$refs.timeline.focus();
|
2018-10-21 02:18:02 -05:00
|
|
|
}
|
2018-09-16 09:15:02 -05:00
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|