@@ -9,23 +9,17 @@ import { LocalStorageOptions } from './types';
9
9
export function LocalStorageMixin < TLocalStorage extends object > (
10
10
options : LocalStorageOptions < TLocalStorage > ,
11
11
) {
12
- class LocalStorage extends ServiceMixin < LocalStorage > ( ) {
13
- private _defaultValues : TLocalStorage = { ...options . defaultValues } ;
14
- private _data : TLocalStorage = LocalStorage . readData ( ) ;
12
+ return class LocalStorage extends ServiceMixin < LocalStorage > ( ) {
13
+ _defaultValues : TLocalStorage = { ...options . defaultValues } ;
14
+ _data : TLocalStorage = LocalStorage . readFromLocalStorage ( ) ;
15
15
16
- private static set data ( data : TLocalStorage ) {
17
- this . instance . _data = data ;
18
- }
19
-
20
- private static get data ( ) {
21
- return this . instance . _data ;
22
- }
23
-
24
- private static get defaultValues ( ) {
25
- return this . instance . _defaultValues ;
26
- }
27
-
28
- private static readData ( ) : TLocalStorage {
16
+ /**
17
+ * Reads the data from `localStorage` without caching the data and returns it.
18
+ * This function is mostly for internal use. Consumers will likely want to use
19
+ * `load()` instead.
20
+ * @returns The The data from `localStorage`.
21
+ */
22
+ static readFromLocalStorage ( ) : TLocalStorage {
29
23
try {
30
24
const raw = localStorage . getItem ( options . key ) ;
31
25
const data : TLocalStorage = JSON . parse ( raw ?? '{}' ) ;
@@ -44,15 +38,18 @@ export function LocalStorageMixin<TLocalStorage extends object>(
44
38
* @returns The data from `localStorage`.
45
39
*/
46
40
static load ( ) : TLocalStorage {
47
- this . data = this . readData ( ) ;
48
- return this . data ;
41
+ this . instance . _data = this . readFromLocalStorage ( ) ;
42
+ return this . instance . _data ;
49
43
}
50
44
51
45
/**
52
46
* Saves the data to `localStorage`.
53
47
*/
54
48
static save ( ) : void {
55
- localStorage . setItem ( options . key , JSON . stringify ( { ...this . defaultValues , ...this . data } ) ) ;
49
+ localStorage . setItem (
50
+ options . key ,
51
+ JSON . stringify ( { ...this . instance . _defaultValues , ...this . instance . _data } ) ,
52
+ ) ;
56
53
}
57
54
58
55
/**
@@ -61,8 +58,8 @@ export function LocalStorageMixin<TLocalStorage extends object>(
61
58
* @returns The value for the given key.
62
59
*/
63
60
static get < TKey extends keyof TLocalStorage > ( key : TKey ) : TLocalStorage [ TKey ] {
64
- let value = this . data [ key ] ;
65
- if ( value === undefined ) value = this . defaultValues [ key ] ;
61
+ let value = this . instance . _data [ key ] ;
62
+ if ( value === undefined ) value = this . instance . _defaultValues [ key ] ;
66
63
return value ;
67
64
}
68
65
@@ -72,9 +69,8 @@ export function LocalStorageMixin<TLocalStorage extends object>(
72
69
* @returns The value for the given key.
73
70
*/
74
71
static set < TKey extends keyof TLocalStorage > ( key : TKey , value : TLocalStorage [ TKey ] ) : void {
75
- this . data [ key ] = value ;
72
+ this . instance . _data [ key ] = value ;
76
73
this . save ( ) ;
77
74
}
78
- }
79
- return LocalStorage ;
75
+ } ;
80
76
}
0 commit comments