/* * Copyright (C) 2026 Fluxer Contributors * * This file is part of Fluxer. * * Fluxer is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Fluxer is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with Fluxer. If not, see . */ import {IS_DEV} from '@app/lib/Env'; import LocalPresenceStore from '@app/stores/LocalPresenceStore'; import {makeAutoObservable} from 'mobx'; const IDLE_DURATION_MS = 1000 * (IS_DEV ? 10 : 60 * 10); const IDLE_CHECK_INTERVAL_MS = Math.floor(IDLE_DURATION_MS * 0.25); class IdleStore { idle = false; private lastActivityTime = Date.now(); private checkInterval: ReturnType | null = null; constructor() { makeAutoObservable(this, {}, {autoBind: true}); this.startIdleCheck(); } private startIdleCheck(): void { if (typeof setInterval !== 'function') return; this.checkInterval = setInterval(() => { this.updateIdleState(); }, IDLE_CHECK_INTERVAL_MS); } destroy(): void { if (this.checkInterval !== null) { clearInterval(this.checkInterval); this.checkInterval = null; } } recordActivity(): void { this.lastActivityTime = Date.now(); if (this.idle) { this.updateIdleState(); } } markBackground(): void { this.lastActivityTime = 0; this.updateIdleState(); } isIdle(): boolean { return this.idle; } getIdleSince(): number { return this.idle ? this.lastActivityTime : 0; } private updateIdleState(): void { const now = Date.now(); const timeSinceActivity = now - this.lastActivityTime; const shouldBeIdle = timeSinceActivity >= IDLE_DURATION_MS; if (shouldBeIdle !== this.idle) { this.idle = shouldBeIdle; LocalPresenceStore.updatePresence(); } } } export default new IdleStore();