2023-07-27 00:31:52 -05:00
|
|
|
/*
|
2024-02-13 09:59:27 -06:00
|
|
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
2023-07-27 00:31:52 -05:00
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2024-01-20 06:23:33 -06:00
|
|
|
import { onActivated, onDeactivated, onMounted, onUnmounted } from 'vue';
|
2022-06-25 13:12:58 -05:00
|
|
|
|
|
|
|
export function useInterval(fn: () => void, interval: number, options: {
|
|
|
|
immediate: boolean;
|
|
|
|
afterMounted: boolean;
|
2023-01-04 12:28:25 -06:00
|
|
|
}): (() => void) | undefined {
|
2022-07-02 08:07:04 -05:00
|
|
|
if (Number.isNaN(interval)) return;
|
|
|
|
|
2022-06-25 13:12:58 -05:00
|
|
|
let intervalId: number | null = null;
|
|
|
|
|
|
|
|
if (options.afterMounted) {
|
|
|
|
onMounted(() => {
|
|
|
|
if (options.immediate) fn();
|
|
|
|
intervalId = window.setInterval(fn, interval);
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
if (options.immediate) fn();
|
|
|
|
intervalId = window.setInterval(fn, interval);
|
|
|
|
}
|
|
|
|
|
2023-01-04 12:28:25 -06:00
|
|
|
const clear = () => {
|
2022-06-25 13:12:58 -05:00
|
|
|
if (intervalId) window.clearInterval(intervalId);
|
2023-01-04 12:28:25 -06:00
|
|
|
intervalId = null;
|
|
|
|
};
|
|
|
|
|
2024-01-20 06:23:33 -06:00
|
|
|
onActivated(() => {
|
|
|
|
if (intervalId) return;
|
|
|
|
if (options.immediate) fn();
|
|
|
|
intervalId = window.setInterval(fn, interval);
|
|
|
|
});
|
|
|
|
|
|
|
|
onDeactivated(() => {
|
|
|
|
clear();
|
|
|
|
});
|
|
|
|
|
2023-01-04 12:28:25 -06:00
|
|
|
onUnmounted(() => {
|
|
|
|
clear();
|
2022-06-25 13:12:58 -05:00
|
|
|
});
|
2023-01-04 12:28:25 -06:00
|
|
|
|
|
|
|
return clear;
|
2022-06-25 13:12:58 -05:00
|
|
|
}
|