-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
338 lines (272 loc) · 11.7 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
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
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
const {
createFormGroup,
createLabel,
createTextInput,
createNumberInput,
createRadioInput,
createFileInput,
createFormCheck
} = window;
function generujIdFormularza() {
return Date.now();
}
async function pobierzRestauracje() {
const response = await fetch('localhost:8080/api/restauracje');
return restauracje;
}
async function pobierzKategorie(restauracjaId) {
const response = await fetch(`localhost:8080/api/restauracje/${restauracjaId}`);
const kategorie = await response.json();
globalneKategorie = kategorie;
return kategorie;
}
function wyswietlRestauracje(restauracje) {
const restauracjeDiv = document.getElementById('restauracje');
restauracjeDiv.innerHTML = '';
const select = document.createElement('select');
select.id = 'restauracjeSelect';
select.onchange = async () => {
const selectedIndex = select.selectedIndex;
const restauracja = restauracje[selectedIndex - 1];
if (restauracja) {
const kategorie = await pobierzKategorie(restauracja._id);
wyswietlKategorie(kategorie, restauracja.nazwa);
} else {
// Czyszczenie kategorii, gdy wybrano "Wybierz restaurację"
const kategorieDiv = document.getElementById('kategorie');
kategorieDiv.innerHTML = '';
globalneKategorie = null;
}
};
// Dodajemy opcję "Wybierz restaurację" jako pierwszą opcję na liście
const defaultOption = document.createElement('option');
defaultOption.textContent = 'Wybierz restaurację';
defaultOption.selected = true;
defaultOption.disabled = true;
select.appendChild(defaultOption);
// Dodajemy opcje dla każdej restauracji
restauracje.forEach((restauracja) => {
const option = document.createElement('option');
option.textContent = restauracja.nazwa;
option.value = restauracja._id;
option.classList.add('select-restauracja');
select.appendChild(option);
});
restauracjeDiv.appendChild(select);
}
//Podgląd obrazu przed jego załadowaniem
function previewImage(input, previewContainer) {
previewContainer.innerHTML = '';
if (input.files && input.files.length > 0) {
Array.from(input.files).forEach((file) => {
const reader = new FileReader();
reader.onload = function (e) {
const image = document.createElement('img');
image.src = e.target.result;
image.style.maxWidth = '100px';
image.style.marginRight = '10px';
previewContainer.appendChild(image);
};
reader.readAsDataURL(file);
});
}
}
function wyswietlKategorie(kategorie, nazwaRestauracji) {
const kategorieDiv = document.getElementById('kategorie');
kategorieDiv.innerHTML = '';
const form = document.createElement('form');
form.id = 'ankieta';
const row1 = document.createElement('div');
row1.classList.add('form-row');
const imieInput = document.createElement('input');
imieInput.type = 'text';
imieInput.name = 'imie';
imieInput.placeholder = 'Imię';
imieInput.dataset.ignore = true;
imieInput.classList.add('input-field');
row1.appendChild(imieInput);
const dataWizytyInput = document.createElement('input');
dataWizytyInput.type = 'date';
dataWizytyInput.name = 'data_wizyty';
dataWizytyInput.dataset.ignore = true;
dataWizytyInput.classList.add('input-field');
row1.appendChild(dataWizytyInput);
const przedzialCzasowyInput = document.createElement('input');
przedzialCzasowyInput.type = 'text';
przedzialCzasowyInput.name = 'przedzial_czasowy';
przedzialCzasowyInput.placeholder = 'Przedział czasowy';
przedzialCzasowyInput.dataset.ignore = true;
przedzialCzasowyInput.classList.add('input-field');
row1.appendChild(przedzialCzasowyInput);
form.appendChild(row1);
const row2 = document.createElement('div');
row2.classList.add('form-row');
const liczbaKlientowInput = document.createElement('input');
liczbaKlientowInput.type = 'number';
liczbaKlientowInput.name = 'liczba_klientow';
liczbaKlientowInput.placeholder = 'Liczba klientów';
liczbaKlientowInput.dataset.ignore = true;
liczbaKlientowInput.classList.add('input-field');
row2.appendChild(liczbaKlientowInput);
const liczbaPracownikowInput = document.createElement('input');
liczbaPracownikowInput.type = 'number';
liczbaPracownikowInput.name = 'liczba_pracownikow';
liczbaPracownikowInput.placeholder = 'Liczba pracowników';
liczbaPracownikowInput.dataset.ignore = true;
liczbaPracownikowInput.classList.add('input-field');
row2.appendChild(liczbaPracownikowInput);
form.appendChild(row2);
kategorie.forEach((kategoria, i) => {
const kategoriaDiv = document.createElement('div');
const kategoriaHeader = document.createElement('h3');
kategoriaHeader.textContent = `${i + 1}. ${kategoria.nazwa}`; // Dodano numerowanie kategorii
kategoriaHeader.classList.add('category-title'); // Dodaj klasę category-title do elementu <h3>
kategoriaDiv.appendChild(kategoriaHeader);
const pytaniaLista = document.createElement('ul');
kategoria.pytania.forEach((pytanie, j) => {
const pytanieLi = document.createElement('li');
pytanieLi.textContent = `${i + 1}.${j + 1}. ${pytanie.tresc}`; // Dodano numerowanie pytań
pytanieLi.classList.add('question-separator'); // Dodaj klasę question-separator do elementu <li>
// Dodajemy pytanieLi do pytaniaLista
pytaniaLista.appendChild(pytanieLi);
// Dodajemy pytaniaLista do kategoriaDiv
kategoriaDiv.appendChild(pytaniaLista);
// Dodajemy kategoriaDiv do form
form.appendChild(kategoriaDiv);
const ocenaDiv = document.createElement('div');
for (let i = 1; i <= 6; i++) {
const radioInput = document.createElement('input');
radioInput.type = 'radio';
radioInput.name = `ocena_${pytanie._id}`;
radioInput.value = i;
ocenaDiv.appendChild(radioInput);
const label = document.createElement('label');
label.textContent = i;
// margines do etykiety, aby stworzyć odstęp między przyciskami
label.style.marginRight = '20px';
ocenaDiv.appendChild(label);
}
const komentarzInput = document.createElement('input');
komentarzInput.type = 'text';
komentarzInput.name = `komentarz_${pytanie._id}`;
komentarzInput.placeholder = 'Dodatkowy komentarz';
const zdjecieInput = document.createElement('input');
zdjecieInput.type = 'file';
zdjecieInput.name = `zdjecie_${pytanie._id}`;
zdjecieInput.multiple = true;
//event listener do elementu zdjecieInput
zdjecieInput.addEventListener('change', function (event) {
// element div do wyświetlania podglądu zdjęć
let imagePreviewContainer = pytanieLi.querySelector('.image-preview-container');
if (!imagePreviewContainer) {
imagePreviewContainer = document.createElement('div');
imagePreviewContainer.className = 'image-preview-container';
imagePreviewContainer.style.marginTop = '10px';
pytanieLi.appendChild(imagePreviewContainer);
}
// Wywołanie funkcji previewImage, aby wyświetlić podgląd zdjęć
previewImage(event.target, imagePreviewContainer);
});
pytanieLi.appendChild(ocenaDiv);
pytanieLi.appendChild(komentarzInput);
pytanieLi.appendChild(zdjecieInput);
pytaniaLista.appendChild(pytanieLi);
});
kategoriaDiv.appendChild(pytaniaLista);
form.appendChild(kategoriaDiv);
});
const submitButton = document.createElement('button');
submitButton.type = 'submit';
submitButton.textContent = 'Wyślij';
submitButton.classList.add('btn-submit');
form.appendChild(submitButton);
kategorieDiv.appendChild(form);
//nasłuchiwanie zdarzeń dla formularza
form.addEventListener('submit', (event) => zapiszWynikiAnkiety(event, nazwaRestauracji));
}
async function inicjalizuj() {
const restauracje = await pobierzRestauracje();
wyswietlRestauracje(restauracje);
}
inicjalizuj();
async function zapiszWynikiAnkiety(event, nazwaRestauracji) {
event.preventDefault();
const form = event.target;
// Pobierz dane z formularza
const formData = new FormData(form);
const wyniki = [];
const imie = formData.get('imie');
const dataWizyty = formData.get('data_wizyty');
const przedzialCzasowy = formData.get('przedzial_czasowy');
const liczbaKlientow = formData.get('liczba_klientow');
const liczbaPracownikow = formData.get('liczba_pracownikow');
for (const [key, value] of formData.entries()) {
const inputElement = form.elements[key];
if (inputElement && inputElement.dataset && inputElement.dataset.ignore) {
continue;
}
const [fieldType, pytanieId] = key.split('_');
if (!wyniki.some((wynik) => wynik.pytanieId === pytanieId)) {
wyniki.push({
pytanieId,
ocena: fieldType === 'ocena' ? value : null,
komentarz: fieldType === 'komentarz' ? value : null,
zdjecie: fieldType === 'zdjecie' ? [value] : [],
});
} else {
const wynik = wyniki.find((wynik) => wynik.pytanieId === pytanieId);
if (fieldType === 'ocena') {
wynik.ocena = value;
} else if (fieldType === 'komentarz') {
wynik.komentarz = value;
} else if (fieldType === 'zdjecie') {
wynik.zdjecie.push(value);
}
}
}
const dane = {
idFormularza: generujIdFormularza(),
restaurantName: nazwaRestauracji,
date: new Date().toISOString().split('T')[0],
imie: imie,
dataWizyty: dataWizyty,
przedzialCzasowy: przedzialCzasowy,
liczbaKlientow: liczbaKlientow,
liczbaPracownikow: liczbaPracownikow,
data: wyniki
};
// Przekształcanie danych w JSON
const jsonDane = JSON.stringify(dane);
const daneFormData = new FormData();
daneFormData.append('jsonDane', jsonDane);
// Dodawanie idFormularza do FormData
daneFormData.append('idFormularza', dane.idFormularza);
// Dodawanie zdjęcia do FormData
wyniki.forEach((wynik) => {
wynik.zdjecie.forEach((zdjecie, index) => {
if (zdjecie instanceof File) {
daneFormData.append(`zdjecie_${dane.idFormularza}_${wynik.pytanieId}_${index}`, zdjecie);
} else {
console.log(`Zdjęcie nie jest instancją File: ${zdjecie}`);
}
});
});
// Zapis wyników w bazie danych
try {
document.getElementById('loadingSpinner').style.display = 'block';
const response = await fetch('localhost:8080/api/wyniki', { //local
method: 'POST',
body: daneFormData,
});
if (response.ok) {
alert('Dane zostały zapisane.');
} else {
alert('Wystąpił błąd podczas zapisywania danych.');
}
} catch (error) {
console.error('Wystąpił błąd podczas zapisywania danych:', error);
alert('Wystąpił błąd podczas zapisywania danych.');
} finally {
document.getElementById('loadingSpinner').style.display = 'none';
}
}