2023-01-13 05:40:33 +01:00
|
|
|
import * as Misskey from "calckey-js";
|
|
|
|
import { markRaw } from "vue";
|
|
|
|
import { $i } from "@/account";
|
|
|
|
import { url } from "@/config";
|
2021-12-29 14:13:09 +01:00
|
|
|
|
2023-06-15 05:32:59 +02:00
|
|
|
export const stream = markRaw(
|
|
|
|
new Misskey.Stream(
|
|
|
|
url,
|
|
|
|
$i
|
|
|
|
? {
|
|
|
|
token: $i.token,
|
|
|
|
}
|
|
|
|
: null,
|
|
|
|
),
|
|
|
|
);
|
2023-06-15 05:17:56 +02:00
|
|
|
|
2023-06-15 05:32:59 +02:00
|
|
|
window.setTimeout(heartbeat, 1000 * 60);
|
2023-06-15 05:17:56 +02:00
|
|
|
|
|
|
|
function heartbeat(): void {
|
|
|
|
if (stream != null && document.visibilityState === "visible") {
|
|
|
|
stream.send("ping");
|
|
|
|
}
|
|
|
|
window.setTimeout(heartbeat, 1000 * 60);
|
|
|
|
}
|