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

77 lines
1.6 KiB
Vue
Raw Normal View History

2018-04-26 05:38:37 +00:00
<template>
2019-05-20 18:07:11 +00:00
<mk-notes ref="timeline" :pagination="pagination" @inited="() => $emit('loaded')"/>
2018-04-26 05:38:37 +00:00
</template>
<script lang="ts">
import Vue from 'vue';
export default Vue.extend({
props: ['list'],
2018-05-26 14:37:40 +00:00
2018-04-26 05:38:37 +00:00
data() {
return {
connection: null,
2019-04-18 13:00:11 +00:00
date: null,
2019-05-20 18:07:11 +00:00
pagination: {
endpoint: 'notes/user-list-timeline',
limit: 10,
params: init => ({
listId: this.list.id,
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-04-26 05:38:37 +00:00
};
},
2018-05-26 14:37:40 +00:00
2018-04-26 05:38:37 +00:00
watch: {
$route: 'init'
},
2018-05-26 14:37:40 +00:00
2018-04-26 05:38:37 +00:00
mounted() {
this.init();
2019-04-18 13:00:11 +00:00
this.$root.$on('warp', this.warp);
this.$once('hook:beforeDestroy', () => {
this.$root.$off('warp', this.warp);
});
2018-04-26 05:38:37 +00:00
},
2018-05-26 14:37:40 +00:00
2018-04-26 05:38:37 +00:00
beforeDestroy() {
2018-10-08 20:11:42 +00:00
this.connection.dispose();
2018-04-26 05:38:37 +00:00
},
2018-05-26 14:37:40 +00:00
2018-04-26 05:38:37 +00:00
methods: {
init() {
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-04-26 05:38:37 +00:00
this.connection.on('note', this.onNote);
this.connection.on('userAdded', this.onUserAdded);
this.connection.on('userRemoved', this.onUserRemoved);
},
2018-05-26 14:37:40 +00:00
2018-04-26 05:38:37 +00:00
onNote(note) {
// Prepend a note
(this.$refs.timeline as any).prepend(note);
},
2018-05-26 14:37:40 +00:00
2018-04-26 05:38:37 +00:00
onUserAdded() {
(this.$refs.timeline as any).reload();
2018-04-26 05:38:37 +00:00
},
2018-05-26 14:37:40 +00:00
2018-04-26 05:38:37 +00:00
onUserRemoved() {
(this.$refs.timeline as any).reload();
2019-04-18 13:00:11 +00:00
},
warp(date) {
this.date = date;
(this.$refs.timeline as any).reload();
2018-04-26 05:38:37 +00:00
}
}
});
</script>