2023-07-26 22:31:52 -07:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2021-12-29 05:13:09 -08:00
|
|
|
import * as Misskey from 'misskey-js';
|
|
|
|
import { markRaw } from 'vue';
|
|
|
|
import { $i } from '@/account';
|
|
|
|
import { url } from '@/config';
|
|
|
|
|
2023-05-15 03:08:46 -07:00
|
|
|
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));
|
|
|
|
|
2023-06-05 17:04:57 -07:00
|
|
|
window.setTimeout(heartbeat, 1000 * 60);
|
|
|
|
|
2023-05-15 03:08:46 -07:00
|
|
|
return stream;
|
|
|
|
}
|
2023-06-05 17:04:57 -07:00
|
|
|
|
|
|
|
function heartbeat(): void {
|
|
|
|
if (stream != null && document.visibilityState === 'visible') {
|
2023-06-05 17:16:38 -07:00
|
|
|
stream.heartbeat();
|
2023-06-05 17:04:57 -07:00
|
|
|
}
|
|
|
|
window.setTimeout(heartbeat, 1000 * 60);
|
|
|
|
}
|