-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
245 lines (187 loc) · 6.61 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
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
document.addEventListener('DOMContentLoaded', onReady);
let constIndex = 0
let withVotes = false;
let options = document.getElementById('input');
Storage.prototype.setObj = function (key, obj) {
return this.setItem(key, JSON.stringify(obj))
}
Storage.prototype.getObj = function (key) {
return JSON.parse(this.getItem(key))
}
let memory = window.localStorage.getObj('memory');
function onReady(e) {
createInputRow()
let votesCheckbox = document.getElementById('useVotes');
votesCheckbox.checked = withVotes;
votesCheckbox.addEventListener('click', toggleVotes);
document.getElementById('choose').addEventListener('click', createAnswerAndSpitOut);
generateInMemoryList();
applyVoteSetting()
document.getElementById('addRow').addEventListener('click', createInputRow)
}
function createInputRowWithValue(option) {
constIndex += 1
let container = document.createElement("li")
container.className = 'inputRowContainer'
container.id = constIndex
const optionField = document.createElement('input');
optionField.setAttribute('type', 'text');
optionField.setAttribute('placeholder', 'Location or food option')
optionField.value = option
const votes = document.createElement('input');
votes.setAttribute('type', 'number')
votes.setAttribute('min', '00')
votes.setAttribute('value', '1')
votes.classList.add('voteNumber')
if (!withVotes) {
votes.classList.add('hidden')
}
const removeButton = document.createElement('input');
removeButton.setAttribute('type', 'button')
removeButton.setAttribute('data-id', constIndex)
removeButton.setAttribute('value', 'X')
removeButton.addEventListener('click', removeOptionRowEventListener)
container.appendChild(optionField)
container.appendChild(votes);
container.appendChild(removeButton)
options.appendChild(container);
container.addEventListener('keyup', keyHandler);
optionField.focus();
}
function createInputRow() {
createInputRowWithValue('')
}
function keyHandler(e) {
// console.log(e.keyCode)
if (e.keyCode === 13 && parseInt(e.target.parentElement.id) == options.children[options.children.length - 1].id) {
// console.log(e.target.parentElement.id == options.children[options.children.length - 1].id )
e.target.removeEventListener('keyup', keyHandler, true)
if (!isLastRowEmpty()) {
createInputRow()
}
}
}
function toggleVotes() {
withVotes = !withVotes
applyVoteSetting()
}
function applyVoteSetting() {
let elements = document.getElementsByClassName('voteNumber')
if (withVotes) {
for (let i = 0; i < elements.length; i++) {
elements[i].classList.remove('hidden')
elements[i].value = 1
};
} else {
for (let i = 0; i < elements.length; i++) {
elements[i].classList.add('hidden')
elements[i].value = 1
};
}
}
function createAnswerAndSpitOut() {
if (options.children.length > 1) {
let weightedList = [];
Array.from(options.children).forEach(element => {
const optionText = element.children[0].value;
const wheight = element.children[1].value
if (optionText.length > 0) {
saveOption(optionText);
for (let i = 0; i < wheight; i++) {
weightedList.push(optionText)
}
}
});
//console.log(weightedList)
document.getElementById('output').innerText = weightedList[Math.floor(Math.random() * weightedList.length)]
document.getElementById('outputSentence').classList.remove('hidden')
} else(
document.getElementById('output').innerText = 'Please provide some options'
)
}
function generateInMemoryList() {
const memoryList = document.getElementById('memoryList');
memoryList.innerHTML = ''
if (!memory) {
memory = {
options: []
}
window.localStorage.setObj('memory', memory)
}
memory.options.forEach(option => {
addMemoryItem(option);
})
}
function saveOption(option) {
if (!memory.options.includes(option)) {
console.log('Saved to memory')
memory.options.push(option)
window.localStorage.setObj('memory', memory)
}
generateInMemoryList()
}
function addToOptionList(e) {
if (!optionListContains(e.target.getAttribute('data-option'))) {
if (isLastRowEmpty()) {
removeOptionRow(options.children[options.children.length - 1].id)
}
createInputRowWithValue(e.target.getAttribute('data-option'))
}
}
function addMemoryItem(option) {
const memoryList = document.getElementById('memoryList');
const memoryItem = document.createElement('li');
const memoryText = document.createElement('span');
memoryText.innerText = option;
const memoryAddButton = document.createElement('input')
memoryAddButton.setAttribute('type', 'button')
memoryAddButton.setAttribute('data-option', option)
memoryAddButton.addEventListener('click', addToOptionList)
memoryAddButton.value = 'use'
const memoryRemoveButton = document.createElement('input')
memoryRemoveButton.setAttribute('type', 'button')
memoryRemoveButton.setAttribute('data-option', option)
memoryRemoveButton.addEventListener('click', removeFromMemoryList)
memoryRemoveButton.value = 'remove'
memoryItem.appendChild(memoryText);
memoryItem.appendChild(memoryAddButton);
memoryItem.appendChild(memoryRemoveButton)
memoryList.appendChild(memoryItem);
}
function removeFromMemoryList(e) {
const option = e.target.getAttribute('data-option');
if (memory.options.includes(option)) {
memory.options = memory.options.filter(element => element != option)
window.localStorage.setObj('memory', memory)
console.log('removing ' + option)
}
generateInMemoryList()
}
function removeOptionRow(id) {
options.removeChild(document.getElementById(id))
}
function removeOptionRowEventListener(e) {
removeOptionRow(e.target.getAttribute('data-id'))
if (options.children.length == 0) {
createInputRow()
}
}
function isLastRowEmpty() {
let answer;
try {
answer = options.children[options.children.length - 1].children[0].value == ''
} catch {
answer = false
}
return answer
}
function optionListContains(option) {
for (let i = 0; i < options.children.length; i++) {
let value = options.children[i].children[0].value
//console.log(value)
if (value == option) {
return true
}
}
return false
}