2020-01-29 20:37:25 +01:00
|
|
|
<template>
|
2023-04-08 02:01:42 +02:00
|
|
|
<XNotes
|
|
|
|
ref="tlComponent"
|
|
|
|
:no-gap="!$store.state.showGapBetweenNotesInTimeline"
|
|
|
|
:pagination="pagination"
|
|
|
|
@queue="emit('queue', $event)"
|
|
|
|
/>
|
2020-01-29 20:37:25 +01:00
|
|
|
</template>
|
|
|
|
|
2022-01-09 14:57:27 +01:00
|
|
|
<script lang="ts" setup>
|
2023-04-08 02:01:42 +02:00
|
|
|
import { ref, computed, provide, onUnmounted } from "vue";
|
|
|
|
import XNotes from "@/components/MkNotes.vue";
|
|
|
|
import * as os from "@/os";
|
|
|
|
import { stream } from "@/stream";
|
|
|
|
import * as sound from "@/scripts/sound";
|
|
|
|
import { $i } from "@/account";
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2022-01-09 14:57:27 +01:00
|
|
|
const props = defineProps<{
|
|
|
|
src: string;
|
|
|
|
list?: string;
|
|
|
|
antenna?: string;
|
|
|
|
channel?: string;
|
|
|
|
sound?: boolean;
|
|
|
|
}>();
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2022-01-09 14:57:27 +01:00
|
|
|
const emit = defineEmits<{
|
2023-04-08 02:01:42 +02:00
|
|
|
(ev: "note"): void;
|
|
|
|
(ev: "queue", count: number): void;
|
2022-01-09 14:57:27 +01:00
|
|
|
}>();
|
|
|
|
|
2023-04-08 02:01:42 +02:00
|
|
|
provide(
|
|
|
|
"inChannel",
|
|
|
|
computed(() => props.src === "channel")
|
|
|
|
);
|
2022-01-09 14:57:27 +01:00
|
|
|
|
2022-01-21 08:43:56 +01:00
|
|
|
const tlComponent: InstanceType<typeof XNotes> = $ref();
|
2022-01-09 14:57:27 +01:00
|
|
|
|
2023-04-08 02:01:42 +02:00
|
|
|
const prepend = (note) => {
|
2022-01-21 08:43:56 +01:00
|
|
|
tlComponent.pagingComponent?.prepend(note);
|
2022-01-09 14:57:27 +01:00
|
|
|
|
2023-04-08 02:01:42 +02:00
|
|
|
emit("note");
|
2022-01-09 14:57:27 +01:00
|
|
|
|
|
|
|
if (props.sound) {
|
2023-04-08 02:01:42 +02:00
|
|
|
sound.play($i && note.userId === $i.id ? "noteMy" : "note");
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
2022-01-09 14:57:27 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
const onUserAdded = () => {
|
2022-01-21 08:43:56 +01:00
|
|
|
tlComponent.pagingComponent?.reload();
|
2022-01-09 14:57:27 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
const onUserRemoved = () => {
|
2022-01-21 08:43:56 +01:00
|
|
|
tlComponent.pagingComponent?.reload();
|
2022-01-09 14:57:27 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
const onChangeFollowing = () => {
|
2022-01-21 08:43:56 +01:00
|
|
|
if (!tlComponent.pagingComponent?.backed) {
|
|
|
|
tlComponent.pagingComponent?.reload();
|
2022-01-09 14:57:27 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
let endpoint;
|
|
|
|
let query;
|
|
|
|
let connection;
|
|
|
|
let connection2;
|
|
|
|
|
2023-04-08 02:01:42 +02:00
|
|
|
if (props.src === "antenna") {
|
|
|
|
endpoint = "antennas/notes";
|
2022-01-09 14:57:27 +01:00
|
|
|
query = {
|
2022-08-30 17:24:33 +02:00
|
|
|
antennaId: props.antenna,
|
2022-01-09 14:57:27 +01:00
|
|
|
};
|
2023-04-08 02:01:42 +02:00
|
|
|
connection = stream.useChannel("antenna", {
|
2022-08-30 17:24:33 +02:00
|
|
|
antennaId: props.antenna,
|
2022-01-09 14:57:27 +01:00
|
|
|
});
|
2023-04-08 02:01:42 +02:00
|
|
|
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 === "recommended") {
|
|
|
|
endpoint = "notes/recommended-timeline";
|
|
|
|
connection = stream.useChannel("recommendedTimeline");
|
|
|
|
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";
|
2022-01-09 14:57:27 +01:00
|
|
|
query = {
|
2023-04-08 02:01:42 +02:00
|
|
|
visibility: "specified",
|
2022-01-09 14:57:27 +01:00
|
|
|
};
|
2023-04-08 02:01:42 +02:00
|
|
|
const onNote = (note) => {
|
|
|
|
if (note.visibility === "specified") {
|
2022-01-09 14:57:27 +01:00
|
|
|
prepend(note);
|
|
|
|
}
|
|
|
|
};
|
2023-04-08 02:01:42 +02:00
|
|
|
connection = stream.useChannel("main");
|
|
|
|
connection.on("mention", onNote);
|
|
|
|
} else if (props.src === "list") {
|
|
|
|
endpoint = "notes/user-list-timeline";
|
2022-01-09 14:57:27 +01:00
|
|
|
query = {
|
2022-08-30 17:24:33 +02:00
|
|
|
listId: props.list,
|
2022-01-09 14:57:27 +01:00
|
|
|
};
|
2023-04-08 02:01:42 +02:00
|
|
|
connection = stream.useChannel("userList", {
|
2022-08-30 17:24:33 +02:00
|
|
|
listId: props.list,
|
2022-01-09 14:57:27 +01:00
|
|
|
});
|
2023-04-08 02:01:42 +02:00
|
|
|
connection.on("note", prepend);
|
|
|
|
connection.on("userAdded", onUserAdded);
|
|
|
|
connection.on("userRemoved", onUserRemoved);
|
|
|
|
} else if (props.src === "channel") {
|
|
|
|
endpoint = "channels/timeline";
|
2022-01-09 14:57:27 +01:00
|
|
|
query = {
|
2022-08-30 17:24:33 +02:00
|
|
|
channelId: props.channel,
|
2022-01-09 14:57:27 +01:00
|
|
|
};
|
2023-04-08 02:01:42 +02:00
|
|
|
connection = stream.useChannel("channel", {
|
2022-08-30 17:24:33 +02:00
|
|
|
channelId: props.channel,
|
2022-01-09 14:57:27 +01:00
|
|
|
});
|
2023-04-08 02:01:42 +02:00
|
|
|
connection.on("note", prepend);
|
2022-01-09 14:57:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
const pagination = {
|
|
|
|
endpoint: endpoint,
|
|
|
|
limit: 10,
|
|
|
|
params: query,
|
|
|
|
};
|
|
|
|
|
|
|
|
onUnmounted(() => {
|
|
|
|
connection.dispose();
|
|
|
|
if (connection2) connection2.dispose();
|
2020-01-29 20:37:25 +01:00
|
|
|
});
|
2022-01-09 14:57:27 +01:00
|
|
|
|
|
|
|
/* TODO
|
|
|
|
const timetravel = (date?: Date) => {
|
|
|
|
this.date = date;
|
|
|
|
this.$refs.tl.reload();
|
|
|
|
};
|
|
|
|
*/
|
2020-01-29 20:37:25 +01:00
|
|
|
</script>
|