-
Notifications
You must be signed in to change notification settings - Fork 0
/
lib.js
117 lines (103 loc) · 2.5 KB
/
lib.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
function generateUID() {
// I generate the UID from two parts here
// to ensure the random number provide enough bits.
let firstPart = (Math.random() * 46656) | 0;
let secondPart = (Math.random() * 46656) | 0;
firstPart = ("000" + firstPart.toString(36)).slice(-3);
secondPart = ("000" + secondPart.toString(36)).slice(-3);
return firstPart + secondPart;
}
function getTranslateVendor() {
return new Promise((resolve, reject) => {
chrome.storage.sync.get("translateVendor", (data) => {
resolve(data["translateVendor"]);
});
});
}
function setTranslateVendor(vendor) {
return new Promise((resolve, reject) => {
chrome.storage.sync.set(
{
translateVendor: vendor,
},
() => {
// sendNotification(`Translate is set to ${vendor ? vendor: 'baidu'}`);
resolve(vendor);
}
);
});
}
async function getWords() {
return new Promise((resolve, reject) => {
chrome.storage.sync.get("words", (data) => {
resolve(data["words"] || []);
});
});
}
function sendNotification(message) {
chrome.notifications.create(`${generateUID()}`, {
message: message,
title: "collect new english words",
type: "basic",
iconUrl: "images/icon-64x64.png",
});
}
/**
*
* @param {string} str
* @param {Array} words
* @return {Promise<string>}
*/
async function addWord(str, words) {
let _str = str.trim();
if (!_str) {
return "";
}
_str = _str.toLowerCase();
const arr = _str.split(" ").filter((it) => it.length > 0);
const duplicate = [];
const needAdded = [];
for (let text of arr) {
const index = words.findIndex((it) => it.text === text);
index !== -1 ? duplicate.push(text) : needAdded.push(text);
}
if (duplicate.length > 0) {
sendNotification(`<${duplicate.join(", ")}> is already collected.`);
}
const _newWords = needAdded.map((text) => {
return {
id: generateUID(),
text: text,
};
});
return updateWords([..._newWords, ...words]);
}
/**
*
* @param words
* @return {Promise<string>}
*/
async function updateWords(words) {
return new Promise((resolve, reject) => {
chrome.storage.sync.set(
{
words: words,
},
() => {
resolve("update successfully!");
}
);
});
}
/**
*
* @param {Array} ids
* @return {Promise<string>}
*/
async function deleteWordByIds(ids) {
const words = await getWords();
const filteredWords = words.filter((it) => {
return !ids.includes(it.id);
});
return await updateWords(filteredWords);
}