2020-01-29 19:37:25 +00:00
|
|
|
<template>
|
2022-01-09 13:57:27 +00:00
|
|
|
<XNotes ref="tlComponent" :no-gap="!$store.state.showGapBetweenNotesInTimeline" :pagination="pagination" @queue="emit('queue', $event)"/>
|
2020-01-29 19:37:25 +00:00
|
|
|
</template>
|
|
|
|
|
2022-01-09 13:57:27 +00:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { ref, computed, provide, onUnmounted } from 'vue';
|
2020-01-29 19:37:25 +00:00
|
|
|
import XNotes from './notes.vue';
|
2021-11-11 17:02:25 +00:00
|
|
|
import * as os from '@/os';
|
2021-12-29 13:13:09 +00:00
|
|
|
import { stream } from '@/stream';
|
2021-11-11 17:02:25 +00:00
|
|
|
import * as sound from '@/scripts/sound';
|
2022-01-09 13:57:27 +00:00
|
|
|
import { $i } from '@/account';
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2022-01-09 13:57:27 +00:00
|
|
|
const props = defineProps<{
|
|
|
|
src: string;
|
|
|
|
list?: string;
|
|
|
|
antenna?: string;
|
|
|
|
channel?: string;
|
|
|
|
sound?: boolean;
|
|
|
|
}>();
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2022-01-09 13:57:27 +00:00
|
|
|
const emit = defineEmits<{
|
2022-05-26 13:53:09 +00:00
|
|
|
(ev: 'note'): void;
|
|
|
|
(ev: 'queue', count: number): void;
|
2022-01-09 13:57:27 +00:00
|
|
|
}>();
|
|
|
|
|
|
|
|
provide('inChannel', computed(() => props.src === 'channel'));
|
|
|
|
|
2022-01-21 07:43:56 +00:00
|
|
|
const tlComponent: InstanceType<typeof XNotes> = $ref();
|
2022-01-09 13:57:27 +00:00
|
|
|
|
|
|
|
const prepend = note => {
|
2022-01-21 07:43:56 +00:00
|
|
|
tlComponent.pagingComponent?.prepend(note);
|
2022-01-09 13:57:27 +00:00
|
|
|
|
|
|
|
emit('note');
|
|
|
|
|
|
|
|
if (props.sound) {
|
|
|
|
sound.play($i && (note.userId === $i.id) ? 'noteMy' : 'note');
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
2022-01-09 13:57:27 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
const onUserAdded = () => {
|
2022-01-21 07:43:56 +00:00
|
|
|
tlComponent.pagingComponent?.reload();
|
2022-01-09 13:57:27 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
const onUserRemoved = () => {
|
2022-01-21 07:43:56 +00:00
|
|
|
tlComponent.pagingComponent?.reload();
|
2022-01-09 13:57:27 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
const onChangeFollowing = () => {
|
2022-01-21 07:43:56 +00:00
|
|
|
if (!tlComponent.pagingComponent?.backed) {
|
|
|
|
tlComponent.pagingComponent?.reload();
|
2022-01-09 13:57:27 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
let endpoint;
|
|
|
|
let query;
|
|
|
|
let connection;
|
|
|
|
let connection2;
|
|
|
|
|
|
|
|
if (props.src === 'antenna') {
|
|
|
|
endpoint = 'antennas/notes';
|
|
|
|
query = {
|
|
|
|
antennaId: props.antenna
|
|
|
|
};
|
|
|
|
connection = stream.useChannel('antenna', {
|
|
|
|
antennaId: props.antenna
|
|
|
|
});
|
|
|
|
connection.on('note', prepend);
|
|
|
|
} else if (props.src === 'home') {
|
|
|
|
endpoint = 'notes/timeline';
|
|
|
|
connection = stream.useChannel('homeTimeline');
|
|
|
|
connection.on('note', prepend);
|
|
|
|
|
|
|
|
connection2 = stream.useChannel('main');
|
|
|
|
connection2.on('follow', onChangeFollowing);
|
|
|
|
connection2.on('unfollow', onChangeFollowing);
|
|
|
|
} else if (props.src === 'local') {
|
|
|
|
endpoint = 'notes/local-timeline';
|
|
|
|
connection = stream.useChannel('localTimeline');
|
|
|
|
connection.on('note', prepend);
|
|
|
|
} else if (props.src === 'social') {
|
|
|
|
endpoint = 'notes/hybrid-timeline';
|
|
|
|
connection = stream.useChannel('hybridTimeline');
|
|
|
|
connection.on('note', prepend);
|
|
|
|
} else if (props.src === 'global') {
|
|
|
|
endpoint = 'notes/global-timeline';
|
|
|
|
connection = stream.useChannel('globalTimeline');
|
|
|
|
connection.on('note', prepend);
|
|
|
|
} else if (props.src === 'mentions') {
|
|
|
|
endpoint = 'notes/mentions';
|
|
|
|
connection = stream.useChannel('main');
|
|
|
|
connection.on('mention', prepend);
|
|
|
|
} else if (props.src === 'directs') {
|
|
|
|
endpoint = 'notes/mentions';
|
|
|
|
query = {
|
|
|
|
visibility: 'specified'
|
|
|
|
};
|
|
|
|
const onNote = note => {
|
2022-05-26 13:53:09 +00:00
|
|
|
if (note.visibility === 'specified') {
|
2022-01-09 13:57:27 +00:00
|
|
|
prepend(note);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
connection = stream.useChannel('main');
|
|
|
|
connection.on('mention', onNote);
|
|
|
|
} else if (props.src === 'list') {
|
|
|
|
endpoint = 'notes/user-list-timeline';
|
|
|
|
query = {
|
|
|
|
listId: props.list
|
|
|
|
};
|
|
|
|
connection = stream.useChannel('userList', {
|
|
|
|
listId: props.list
|
|
|
|
});
|
|
|
|
connection.on('note', prepend);
|
|
|
|
connection.on('userAdded', onUserAdded);
|
|
|
|
connection.on('userRemoved', onUserRemoved);
|
|
|
|
} else if (props.src === 'channel') {
|
|
|
|
endpoint = 'channels/timeline';
|
|
|
|
query = {
|
|
|
|
channelId: props.channel
|
|
|
|
};
|
|
|
|
connection = stream.useChannel('channel', {
|
|
|
|
channelId: props.channel
|
|
|
|
});
|
|
|
|
connection.on('note', prepend);
|
|
|
|
}
|
|
|
|
|
|
|
|
const pagination = {
|
|
|
|
endpoint: endpoint,
|
|
|
|
limit: 10,
|
|
|
|
params: query,
|
|
|
|
};
|
|
|
|
|
|
|
|
onUnmounted(() => {
|
|
|
|
connection.dispose();
|
|
|
|
if (connection2) connection2.dispose();
|
2020-01-29 19:37:25 +00:00
|
|
|
});
|
2022-01-09 13:57:27 +00:00
|
|
|
|
|
|
|
/* TODO
|
|
|
|
const timetravel = (date?: Date) => {
|
|
|
|
this.date = date;
|
|
|
|
this.$refs.tl.reload();
|
|
|
|
};
|
|
|
|
*/
|
2020-01-29 19:37:25 +00:00
|
|
|
</script>
|