-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDatabase.js
More file actions
132 lines (106 loc) · 3.2 KB
/
Copy pathDatabase.js
File metadata and controls
132 lines (106 loc) · 3.2 KB
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
'use babel';
/* eslint-disable no-shadow,prefer-promise-reject-errors */
import { FileUtils } from './FileUtils';
import { Logger } from './Logger';
import { PLUGIN } from '../constants/common';
import { STORE_KEYS } from '../constants/store';
const tName = 'projects';
class Database {
db = null;
constructor() {
const openRequest = indexedDB.open(PLUGIN.dbName, PLUGIN.dbVersion);
openRequest.onsuccess = () => {
this.db = openRequest.result;
Logger.log('DB is ready');
};
openRequest.onerror = () => {
this.db = null;
Logger.log('DB error: ', openRequest.error);
};
openRequest.onupgradeneeded = () => {
const db = openRequest.result;
if (!db.objectStoreNames.contains(tName)) {
db.createObjectStore(tName);
}
this.db = db;
Logger.log(`DB is upgraded to version ${PLUGIN.dbVersion}`);
};
}
async init() {
const timeout = new Promise(resolve => {
setTimeout(() => {
resolve(false);
}, 5000);
});
const connect = new Promise(resolve => {
const interval = setInterval(() => {
if (this.db) {
clearInterval(interval);
resolve(true);
}
}, 100);
});
const result = await Promise.race([timeout, connect]).then(result => result);
return Promise.resolve(result);
}
async storeState(state, isShared = false) {
if (!this.db) {
return Promise.reject('DB is not running');
}
const path = isShared ? STORE_KEYS.state : FileUtils.getMainProjectPath();
if (!path) {
Logger.log('No confirmed main project path. Storing project state failed');
return Promise.resolve();
}
return new Promise((resolve, reject) => {
const transaction = this.db.transaction(tName, 'readwrite');
const store = transaction.objectStore(tName);
const request = store.put(state, path);
request.onsuccess = () => {
resolve(request.result);
};
request.onerror = () => {
reject(request.error);
};
});
}
async restoreState(isShared = false) {
if (!this.db) {
return Promise.reject('DB is not running');
}
const path = isShared ? STORE_KEYS.state : FileUtils.getMainProjectPath();
if (!path) {
Logger.log('No confirmed main project path. Restoring project state failed');
return Promise.resolve({});
}
return new Promise((resolve, reject) => {
const transaction = this.db.transaction(tName);
const store = transaction.objectStore(tName);
const request = store.get(path);
request.onsuccess = () => {
resolve(request.result || {});
};
request.onerror = () => {
reject(request.error);
};
});
}
async clearDB() {
if (!this.db) {
return Promise.reject('DB is not running');
}
return new Promise((resolve, reject) => {
const transaction = this.db.transaction(tName, 'readwrite');
const store = transaction.objectStore(tName);
const request = store.clear();
request.onsuccess = () => {
resolve(request.result);
};
request.onerror = () => {
reject(request.error);
};
});
}
}
const DB = new Database();
export { DB };