mirror of
https://iceshrimp.dev/iceshrimp/iceshrimp
synced 2024-12-30 22:48:13 +09:00
7f3b9b171c
Co-authored-by: Syuilo <syuilotan@yahoo.co.jp>
33 lines
593 B
TypeScript
33 lines
593 B
TypeScript
import * as Misskey from "calckey-js";
|
|
import { markRaw } from "vue";
|
|
import { $i } from "@/account";
|
|
import { url } from "@/config";
|
|
|
|
let stream: Misskey.Stream | null = null;
|
|
|
|
export function useStream(): Misskey.Stream {
|
|
if (stream) return stream;
|
|
|
|
stream = markRaw(
|
|
new Misskey.Stream(
|
|
url,
|
|
$i
|
|
? {
|
|
token: $i.token,
|
|
}
|
|
: null
|
|
)
|
|
);
|
|
|
|
window.setTimeout(heartbeat, 1000 * 60);
|
|
|
|
return stream;
|
|
}
|
|
|
|
function heartbeat(): void {
|
|
if (stream != null && document.visibilityState === "visible") {
|
|
stream.send("ping");
|
|
}
|
|
window.setTimeout(heartbeat, 1000 * 60);
|
|
}
|