2020-01-29 20:37:25 +01:00
|
|
|
<template>
|
2020-12-19 02:55:52 +01:00
|
|
|
<XNotes :class="{ _noGap_: !$store.state.showGapBetweenNotesInTimeline }" ref="tl" :pagination="pagination" @before="$emit('before')" @after="e => $emit('after', e)" @queue="$emit('queue', $event)"/>
|
2020-01-29 20:37:25 +01:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2020-10-17 13:12:00 +02:00
|
|
|
import { defineComponent } from 'vue';
|
2020-01-29 20:37:25 +01:00
|
|
|
import XNotes from './notes.vue';
|
2021-03-23 09:30:14 +01:00
|
|
|
import * as os from '@client/os';
|
|
|
|
import * as sound from '@client/scripts/sound';
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
export default defineComponent({
|
2020-01-29 20:37:25 +01:00
|
|
|
components: {
|
|
|
|
XNotes
|
|
|
|
},
|
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
provide() {
|
|
|
|
return {
|
|
|
|
inChannel: this.src === 'channel'
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
props: {
|
|
|
|
src: {
|
|
|
|
type: String,
|
|
|
|
required: true
|
|
|
|
},
|
|
|
|
list: {
|
2020-07-11 03:13:11 +02:00
|
|
|
type: String,
|
2020-01-29 20:37:25 +01:00
|
|
|
required: false
|
|
|
|
},
|
|
|
|
antenna: {
|
2020-07-11 03:13:11 +02:00
|
|
|
type: String,
|
2020-01-29 20:37:25 +01:00
|
|
|
required: false
|
2020-02-19 18:40:53 +01:00
|
|
|
},
|
2020-08-18 15:44:21 +02:00
|
|
|
channel: {
|
|
|
|
type: String,
|
|
|
|
required: false
|
|
|
|
},
|
2020-02-19 18:40:53 +01:00
|
|
|
sound: {
|
|
|
|
type: Boolean,
|
|
|
|
required: false,
|
|
|
|
default: false,
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
emits: ['note', 'queue', 'before', 'after'],
|
2020-08-18 15:44:21 +02:00
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
connection: null,
|
2020-02-09 14:00:38 +01:00
|
|
|
connection2: null,
|
2020-01-29 20:37:25 +01:00
|
|
|
pagination: null,
|
|
|
|
baseQuery: {
|
2020-12-19 02:55:52 +01:00
|
|
|
includeMyRenotes: this.$store.state.showMyRenotes,
|
|
|
|
includeRenotedMyNotes: this.$store.state.showRenotedMyNotes,
|
|
|
|
includeLocalRenotes: this.$store.state.showLocalRenotes
|
2020-01-29 20:37:25 +01:00
|
|
|
},
|
|
|
|
query: {},
|
2021-04-10 06:38:24 +02:00
|
|
|
date: null
|
2020-01-29 20:37:25 +01:00
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
created() {
|
|
|
|
const prepend = note => {
|
2020-07-27 01:46:21 +02:00
|
|
|
(this.$refs.tl as any).prepend(note);
|
2020-02-19 18:40:53 +01:00
|
|
|
|
2020-07-11 03:13:11 +02:00
|
|
|
this.$emit('note');
|
|
|
|
|
2020-02-19 18:40:53 +01:00
|
|
|
if (this.sound) {
|
2020-12-19 02:55:52 +01:00
|
|
|
sound.play(note.userId === this.$i.id ? 'noteMy' : 'note');
|
2020-02-19 18:40:53 +01:00
|
|
|
}
|
2020-01-29 20:37:25 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
const onUserAdded = () => {
|
|
|
|
(this.$refs.tl as any).reload();
|
|
|
|
};
|
|
|
|
|
|
|
|
const onUserRemoved = () => {
|
|
|
|
(this.$refs.tl as any).reload();
|
|
|
|
};
|
|
|
|
|
2020-02-09 14:00:38 +01:00
|
|
|
const onChangeFollowing = () => {
|
|
|
|
if (!this.$refs.tl.backed) {
|
|
|
|
this.$refs.tl.reload();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
let endpoint;
|
|
|
|
|
|
|
|
if (this.src == 'antenna') {
|
|
|
|
endpoint = 'antennas/notes';
|
|
|
|
this.query = {
|
2020-07-11 03:13:11 +02:00
|
|
|
antennaId: this.antenna
|
2020-01-29 20:37:25 +01:00
|
|
|
};
|
2020-10-17 13:12:00 +02:00
|
|
|
this.connection = os.stream.connectToChannel('antenna', {
|
2020-07-11 03:13:11 +02:00
|
|
|
antennaId: this.antenna
|
2020-01-29 20:37:25 +01:00
|
|
|
});
|
|
|
|
this.connection.on('note', prepend);
|
|
|
|
} else if (this.src == 'home') {
|
|
|
|
endpoint = 'notes/timeline';
|
2020-10-17 13:12:00 +02:00
|
|
|
this.connection = os.stream.useSharedConnection('homeTimeline');
|
2020-01-29 20:37:25 +01:00
|
|
|
this.connection.on('note', prepend);
|
2020-02-09 14:00:38 +01:00
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
this.connection2 = os.stream.useSharedConnection('main');
|
2020-02-09 14:00:38 +01:00
|
|
|
this.connection2.on('follow', onChangeFollowing);
|
|
|
|
this.connection2.on('unfollow', onChangeFollowing);
|
2020-01-29 20:37:25 +01:00
|
|
|
} else if (this.src == 'local') {
|
|
|
|
endpoint = 'notes/local-timeline';
|
2020-10-17 13:12:00 +02:00
|
|
|
this.connection = os.stream.useSharedConnection('localTimeline');
|
2020-01-29 20:37:25 +01:00
|
|
|
this.connection.on('note', prepend);
|
|
|
|
} else if (this.src == 'social') {
|
|
|
|
endpoint = 'notes/hybrid-timeline';
|
2020-10-17 13:12:00 +02:00
|
|
|
this.connection = os.stream.useSharedConnection('hybridTimeline');
|
2020-01-29 20:37:25 +01:00
|
|
|
this.connection.on('note', prepend);
|
|
|
|
} else if (this.src == 'global') {
|
|
|
|
endpoint = 'notes/global-timeline';
|
2020-10-17 13:12:00 +02:00
|
|
|
this.connection = os.stream.useSharedConnection('globalTimeline');
|
2020-01-29 20:37:25 +01:00
|
|
|
this.connection.on('note', prepend);
|
2020-12-29 03:33:21 +01:00
|
|
|
} else if (this.src == 'mentions') {
|
|
|
|
endpoint = 'notes/mentions';
|
|
|
|
this.connection = os.stream.useSharedConnection('main');
|
|
|
|
this.connection.on('mention', prepend);
|
|
|
|
} else if (this.src == 'directs') {
|
|
|
|
endpoint = 'notes/mentions';
|
|
|
|
this.query = {
|
|
|
|
visibility: 'specified'
|
|
|
|
};
|
|
|
|
const onNote = note => {
|
|
|
|
if (note.visibility == 'specified') {
|
|
|
|
prepend(note);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
this.connection = os.stream.useSharedConnection('main');
|
|
|
|
this.connection.on('mention', onNote);
|
2020-01-29 20:37:25 +01:00
|
|
|
} else if (this.src == 'list') {
|
|
|
|
endpoint = 'notes/user-list-timeline';
|
|
|
|
this.query = {
|
2020-07-11 03:13:11 +02:00
|
|
|
listId: this.list
|
2020-01-29 20:37:25 +01:00
|
|
|
};
|
2020-10-17 13:12:00 +02:00
|
|
|
this.connection = os.stream.connectToChannel('userList', {
|
2020-07-11 03:13:11 +02:00
|
|
|
listId: this.list
|
2020-01-29 20:37:25 +01:00
|
|
|
});
|
|
|
|
this.connection.on('note', prepend);
|
|
|
|
this.connection.on('userAdded', onUserAdded);
|
|
|
|
this.connection.on('userRemoved', onUserRemoved);
|
2020-08-18 15:44:21 +02:00
|
|
|
} else if (this.src == 'channel') {
|
|
|
|
endpoint = 'channels/timeline';
|
|
|
|
this.query = {
|
|
|
|
channelId: this.channel
|
|
|
|
};
|
2020-10-17 13:12:00 +02:00
|
|
|
this.connection = os.stream.connectToChannel('channel', {
|
2020-08-18 15:44:21 +02:00
|
|
|
channelId: this.channel
|
|
|
|
});
|
|
|
|
this.connection.on('note', prepend);
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
this.pagination = {
|
|
|
|
endpoint: endpoint,
|
|
|
|
limit: 10,
|
|
|
|
params: init => ({
|
2021-04-10 06:38:24 +02:00
|
|
|
untilDate: this.date?.getTime(),
|
2020-01-29 20:37:25 +01:00
|
|
|
...this.baseQuery, ...this.query
|
|
|
|
})
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
beforeUnmount() {
|
|
|
|
this.connection.dispose();
|
|
|
|
if (this.connection2) this.connection2.dispose();
|
|
|
|
},
|
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
methods: {
|
|
|
|
focus() {
|
|
|
|
this.$refs.tl.focus();
|
2021-04-10 06:38:24 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
timetravel(date?: Date) {
|
|
|
|
this.date = date;
|
|
|
|
this.$refs.tl.reload();
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|