2021-03-11 05:43:45 +01:00
|
|
|
import $ from "jquery";
|
|
|
|
|
2020-07-02 01:45:54 +02:00
|
|
|
$(() => {
|
2020-07-15 01:29:15 +02:00
|
|
|
$(".portico-header li.logout").on("click", () => {
|
2020-07-20 21:24:26 +02:00
|
|
|
$("#logout_form").trigger("submit");
|
2017-09-29 01:31:55 +02:00
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
2021-07-16 14:33:52 +02:00
|
|
|
const is_touchscreen = window.matchMedia("(hover: none)").matches;
|
|
|
|
|
2020-07-20 21:26:58 +02:00
|
|
|
$("body").on("click", (e) => {
|
2019-11-02 00:06:25 +01:00
|
|
|
const $this = $(e.target);
|
2021-07-16 14:33:52 +02:00
|
|
|
const dropdown_is_shown = $this.closest("ul .dropdown").hasClass("show");
|
|
|
|
const dropdown_label_was_clicked = $this.closest(".dropdown .dropdown-label").length > 0;
|
|
|
|
const logged_in_pill_was_clicked = $this.closest(".dropdown .dropdown-pill").length > 0;
|
|
|
|
const clicked_outside_dropdown_content =
|
|
|
|
!$this.is(".dropdown ul") && $this.closest(".dropdown ul").length === 0;
|
2017-09-29 01:31:55 +02:00
|
|
|
|
2021-07-16 14:33:52 +02:00
|
|
|
if (dropdown_label_was_clicked && !dropdown_is_shown && is_touchscreen) {
|
2021-06-23 23:00:05 +02:00
|
|
|
$this.closest("ul .dropdown").addClass("show");
|
2021-07-16 14:33:52 +02:00
|
|
|
} else if (logged_in_pill_was_clicked && !dropdown_is_shown) {
|
2021-06-23 23:00:05 +02:00
|
|
|
$this.closest("ul .dropdown").addClass("show");
|
2021-07-16 14:33:52 +02:00
|
|
|
} else if (clicked_outside_dropdown_content) {
|
2021-06-23 23:00:05 +02:00
|
|
|
$this.closest("ul .dropdown").removeClass("show");
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
$(".nav-dropdown").on("mouseover", (e) => {
|
|
|
|
const $this = $(e.target);
|
2021-07-16 14:33:52 +02:00
|
|
|
const dropdown_is_shown = $this.closest("ul .dropdown").hasClass("show");
|
|
|
|
|
|
|
|
if (!dropdown_is_shown && !is_touchscreen) {
|
2021-06-23 23:00:05 +02:00
|
|
|
$this.closest("ul .dropdown").addClass("show");
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
$(".nav-dropdown").on("mouseout", (e) => {
|
|
|
|
const $this = $(e.target);
|
2021-07-16 14:33:52 +02:00
|
|
|
const dropdown_is_shown = $this.closest("ul .dropdown").hasClass("show");
|
|
|
|
|
|
|
|
if (dropdown_is_shown && !is_touchscreen) {
|
2021-06-23 23:00:05 +02:00
|
|
|
$this.closest("ul .dropdown").removeClass("show");
|
2017-09-29 01:31:55 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|