forked from chrisjonesdesign85/time-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
195 lines (161 loc) · 5.27 KB
/
script.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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
//main JS
let interval; // to store the timer values
let projects = [] //store projects
let input = document.getElementById("task-input");
let submit = document.getElementById("task-submit")
let times = document.getElementById("times")
// add a project when the '+' button is clicked
let addProject = () => {
//create project DIV
let newDiv = document.createElement("div")
newDiv.classList.add("project")
//create project inner div
let projectBox = document.createElement("div")
projectBox.classList.add("projectBox")
//title of Project from input field
// store the input into a variable named input
let input = document.getElementById("task-input").value;
// create an h3 to store the input
let h3 = document.createElement("h3")
// make the text inside the h3 the input
h3.innerHTML = input
//add the h3 to the newDiv
newDiv.appendChild(h3)
// create a span for the timer
let timeTxt = document.createElement("span")
// give the span an id of timer.
timeTxt.id = "timer"
// set the timer to 00
// timeTxt.innerHTML = ''
let Clock= {
totalSeconds: 0,
start: function () {
if (!this.interval) {
var self = this;
function pad(val) { return val > 9 ? val : "0" + val; }
this.interval = setInterval(function () {
self.totalSeconds += 1;
h= pad(Math.floor(self.totalSeconds / 3600 % 60))
m= pad(Math.floor(self.totalSeconds / 60 % 60));
s = pad(parseInt(self.totalSeconds % 60));
timeTxt.innerHTML = `${h}:${m}:${s}`
}, 1000);
}
},
reset: function () {
Clock.totalSeconds = null;
clearInterval(this.interval);
delete this.interval;
},
pause: function () {
clearInterval(this.interval);
delete this.interval;
},
resume: function () {
this.start();
},
restart: function () {
this.reset();
Clock.start();
}
}
// create a play button
let playBtn = document.createElement("button")
playBtn.innerHTML = '<i class="fas fa-play"></i>'
playBtn.classList.add("playBtn")
playBtn.addEventListener('click', () => {
console.log("play")
Clock.start()
})
//create a stop button
let stopBtn = document.createElement("button")
stopBtn.innerHTML = '<i class="fas fa-stop"></i>'
stopBtn.classList.add("stopBtn")
stopBtn.addEventListener('click', () => {
console.log("stop")
Clock.pause()
})
// create a delete button
let del = document.createElement("button")
del.innerHTML = '<i class="fas fa-trash"></i>'
del.classList.add("delete")
projectBox.appendChild(timeTxt)
projectBox.appendChild(playBtn);
projectBox.appendChild(stopBtn)
projectBox.appendChild(del);
newDiv.appendChild(projectBox);
document.getElementById("times").appendChild(newDiv);
// delete a project
del.addEventListener('click', (e) => {
e.stopPropagation();
let res = confirm('Do you want to delete this project?');
if (res == true) {
times.removeChild(newDiv)
removeProject(input);
} else {
return true;
}
saveProjects()
})
let formText = document.getElementById("task-input")
formText.value = ""
project(input, Clock)
}
// remove project from storage
const removeProject = (title) => {
const projectTitle = projects.findIndex(function (project) {
return project.title === title
})
if (projectTitle > -1) {
projects.splice(projectTitle, 1)
}
saveProjects()
}
//run addProject when the submit button is clicked.
submit.addEventListener("click", (addProject) => {
addProject.preventDefault()
alertMessage(input)
});
//create an alert when there is nothing in input
const alertMessage = () => {
let text = input.value
if ( text === "") {
alert('Add a Project')
} else {
addProject()
}
}
// save projects to storage
const saveProjects = () => {
localStorage.setItem("projects", JSON.stringify(projects))
}
try {
projects = projectsJSON ? JSON.parse(projectsJSON) : []
} catch (e) {
projects = []
}
// save project object
const project = (input, Clock) => {
if (input.length > 0) {
projects.push({
title: input,
Clock
})
saveProjects()
}
}
//load projects from storage
const loadProjects = () => {
JSON.parse(localStorage.getItem("projects")) || []; //store projects
try {
return projects ? JSON.parse(projects) : []
} catch (e) {
return []
}
}
window.addEventListener('storage', (e) => {
if (e.key === 'projects') {
loadProjects()
renderProjects()
}
})