-
Notifications
You must be signed in to change notification settings - Fork 2
/
script.js
184 lines (122 loc) · 4.5 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
//here logic goes
// сделать html component который повторяет логику <select> в простешем случае
//appendChild soulution
const actorsListContainer = document.querySelector('#actors-list');
function showActorsAsync (reverse) {
actors.forEach(addActorElement);
}
//showActorsAsync();
const result = document.querySelector('#result');
let activeIndex = 0;
let isOpen = false;
function initializeSelect(arr) {
arr.forEach(function (actor, i) {
let actorHtmlElement = document.createElement('div');
actorHtmlElement.textContent = `${actor.firstName} ${actor.lastName}`;
actorHtmlElement.classList.add('hidden');
actorHtmlElement.classList.add('option');
result.appendChild(actorHtmlElement);
if (i === activeIndex) {
let activeActorElement = document.createElement('div');
activeActorElement.textContent = `${actor.firstName} ${actor.lastName}`;
activeActorElement.classList.add('active');
result.insertBefore(activeActorElement, result.firstElementChild);
activeActorElement.addEventListener('click', toggleSelect);
}
});
}
function toggleSelect (e) {
isOpen = !isOpen;
document.querySelectorAll('.option').forEach(function (option) {
if (isOpen === true) {
option.classList.remove('hidden');
document.querySelector('.active').classList.add('blurred');
} else {
option.classList.add('hidden');
document.querySelector('.active').classList.remove('blurred');
}
});
e.stopPropagation();
}
result.addEventListener('click', function (e) {
if (e.target === e.currentTarget) {
return;
}
let content = e.target.textContent;
document.querySelector('.active').textContent = content;
toggleSelect(e);
});
initializeSelect(actors);
// button.onclick = function handler(e) {
// showActorsAsync(true);
// }
// document.querySelector('#main').onclick = function handler(e) {
// console.log(this);
// this.style.color = '#0000FF';
// showActorsAsync(true);
// }
var main = document.querySelector('#main')
var actorsEl = document.querySelectorAll('.actor');
// actorsEl.forEach(function (el) {
// el.addEventListener('click', actorHandler);
// });
// function actorHandler (e) {
// actorsEl.forEach(function (el) {
// el.classList.remove('colored');
// });
// e.target.classList.add('colored');
// }
const actorsListEl = document.querySelector('#actors-list');
actorsListEl.addEventListener('click', function (e) {
actorsEl.forEach(function (el) {
el.classList.remove('colored');
});
e.target.classList.add('colored');
console.log(e.currentTarget);
});
// innerHTML solution
// //формируем массив html элементов представленных строкой
// //cоединяем массив в одну строку
// let resultedHTML = '<ul>' + actors.map(function (actor) {
// return `<li>${actor.firstName} ${actor.lastName}</li>`
// }).join('') + '</ul>';
//изменяем содержимое html элемента
//actorsListContainer.innerHTML = resultedHTML;
//documentFragment solution
// let documentFragment = document.createDocumentFragment();
// actors.forEach(function (actor) {
// let actorHtmlElement = document.createElement('div');
// if (actor.year < 1950) {
// actorHtmlElement.classList.add('colored');
// }
// actorHtmlElement.textContent = `${actor.firstName} ${actor.lastName}`;
// documentFragment.appendChild(actorHtmlElement);
// });
//actorsListContainer.appendChild(documentFragment);
// function main () {
// var result = []; // 1
// // ждем когда сервер вернет данные - потом вызываем функцию которая ниже - asyncfunc
// /* 2 */ getDataFromServer().then(function asyncfunc (res) {
// /* 4 */ result = res;
// });
// /* 3 */result.push(5);
// console.log('sync')
// }
// function main() {
// var c = 10;
// setTimeout(function () {
// c = 40; console.log('first');
// }, 4000);
// setTimeout(function () {
// c = 40; console.log('second');
// }, 3000);
// }
// // console.log('main');
// function main2() {
// setTimeout(function () {
// c = 40; console.log('main2');
// }, 1000);
// }
// main();
// main2();
// console.log('end main - stack clear check queue')