Skip to content

Commit fad1ba8

Browse files
committed
build(local-storage): Fixed build errors and improved documentation
1 parent 66f6b1d commit fad1ba8

File tree

2 files changed

+25
-24
lines changed

2 files changed

+25
-24
lines changed

packages/browser-utils/src/services/local-storage/local-storage.service-mixin.test.ts

+5
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,11 @@ describe('LocalStorageMixin', () => {
1818
},
1919
}) {}
2020

21+
afterEach(() => {
22+
localStorage.clear();
23+
LocalStorage.load();
24+
});
25+
2126
it("should return the default value if the key doesn't exist", () => {
2227
expect(LocalStorage.get('str')).toBe('foo');
2328
expect(LocalStorage.get('num')).toBeUndefined();

packages/browser-utils/src/services/local-storage/local-storage.service-mixin.ts

+20-24
Original file line numberDiff line numberDiff line change
@@ -9,23 +9,17 @@ import { LocalStorageOptions } from './types';
99
export function LocalStorageMixin<TLocalStorage extends object>(
1010
options: LocalStorageOptions<TLocalStorage>,
1111
) {
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();
1515

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 {
2923
try {
3024
const raw = localStorage.getItem(options.key);
3125
const data: TLocalStorage = JSON.parse(raw ?? '{}');
@@ -44,15 +38,18 @@ export function LocalStorageMixin<TLocalStorage extends object>(
4438
* @returns The data from `localStorage`.
4539
*/
4640
static load(): TLocalStorage {
47-
this.data = this.readData();
48-
return this.data;
41+
this.instance._data = this.readFromLocalStorage();
42+
return this.instance._data;
4943
}
5044

5145
/**
5246
* Saves the data to `localStorage`.
5347
*/
5448
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+
);
5653
}
5754

5855
/**
@@ -61,8 +58,8 @@ export function LocalStorageMixin<TLocalStorage extends object>(
6158
* @returns The value for the given key.
6259
*/
6360
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];
6663
return value;
6764
}
6865

@@ -72,9 +69,8 @@ export function LocalStorageMixin<TLocalStorage extends object>(
7269
* @returns The value for the given key.
7370
*/
7471
static set<TKey extends keyof TLocalStorage>(key: TKey, value: TLocalStorage[TKey]): void {
75-
this.data[key] = value;
72+
this.instance._data[key] = value;
7673
this.save();
7774
}
78-
}
79-
return LocalStorage;
75+
};
8076
}

0 commit comments

Comments
 (0)