-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
213 lines (192 loc) · 6.25 KB
/
index.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
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
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;
// Initialise Arrays
let backlogListArray = [];
let progressListArray = [];
let completeListArray = [];
let onHoldListArray = [];
let listArrays = [];
//Draggable Items
let draggedItem;
let dragging = false;
let currentColumn;
// Get data from the local storage if available or set default 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"];
}
}
// getSavedColumns();
// updateSavedColumns();
function filterArray(array) {
const filteredArray = array.filter((item) => item !== null);
return filteredArray;
}
// 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 Child
columnEl.appendChild(listEl);
}
// Set local storage arrays
function updateSavedColumns() {
listArrays = [
backlogListArray,
progressListArray,
completeListArray,
onHoldListArray,
];
const arrayNames = ["backlog", "progress", "complete", "onHold"];
arrayNames.forEach((arrayName, index) => {
localStorage.setItem(
`${arrayName}Items`,
JSON.stringify(listArrays[index])
);
});
// localStorage.setItem("backlogItems", JSON.stringify(backLogListArray));
// localStorage.setItem("progressItems", JSON.stringify(progressListArray));
// localStorage.setItem("completeItems", JSON.stringify(completeListArray));
// localStorage.setItem("onHoldItems", JSON.stringify(onHoldListArray));
}
function updateDOM() {
// Check local storage 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);
updatedOnLoad = true;
updateSavedColumns();
}
// Update Items - 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 the column
function addToColumn(column) {
const itemText = addItems[column].textContent;
if (itemText === "") return;
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 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 = [];
for (let i = 0; i < backlogList.children.length; i++) {
backlogListArray.push(backlogList.children[i].textContent);
}
progressListArray = [];
for (let i = 0; i < progressList.children.length; i++) {
progressListArray.push(progressList.children[i].textContent);
}
completeListArray = [];
for (let i = 0; i < completeList.children.length; i++) {
completeListArray.push(completeList.children[i].textContent);
}
onHoldListArray = [];
for (let i = 0; i < onHoldList.children.length; i++) {
onHoldListArray.push(onHoldList.children[i].textContent);
}
updateDOM();
}
// when item starts dragging
function drag(e) {
draggedItem = e.target;
dragging = true;
}
//When items enter column area
function dragEnter(column) {
// Add background color and padding to the list
listColumns[column].classList.add("over");
currentColumn = column;
}
//Column allows for item to drop
function allowDrop(e) {
e.preventDefault();
}
//Dropping item in column
function drop(e) {
e.preventDefault();
// Remove background color and padding to the list
listColumns.forEach((column) => {
column.classList.remove("over");
});
// Add item to column
const parent = listColumns[currentColumn];
parent.appendChild(draggedItem);
dragging = false;
rebuildArrays();
}
updateDOM();