You've already forked fm-dx-webserver
mirror of
https://github.com/KubaPro010/fm-dx-webserver.git
synced 2026-02-26 22:13:53 +01:00
59 lines
1.8 KiB
JavaScript
59 lines
1.8 KiB
JavaScript
// Variables
|
|
const $dropdowns = $('.dropdown');
|
|
const $input = $('input');
|
|
const $listOfOptions = $('.option');
|
|
let currentDropdown = null; // Track the currently clicked dropdown
|
|
|
|
// Functions
|
|
const toggleDropdown = (event) => {
|
|
event.stopPropagation();
|
|
const $currentDropdown = $(event.currentTarget);
|
|
|
|
// Close the previously opened dropdown if any
|
|
$dropdowns.not($currentDropdown).removeClass('opened');
|
|
|
|
$currentDropdown.toggleClass('opened');
|
|
currentDropdown = $currentDropdown.hasClass('opened') ? $currentDropdown : null;
|
|
};
|
|
|
|
const selectOption = (event) => {
|
|
const $currentDropdown = currentDropdown;
|
|
|
|
switch($currentDropdown.attr('id')) {
|
|
case 'data-ant':
|
|
socket.send("Z" + $(event.currentTarget).attr('data-value'));
|
|
tuneTo(getCurrentFreq()); //Reset RDS when change antenna input
|
|
break;
|
|
case 'data-bw':
|
|
socket.send("W" + $(event.currentTarget).attr('data-value'));
|
|
$currentDropdown.find('input').val($(event.currentTarget).text());
|
|
break;
|
|
default:
|
|
$currentDropdown.find('input').val($(event.currentTarget).text());
|
|
break;
|
|
}
|
|
|
|
// Use setTimeout to delay class removal
|
|
setTimeout(() => {
|
|
$currentDropdown.removeClass('opened');
|
|
currentDropdown = null;
|
|
}, 10); // Adjust the delay as needed
|
|
};
|
|
|
|
const closeDropdownFromOutside = (event) => {
|
|
const $currentDropdown = currentDropdown && $(currentDropdown);
|
|
const isClickedInsideDropdown = $currentDropdown && $currentDropdown.has(event.target).length > 0;
|
|
|
|
if (!isClickedInsideDropdown && $currentDropdown && $currentDropdown.hasClass('opened')) {
|
|
$currentDropdown.removeClass('opened');
|
|
currentDropdown = null;
|
|
}
|
|
};
|
|
|
|
// Event Listeners
|
|
$(document).on('click', closeDropdownFromOutside);
|
|
|
|
$listOfOptions.on('click', selectOption);
|
|
|
|
$dropdowns.on('click', toggleDropdown);
|