-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
209 lines (191 loc) · 6.07 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
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
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, index) => {
localStorage.setItem(
`${arrayName}Items`,
JSON.stringify(listArrays[index])
);
});
}
// Filter Arrays to remove null
function filterArray(array) {
console.log(array);
const filteredArray = array.filter((item) => item !== null);
console.log(filteredArray);
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
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, reset textbox
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 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 dropped 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;
}
// Coulmn allows for item to drop
function allowDrop(e) {
e.preventDefault();
}
// When the item inters the column area
function dragEnter(column) {
listColumns[column].classList.add('over');
currentColumn = column;
}
// Droppign Item in column
function drop(e) {
e.preventDefault();
// Remove background color padding
listColumns.forEach((column) => {
column.classList.remove('over');
});
// Add item to column
const parent = listColumns[currentColumn];
parent.appendChild(draggedItem);
// Dragging complete
dragging = false;
rebuildArrays();
}
// On Load
updateDOM();