magnetar/fe_calckey/frontend/client/src/stream.ts

30 lines
703 B
TypeScript
Raw Normal View History

2023-07-07 19:22:30 +00:00
import * as Misskey from "calckey-js";
import { markRaw } from "vue";
import { $i } from "@/account";
import { magStreamingUrl, url } from "@/config";
import { MagEventChannel } from "magnetar-common";
2023-07-07 19:22:30 +00:00
export const stream = markRaw(
new Misskey.Stream(
url,
$i
? {
token: $i.token,
}
2024-04-08 01:10:23 +00:00
: null,
),
2023-07-07 19:22:30 +00:00
);
window.setTimeout(heartbeat, 1000 * 60);
function heartbeat(): void {
if (stream != null && document.visibilityState === "visible") {
stream.send("ping");
}
window.setTimeout(heartbeat, 1000 * 60);
2023-07-07 19:22:30 +00:00
}
export const magStream = markRaw(
2024-04-08 01:10:23 +00:00
new MagEventChannel(magStreamingUrl, $i ? $i.token : null),
);