-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.js
226 lines (190 loc) · 4.39 KB
/
data.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
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
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
var db = {};
let type_collection;
module.exports = {
get : function(tag,where){
if(!type_collection){
process_type_collection();
}
let data_type;
if(where === "local" || where === "session"){
data_type = type_collection[where][tag];
}
if(typeof(tag) !== 'string'){
return engine.common.error('invalid_tag');
}
if(!where){
where = 'mem';
}
if(where == 'mem'){
if(db.hasOwnProperty(tag) == false){
return null;
} else {
return db[tag];
}
}
if(where == 'session'){
if(sessionStorage.hasOwnProperty(tag) == false){
return null;
} else {
return convert(data_type,sessionStorage[tag]);
}
}
if(where == 'local'){
if(localStorage.hasOwnProperty(tag) == false){
return null;
} else {
return convert(data_type,localStorage[tag]);
}
}
},
set : function(tag,value,where){
if(typeof(tag) !== 'string'){
return engine.common.error('invalid_tag');
}
if(!where){
where = 'mem';
}
let parsed;
if(typeof(value) == 'object'){
parsed = JSON.stringify(value);
} else if(typeof(value) !== 'string') {
parsed = value.toString();
} else {
parsed = value;
}
if(where == 'mem'){
if(!db[tag]){
db[tag] = parsed;
} else {
return false;
}
}
if(where == 'session'){
if(!sessionStorage[tag]){
sessionStorage.setItem(tag,parsed);
} else {
return false;
}
}
if(where == 'local'){
if(!localStorage[tag]){
localStorage.setItem(tag,parsed);
} else {
return false;
}
}
return save_data_type(tag,where,typeof(value));
},
reset : function(tag,value,where){
if(typeof(tag) !== 'string'){
return engine.common.error('invalid_tag');
}
if(!where){
where = 'mem';
}
let parsed;
if(typeof(value) == 'object'){
parsed = JSON.stringify(value);
} else if(typeof(value) !== 'string') {
parsed = value.toString();
} else {
parsed = value;
}
if(where == 'mem'){
db[tag] = value;
}
if(where == 'session'){
sessionStorage.setItem(tag,parsed);
}
if(where == 'local'){
localStorage.setItem(tag,parsed);
}
save_data_type(tag,where,typeof(value));
return true;
},
delete:(tag,where)=>{
if(!type_collection){
process_type_collection();
}
if(where == 'mem'){
delete db[tag];
}
if(where == 'session'){
remove_data_type(tag,'session');
sessionStorage.removeItem(tag);
}
if(where == 'local'){
remove_data_type(tag,'local');
localStorage.removeItem(tag);
}
return true;
}
};
function convert(type,data){
if(type == "number"){
return Number(data);
}
if(type == "object"){
return JSON.parse(data);
}
if(type == "boolean"){
return JSON.parse(data);
}
return data;
}
function remove_data_type(tag,where){
if(!type_collection){
process_type_collection();
}
if(where === "local"){
delete type_collection.local[tag];
localStorage.setItem("type_collection_local",JSON.stringify(type_collection.local));
}
if(where === "session"){
delete type_collection.session[tag];
localStorage.setItem("type_collection_session",JSON.stringify(type_collection.session));
}
return true;
}
function save_data_type(tag,where,type){
if(!type_collection){
process_type_collection();
}
if(where === "local"){
type_collection.local[tag] = type;
localStorage.setItem("type_collection_local",JSON.stringify(type_collection.local));
}
if(where === "session"){
type_collection.session[tag] = type;
localStorage.setItem("type_collection_session",JSON.stringify(type_collection.session));
}
return true;
}
async function process_type_collection(){
let get_local,get_session;
try{
const fetch = localStorage.getItem("type_collection_session");
if(fetch){
get_session = JSON.parse(fetch)
} else {
get_session = {};
}
} catch(e) {
get_session = {}
}
try{
const fetch = localStorage.getItem("type_collection_local");
if(fetch){
get_local = JSON.parse(fetch)
} else {
get_local = {};
}
} catch(e) {
get_local = {}
}
type_collection = {
session:get_session,
local:get_local
};
return true;
}