-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
135 lines (107 loc) · 4.12 KB
/
app.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
// swap const to swap array bars
const swap = (element1, element2) => {
let temp = element1.style.height;
element1.style.height = element2.style.height;
element2.style.height = temp;
}
// Disables sorting buttons used in conjunction with enable
const disableSortingBtn = () => {
document.querySelector(".bubbleSort").disabled = true;
document.querySelector(".heapSort").disabled = true;
document.querySelector(".insertionSort").disabled = true;
document.querySelector(".mergeSort").disabled = true;
document.querySelector(".quickSort").disabled = true;
document.querySelector(".selectionSort").disabled = true;
}
// Enables sorting buttons used in conjunction with disable
const enableSortingBtn = () => {
document.querySelector(".bubbleSort").disabled = false;
document.querySelector(".heapSort").disabled = false;
document.querySelector(".insertionSort").disabled = false;
document.querySelector(".mergeSort").disabled = false;
document.querySelector(".quickSort").disabled = false;
document.querySelector(".selectionSort").disabled = false;
}
// Disables size slider used in conjunction with enable, so that we can disable during sorting and enable buttons after it
const disableSizeSlider = () => {
document.querySelector("#size_input").disabled = true;
}
const disableSpeedSlider = () => {
document.querySelector("#speed_input").disabled = true;
}
const enableSpeedSlider = () => {
document.querySelector("#speed_input").disabled = false;
}
// Enables size slider used in conjunction with disable
const enableSizeSlider = () => {
document.querySelector("#size_input").disabled = false;
}
// Disables newArray buttons used in conjunction with enable, so that we can disable during sorting and enable buttons after it
const disableNewArrayBtn = () => {
document.querySelector(".new").disabled = true;
}
const enableNewArrayBtn = () => {
document.querySelector(".new").disabled = false;
}
const enableStopSortingBtn = () => {
document.querySelector(".stop").disabled = false;
}
const disableStopSortingBtn = () => {
document.querySelector(".stop").disabled = true;
}
// to delay sway to animate sorting (1000ms = 1s)
const delayTime = (lag) => {
return new Promise(resolve => {
setTimeout(() => { resolve('') }, lag);
})
}
let arraySize = document.querySelector("#size_input");
arraySize.addEventListener('input', () => {
console.log(arraySize.value, typeof(arraySize.value));
createNewArray(parseInt(arraySize.value));
});
let delay = 200;
let delayElement = document.querySelector("#speed_input");
delayElement.addEventListener('input', () => {
console.log(delayElement.value, typeof(delayElement.value));
delay = 320 - parseInt(delayElement.value);
});
const deleteChild = () => {
const bar = document.querySelector("#sorting");
bar.innerHTML = '';
}
let barArray = [];
const createNewArray = (noOfBars = 60) => {
deleteChild();
barArray = []
for (let i = 0; i < noOfBars; i++) {
barArray.push(Math.floor(Math.random() * 196 + 5)); // max = 200 min = 5
}
console.log(barArray)
const bars = document.querySelector("#sorting");
for (let i = 0; i < noOfBars; i++) {
const bar = document.createElement("div");
bar.style.height = `${barArray[i]*2}px`;
bar.classList.add('bar');
bar.classList.add('flex-item');
bar.classList.add(`barNo${i}`);
bars.appendChild(bar);
}
}
createNewArray();
const newArrayButton = document.querySelector(".new");
newArrayButton.addEventListener("click", () => {
hasPressedStop = false;
enableSpeedSlider();
console.log("From newArray " + arraySize.value);
console.log("From newArray " + delay);
enableSortingBtn();
enableSizeSlider();
createNewArray(arraySize.value);
});
const stopSortingButton = document.querySelector(".stop");
stopSortingButton.addEventListener("click", () => {
disableSortingBtn();
disableSizeSlider();
hasPressedStop = true;
})