-
Notifications
You must be signed in to change notification settings - Fork 0
/
Overlay.js
39 lines (34 loc) · 883 Bytes
/
Overlay.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
class Overlay {
#openButton;
#closeButton;
#container;
#onOpen;
#onClose;
constructor({ openButton, closeButton, container, onOpen, onClose }) {
this.#container = container;
this.#openButton = openButton;
this.#closeButton = closeButton;
this.#onOpen = onOpen;
this.#onClose = onClose
}
initialize() {
this.#openButton.addEventListener(
'click',
_ => {
this.#openOverlay();
this.#onOpen();
});
this.#closeButton.addEventListener(
'click',
_ => {
this.#onClose();
this.#closeOverlay();
});
}
#openOverlay() {
UIUtils.setVisible(this.#container, true);
}
#closeOverlay() {
UIUtils.setVisible(this.#container, false);
}
}