-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
192 lines (175 loc) · 5.85 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
const addBtns = document.querySelectorAll(".add-btn:not(.solid)");
const saveItemBtns = document.querySelectorAll(".solid");
const addItemContainers = document.querySelectorAll(".add-container");
const addItems = document.querySelectorAll(".add-item");
// Item Lists
const listColumns = document.querySelectorAll(".drag-item-list");
const backlogList = document.getElementById("backlog-list");
const progressList = document.getElementById("progress-list");
const completeList = document.getElementById("complete-list");
const onHoldList = document.getElementById("on-hold-list");
// Items
let updatedOnLoad = false;
// Initialize Arrays
let backlogListArray = [];
let progressListArray = [];
let completeListArray = [];
let onHoldListArray = [];
let listArrays = [];
// Drag Functionality
let draggedItem;
let dragging = false;
let currentColumn;
// Get Arrays from localStorage if available, set default values if not
function getSavedColumns() {
if (localStorage.getItem("backlogItems")) {
backlogListArray = JSON.parse(localStorage.backlogItems);
progressListArray = JSON.parse(localStorage.progressItems);
completeListArray = JSON.parse(localStorage.completeItems);
onHoldListArray = JSON.parse(localStorage.onHoldItems);
} else {
backlogListArray = ["Release the course", "Sit back and relax"];
progressListArray = ["Work on projects", "Listen to music"];
completeListArray = ["Being cool", "Getting stuff done"];
onHoldListArray = ["Being uncool"];
}
}
// Set localStorage Arrays
function updateSavedColumns() {
listArrays = [
backlogListArray,
progressListArray,
completeListArray,
onHoldListArray,
];
const arrayNames = ["backlog", "progress", "complete", "onHold"];
arrayNames.forEach((arrayName, i) => {
localStorage.setItem(`${arrayName}Items`, JSON.stringify(listArrays[i]));
});
}
// Filter arrays to remove empty items
function filterArray(array) {
return array.filter((item) => item !== null);
}
// Create DOM Elements for each list item
function createItemEl(columnEl, column, item, index) {
// List Item
const listEl = document.createElement("li");
listEl.classList.add("drag-item");
listEl.textContent = item;
listEl.draggable = true;
listEl.setAttribute("ondragstart", "drag(event)");
listEl.contentEditable = true;
listEl.id = index;
listEl.setAttribute("onfocusout", `updateItem(${index}, ${column})`);
// Append
columnEl.appendChild(listEl);
}
// Update Columns in DOM - Reset HTML, Filter Array, Update localStorage
function updateDOM() {
// Check localStorage once
if (!updatedOnLoad) {
getSavedColumns();
}
// Backlog Column
backlogList.textContent = "";
backlogListArray.forEach((backlogItem, index) => {
createItemEl(backlogList, 0, backlogItem, index);
});
backlogListArray = filterArray(backlogListArray);
// Progress Column
progressList.textContent = "";
progressListArray.forEach((progressItem, index) => {
createItemEl(progressList, 1, progressItem, index);
});
progressListArray = filterArray(progressListArray);
// Complete Column
completeList.textContent = "";
completeListArray.forEach((completeItem, index) => {
createItemEl(completeList, 2, completeItem, index);
});
completeListArray = filterArray(completeListArray);
// On Hold Column
onHoldList.textContent = "";
onHoldListArray.forEach((onHoldItem, index) => {
createItemEl(onHoldList, 3, onHoldItem, index);
});
onHoldListArray = filterArray(onHoldListArray);
// Run getSavedColumns only once, Update Local Storage
updatedOnLoad = true;
updateSavedColumns();
}
// Update item - Delete if necessary or update array value
function updateItem(id, column) {
const selectedArray = listArrays[column];
const selectedColumnEl = listColumns[column].children;
if (!dragging) {
if (!selectedColumnEl[id].textContent) {
delete selectedArray[id];
} else {
selectedArray[id] = selectedColumnEl[id].textContent;
}
updateDOM();
}
}
// Add to column list and reset text box
function addToColumn(column) {
const itemText = addItems[column].textContent;
const selectedArray = listArrays[column];
selectedArray.push(itemText);
addItems[column].textContent = "";
updateDOM();
}
// Show add item input box
function showInputBox(column) {
addBtns[column].style.visibility = "hidden";
saveItemBtns[column].style.display = "flex";
addItemContainers[column].style.display = "flex";
}
// Hide add item input box
function hideInputBox(column) {
addBtns[column].style.visibility = "visible";
saveItemBtns[column].style.display = "none";
addItemContainers[column].style.display = "none";
addToColumn(column);
}
// Allow arrays to reflect drag and drop items
function rebuildArrays() {
backlogListArray = Array.from(backlogList.children).map((i) => i.textContent);
progressListArray = Array.from(progressList.children).map(
(i) => i.textContent
);
completeListArray = Array.from(completeList.children).map(
(i) => i.textContent
);
onHoldListArray = Array.from(onHoldList.children).map((i) => i.textContent);
updateDOM();
}
// When item starts dragging
function drag(e) {
draggedItem = e.target;
dragging = true;
}
// Column allows for item to drop
function allowDrop(e, column) {
e.preventDefault();
listColumns.forEach((column) => {
column.classList.remove("over");
});
listColumns[column].classList.add("over");
currentColumn = column;
}
// Dropping item in column
function drop(e) {
e.preventDefault();
listColumns.forEach((column) => {
column.classList.remove("over");
});
// Add item to column
const parent = listColumns[currentColumn];
parent.appendChild(draggedItem);
dragging = false;
rebuildArrays();
}
// On load
updateDOM();