File size: 12,162 Bytes
986f81d 59a10a9 986f81d 72d8c68 986f81d |
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 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 |
<!DOCTYPE html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My To-Do List</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
background-color: #f4f4f9;
color: #333;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh; /* Changed to min-height for longer lists */
margin: 0;
padding: 20px 0; /* Add some padding for scrollable content */
}
#app-container {
background: #fff;
padding: 25px 40px;
border-radius: 10px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
width: 100%;
max-width: 500px; /* Increased max-width slightly for more buttons */
box-sizing: border-box;
}
h1 {
color: #444;
text-align: center;
margin-top: 0;
margin-bottom: 20px;
font-weight: 600;
}
#task-input-container {
display: flex;
gap: 10px;
margin-bottom: 20px;
}
#task-input {
flex-grow: 1;
padding: 12px;
border: 1px solid #ddd;
border-radius: 5px;
font-size: 16px;
}
#add-task-btn {
padding: 12px 20px;
background-color: #007bff;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
font-weight: 500;
transition: background-color 0.3s;
}
#add-task-btn:hover {
background-color: #0056b3;
}
#task-list {
list-style: none;
padding: 0;
margin: 0;
}
.task-item {
display: flex;
align-items: center;
justify-content: space-between;
padding: 12px 0; /* Adjusted padding, horizontal padding now on children */
border-bottom: 1px solid #eee;
font-size: 16px;
}
.task-item:last-child {
border-bottom: none;
}
.task-text-content { /* New class for the text part */
cursor: pointer;
flex-grow: 1;
padding-right: 10px; /* Space before action buttons */
overflow-wrap: break-word; /* Prevent long text from breaking layout */
word-break: break-word;
}
.task-item.completed .task-text-content { /* Updated selector */
text-decoration: line-through;
color: #aaa;
}
.task-actions {
display: flex;
align-items: center;
flex-shrink: 0; /* Prevent actions container from shrinking */
}
.emoji-toggle {
background: transparent;
border: 1px solid transparent; /* Keep layout consistent */
border-radius: 4px;
padding: 4px 6px;
cursor: pointer;
margin-left: 5px;
font-size: 18px; /* Slightly larger for emojis */
opacity: 0.4; /* Dimmed when inactive */
transition: opacity 0.2s, border-color 0.2s;
line-height: 1; /* Ensure consistent height */
}
.emoji-toggle:hover {
opacity: 0.7;
}
.emoji-toggle.active {
opacity: 1;
border: 1px solid #007bff;
}
.delete-btn {
background: #dc3545;
color: white;
border: none;
border-radius: 50%;
width: 28px;
height: 28px;
cursor: pointer;
font-size: 16px;
line-height: 28px;
text-align: center;
transition: background-color 0.3s;
margin-left: 8px; /* Space from emoji toggles */
flex-shrink: 0;
}
.delete-btn:hover {
background: #c82333;
}
</style>
</head>
<body>
<div id="app-container">
<h1>To-Do List β
</h1>
<div id="task-input-container">
<input type="text" id="task-input" placeholder="Add a new task...">
<button id="add-task-btn">Add</button>
</div>
<ul id="task-list"></ul>
</div>
<script>
document.addEventListener('DOMContentLoaded', () => {
const taskInput = document.getElementById('task-input');
const addTaskBtn = document.getElementById('add-task-btn');
const taskList = document.getElementById('task-list');
const initialRawTasks = [
{ text: "Write the Unit Test", completed: true },
{ text: "Check the PR", completed: true },
{ text: "Debug the GPU trace", completed: true }
];
// Helper function to ensure task objects have all necessary properties
const ensureTaskProperties = (task) => {
return {
text: task.text,
completed: !!task.completed,
isCode: !!task.isCode,
isAdmin: !!task.isAdmin,
isClient: !!task.isClient,
};
};
// Load tasks from local storage or use initial tasks if storage is empty
let tasks = [];
const storedTasks = localStorage.getItem('tasks');
if (storedTasks) {
tasks = JSON.parse(storedTasks).map(ensureTaskProperties);
} else {
tasks = initialRawTasks.map(ensureTaskProperties);
}
if (tasks.length === 0 && initialRawTasks.length > 0 && !storedTasks) { // Ensure initial tasks are used if local storage was empty
tasks = initialRawTasks.map(ensureTaskProperties);
}
// Function to save tasks to local storage
const saveTasks = () => {
localStorage.setItem('tasks', JSON.stringify(tasks));
};
// Function to render tasks to the DOM
const renderTasks = () => {
// Sort tasks: Client first, then Code, then by completion status
tasks.sort((a, b) => {
// Client tasks come first
if (a.isClient && !b.isClient) return -1;
if (!a.isClient && b.isClient) return 1;
// If both are Client or both are not Client, then Code tasks
if (a.isCode && !b.isCode) return -1;
if (!a.isCode && b.isCode) return 1;
// If same client and code status, then uncompleted tasks first
if (!a.completed && b.completed) return -1;
if (a.completed && !b.completed) return 1;
return 0; // Maintain relative order for items with same priority
});
taskList.innerHTML = ''; // Clear existing list
tasks.forEach((task, index) => {
const li = document.createElement('li');
li.className = 'task-item';
if (task.completed) {
li.classList.add('completed');
}
// Task text content (emojis + text)
const taskTextContentEl = document.createElement('span');
taskTextContentEl.className = 'task-text-content';
let emojisPrefix = '';
if (task.isClient) emojisPrefix += 'π€ ';
if (task.isCode) emojisPrefix += 'π» ';
if (task.isAdmin) emojisPrefix += 'βοΈ ';
taskTextContentEl.textContent = emojisPrefix + task.text;
taskTextContentEl.addEventListener('click', () => toggleTaskCompletion(index));
// Actions container (toggles + delete)
const actionsContainer = document.createElement('div');
actionsContainer.className = 'task-actions';
// Emoji Toggles
const categories = [
{ type: 'client', emoji: 'π€', prop: 'isClient', title: 'Client Task' },
{ type: 'code', emoji: 'π»', prop: 'isCode', title: 'Code Task' },
{ type: 'admin', emoji: 'βοΈ', prop: 'isAdmin', title: 'Admin Task' }
];
categories.forEach(cat => {
const toggleBtn = document.createElement('button');
toggleBtn.className = 'emoji-toggle';
toggleBtn.textContent = cat.emoji;
toggleBtn.title = `Toggle ${cat.title}`;
toggleBtn.dataset.type = cat.type;
if (task[cat.prop]) {
toggleBtn.classList.add('active');
}
toggleBtn.addEventListener('click', (e) => {
e.stopPropagation(); // Prevent task completion toggle
toggleEmojiCategory(index, cat.prop);
});
actionsContainer.appendChild(toggleBtn);
});
// Delete button
const deleteBtn = document.createElement('button');
deleteBtn.textContent = 'Γ';
deleteBtn.className = 'delete-btn';
deleteBtn.title = "Delete Task";
deleteBtn.addEventListener('click', (e) => {
e.stopPropagation(); // Prevent task completion toggle
deleteTask(index);
});
actionsContainer.appendChild(deleteBtn);
li.appendChild(taskTextContentEl);
li.appendChild(actionsContainer);
taskList.appendChild(li);
});
};
// Function to add a new task
const addTask = () => {
const taskText = taskInput.value.trim();
if (taskText !== '') {
// Add new task with default false for emoji categories
tasks.unshift(ensureTaskProperties({ text: taskText, completed: false }));
taskInput.value = '';
saveTasks();
renderTasks();
}
};
// Function to delete a task
const deleteTask = (index) => {
tasks.splice(index, 1);
saveTasks();
renderTasks();
};
// Function to toggle a task's completion status
const toggleTaskCompletion = (index) => {
tasks[index].completed = !tasks[index].completed;
saveTasks();
renderTasks(); // Re-render to apply style and potentially re-sort if completion affects order
};
// Function to toggle an emoji category for a task
const toggleEmojiCategory = (index, categoryProp) => {
tasks[index][categoryProp] = !tasks[index][categoryProp];
saveTasks();
renderTasks(); // Re-render to update emojis, sort, and toggle style
};
// Event listener for the "Add" button
addTaskBtn.addEventListener('click', addTask);
// Event listener for the Enter key in the input field
taskInput.addEventListener('keypress', (e) => {
if (e.key === 'Enter') {
addTask();
}
});
// Initial render of tasks on page load
renderTasks();
});
</script>
</body>
</html> |