Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Load global storage object in a lazy manner #32

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 14 additions & 6 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,21 @@
import { getBucket } from './bucket'
import { Bucket, getBucket } from './bucket'

type Storage = {
local: Bucket<Record<string, any>>,
sync: Bucket<Record<string, any>>,
managed: Bucket<Record<string, any>>,
}

class StorageImpl implements Storage {
get local(): Bucket<Record<string, any>> { return getBucket<Record<string, any>>('local', 'local') }
get sync(): Bucket<Record<string, any>> { return getBucket<Record<string, any>>('sync', 'sync') }
get managed(): Bucket<Record<string, any>> { return getBucket<Record<string, any>>('managed', 'managed') }
}

/**
* Buckets for each storage area.
*/
export const storage = {
local: getBucket<Record<string, any>>('local', 'local'),
sync: getBucket<Record<string, any>>('sync', 'sync'),
managed: getBucket<Record<string, any>>('managed', 'managed'),
}
export const storage: Storage = new StorageImpl()

// Workaround for @rollup/plugin-typescript
export * from './types'
Expand Down