-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
77 lines (65 loc) · 2.22 KB
/
script.js
File metadata and controls
77 lines (65 loc) · 2.22 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
const todoInput = document.getElementById('todoinput');
const addButton = document.getElementById('addinput');
const taskList = document.querySelector('.todo ul');
// const footer = document.querySelector('.todo footer');
let tasks = []; // Array to store tasks
addButton.addEventListener('click', function() {
const taskText = todoInput.value.trim(); // Get input value and remove whitespace
if (taskText !== '') {
addTask(taskText);
todoInput.value = ''; // Clear input field
updateFooter();
}
});
function addTask(text) {
const task = {
id: Date.now(), // Unique identifier for each task
text: text,
completed: false
};
tasks.push(task);
renderTask(task);
}
function renderTask(task) {
const li = document.createElement('li');
li.setAttribute('data-key', task.id);
const taskText = document.createElement('span');
taskText.textContent = task.text;
if (task.completed) {
taskText.style.textDecoration = 'line-through';
}
const deleteButton = document.createElement('button');
deleteButton.textContent = 'Delete';
deleteButton.classList.add('but');
deleteButton.addEventListener('click', function() {
deleteTask(task.id);
});
li.appendChild(taskText);
li.appendChild(deleteButton);
taskList.appendChild(li);
}
function deleteTask(id) {
tasks = tasks.filter(task => task.id !== id);
const taskItem = document.querySelector(`[data-key='${id}']`);
if (taskItem) {
taskItem.remove();
}
updateFooter();
}
function updateFooter() {
const completedTasks = tasks.filter(task => task.completed).length;
const uncompletedTasks = tasks.length - completedTasks;
footer.textContent = `completed: ${completedTasks} | uncompleted: ${uncompletedTasks}`;
}
function toggleTaskCompletion(id) {
const task = tasks.find(task => task.id === id);
if (task) {
task.completed = !task.completed;
const taskItem = document.querySelector(`[data-key='${id}']`);
if (taskItem) {
const taskText = taskItem.querySelector('span');
taskText.style.textDecoration = task.completed ? 'line-through' : 'none';
}
updateFooter();
}
}