Phase 1-3: Domain Layer Foundation - Add value objects: IdentityId, PermissionId, RelayId, WalletId, Nickname, NostrKeyPair - Add rich domain entities: Identity, Permission, Relay with behavior - Add domain events: IdentityCreated, IdentityRenamed, IdentitySelected, etc. - Add repository interfaces for Identity, Permission, Relay - Add infrastructure layer with repository implementations - Add EncryptionService abstraction Phase 4: Ubiquitous Language Cleanup - Rename BrowserSyncData → EncryptedVault (encrypted vault storage) - Rename BrowserSessionData → VaultSession (decrypted session state) - Rename SignerMetaData → ExtensionSettings (extension configuration) - Rename Identity_ENCRYPTED → StoredIdentity (storage DTO) - Rename Identity_DECRYPTED → IdentityData (session DTO) - Similar renames for Permission, Relay, NwcConnection, CashuMint - Add backwards compatibility aliases with @deprecated markers Test Coverage - Add comprehensive tests for all value objects - Add tests for domain entities and their behavior - Add tests for domain events - Fix PermissionChecker to prioritize kind-specific rules over blanket rules - Fix pre-existing component test issues (IconButton, Pubkey) All 113 tests pass. Both Chrome and Firefox builds succeed. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
41 lines
1.2 KiB
TypeScript
41 lines
1.2 KiB
TypeScript
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
import { VaultSession } from './types';
|
|
|
|
export abstract class BrowserSessionHandler {
|
|
get vaultSession(): VaultSession | undefined {
|
|
return this.#vaultSession;
|
|
}
|
|
|
|
/** @deprecated Use vaultSession instead */
|
|
get browserSessionData(): VaultSession | undefined {
|
|
return this.#vaultSession;
|
|
}
|
|
|
|
#vaultSession?: VaultSession;
|
|
|
|
/**
|
|
* 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: VaultSession) {
|
|
this.#vaultSession = JSON.parse(JSON.stringify(data));
|
|
}
|
|
|
|
clearInMemoryData() {
|
|
this.#vaultSession = 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: VaultSession): Promise<void>;
|
|
|
|
abstract clearData(): Promise<void>;
|
|
}
|