1
0
forked from mirror/misskey
misskey/src/client/app/common/views/deck/deck.direct-column.vue

80 lines
1.5 KiB
Vue
Raw Normal View History

<template>
<x-column :name="name" :column="column" :is-stacked="isStacked">
2019-02-18 11:13:56 +09:00
<template #header><fa :icon="['far', 'envelope']"/>{{ name }}</template>
2019-05-21 08:10:37 +09:00
<x-notes ref="timeline" :pagination="pagination" @inited="() => $emit('loaded')"/>
</x-column>
</template>
<script lang="ts">
import Vue from 'vue';
import i18n from '../../../i18n';
import XColumn from './deck.column.vue';
2019-05-21 08:10:37 +09:00
import XNotes from './deck.notes.vue';
export default Vue.extend({
i18n: i18n(),
2019-05-21 08:10:37 +09:00
components: {
XColumn,
2019-05-21 08:10:37 +09:00
XNotes
},
props: {
column: {
type: Object,
required: true
},
isStacked: {
type: Boolean,
required: true
}
},
2019-05-21 08:10:37 +09:00
data() {
return {
connection: null,
pagination: {
endpoint: 'notes/mentions',
limit: 10,
params: {
includeMyRenotes: this.$store.state.settings.showMyRenotes,
includeRenotedMyNotes: this.$store.state.settings.showRenotedMyNotes,
includeLocalRenotes: this.$store.state.settings.showLocalRenotes,
visibility: 'specified'
}
}
};
},
computed: {
name(): string {
if (this.column.name) return this.column.name;
return this.$t('@deck.direct');
}
},
2019-05-21 08:10:37 +09:00
mounted() {
this.connection = this.$root.stream.useSharedConnection('main');
this.connection.on('mention', this.onNote);
},
beforeDestroy() {
this.connection.dispose();
},
methods: {
2019-05-21 08:10:37 +09:00
onNote(note) {
// Prepend a note
if (note.visibility == 'specified') {
(this.$refs.timeline as any).prepend(note);
}
},
focus() {
2019-05-21 08:10:37 +09:00
this.$refs.timeline.focus();
2018-10-21 16:18:02 +09:00
}
}
});
</script>