iceshrimp-legacy/packages/client/src/stream.ts
ThatOneCalculator 084e9072d1
fix: 🚑 fix stream.ts
2023-06-14 20:32:59 -07:00

25 lines
460 B
TypeScript

import * as Misskey from "calckey-js";
import { markRaw } from "vue";
import { $i } from "@/account";
import { url } from "@/config";
export const stream = markRaw(
new Misskey.Stream(
url,
$i
? {
token: $i.token,
}
: null,
),
);
window.setTimeout(heartbeat, 1000 * 60);
function heartbeat(): void {
if (stream != null && document.visibilityState === "visible") {
stream.send("ping");
}
window.setTimeout(heartbeat, 1000 * 60);
}