diff options
author | Chocobozzz <me@florianbigard.com> | 2018-03-23 14:26:20 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2018-03-23 14:26:20 +0100 |
commit | 0bd78bf30b2ae159791bdc90d17ed18e0327f621 (patch) | |
tree | e8f69cef499a99c51deeea39f7197b7ff93a80a2 /client/src/app/shared/misc | |
parent | 9c673970f66fe91c665e1e3905fa768f57e11a18 (diff) | |
download | PeerTube-0bd78bf30b2ae159791bdc90d17ed18e0327f621.tar.gz PeerTube-0bd78bf30b2ae159791bdc90d17ed18e0327f621.tar.zst PeerTube-0bd78bf30b2ae159791bdc90d17ed18e0327f621.zip |
Proxify local storage and handle if it is unavailable
Diffstat (limited to 'client/src/app/shared/misc')
-rw-r--r-- | client/src/app/shared/misc/peertube-local-storage.ts | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/client/src/app/shared/misc/peertube-local-storage.ts b/client/src/app/shared/misc/peertube-local-storage.ts new file mode 100644 index 000000000..ad761c82f --- /dev/null +++ b/client/src/app/shared/misc/peertube-local-storage.ts | |||
@@ -0,0 +1,70 @@ | |||
1 | // Thanks: https://github.com/capaj/localstorage-polyfill | ||
2 | |||
3 | const valuesMap = new Map() | ||
4 | |||
5 | class MemoryStorage { | ||
6 | [key: string]: any | ||
7 | [index: number]: string | ||
8 | |||
9 | getItem (key) { | ||
10 | const stringKey = String(key) | ||
11 | if (valuesMap.has(key)) { | ||
12 | return String(valuesMap.get(stringKey)) | ||
13 | } | ||
14 | |||
15 | return null | ||
16 | } | ||
17 | |||
18 | setItem (key, val) { | ||
19 | valuesMap.set(String(key), String(val)) | ||
20 | } | ||
21 | |||
22 | removeItem (key) { | ||
23 | valuesMap.delete(key) | ||
24 | } | ||
25 | |||
26 | clear () { | ||
27 | valuesMap.clear() | ||
28 | } | ||
29 | |||
30 | key (i: any) { | ||
31 | if (arguments.length === 0) { | ||
32 | throw new TypeError('Failed to execute "key" on "Storage": 1 argument required, but only 0 present.') | ||
33 | } | ||
34 | |||
35 | const arr = Array.from(valuesMap.keys()) | ||
36 | return arr[i] | ||
37 | } | ||
38 | |||
39 | get length () { | ||
40 | return valuesMap.size | ||
41 | } | ||
42 | } | ||
43 | |||
44 | let peertubeLocalStorage: Storage | ||
45 | try { | ||
46 | peertubeLocalStorage = localStorage | ||
47 | } catch (err) { | ||
48 | const instance = new MemoryStorage() | ||
49 | |||
50 | peertubeLocalStorage = new Proxy(instance, { | ||
51 | set: function (obj, prop, value) { | ||
52 | if (MemoryStorage.prototype.hasOwnProperty(prop)) { | ||
53 | instance[prop] = value | ||
54 | } else { | ||
55 | instance.setItem(prop, value) | ||
56 | } | ||
57 | return true | ||
58 | }, | ||
59 | get: function (target, name) { | ||
60 | if (MemoryStorage.prototype.hasOwnProperty(name)) { | ||
61 | return instance[name] | ||
62 | } | ||
63 | if (valuesMap.has(name)) { | ||
64 | return instance.getItem(name) | ||
65 | } | ||
66 | } | ||
67 | }) | ||
68 | } | ||
69 | |||
70 | export { peertubeLocalStorage } | ||