Sharkey/src/client/app/mobile/views/components/user-list-timeline.vue

80 lines
1.6 KiB
Vue
Raw Normal View History

2018-04-26 08:38:37 +03:00
<template>
<div>
<mk-notes ref="timeline" :make-promise="makePromise" @inited="() => $emit('loaded')"/>
2018-04-26 08:38:37 +03:00
</div>
</template>
<script lang="ts">
import Vue from 'vue';
const fetchLimit = 10;
export default Vue.extend({
props: ['list'],
2018-05-26 17:37:40 +03:00
2018-04-26 08:38:37 +03:00
data() {
return {
connection: null,
makePromise: cursor => this.$root.api('notes/user-list-timeline', {
listId: this.list.id,
limit: fetchLimit + 1,
untilId: cursor ? cursor : undefined,
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,
cursor: notes[notes.length - 1].id
};
} else {
return {
notes: notes,
cursor: null
};
}
})
2018-04-26 08:38:37 +03:00
};
},
2018-05-26 17:37:40 +03:00
2018-04-26 08:38:37 +03:00
watch: {
$route: 'init'
},
2018-05-26 17:37:40 +03:00
2018-04-26 08:38:37 +03:00
mounted() {
this.init();
},
2018-05-26 17:37:40 +03:00
2018-04-26 08:38:37 +03:00
beforeDestroy() {
2018-10-08 23:11:42 +03:00
this.connection.dispose();
2018-04-26 08:38:37 +03:00
},
2018-05-26 17:37:40 +03:00
2018-04-26 08:38:37 +03:00
methods: {
init() {
2018-10-08 23:11:42 +03:00
if (this.connection) this.connection.dispose();
2018-11-09 01:13:34 +02:00
this.connection = this.$root.stream.connectToChannel('userList', {
2018-10-08 23:11:42 +03:00
listId: this.list.id
});
2018-04-26 08:38:37 +03:00
this.connection.on('note', this.onNote);
this.connection.on('userAdded', this.onUserAdded);
this.connection.on('userRemoved', this.onUserRemoved);
},
2018-05-26 17:37:40 +03:00
2018-04-26 08:38:37 +03:00
onNote(note) {
// Prepend a note
(this.$refs.timeline as any).prepend(note);
},
2018-05-26 17:37:40 +03:00
2018-04-26 08:38:37 +03:00
onUserAdded() {
(this.$refs.timeline as any).reload();
2018-04-26 08:38:37 +03:00
},
2018-05-26 17:37:40 +03:00
2018-04-26 08:38:37 +03:00
onUserRemoved() {
(this.$refs.timeline as any).reload();
2018-04-26 08:38:37 +03:00
}
}
});
</script>