-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstorage.js
More file actions
77 lines (72 loc) · 1.94 KB
/
storage.js
File metadata and controls
77 lines (72 loc) · 1.94 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
export const getData = async () => {
const dataPromise = new Promise((resolve, reject) => {
chrome.runtime.sendMessage({ command: 'fetch' }, (response) => {
resolve(response);
});
});
const data = await dataPromise;
if (!data) {
return [];
}
return data;
};
export const setData = async (newNote) => {
const dataPromise = new Promise((resolve, reject) => {
chrome.runtime.sendMessage({ command: 'set', data: newNote }, () => {
resolve();
});
});
await dataPromise;
};
export const updateData = async (note) => {
const dataPromise = new Promise((resolve, reject) => {
chrome.runtime.sendMessage({ command: 'update', data: note }, () => {
resolve();
});
});
await dataPromise;
};
export const deleteData = async (id) => {
const dataPromise = new Promise((resolve, reject) => {
chrome.runtime.sendMessage({ command: 'delete', id }, () => {
resolve();
});
});
await dataPromise;
};
export const signin = async () => {
// chrome.runtime.sendMessage({ command: 'signin' }, (response) => {
// console.log(response);
// });
const dataPromise = new Promise((resolve, reject) => {
chrome.runtime.sendMessage({ command: 'signin' }, () => {
resolve();
});
});
await dataPromise;
};
export const getCurrentUser = async () => {
const userPromise = new Promise((resolve, reject) => {
chrome.runtime.sendMessage({ command: 'getCurrentUser' }, (response) => {
resolve(response);
});
});
const user = await userPromise;
return user;
};
export const logout = async () => {
const dataPromise = new Promise((resolve, reject) => {
chrome.runtime.sendMessage({ command: 'logout' }, () => {
resolve();
});
});
await dataPromise;
};
export const clearNotes = async () => {
const dataPromise = new Promise((resolve, reject) => {
chrome.runtime.sendMessage({ command: 'clear' }, () => {
resolve();
});
});
await dataPromise;
};