-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathtooltip.js
71 lines (62 loc) · 2.18 KB
/
tooltip.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
const Tooltip = (() => {
const menuButtonTooltip = document.querySelector('.menu-button > span');
const getTooltips = () => document.querySelectorAll('.tooltip');
const getTooltipsButtonParents = () => {
const tooltips = getTooltips();
let buttonParents = [];
for (const tooltip of tooltips) {
const buttonParent = tooltip.parentElement;
buttonParents = [...buttonParents, buttonParent];
}
return buttonParents;
};
const getTooltipsAndParents = () => {
const tooltips = getTooltips();
const tooltipsParents = getTooltipsButtonParents();
const tooltipsAndParents = {};
for (let i = 0; i < tooltips.length; i++) {
const tooltip = tooltips[i];
const parentButton = tooltipsParents[i];
tooltipsAndParents[i] = { tooltip, parentButton };
}
return tooltipsAndParents;
};
const hideTooltipOnClick = () => {
const tooltipsAndParents = getTooltipsAndParents();
const objectLength = Object.keys(tooltipsAndParents).length;
for (let i = 0; i < objectLength; i++) {
const tooltip = tooltipsAndParents[i].tooltip;
const parentButton = tooltipsAndParents[i].parentButton;
parentButton.addEventListener('mousedown', () => {
tooltip.classList.remove('visible');
tooltip.classList.contains('clicked') &&
tooltip.classList.add('clicked');
});
parentButton.addEventListener('mouseover', () => {
if (
tooltip.classList.contains('clicked') &&
tooltip.classList.containes('visible')
) {
tooltip.classList.remove('visible');
return;
}
tooltip.classList.add('visible');
});
parentButton.addEventListener('mouseout', () => {
tooltip.classList.contains('clicked') &&
tooltip.classList.remove('clicked');
tooltip.classList.remove('visible');
});
}
};
const changeMenuTooltipTextOpen = () =>
(menuButtonTooltip.textContent = 'Open menu');
const changeMenuTooltipTextClose = () =>
(menuButtonTooltip.textContent = 'Close menu');
hideTooltipOnClick();
return {
changeMenuTooltipTextOpen,
changeMenuTooltipTextClose,
};
})();
export { Tooltip };