-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfunction.js
More file actions
84 lines (72 loc) · 2.09 KB
/
Copy pathfunction.js
File metadata and controls
84 lines (72 loc) · 2.09 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
// chrome://extensions/
let myLeads = []
const inputEl = document.getElementById("input-el")
const inputBtn = document.getElementById("input-btn")
const deleteBtn = document.getElementById("delete-btn")
const savetabBtn = document.getElementById("savetab-btn")
const ulEl = document.getElementById("ul-el")
//save tab btn
savetabBtn.addEventListener("click", function(){
chrome.tabs.query({active: true, currentWindow: true}, function(tabs) {
myLeads.push(tabs[0].url)
localStorage.setItem("myLeads", JSON.stringify(myLeads))
render(myLeads)
});
})
//getting items from local storage
let leadsFromLocalStorage = JSON.parse(localStorage.getItem('myLeads'));
//truthy check
if (leadsFromLocalStorage)
{
myLeads = leadsFromLocalStorage
render(myLeads)
}
deleteBtn.addEventListener("click", function(){
if(myLeads === "" ){
alert("⚠️ All fields are empty!")
}
else{
confirmMessage()
}
})
function confirmMessage() {
let text = "⚠️ Are you sure you want to delete?";
if (confirm(text) == true) {
localStorage.clear()
myLeads = []
render(myLeads)
}
// else {
// text = "You canceled!";
// }
}
//input button
inputBtn.addEventListener("click", function() {
if(inputEl.value === ""){
alert("⚠️ Please enter URL to save!")
}
else if(inputEl.value === ulEl){
alert("⚠️ This URL has been already added!")
}
else{
myLeads.push(inputEl.value)
inputEl.value = ""
//storing arrays as an strings in local storage as arrays can not be stored in the local storage
localStorage.setItem("myLeads", JSON.stringify(myLeads))
render(myLeads)
}
})
//rendering fucntion
function render(leads) {
let listItems = ""
for (let i = 0; i < leads.length; i++) {
listItems += `
<ol>
<a target='_blank' href='${leads[i]}'>
${leads[i]}
</a>
</ol>
`
}
ulEl.innerHTML = listItems
}