-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
66 lines (51 loc) · 1.39 KB
/
index.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
// tab list array
let myLeads = [];
//UI elements
const inputBtn = document.getElementById("input-btn");
const inputEl = document.getElementById("input-el");
const ulEl = document.getElementById("ul-el");
const deleteBtn = document.getElementById("delete-btn");
const tabBtn = document.getElementById("tab-btn");
//array list render as html list
function render(leads) {
let lisItems = "";
for (let i = 0; i < leads.length; i++) {
lisItems += `
<li>
<a target='_blank' href='${leads[i]}' >
${leads[i]}
</a>
</li>`;
}
ulEl.innerHTML = lisItems;
}
//initial render load data from local storage
const leadsFromLocalStorage = JSON.parse(localStorage.getItem("Leads"));
if (leadsFromLocalStorage) {
myLeads = leadsFromLocalStorage;
render(myLeads);
}
//save
inputBtn.addEventListener("click", function () {
myLeads.push(inputEl.value);
//clear
if (inputEl.value != "") {
inputEl.value = "";
}
localStorage.setItem("Leads", JSON.stringify(myLeads));
render(myLeads);
});
//save
tabBtn.addEventListener("click", function () {
chrome.tabs.query({ active: true, currentWindow: true }, function (tabs) {
myLeads.push(tabs[0].url);
localStorage.setItem("Leads", JSON.stringify(myLeads));
render(myLeads);
});
});
//delete
deleteBtn.addEventListener("dblclick", function () {
localStorage.clear();
myLeads = [];
render(myLeads);
});