- Comprehensive logging system with chrome.storage.session persistence - NIP-07 action logging in background scripts with standalone functions - Vault operation logging (unlock, lock, create, reset, import, export) - Profile and bookmark operation logging - Logs page with refresh functionality and category icons - Lock button (🔒) in navigation bar to quickly lock vault - Reduced nav bar size (40px height, 16px font) with emoji icons - Reordered navigation: You, Permissions, Bookmarks, Logs, About, Lock - Bookmarks functionality for saving frequently used Nostr apps - Fixed lock/unlock flow by properly clearing in-memory session data 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
36 lines
1.1 KiB
TypeScript
36 lines
1.1 KiB
TypeScript
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
import { BrowserSessionData } from './types';
|
|
|
|
export abstract class BrowserSessionHandler {
|
|
get browserSessionData(): BrowserSessionData | undefined {
|
|
return this.#browserSessionData;
|
|
}
|
|
|
|
#browserSessionData?: BrowserSessionData;
|
|
|
|
/**
|
|
* Load the data from the browser session storage. It should be an empty object,
|
|
* if no data is available yet (e.g. because the vault (from the browser sync data)
|
|
* was not unlocked via password).
|
|
*
|
|
* ATTENTION: Make sure to call "setFullData(..)" afterwards to update the in-memory data.
|
|
*/
|
|
abstract loadFullData(): Promise<Partial<Record<string, any>>>;
|
|
setFullData(data: BrowserSessionData) {
|
|
this.#browserSessionData = JSON.parse(JSON.stringify(data));
|
|
}
|
|
|
|
clearInMemoryData() {
|
|
this.#browserSessionData = undefined;
|
|
}
|
|
|
|
/**
|
|
* Persist the full data to the session data storage.
|
|
*
|
|
* ATTENTION: Make sure to call "setFullData(..)" afterwards of before to update the in-memory data.
|
|
*/
|
|
abstract saveFullData(data: BrowserSessionData): Promise<void>;
|
|
|
|
abstract clearData(): Promise<void>;
|
|
}
|