-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmatrix.js
33 lines (27 loc) · 1 KB
/
matrix.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
document.addEventListener("DOMContentLoaded", () => {
const taskLists = [
[document.getElementById("importantUrgent"), document.getElementById("importantNotUrgent")],
[document.getElementById("notImportantUrgent"), document.getElementById("notImportantNotUrgent")]
];
let tasks = []
function updateMatrixFromStorage() {
if (localStorage.getItem("tasks") === JSON.stringify(tasks))
return ;
tasks = JSON.parse(localStorage.getItem("tasks")) || [];
renderMatrix();
}
function renderMatrix() {
taskLists.forEach((row, rowIndex) => {
row.forEach((cell, columnIndex) => {
cell.innerHTML = tasks
.filter(task => evaluateTask(task, rowIndex, columnIndex))
.map(task => `<li>${task.task}</li>`)
.join("");
});
});
}
const evaluateTask = (task, rowIndex, columnIndex) =>
task.important === (rowIndex === 0) && task.urgent === (columnIndex === 0);
setInterval(updateMatrixFromStorage, 300);
updateMatrixFromStorage();
});