2023-07-27 07:31:52 +02:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2021-12-29 14:13:09 +01:00
|
|
|
import * as Misskey from 'misskey-js';
|
|
|
|
import { markRaw } from 'vue';
|
2023-09-19 09:37:43 +02:00
|
|
|
import { $i } from '@/account.js';
|
|
|
|
import { url } from '@/config.js';
|
2021-12-29 14:13:09 +01:00
|
|
|
|
2023-05-15 12:08:46 +02:00
|
|
|
let stream: Misskey.Stream | null = null;
|
2023-10-30 01:12:20 +01:00
|
|
|
let timeoutHeartBeat: number | null = null;
|
|
|
|
|
|
|
|
export let isReloading: boolean = false;
|
2023-05-15 12:08:46 +02:00
|
|
|
|
|
|
|
export function useStream(): Misskey.Stream {
|
|
|
|
if (stream) return stream;
|
|
|
|
|
|
|
|
stream = markRaw(new Misskey.Stream(url, $i ? {
|
|
|
|
token: $i.token,
|
|
|
|
} : null));
|
|
|
|
|
2023-10-30 01:12:20 +01:00
|
|
|
timeoutHeartBeat = window.setTimeout(heartbeat, 1000 * 60);
|
|
|
|
|
|
|
|
return stream;
|
|
|
|
}
|
|
|
|
|
|
|
|
export function reloadStream() {
|
|
|
|
if (!stream) return useStream();
|
|
|
|
if (timeoutHeartBeat) window.clearTimeout(timeoutHeartBeat);
|
|
|
|
isReloading = true;
|
|
|
|
|
|
|
|
stream.close();
|
|
|
|
stream.once('_connected_', () => isReloading = false);
|
|
|
|
stream.stream.reconnect();
|
|
|
|
timeoutHeartBeat = window.setTimeout(heartbeat, 1000 * 60);
|
2023-06-06 02:04:57 +02:00
|
|
|
|
2023-05-15 12:08:46 +02:00
|
|
|
return stream;
|
|
|
|
}
|
2023-06-06 02:04:57 +02:00
|
|
|
|
|
|
|
function heartbeat(): void {
|
|
|
|
if (stream != null && document.visibilityState === 'visible') {
|
2023-06-06 02:16:38 +02:00
|
|
|
stream.heartbeat();
|
2023-06-06 02:04:57 +02:00
|
|
|
}
|
2023-10-30 01:12:20 +01:00
|
|
|
timeoutHeartBeat = window.setTimeout(heartbeat, 1000 * 60);
|
2023-06-06 02:04:57 +02:00
|
|
|
}
|