-
Notifications
You must be signed in to change notification settings - Fork 2
/
gdata.js
105 lines (90 loc) · 3.45 KB
/
gdata.js
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
(function() {
const localStorage = window.localStorage;
const propSeparator = ",,";
function mangle(propKey) {
return "$" + propKey + "$";
}
function unmangle(propKey) {
return propKey.substring(1, propKey.length-1);
}
function objectPropPath(appKey, objectKey, mangledPropKey) {
return appKey + "_" + objectKey + "__" + mangledPropKey;
}
function objectMetadataPath(appKey, objectKey) {
return appKey + "_" + objectKey + "_proplist_";
}
function listObjectProps(appKey, objectKey) {
let metaKey = objectMetadataPath(appKey, objectKey);
let v = localStorage.getItem(metaKey);
if (v === null) {
return null;
}
if (v === "") {
return [];
}
return v.split(propSeparator).map(unmangle);
}
function saveObjectProp(appKey, objectKey, propKey, data) {
let mangledPropKey = mangle(propKey);
let metaKey = objectMetadataPath(appKey, objectKey);
let v = localStorage.getItem(metaKey);
if (v === null || v === '') {
// Creating a fresh meta file with a single (new) prop key.
localStorage.setItem(metaKey, mangledPropKey);
} else {
if (!v.includes(mangledPropKey)) {
v += propSeparator + mangledPropKey;
localStorage.setItem(metaKey, v);
}
}
localStorage.setItem(objectPropPath(appKey, objectKey, mangledPropKey), data);
}
function loadObjectProp(appKey, objectKey, propKey) {
let mangledPropKey = mangle(propKey);
return localStorage.getItem(objectPropPath(appKey, objectKey, mangledPropKey));
}
function objectPropExists(appKey, objectKey, propKey) {
let mangledPropKey = mangle(propKey);
return localStorage.getItem(objectPropPath(appKey, objectKey, mangledPropKey)) !== null;
}
function objectExists(appKey, objectKey) {
return localStorage.getItem(objectMetadataPath(appKey, objectKey)) !== null;
}
function deleteObjectProp(appKey, objectKey, propKey) {
let mangledPropKey = mangle(propKey);
localStorage.removeItem(objectPropPath(appKey, objectKey, mangledPropKey));
let metaKey = objectMetadataPath(appKey, objectKey);
let v = localStorage.getItem(metaKey);
if (v !== null) {
let parts = v.split(propSeparator);
let index = parts.indexOf(mangledPropKey);
if (index > -1) {
parts.splice(index, 1);
localStorage.setItem(metaKey, parts.join(propSeparator));
}
}
}
function deleteObject(appKey, objectKey) {
let metaKey = objectMetadataPath(appKey, objectKey);
let v = localStorage.getItem(metaKey);
if (v === null) {
return;
}
let keys = v.split(propSeparator);
for (let i = 0; i < keys.length; i++) {
let mangledPropKey = keys[i];
localStorage.removeItem(objectPropPath(appKey, objectKey, mangledPropKey));
}
localStorage.removeItem(metaKey);
}
return {
"objectPropPath": objectPropPath,
"listObjectProps": listObjectProps,
"saveObjectProp": saveObjectProp,
"loadObjectProp": loadObjectProp,
"objectPropExists": objectPropExists,
"objectExists": objectExists,
"deleteObjectProp": deleteObjectProp,
"deleteObject": deleteObject,
};
}());