Introduce "AppSession"

This commit is contained in:
schroda
2026-06-06 15:26:14 +02:00
parent 4f10cb06e3
commit 4ec3c62ae5
4 changed files with 34 additions and 11 deletions

26
src/base/AppSession.ts Normal file
View File

@@ -0,0 +1,26 @@
/*
* Copyright (C) Contributors to the Suwayomi project
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
import { BrowserUtil } from '@/lib/BrowserUtil.ts';
import { AppStorage } from '@/lib/storage/AppStorage.ts';
const STARTUP_TIMESTAMP_KEY = 'webUIStartupTimestamp';
class AppSessionClass {
constructor() {
if (BrowserUtil.isActualPageLoad()) {
AppStorage.session.setItem(STARTUP_TIMESTAMP_KEY, Date.now());
}
}
get STARTUP_TIMESTAMP(): number {
return AppStorage.session.getItemParsed(STARTUP_TIMESTAMP_KEY, Date.now());
}
}
export const AppSession = new AppSessionClass();