Files
wavelog/application/views/bandmap/list.php
2025-11-01 21:43:19 +01:00

739 lines
28 KiB
PHP

<script>
// Global variables that don't require jQuery
var dxcluster_provider = "<?php echo base_url(); ?>index.php/dxcluster";
var cat_timeout_interval = "<?php echo $this->optionslib->get_option('cat_timeout_interval'); ?>";
var dxcluster_maxage = <?php echo $this->optionslib->get_option('dxcluster_maxage') ?? 60; ?>;
var custom_date_format = "<?php echo $custom_date_format ?>";
var popup_warning = "<?= __("Pop-up was blocked! Please allow pop-ups for this site permanently."); ?>";
// Detect OS for proper keyboard shortcuts
var isMac = navigator.platform.toUpperCase().indexOf('MAC') >= 0;
var modKey = isMac ? 'Cmd' : 'Ctrl';
var lang_click_to_prepare_logging = "<?= __("Click to prepare logging."); ?> (" + modKey + "+Click <?= __("for new window"); ?>)";
</script>
<style>
.fresh {
transition: all 500ms ease;
--bs-table-bg: #3981b2;
--bs-table-accent-bg: #3981b2;
}
tbody a {
color: inherit;
text-decoration: none;
}
/* Make table rows clickable for prepare logging */
.spottable tbody tr,
.spottable tbody tr td,
.spottable tbody tr td *,
.spottable tbody tr span,
.spottable tbody tr a,
.spottable tbody tr td i,
.spottable tbody tr td .flag-emoji {
cursor: pointer !important;
}
.spottable tbody tr td:nth-child(5) a {
text-decoration: underline !important;
cursor: pointer !important;
}
.spottable tbody tr td:nth-child(7) i:hover {
opacity: 0.7;
transform: scale(1.1);
transition: all 0.2s ease;
}
/* Status bar styling */
.status-bar {
font-size: 0.875rem;
color: var(--bs-body-color);
font-family: 'Courier New', Courier, 'Lucida Console', Monaco, monospace;
background-color: var(--bs-body-bg);
border-radius: 8px;
margin: 0.25rem 0;
padding: 10px 15px;
}
.status-bar-inner {
display: flex;
align-items: center;
gap: 15px;
}
.status-bar-left {
flex: 1;
min-width: 0;
font-weight: 500;
}
#statusMessage {
cursor: help;
}
.status-bar-right {
flex: 0 0 20%;
min-width: 150px;
font-weight: 500;
color: var(--bs-secondary);
text-align: right;
display: flex;
align-items: center;
justify-content: flex-end;
}
.dataTables_wrapper {
margin: 0;
padding: 0;
width: 100%;
}
.spottable {
width: 100%;
table-layout: fixed;
font-family: 'Courier New', Courier, 'Lucida Console', Monaco, monospace;
font-size: calc(1rem - 2px);
}
.spottable thead th {
font-weight: normal;
}
/* Column widths - consolidated selectors */
.spottable th:nth-child(1), .spottable td:nth-child(1) { width: 50px; } /* Age (minutes) */
.spottable th:nth-child(2), .spottable td:nth-child(2) { width: 50px; } /* Band */
.spottable th:nth-child(3), .spottable td:nth-child(3) { width: 90px; } /* Frequency */
.spottable th:nth-child(4), .spottable td:nth-child(4) { width: 60px; } /* Mode */
.spottable th:nth-child(5), .spottable td:nth-child(5) { width: 120px; } /* Callsign */
.spottable th:nth-child(6), .spottable td:nth-child(6) { width: 40px; } /* Continent */
.spottable th:nth-child(7), .spottable td:nth-child(7) { width: 45px; } /* CQ Zone */
.spottable th:nth-child(8), .spottable td:nth-child(8) { width: 50px; } /* Flag */
.spottable th:nth-child(9), .spottable td:nth-child(9) { width: 150px; } /* Entity (DXCC name) */
.spottable th:nth-child(10), .spottable td:nth-child(10) { width: 60px; } /* DXCC Number */
.spottable th:nth-child(11), .spottable td:nth-child(11) { width: 120px; } /* de Callsign (Spotter) */
.spottable th:nth-child(12), .spottable td:nth-child(12) { width: 50px; } /* de Cont */
.spottable th:nth-child(13), .spottable td:nth-child(13) { width: 50px; } /* de CQZ */
.spottable th:nth-child(14), .spottable td:nth-child(14) { width: 110px; } /* Special (LoTW, POTA, etc) */
.spottable th:nth-child(15), .spottable td:nth-child(15) { min-width: 100px; width: 100%; } /* Message - fills remaining space */
/* Hidden class for responsive columns (controlled by JavaScript) */
.spottable .column-hidden {
display: none !important;
}
.spottable td {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.spottable td:nth-child(15) {
white-space: normal;
word-wrap: break-word;
overflow-wrap: break-word;
font-size: calc(1rem - 4px);
}
.spottable td:nth-child(6), .spottable td:nth-child(12) {
font-family: 'Segoe UI Emoji', 'Noto Color Emoji', 'Apple Color Emoji', Arial, sans-serif;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.spottable .flag-emoji {
font-family: "Twemoji Country Flags", "Helvetica", "Comic Sans", sans-serif;
font-style: normal;
font-variant: normal;
}
.spottable img.emoji {
height: 1.3em;
width: 1.3em;
margin: 0 .05em 0 .1em;
vertical-align: -0.25em;
display: inline-block;
}
.spottable td:nth-child(14) {
overflow: visible;
white-space: nowrap;
}
/* Responsive: On smallest screens, Entity column fills remaining space */
@media (max-width: 500px) {
.spottable {
table-layout: auto !important;
}
.spottable th:nth-child(9), .spottable td:nth-child(9) {
width: auto !important;
min-width: 150px !important;
}
.spottable th:nth-child(1), .spottable td:nth-child(1) { width: 50px !important; } /* Age */
.spottable th:nth-child(3), .spottable td:nth-child(3) { width: 90px !important; } /* Frequency */
.spottable th:nth-child(5), .spottable td:nth-child(5) { width: 100px !important; } /* Callsign */
}
.spottable thead th {
font-size: calc(1rem - 1px);
vertical-align: middle;
}
/* Fullscreen mode */
.bandmap-logo-fullscreen {
display: none;
}
.bandmap-fullscreen .bandmap-logo-fullscreen {
display: inline-block;
}
.bandmap-fullscreen {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
width: 100vw;
height: 100vh;
max-width: 100vw;
margin: 0;
padding: 0;
z-index: 9999;
overflow: hidden;
background: var(--bs-body-bg, #fff);
}
.bandmap-fullscreen .card {
height: 100vh;
margin: 0;
border-radius: 0;
display: flex;
flex-direction: column;
border: none;
}
.bandmap-fullscreen .card-header {
flex-shrink: 0;
}
.bandmap-fullscreen .card-body:first-of-type {
flex-shrink: 0;
flex-grow: 0;
padding: 0.5rem;
}
.bandmap-fullscreen .menu-bar {
flex-shrink: 0;
margin-bottom: 0;
}
.bandmap-fullscreen .card-body:last-child {
flex: 1 1 0;
min-height: 0;
display: flex;
flex-direction: column;
overflow: auto;
padding: 0.5rem;
}
.bandmap-fullscreen .table-responsive {
flex: 1 1 auto;
min-height: 0;
overflow: auto;
}
.bandmap-fullscreen .dataTables_processing {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 10001;
}
.bandmap-fullscreen .dropdown-menu {
z-index: 10002;
position: fixed;
}
/* Ensure tooltips appear above fullscreen mode */
body.fullscreen-active .tooltip,
.bandmap-fullscreen .tooltip {
z-index: 10003 !important;
}
/* Ensure modals appear above fullscreen mode */
body.fullscreen-active .modal,
body.fullscreen-active .modal-backdrop {
z-index: 10050 !important;
}
body.fullscreen-active .modal-backdrop + .modal {
z-index: 10051 !important;
}
body.fullscreen-active #page-wrapper,
body.fullscreen-active nav,
body.fullscreen-active .navbar,
body.fullscreen-active header,
body.fullscreen-active #bandmapContainer > .d-flex.align-items-center.mb-3,
body.fullscreen-active #bandmapContainer > #radio_status,
body.fullscreen-active #bandmapContainer > .messages {
display: none !important;
}
body.fullscreen-active .fullscreen-wavelog-text {
display: inline !important;
}
body.fullscreen-active {
overflow: hidden;
}
#fullscreenToggle {
cursor: pointer;
font-size: 1.2rem;
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 36px;
height: 36px;
}
/* Menu bar and table styling */
.menu-bar {
margin-top: 5px;
margin-bottom: 5px;
}
.card-body.pt-1 {
padding-left: 15px;
padding-right: 15px;
}
.table-responsive {
overflow: auto;
margin: 0;
padding: 0;
background-color: var(--bs-card-cap-bg, var(--bs-secondary-bg));
border: var(--bs-card-border-width, 1px) solid var(--bs-card-border-color, rgba(0,0,0,.125));
border-radius: 8px;
}
.spottable {
border-bottom: none;
margin-bottom: 0;
border-radius: 8px;
overflow: hidden;
}
.spottable thead tr {
border-top: 1px solid var(--bs-border-color);
border-bottom: 1px solid var(--bs-border-color);
}
.spottable tbody tr:last-child {
border-bottom: 1px solid var(--bs-border-color);
}
.spottable tbody tr,
.spottable tbody tr td {
border-top: none;
border-bottom: none;
}
/* Filter dropdowns */
select[multiple] {
height: auto;
min-height: 350px;
max-height: 700px;
}
select[multiple].filter-short {
min-height: 150px;
max-height: 220px;
}
select[multiple] option:checked {
background-color: var(--bs-primary);
color: white;
font-weight: normal;
}
.dropdown-menu .mb-3 {
display: flex;
flex-direction: column;
justify-content: flex-end;
min-height: 100px;
}
.dropdown-menu .filter-label-bottom {
margin-top: auto;
margin-bottom: 0.25rem;
padding-bottom: 0;
text-align: left;
}
.dropdown-menu select.form-select {
margin-bottom: 0;
}
.dropdown-menu select {
flex-shrink: 0;
}
.filter-tip {
background-color: var(--bs-card-cap-bg, var(--bs-secondary-bg));
color: var(--bs-body-color);
border: 2px solid var(--bs-dark, #212529);
padding: 8px 12px;
border-radius: 6px;
margin-bottom: 15px;
font-size: 0.875rem;
display: flex;
align-items: center;
gap: 8px;
}
.filter-label-small {
font-size: 0.8rem;
margin-bottom: 0.25rem;
font-weight: 500;
}
.search-icon-clickable {
cursor: pointer;
}
.search-icon-clickable:hover {
background-color: var(--bs-secondary-bg);
}
/* Responsive adjustments */
@media (max-width: 768px) {
.dropdown-menu {
min-width: 95vw;
max-width: 95vw;
}
select[multiple] {
min-height: 180px;
max-height: 375px;
}
select[multiple].filter-short {
min-height: 100px;
max-height: 150px;
}
}
@media (max-width: 576px) {
select[multiple] {
min-height: 150px;
max-height: 300px;
}
}
</style>
<div class="container" id="bandmapContainer">
<div id="errormessage" style="display: none;"></div>
<!-- Radio Selector - Moved to top -->
<div class="d-flex align-items-center mb-3">
<label class="my-1 me-2" for="radio"><?= __("Radio"); ?></label>
<select class="form-select form-select-sm radios my-1 me-sm-2 w-auto" id="radio" name="radio">
<option value="0" selected="selected"><?= __("None"); ?></option>
<option value="ws"<?php if ($this->session->userdata('radio') == 'ws') { echo ' selected="selected"'; } ?>><?= __("WebSocket (Requires WLGate>1.1.10)"); ?></option>
<?php foreach ($radios->result() as $row) { ?>
<option value="<?php echo $row->id; ?>" <?php if ($this->session->userdata('radio') == $row->id) {
echo "selected=\"selected\"";
} ?>><?php echo $row->radio; ?></option>
<?php } ?>
</select>
</div>
<!-- Radio Status Panel (dynamically populated by JavaScript) -->
<div id="radio_status"></div>
<!-- Messages -->
<div class="messages my-1 mx-3"></div>
<!-- DX Cluster Panel -->
<div class="card">
<div class="card-header d-flex justify-content-between align-items-center">
<div class="d-flex align-items-center">
<a href="<?php echo base_url(); ?>" title="<?= __("Return to Home"); ?>">
<img class="headerLogo me-2 bandmap-logo-fullscreen" src="<?php echo base_url(); ?>assets/logo/<?php echo $this->optionslib->get_logo('header_logo'); ?>.png" alt="Logo" style="height: 32px; width: auto; cursor: pointer;" />
</a>
<h5 class="mb-0">DX Cluster - spot list</h5>
</div>
<div class="d-flex align-items-center gap-3">
<span class="fullscreen-wavelog-text" style="display: none; font-weight: 500; color: var(--bs-body-color);">www.wavelog.org</span>
<button type="button" class="btn btn-sm" id="fullscreenToggle" title="<?= __("Toggle Fullscreen"); ?>" style="background: none; border: none; padding: 0;">
<i class="fas fa-expand" id="fullscreenIcon" style="font-size: 1.2rem;"></i>
</button>
</div>
</div>
<div class="card-body pt-1">
<!-- Filters Section with darker background and rounded corners -->
<div class="menu-bar">
<!-- First Row: Band Filters, Mode Filters, and Continent Filters -->
<div class="d-flex flex-wrap align-items-center gap-2 mb-2">
<!-- Band Filter Buttons -->
<div class="d-flex flex-wrap gap-2 align-items-center">
<small class="text-muted me-1 flex-shrink-0"><?= __("Bands:"); ?></small>
<!-- MF Band -->
<div class="btn-group flex-shrink-0" role="group">
<button class="btn btn-sm btn-primary" type="button" id="toggle160mFilter" title="<?= __("Toggle 160m band filter"); ?>">160m</button>
</div>
<!-- HF Bands -->
<div class="btn-group flex-shrink-0" role="group">
<button class="btn btn-sm btn-primary" type="button" id="toggle80mFilter" title="<?= __("Toggle 80m band filter"); ?>">80m</button>
<button class="btn btn-sm btn-primary" type="button" id="toggle60mFilter" title="<?= __("Toggle 60m band filter"); ?>">60m</button>
<button class="btn btn-sm btn-primary" type="button" id="toggle40mFilter" title="<?= __("Toggle 40m band filter"); ?>">40m</button>
<button class="btn btn-sm btn-primary" type="button" id="toggle30mFilter" title="<?= __("Toggle 30m band filter"); ?>">30m</button>
<button class="btn btn-sm btn-primary" type="button" id="toggle20mFilter" title="<?= __("Toggle 20m band filter"); ?>">20m</button>
<button class="btn btn-sm btn-primary" type="button" id="toggle17mFilter" title="<?= __("Toggle 17m band filter"); ?>">17m</button>
<button class="btn btn-sm btn-primary" type="button" id="toggle15mFilter" title="<?= __("Toggle 15m band filter"); ?>">15m</button>
<button class="btn btn-sm btn-primary" type="button" id="toggle12mFilter" title="<?= __("Toggle 12m band filter"); ?>">12m</button>
<button class="btn btn-sm btn-primary" type="button" id="toggle10mFilter" title="<?= __("Toggle 10m band filter"); ?>">10m</button>
</div>
<!-- VHF Bands -->
<div class="btn-group flex-shrink-0" role="group">
<button class="btn btn-sm btn-primary" type="button" id="toggle6mFilter" title="<?= __("Toggle 6m band filter"); ?>">6m</button>
<button class="btn btn-sm btn-primary" type="button" id="toggle4mFilter" title="<?= __("Toggle 4m band filter"); ?>">4m</button>
<button class="btn btn-sm btn-primary" type="button" id="toggle2mFilter" title="<?= __("Toggle 2m band filter"); ?>">2m</button>
</div>
<!-- UHF Bands -->
<div class="btn-group flex-shrink-0" role="group">
<button class="btn btn-sm btn-primary" type="button" id="toggle70cmFilter" title="<?= __("Toggle 70cm band filter"); ?>">70cm</button>
<button class="btn btn-sm btn-primary" type="button" id="toggle23cmFilter" title="<?= __("Toggle 23cm band filter"); ?>">23cm</button>
</div>
</div>
<!-- Spacer to push modes and continents to the right -->
<div class="flex-grow-1"></div>
<!-- Mode Filter Buttons -->
<div class="d-flex flex-wrap gap-2 align-items-center">
<small class="text-muted me-1 flex-shrink-0"><?= __("Modes:"); ?></small>
<div class="btn-group flex-shrink-0" role="group">
<button class="btn btn-sm btn-primary" type="button" id="toggleCwFilter" title="<?= __("Toggle CW mode filter"); ?>">CW</button>
<button class="btn btn-sm btn-primary" type="button" id="toggleDigiFilter" title="<?= __("Toggle Digital mode filter"); ?>">Digi</button>
<button class="btn btn-sm btn-primary" type="button" id="togglePhoneFilter" title="<?= __("Toggle Phone mode filter"); ?>">Phone</button>
</div>
</div>
<!-- Continent Filter Buttons -->
<div class="d-flex flex-wrap gap-2 align-items-center">
<small class="text-muted me-1 flex-shrink-0"><?= __("de:"); ?></small>
<div class="btn-group flex-shrink-0" role="group">
<button class="btn btn-sm btn-primary" type="button" id="toggleAfricaFilter" title="<?= __("Toggle Africa continent filter"); ?>">AF</button>
<button class="btn btn-sm btn-primary" type="button" id="toggleAsiaFilter" title="<?= __("Toggle Asia continent filter"); ?>">AS</button>
<button class="btn btn-sm btn-primary" type="button" id="toggleEuropeFilter" title="<?= __("Toggle Europe continent filter"); ?>">EU</button>
<button class="btn btn-sm btn-primary" type="button" id="toggleNorthAmericaFilter" title="<?= __("Toggle North America continent filter"); ?>">NA</button>
<button class="btn btn-sm btn-primary" type="button" id="toggleSouthAmericaFilter" title="<?= __("Toggle South America continent filter"); ?>">SA</button>
</div>
</div>
</div>
<!-- Second Row: Filter Dropdown and Other Quick Filters -->
<div class="d-flex flex-wrap align-items-center gap-2">
<!-- Filter Button and Quick Filter Toggles -->
<div class="d-flex flex-wrap gap-2 align-items-center flex-grow-1">
<div class="dropdown">
<!-- Filter Dropdown Button -->
<button class="btn btn-sm btn-primary dropdown-toggle" type="button" id="filterDropdown" data-bs-toggle="dropdown" aria-expanded="false" data-bs-auto-close="outside">
<i class="fas fa-filter" id="filterIcon"></i> <?= __("Advanced Filters"); ?>
</button>
<div class="dropdown-menu dropdown-menu-start p-3 mt-2" aria-labelledby="filterDropdown" style="min-width: 1264px; max-width: 95vw; max-height: 98vh; overflow-y: auto;">
<!-- Filter tip -->
<div class="filter-tip">
<i class="fas fa-info-circle"></i>
<span id="filterTipText"></span>
</div>
<script>
// Set filter tip text based on OS
document.addEventListener('DOMContentLoaded', function() {
var isMac = navigator.platform.toUpperCase().indexOf('MAC') >= 0;
var modKey = isMac ? 'Cmd' : 'Ctrl';
document.getElementById('filterTipText').textContent = 'Hold ' + modKey + ' and click to select multiple options';
});
</script>
<div class="row">
<!-- Column 1: DXCC-Status and Mode -->
<div class="mb-3 col-12 col-sm-6 col-md-4 col-lg">
<label class="form-label d-block filter-label-small" for="cwnSelect"><?= __("DXCC-Status"); ?></label>
<select class="form-select form-select-sm filter-short" id="cwnSelect" name="dxcluster_cwn" multiple="multiple" aria-describedby="dxcluster_cwnHelp">
<option value="All" selected><?= __("All"); ?></option>
<option value="notwkd"><?= __("Not worked"); ?></option>
<option value="wkd"><?= __("Worked"); ?></option>
<option value="cnf"><?= __("Confirmed"); ?></option>
<option value="ucnf"><?= __("Worked, not Confirmed"); ?></option>
</select>
<label class="form-label d-block filter-label-small mt-3" for="mode"><?= __("Mode"); ?></label>
<select id="mode" class="form-select form-select-sm filter-short" name="mode" multiple="multiple">
<option value="All" selected><?= __("All"); ?></option>
<option value="phone"><?= __("Phone"); ?></option>
<option value="cw"><?= __("CW"); ?></option>
<option value="digi"><?= __("Digi"); ?></option>
</select>
</div>
<!-- Column 2: Required Flags and Additional Flags -->
<div class="mb-3 col-12 col-sm-6 col-md-4 col-lg">
<label class="form-label d-block filter-label-small" for="requiredFlags"><?= __("Required Flags"); ?></label>
<select id="requiredFlags" class="form-select form-select-sm filter-short" name="required_flags" multiple="multiple">
<option value="lotw"><?= __("LoTW User"); ?></option>
<option value="notworked"><?= __("Not worked before"); ?></option>
</select>
<label class="form-label d-block filter-label-small mt-3" for="additionalFlags"><?= __("Additional Flags"); ?></label>
<select id="additionalFlags" class="form-select form-select-sm filter-short" name="additional_flags" multiple="multiple">
<option value="All" selected><?= __("All"); ?></option>
<option value="SOTA"><?= __("SOTA"); ?></option>
<option value="POTA"><?= __("POTA"); ?></option>
<option value="WWFF"><?= __("WWFF"); ?></option>
<option value="IOTA"><?= __("IOTA"); ?></option>
<option value="Contest"><?= __("Contest"); ?></option>
<option value="Fresh"><?= __("Fresh (< 5 min)"); ?></option>
</select>
</div>
<!-- Column 3: Spots de Continent -->
<div class="mb-3 col-12 col-sm-6 col-md-4 col-lg">
<label class="form-label d-block filter-label-small" for="decontSelect"><?= __("Spots de Continent"); ?></label>
<select class="form-select form-select-sm" id="decontSelect" name="dxcluster_decont" multiple="multiple" aria-describedby="dxcluster_decontHelp">
<option value="Any"<?php if ($this->optionslib->get_option('dxcluster_decont') == '' || $this->optionslib->get_option('dxcluster_decont') == 'Any') {echo " selected";} ?>><?= __("All"); ?></option>
<option value="AF" <?php if ($this->optionslib->get_option('dxcluster_decont') == 'AF') {echo " selected";} ?>><?= __("Africa"); ?></option>
<option value="AN" <?php if ($this->optionslib->get_option('dxcluster_decont') == 'AN') {echo " selected";} ?>><?= __("Antarctica"); ?></option>
<option value="AS" <?php if ($this->optionslib->get_option('dxcluster_decont') == 'AS') {echo " selected";} ?>><?= __("Asia"); ?></option>
<option value="EU" <?php if ($this->optionslib->get_option('dxcluster_decont') == 'EU') {echo " selected";} ?>><?= __("Europe"); ?></option>
<option value="NA" <?php if ($this->optionslib->get_option('dxcluster_decont') == 'NA') {echo " selected";} ?>><?= __("North America"); ?></option>
<option value="OC" <?php if ($this->optionslib->get_option('dxcluster_decont') == 'OC') {echo " selected";} ?>><?= __("Oceania"); ?></option>
<option value="SA" <?php if ($this->optionslib->get_option('dxcluster_decont') == 'SA') {echo " selected";} ?>><?= __("South America"); ?></option>
</select>
</div>
<!-- Column 4: Spotted Station Continent -->
<div class="mb-3 col-12 col-sm-6 col-md-4 col-lg">
<label class="form-label d-block filter-label-small" for="continentSelect"><?= __("Spotted Station Continent"); ?></label>
<select id="continentSelect" class="form-select form-select-sm" name="continent" multiple="multiple">
<option value="Any" selected><?= __("All"); ?></option>
<option value="AF"><?= __("Africa"); ?></option>
<option value="AN"><?= __("Antarctica"); ?></option>
<option value="AS"><?= __("Asia"); ?></option>
<option value="EU"><?= __("Europe"); ?></option>
<option value="NA"><?= __("North America"); ?></option>
<option value="OC"><?= __("Oceania"); ?></option>
<option value="SA"><?= __("South America"); ?></option>
</select>
</div>
<!-- Column 5: Band -->
<div class="mb-3 col-12 col-sm-6 col-md-4 col-lg">
<label class="form-label d-block filter-label-small" for="band"><?= __("Band"); ?></label>
<select id="band" class="form-select form-select-sm" name="band" multiple="multiple">
<option value="All" selected><?= __("All"); ?></option>
<?php foreach ($bands as $key => $bandgroup) {
echo '<optgroup label="' . strtoupper($key) . '">';
foreach ($bandgroup as $band) {
echo '<option value="' . $band . '"';
echo '>' . $band . '</option>' . "\n";
}
echo '</optgroup>';
}
?>
</select>
</div>
</div>
<!-- Buttons in popup -->
<div class="text-center mt-3">
<button type="button" class="btn btn-sm btn-success me-2" id="applyFiltersButtonPopup">
<i class="fas fa-check"></i> <?= __("Apply Filters"); ?>
</button>
<button type="button" class="btn btn-sm btn-secondary" id="clearFiltersButton">
<i class="fas fa-eraser"></i> <?= __("Clear Filters"); ?>
</button>
</div>
</div>
</div>
<!-- Clear Filters Button (outside dropdown) -->
<button class="btn btn-sm btn-secondary" type="button" id="clearFiltersButtonQuick" title="<?= __("Clear all filters except De Continent"); ?>">
<i class="fas fa-eraser"></i> <span class="d-none d-sm-inline"><?= __("Clear Filters"); ?></span>
</button>
<!-- Quick Filter Toggle Buttons -->
<small class="text-muted me-1 flex-shrink-0"><?= __("Quick Filters:"); ?></small>
<div class="btn-group flex-shrink-0" role="group">
<button class="btn btn-sm btn-primary" type="button" id="toggleLotwFilter" title="<?= __("Toggle LoTW User filter"); ?>">
<span>L</span> <span class="d-none d-sm-inline">LoTW users</span>
</button>
<button class="btn btn-sm btn-primary" type="button" id="toggleNotWorkedFilter" title="<?= __("Toggle Not Worked Before filter"); ?>">
<i class="fas fa-star"></i> <span class="d-none d-sm-inline">New callsign</span>
</button>
<button class="btn btn-sm btn-primary" type="button" id="toggleDxccNeededFilter" title="<?= __("Toggle DXCC Needed filter"); ?>">
<i class="fas fa-globe"></i> <span class="d-none d-sm-inline">New DXCC</span>
</button>
<button class="btn btn-sm btn-primary" type="button" id="toggleContextFilter" title="<?= __("Toggle Contest filter"); ?>">
<i class="fas fa-trophy"></i> <span class="d-none d-sm-inline">Contest Only</span>
</button>
<button class="btn btn-sm btn-primary" type="button" id="toggleGeoHunterFilter" title="<?= __("Toggle Geo Hunter (POTA/SOTA/IOTA/WWFF)"); ?>">
<i class="fas fa-map-marked-alt"></i> <span class="d-none d-sm-inline">Ref. Hunter</span>
</button>
<button class="btn btn-sm btn-primary" type="button" id="toggleFreshFilter" title="<?= __("Toggle Fresh spots filter (< 5 minutes old)"); ?>">
<i class="fas fa-bolt"></i> <span class="d-none d-sm-inline">Fresh spots</span>
</button>
</div> <!-- Search Input -->
<div class="input-group input-group-sm ms-auto flex-shrink-0" style="max-width: 300px; min-width: 200px;">
<input type="text" class="form-control" id="spotSearchInput" placeholder="<?= __("Search spots..."); ?>" aria-label="<?= __("Search"); ?>">
<span class="input-group-text search-icon-clickable" id="searchIcon"><i class="fas fa-search"></i></span>
</div>
</div>
</div>
<!-- Status Bar showing filter info and refresh timer -->
<div class="status-bar">
<div class="status-bar-inner">
<div class="status-bar-left">
<span id="statusMessage"></span>
</div>
<div class="status-bar-right">
<i class="fas fa-hourglass-half me-1" id="refreshIcon"></i>
<span id="refreshTimer"></span>
</div>
</div>
</div>
<div class="table-responsive">
<table class="table table-striped table-hover spottable">
<thead>
<tr class="log_title titles">
<th title="<?= __("Age in minutes"); ?>"><i class="fas fa-clock"></i></th>
<th title="<?= __("Band"); ?>"><i class="fas fa-wave-square"></i></th>
<th title="<?= __("Frequency"); ?> [MHz]"><?= __("Freq"); ?></th>
<th title="<?= __("Mode"); ?>"><i class="fas fa-broadcast-tower"></i></th>
<th title="<?= __("Spotted Callsign"); ?>"><?= __("Spotted"); ?></th>
<th title="<?= __("Continent"); ?>"><i class="fas fa-globe-americas"></i></th>
<th title="<?= __("CQ Zone"); ?>"><i class="fas fa-map-marked"></i></th>
<th title="<?= __("Flag"); ?>"><i class="fas fa-flag"></i></th>
<th title="<?= __("DXCC Entity"); ?>"><?= __("Entity"); ?></th>
<th title="<?= __("DXCC Number"); ?>"><i class="fas fa-hashtag"></i></th>
<th title="<?= __("Spotter Callsign"); ?>"><?= __("Spotter"); ?></th>
<th title="<?= __("Spotter Continent"); ?>"><i class="fas fa-globe-americas"></i></th>
<th title="<?= __("Spotter CQ Zone"); ?>"><i class="fas fa-map-marked"></i></th>
<th title="<?= __("Special Flags"); ?>"><?= __("Special"); ?></th>
<th title="<?= __("Message"); ?>"><?= __("Message"); ?></th>
</tr>
</thead>
<tbody class="spots_table_contents">
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>