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