-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
index.d.ts
211 lines (194 loc) · 4.59 KB
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
import type { MapStore, WritableAtom } from 'nanostores'
export type PersistentStore = Record<string, string>
export interface PersistentEvent {
key: string
newValue: string
}
export interface PersistentListener {
(e: PersistentEvent): void
}
export interface PersistentEvents {
addEventListener(
key: string,
callback: PersistentListener,
restore: () => void
): void
perKey?: boolean
removeEventListener(
key: string,
callback: PersistentListener,
restore: () => void
): void
}
/**
* Replace localStorage to keep persistent data.
*
* @param storage An object with localStorage API.
* @param events An object with `addEventListener` and `removeEventListener`.
*/
export function setPersistentEngine(
storage: PersistentStore,
events: PersistentEvents
): void
/**
* `window` events to be used in `setPersistentEngine`.
*/
export const windowPersistentEvents: PersistentEvents
export interface PersistentEncoder<Origin = any> {
/**
* Decoder to convert value from string.
*/
decode: (encoded: string) => Origin
/**
* Encoder to convert value to string.
*/
encode: (value: Origin) => string
}
interface PersistentSimpleOptions {
/**
* Does not synchronize changes from other browser tabs
*/
listen?: boolean
}
export type PersistentOptions =
| (PersistentEncoder & PersistentSimpleOptions)
| PersistentSimpleOptions
interface PersistentMapFactory {
/**
* Keep key-value data in localStorage.
*
* ```ts
* import { persistentMap } from '@nanostores/persistent'
*
* export const settings = persistentMap<{
* theme: 'dark' | 'light'
* favorite: string
* }>('settings:', { theme: 'light' })
* ```
*
* @param prefix Key prefix in localStorage.
* @param initial Initial value on missed data in localStorage.
* @param opts Store options.
* @return The store.
*/
<Value extends Record<string, string | undefined>>(
name: string,
initial?: Value,
opts?: PersistentSimpleOptions
): MapStore<Value>
<Value extends object>(
name: string,
initial: Value,
opts: PersistentEncoder<Value[keyof Value]> & PersistentSimpleOptions
): MapStore<Value>
}
export const persistentMap: PersistentMapFactory
interface PersistentAtomFactory {
/**
* Store a value in localStorage.
*
* For key-value objects use {@link persistentMap}.
*
* ```ts
* import { persistentAtom } from '@nanostores/persistent'
*
* export const locale = persistentAtom<string>('locale', 'en')
* ```
*
* @param name Key name in localStorage.
* @param initial Initial value on missed data in localStorage.
* @param opts Store options.
* @return The store.
*/
<Value extends string | undefined>(
name: string,
initial?: Value,
opts?: PersistentSimpleOptions
): WritableAtom<Value>
<Value>(
name: string,
initial: Value,
opts: PersistentEncoder<Value> & PersistentSimpleOptions
): WritableAtom<Value>
}
export const persistentAtom: PersistentAtomFactory
/**
* Enable fake storage to test persistent stores.
*
* ```js
* import { useTestStorageEngine } from '@nanostores/persistent'
*
* beforeAll(() => {
* useTestStorageEngine()
* })
* ```
*/
export function useTestStorageEngine(): void
/**
* Set fake storage key to test persistent store.
*
* ```js
* import {
* useTestStorageEngine,
* setTestStorageKey,
* cleanTestStorage
* } from '@nanostores/persistent'
*
* beforeAll(() => {
* useTestStorageEngine()
* })
*
* beforeEach(() => {
* cleanTestStorage()
* })
*
* it('listens for changes', () => {
* setTestStorageKey('settings:locale', 'ru')
* expect(settings.get()).toEqual({ locale: 'ru' })
* })
* ```
*
* @param key Full name of key in localStorage.
* @param newValue New value of the key.
*/
export function setTestStorageKey(
key: string,
newValue: string | undefined
): void
/**
* Get full content of fake storage to test persistent stores.
*
* ```js
* import {
* useTestStorageEngine,
* cleanTestStorage,
* getTestStorage,
* } from '@nanostores/persistent'
*
* beforeAll(() => {
* useTestStorageEngine()
* })
*
* beforeEach(() => {
* cleanTestStorage()
* })
*
* it('changes storage', () => {
* settings.setKey('locale')
* expect(getTestStorage()).toEqual({ 'settings:locale': 'ru' })
* })
* ```
*/
export function getTestStorage(): Record<string, string>
/**
* Clean test storage used to test persistent stores.
*
* ```js
* import { cleanTestStorage } from '@nanostores/persistent'
*
* afterEach(() => {
* cleanTestStorage()
* })
* ```
*/
export function cleanTestStorage(): void