Compare commits
74
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e300cc343d | ||
|
|
1fb196a64e | ||
|
|
c8cc235e88 | ||
|
|
ab3fe4bbb7 | ||
|
|
40accb9697 | ||
|
|
cbca810a30 | ||
|
|
26a167cb82 | ||
|
|
3d49839ed5 | ||
|
|
26be675242 | ||
|
|
1a42d58075 | ||
|
|
844de809a4 | ||
|
|
e910e644d5 | ||
|
|
50e07e2715 | ||
|
|
82121491c5 | ||
|
|
0338c8b8d2 | ||
|
|
c7994347e9 | ||
|
|
9fef0ebc7b | ||
|
|
508cf2ba87 | ||
|
|
6a83e2e90a | ||
|
|
fc2f55bab9 | ||
|
|
4fb65971e4 | ||
|
|
021d31d780 | ||
|
|
074c67c7b9 | ||
|
|
d93f784aad | ||
|
|
ec59908e0d | ||
|
|
7251ec276d | ||
|
|
0ab0f80986 | ||
|
|
2cbcc23fec | ||
|
|
968fb3ea2d | ||
|
|
5ba3ecf59b | ||
|
|
03bdc10b02 | ||
|
|
d96624be4f | ||
|
|
a5dccd5489 | ||
|
|
42e5dc8604 | ||
|
|
e6f593b959 | ||
|
|
9ac6d7f82c | ||
|
|
a58553ba66 | ||
|
|
7442437757 | ||
|
|
bbc53d56b0 | ||
|
|
888f793eb8 | ||
|
|
860760ecfc | ||
|
|
b4ea35baf8 | ||
|
|
508ed8a8e7 | ||
|
|
d9fc623ef4 | ||
|
|
53736ef750 | ||
|
|
6566eae2c7 | ||
|
|
f3eeddff7c | ||
|
|
1540ca5b4e | ||
|
|
e449704fd2 | ||
|
|
af74430551 | ||
|
|
d07dbdc645 | ||
|
|
d07a627508 | ||
|
|
9fbf90ee91 | ||
|
|
d393b3cefc | ||
|
|
35a492ec95 | ||
|
|
b20da5c541 | ||
|
|
a0bdaa2c4b | ||
|
|
6676b66993 | ||
|
|
412651d612 | ||
|
|
d347b493d9 | ||
|
|
39e59dca96 | ||
|
|
5654520901 | ||
|
|
ff75fcc692 | ||
|
|
4728b578ae | ||
|
|
7db7fad9b0 | ||
|
|
830f7299fe | ||
|
|
061738a63b | ||
|
|
e8bd97655f | ||
|
|
7d0b36450d | ||
|
|
b12c83e8b5 | ||
|
|
ff4e2a5c5d | ||
|
|
2ef9f80fc1 | ||
|
|
6fe549e34e | ||
|
|
406a8f86b1 |
+31
-72
@@ -2,6 +2,11 @@
|
|||||||
#
|
#
|
||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
|
# CI for the self-hosted, host-executor Podman runners (see container/).
|
||||||
|
# The runner image bakes in the Rust toolchain and all build dependencies,
|
||||||
|
# so jobs go straight to cargo — no apt/rustup setup steps (which also
|
||||||
|
# collided on the dpkg lock when jobs ran concurrently in the same runner).
|
||||||
|
|
||||||
name: CI
|
name: CI
|
||||||
|
|
||||||
on:
|
on:
|
||||||
@@ -17,90 +22,44 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Install system dependencies
|
|
||||||
run: |
|
|
||||||
sudo apt-get update
|
|
||||||
sudo apt-get install -y --no-install-recommends \
|
|
||||||
build-essential pkg-config cmake clang libclang-dev \
|
|
||||||
libopus-dev libasound2-dev libsoapysdr-dev
|
|
||||||
|
|
||||||
- name: Set up Rust
|
|
||||||
run: |
|
|
||||||
export PATH="$HOME/.cargo/bin:$PATH"
|
|
||||||
if ! command -v rustup >/dev/null 2>&1; then
|
|
||||||
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs \
|
|
||||||
| sh -s -- -y --profile minimal
|
|
||||||
fi
|
|
||||||
rustup toolchain install stable --profile minimal \
|
|
||||||
--component rustfmt --component clippy
|
|
||||||
rustup default stable
|
|
||||||
|
|
||||||
- name: Cache cargo
|
|
||||||
uses: actions/cache@v4
|
|
||||||
with:
|
|
||||||
path: |
|
|
||||||
~/.cargo/registry
|
|
||||||
~/.cargo/git
|
|
||||||
target
|
|
||||||
key: cargo-${{ runner.os }}-${{ hashFiles('**/Cargo.lock') }}
|
|
||||||
restore-keys: cargo-${{ runner.os }}-
|
|
||||||
|
|
||||||
- name: rustfmt
|
- name: rustfmt
|
||||||
run: |
|
run: cargo fmt --all -- --check
|
||||||
export PATH="$HOME/.cargo/bin:$PATH"
|
|
||||||
cargo fmt --all -- --check
|
|
||||||
|
|
||||||
- name: clippy
|
- name: clippy
|
||||||
run: |
|
run: cargo clippy --workspace --all-targets --all-features -- -D warnings
|
||||||
export PATH="$HOME/.cargo/bin:$PATH"
|
|
||||||
cargo clippy --workspace --all-targets --all-features -- -D warnings
|
|
||||||
|
|
||||||
test:
|
test:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Install system dependencies
|
|
||||||
run: |
|
|
||||||
sudo apt-get update
|
|
||||||
sudo apt-get install -y --no-install-recommends \
|
|
||||||
build-essential pkg-config cmake clang libclang-dev \
|
|
||||||
libopus-dev libasound2-dev libsoapysdr-dev
|
|
||||||
|
|
||||||
- name: Set up Rust
|
|
||||||
run: |
|
|
||||||
export PATH="$HOME/.cargo/bin:$PATH"
|
|
||||||
if ! command -v rustup >/dev/null 2>&1; then
|
|
||||||
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs \
|
|
||||||
| sh -s -- -y --profile minimal
|
|
||||||
fi
|
|
||||||
rustup toolchain install stable --profile minimal
|
|
||||||
rustup default stable
|
|
||||||
|
|
||||||
- name: Cache cargo
|
|
||||||
uses: actions/cache@v4
|
|
||||||
with:
|
|
||||||
path: |
|
|
||||||
~/.cargo/registry
|
|
||||||
~/.cargo/git
|
|
||||||
target
|
|
||||||
key: cargo-${{ runner.os }}-${{ hashFiles('**/Cargo.lock') }}
|
|
||||||
restore-keys: cargo-${{ runner.os }}-
|
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
run: |
|
run: cargo build --workspace --all-targets --locked
|
||||||
export PATH="$HOME/.cargo/bin:$PATH"
|
|
||||||
cargo build --workspace --all-targets --locked
|
|
||||||
|
|
||||||
- name: Test
|
- name: Test
|
||||||
run: |
|
run: cargo test --workspace --locked
|
||||||
export PATH="$HOME/.cargo/bin:$PATH"
|
|
||||||
cargo test --workspace --locked
|
frontend:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
defaults:
|
||||||
|
run:
|
||||||
|
working-directory: src/trx-client/trx-frontend/trx-frontend-http/frontend
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- name: Install locked frontend dependencies
|
||||||
|
run: npm ci
|
||||||
|
- name: Type-check
|
||||||
|
run: npm run typecheck
|
||||||
|
- name: Lint
|
||||||
|
run: npm run lint
|
||||||
|
- name: Test
|
||||||
|
run: npm test
|
||||||
|
- name: Verify generated assets
|
||||||
|
run: npm run verify-generated
|
||||||
|
|
||||||
reuse:
|
reuse:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- name: REUSE compliance
|
- name: REUSE compliance
|
||||||
uses: fsfe/reuse-action@v5
|
# `reuse` CLI instead of fsfe/reuse-action: the latter is a Docker
|
||||||
|
# action, which the host-executor runners cannot run. `reuse` is baked
|
||||||
|
# into the runner image (see container/Containerfile).
|
||||||
|
run: reuse lint
|
||||||
|
|||||||
@@ -21,6 +21,9 @@ Cargo.lock
|
|||||||
coverage/
|
coverage/
|
||||||
benchmarks/
|
benchmarks/
|
||||||
|
|
||||||
|
# Frontend dependencies
|
||||||
|
**/node_modules/
|
||||||
|
|
||||||
# Env
|
# Env
|
||||||
.env
|
.env
|
||||||
.env.*
|
.env.*
|
||||||
|
|||||||
Generated
+35
@@ -2645,6 +2645,15 @@ dependencies = [
|
|||||||
"windows-sys 0.61.2",
|
"windows-sys 0.61.2",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "termcolor"
|
||||||
|
version = "1.4.1"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
|
||||||
|
dependencies = [
|
||||||
|
"winapi-util",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "thiserror"
|
name = "thiserror"
|
||||||
version = "1.0.69"
|
version = "1.0.69"
|
||||||
@@ -3137,6 +3146,7 @@ dependencies = [
|
|||||||
"sgp4",
|
"sgp4",
|
||||||
"tokio",
|
"tokio",
|
||||||
"tracing",
|
"tracing",
|
||||||
|
"ts-rs",
|
||||||
"uuid",
|
"uuid",
|
||||||
]
|
]
|
||||||
|
|
||||||
@@ -3195,6 +3205,7 @@ dependencies = [
|
|||||||
"trx-core",
|
"trx-core",
|
||||||
"trx-frontend",
|
"trx-frontend",
|
||||||
"trx-protocol",
|
"trx-protocol",
|
||||||
|
"ts-rs",
|
||||||
"uuid",
|
"uuid",
|
||||||
]
|
]
|
||||||
|
|
||||||
@@ -3238,6 +3249,7 @@ dependencies = [
|
|||||||
"serde",
|
"serde",
|
||||||
"serde_json",
|
"serde_json",
|
||||||
"trx-core",
|
"trx-core",
|
||||||
|
"ts-rs",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@@ -3333,6 +3345,29 @@ version = "0.2.5"
|
|||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "ts-rs"
|
||||||
|
version = "12.0.1"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "756050066659291d47a554a9f558125db17428b073c5ffce1daf5dcb0f7231d8"
|
||||||
|
dependencies = [
|
||||||
|
"thiserror 2.0.18",
|
||||||
|
"ts-rs-macros",
|
||||||
|
"uuid",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "ts-rs-macros"
|
||||||
|
version = "12.0.1"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "38d90eea51bc7988ef9e674bf80a85ba6804739e535e9cab48e4bb34a8b652aa"
|
||||||
|
dependencies = [
|
||||||
|
"proc-macro2",
|
||||||
|
"quote",
|
||||||
|
"syn",
|
||||||
|
"termcolor",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "typenum"
|
name = "typenum"
|
||||||
version = "1.20.0"
|
version = "1.20.0"
|
||||||
|
|||||||
@@ -0,0 +1,21 @@
|
|||||||
|
MIT License
|
||||||
|
|
||||||
|
Copyright (c) <year> <copyright holders>
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
in the Software without restriction, including without limitation the rights
|
||||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
|
furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in all
|
||||||
|
copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
|
SOFTWARE.
|
||||||
@@ -142,6 +142,6 @@ a unified set of frontends.
|
|||||||
## License
|
## License
|
||||||
|
|
||||||
GPL-2.0-or-later. See [`LICENSES`](LICENSES) for the full license text and
|
GPL-2.0-or-later. See [`LICENSES`](LICENSES) for the full license text and
|
||||||
bundled third-party license files. Bundled third-party components (Leaflet and
|
bundled third-party license files. Bundled third-party components retain their
|
||||||
the Leaflet AIS tracksymbol plugin under `assets/web/vendor/`) retain their
|
original licenses: Leaflet is BSD-2-Clause, DSEG is OFL-1.1, and opus-decoder
|
||||||
original BSD-2-Clause license.
|
is MIT.
|
||||||
|
|||||||
@@ -42,3 +42,11 @@ SPDX-License-Identifier = "BSD-2-Clause"
|
|||||||
path = ["src/trx-client/trx-frontend/trx-frontend-http/assets/web/vendor/dseg14-classic-latin-400-normal.woff2"]
|
path = ["src/trx-client/trx-frontend/trx-frontend-http/assets/web/vendor/dseg14-classic-latin-400-normal.woff2"]
|
||||||
SPDX-FileCopyrightText = "2020 The DSEG Authors (https://github.com/keshikan/DSEG)"
|
SPDX-FileCopyrightText = "2020 The DSEG Authors (https://github.com/keshikan/DSEG)"
|
||||||
SPDX-License-Identifier = "OFL-1.1"
|
SPDX-License-Identifier = "OFL-1.1"
|
||||||
|
|
||||||
|
# Vendored opus-decoder 0.7.11 browser build
|
||||||
|
# (https://github.com/eshaz/wasm-audio-decoders), MIT.
|
||||||
|
# SHA-256: fd73ee0a9c8a5e233c0b88234df14f46003ad89bb4ba27435bc8714db2a6dc62
|
||||||
|
[[annotations]]
|
||||||
|
path = ["src/trx-client/trx-frontend/trx-frontend-http/assets/web/vendor/opus-decoder-0.7.11.min.js"]
|
||||||
|
SPDX-FileCopyrightText = "2021-2025 Ethan Halsall"
|
||||||
|
SPDX-License-Identifier = "MIT"
|
||||||
|
|||||||
@@ -0,0 +1,61 @@
|
|||||||
|
# SPDX-FileCopyrightText: 2026 Stan Grams <sjg@haxx.space>
|
||||||
|
#
|
||||||
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
|
# Gitea Actions runner image for trx-rs CI (host-executor / "Pattern B").
|
||||||
|
#
|
||||||
|
# All build dependencies, the Rust toolchain, Node.js (for JS actions such as
|
||||||
|
# actions/checkout and actions/cache) and the `reuse` tool are baked in, so CI
|
||||||
|
# runs skip the per-run apt/rustup install cost. `sudo` is present so the
|
||||||
|
# existing workflow's `sudo apt-get ...` / rustup steps remain valid — they
|
||||||
|
# just become fast no-ops because everything is already installed.
|
||||||
|
FROM docker.io/library/debian:bookworm-slim
|
||||||
|
|
||||||
|
ARG ACT_RUNNER_VERSION=0.2.11
|
||||||
|
ARG NODE_MAJOR=20
|
||||||
|
|
||||||
|
ENV DEBIAN_FRONTEND=noninteractive \
|
||||||
|
RUSTUP_HOME=/opt/rustup \
|
||||||
|
CARGO_HOME=/opt/cargo \
|
||||||
|
PATH=/opt/cargo/bin:/usr/local/bin:/usr/bin:/bin
|
||||||
|
|
||||||
|
# Base tooling + trx-rs build dependencies (mirrors .gitea/workflows/ci.yml).
|
||||||
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
||||||
|
ca-certificates curl xz-utils git sudo pipx \
|
||||||
|
build-essential pkg-config cmake clang libclang-dev \
|
||||||
|
libopus-dev libasound2-dev libsoapysdr-dev \
|
||||||
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
|
# Node.js (JS-based actions need node in PATH under the host executor).
|
||||||
|
RUN curl -fsSL https://deb.nodesource.com/setup_${NODE_MAJOR}.x | bash - \
|
||||||
|
&& apt-get install -y --no-install-recommends nodejs \
|
||||||
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
|
# REUSE >= 3 (Debian's packaged reuse is too old for REUSE.toml).
|
||||||
|
# The [charset-normalizer] extra provides an encoding-detection backend;
|
||||||
|
# without it (and without libmagic) reuse fails to import at runtime.
|
||||||
|
RUN PIPX_HOME=/opt/pipx PIPX_BIN_DIR=/usr/local/bin pipx install 'reuse[charset-normalizer]'
|
||||||
|
|
||||||
|
# Rust stable with rustfmt + clippy, installed system-wide.
|
||||||
|
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs \
|
||||||
|
| sh -s -- -y --no-modify-path --profile minimal \
|
||||||
|
--component rustfmt --component clippy \
|
||||||
|
&& chmod -R a+rwX "$CARGO_HOME" "$RUSTUP_HOME"
|
||||||
|
|
||||||
|
# act_runner binary.
|
||||||
|
RUN arch="$(dpkg --print-architecture)"; \
|
||||||
|
case "$arch" in amd64) rarch=amd64;; arm64) rarch=arm64;; *) echo "unsupported arch $arch" >&2; exit 1;; esac; \
|
||||||
|
curl -fsSL -o /usr/local/bin/act_runner \
|
||||||
|
"https://gitea.com/gitea/act_runner/releases/download/v${ACT_RUNNER_VERSION}/act_runner-${ACT_RUNNER_VERSION}-linux-${rarch}" \
|
||||||
|
&& chmod +x /usr/local/bin/act_runner
|
||||||
|
|
||||||
|
# Default config template (seeded into the /data volume on first boot).
|
||||||
|
COPY config.yaml /etc/act_runner/config.yaml
|
||||||
|
COPY entrypoint.sh /usr/local/bin/entrypoint.sh
|
||||||
|
RUN chmod +x /usr/local/bin/entrypoint.sh
|
||||||
|
|
||||||
|
# /data holds the .runner registration, cache and workflow workspaces.
|
||||||
|
VOLUME /data
|
||||||
|
WORKDIR /data
|
||||||
|
|
||||||
|
ENTRYPOINT ["/usr/local/bin/entrypoint.sh"]
|
||||||
@@ -0,0 +1,118 @@
|
|||||||
|
<!--
|
||||||
|
SPDX-FileCopyrightText: 2026 Stan Grams <sjg@haxx.space>
|
||||||
|
SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
-->
|
||||||
|
|
||||||
|
# Podman-based Gitea Actions runners
|
||||||
|
|
||||||
|
Run two independent Gitea Actions runners on one host as rootless Podman
|
||||||
|
containers managed by systemd (Quadlet) — one per project — instead of two
|
||||||
|
VMs. Uses the **host executor**: workflow steps run directly inside a
|
||||||
|
purpose-built runner image that already has the Rust toolchain and all build
|
||||||
|
dependencies baked in, so CI runs skip the per-run install cost and no
|
||||||
|
Docker/Podman socket is needed.
|
||||||
|
|
||||||
|
## Files
|
||||||
|
|
||||||
|
| File | Purpose |
|
||||||
|
|------|---------|
|
||||||
|
| `Containerfile` | Runner image: Debian + build deps + clang + Rust + Node + `reuse` + `act_runner`. |
|
||||||
|
| `entrypoint.sh` | Registers on first boot (if needed), then runs the daemon. |
|
||||||
|
| `config.yaml` | act_runner config template (seeded into each runner's volume). |
|
||||||
|
| `trx-rs-runner.container` | Quadlet unit for the trx-rs runner. |
|
||||||
|
| `project2-runner.container` | Quadlet unit for the second project's runner. |
|
||||||
|
|
||||||
|
## Prerequisites (once per host)
|
||||||
|
|
||||||
|
Rootless Podman with cgroups v2 (default on modern distros). As the unprivileged
|
||||||
|
user that will own the runners:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# Survive logout / start on boot without an interactive session.
|
||||||
|
loginctl enable-linger "$USER"
|
||||||
|
```
|
||||||
|
|
||||||
|
No `podman.socket` is required for the host executor.
|
||||||
|
|
||||||
|
## 1. Build the image
|
||||||
|
|
||||||
|
```bash
|
||||||
|
cd container
|
||||||
|
podman build -t trx-rs-ci:latest .
|
||||||
|
```
|
||||||
|
|
||||||
|
## 2. Get a registration token
|
||||||
|
|
||||||
|
For **each** repo: *Settings → Actions → Runners → Create new Runner* and copy
|
||||||
|
the token. (Org- or instance-level tokens work too if you prefer wider scope.)
|
||||||
|
|
||||||
|
## 3. Install and start the runners
|
||||||
|
|
||||||
|
```bash
|
||||||
|
mkdir -p ~/.config/containers/systemd
|
||||||
|
cp trx-rs-runner.container project2-runner.container ~/.config/containers/systemd/
|
||||||
|
|
||||||
|
# Paste each repo's token for the FIRST boot only:
|
||||||
|
# Environment=GITEA_RUNNER_REGISTRATION_TOKEN=xxxx…
|
||||||
|
$EDITOR ~/.config/containers/systemd/trx-rs-runner.container
|
||||||
|
$EDITOR ~/.config/containers/systemd/project2-runner.container
|
||||||
|
|
||||||
|
systemctl --user daemon-reload
|
||||||
|
systemctl --user start trx-rs-runner
|
||||||
|
systemctl --user start project2-runner
|
||||||
|
|
||||||
|
systemctl --user status trx-rs-runner
|
||||||
|
podman logs -f gitea-runner-trx-rs
|
||||||
|
```
|
||||||
|
|
||||||
|
Once each runner shows **online** in the repo's runner list, blank out the
|
||||||
|
`GITEA_RUNNER_REGISTRATION_TOKEN` line again (the registration is persisted in
|
||||||
|
the `…-data` volume) and `systemctl --user daemon-reload`.
|
||||||
|
|
||||||
|
## Required workflow change: the `reuse` job
|
||||||
|
|
||||||
|
The host executor runs steps directly in the container and therefore **cannot
|
||||||
|
run Docker-based actions**. The current `reuse` job uses `fsfe/reuse-action@v5`,
|
||||||
|
which is a Docker action. `reuse` is baked into the image, so replace that job
|
||||||
|
with a plain command:
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
reuse:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- name: REUSE compliance
|
||||||
|
run: reuse lint
|
||||||
|
```
|
||||||
|
|
||||||
|
The `lint` and `test` jobs need no changes: their `sudo apt-get …` and rustup
|
||||||
|
steps still run, but become fast no-ops because the image already has those
|
||||||
|
packages and the toolchain. (`sudo` is included in the image for exactly this
|
||||||
|
reason.)
|
||||||
|
|
||||||
|
> If you would rather keep Docker-based actions and per-run images, use the
|
||||||
|
> **Docker executor** instead: drop the `:host` suffix from the label in
|
||||||
|
> `config.yaml`, enable `systemctl --user --now enable podman.socket`, mount it
|
||||||
|
> into the container, and set `container.docker_host` to the socket path. That
|
||||||
|
> trades the baked-in speed for stronger per-job isolation.
|
||||||
|
|
||||||
|
## Tuning
|
||||||
|
|
||||||
|
- **`capacity`** (in `config.yaml`) — concurrent jobs per runner. Rust builds
|
||||||
|
are heavy; 1–2 is sensible when two runners share a host.
|
||||||
|
- **`PodmanArgs=--cpus/--memory`** (in each `.container`) — hard resource caps
|
||||||
|
so one project cannot starve the other.
|
||||||
|
- **SELinux** — the `:Z` volume flag is already set; keep it if SELinux is
|
||||||
|
enforcing.
|
||||||
|
|
||||||
|
## Committing these files
|
||||||
|
|
||||||
|
If you add this directory to a REUSE-checked repo, register the markdown in
|
||||||
|
`REUSE.toml` (the other files carry inline SPDX headers):
|
||||||
|
|
||||||
|
```toml
|
||||||
|
[[annotations]]
|
||||||
|
path = ["container/**"]
|
||||||
|
SPDX-FileCopyrightText = "2026 Stan Grams <sjg@haxx.space>"
|
||||||
|
SPDX-License-Identifier = "GPL-2.0-or-later"
|
||||||
|
```
|
||||||
@@ -0,0 +1,32 @@
|
|||||||
|
# SPDX-FileCopyrightText: 2026 Stan Grams <sjg@haxx.space>
|
||||||
|
#
|
||||||
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
#
|
||||||
|
# act_runner configuration template. Seeded into /data/config.yaml on first
|
||||||
|
# boot; edit the copy inside the volume to change settings per runner.
|
||||||
|
|
||||||
|
log:
|
||||||
|
level: info
|
||||||
|
|
||||||
|
runner:
|
||||||
|
# Registration state. Relative to the daemon's working directory (/data).
|
||||||
|
file: .runner
|
||||||
|
# Concurrent jobs this runner will pick up. Rust builds are heavy — keep this
|
||||||
|
# modest, especially if two runners share one host. The trx-rs workflow has
|
||||||
|
# three parallel jobs (lint, test, reuse); capacity 2 lets two overlap.
|
||||||
|
capacity: 2
|
||||||
|
timeout: 3h
|
||||||
|
# Map the workflow's `runs-on: ubuntu-latest` to the HOST executor, i.e. run
|
||||||
|
# steps directly inside THIS container (which already has all the toolchain).
|
||||||
|
# No Docker/Podman socket is required in this mode.
|
||||||
|
labels:
|
||||||
|
- "ubuntu-latest:host"
|
||||||
|
|
||||||
|
cache:
|
||||||
|
# Built-in actions cache server (used by actions/cache). Stored in the volume.
|
||||||
|
enabled: true
|
||||||
|
dir: "/data/cache"
|
||||||
|
|
||||||
|
host:
|
||||||
|
# Where per-job workspaces are created.
|
||||||
|
workdir_parent: /data/workflows
|
||||||
@@ -0,0 +1,38 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
# SPDX-FileCopyrightText: 2026 Stan Grams <sjg@haxx.space>
|
||||||
|
#
|
||||||
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
#
|
||||||
|
# Registers the runner on first boot (if no .runner state exists in /data),
|
||||||
|
# then runs the act_runner daemon. Idempotent: on subsequent boots it reuses
|
||||||
|
# the stored registration and ignores the token.
|
||||||
|
set -euo pipefail
|
||||||
|
|
||||||
|
CONFIG_FILE="${CONFIG_FILE:-/data/config.yaml}"
|
||||||
|
|
||||||
|
cd /data
|
||||||
|
|
||||||
|
# Seed the config from the image's template on first boot so it lives in the
|
||||||
|
# persistent volume and can be edited there.
|
||||||
|
if [ ! -f "$CONFIG_FILE" ]; then
|
||||||
|
cp /etc/act_runner/config.yaml "$CONFIG_FILE"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# runner.file in config.yaml is ".runner" (relative to this CWD => /data/.runner).
|
||||||
|
if [ ! -f /data/.runner ]; then
|
||||||
|
if [ -z "${GITEA_RUNNER_REGISTRATION_TOKEN:-}" ]; then
|
||||||
|
echo "ERROR: no /data/.runner registration and GITEA_RUNNER_REGISTRATION_TOKEN is empty." >&2
|
||||||
|
echo " Grab a token from the repo's Settings -> Actions -> Runners and set it" >&2
|
||||||
|
echo " in the Quadlet unit for the first boot only." >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
echo "Registering runner '${GITEA_RUNNER_NAME:-podman}' with ${GITEA_INSTANCE_URL} ..."
|
||||||
|
act_runner register --no-interactive \
|
||||||
|
--config "$CONFIG_FILE" \
|
||||||
|
--instance "${GITEA_INSTANCE_URL:?set GITEA_INSTANCE_URL}" \
|
||||||
|
--token "$GITEA_RUNNER_REGISTRATION_TOKEN" \
|
||||||
|
--name "${GITEA_RUNNER_NAME:-podman}" \
|
||||||
|
--labels "${GITEA_RUNNER_LABELS:-ubuntu-latest:host}"
|
||||||
|
fi
|
||||||
|
|
||||||
|
exec act_runner daemon --config "$CONFIG_FILE"
|
||||||
@@ -0,0 +1,40 @@
|
|||||||
|
# SPDX-FileCopyrightText: 2026 Stan Grams <sjg@haxx.space>
|
||||||
|
#
|
||||||
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
#
|
||||||
|
# Rootless Podman Quadlet for the SECOND project's Gitea Actions runner,
|
||||||
|
# co-located on the same host as the trx-rs runner.
|
||||||
|
#
|
||||||
|
# It has its own name, its own data volume and its own registration token, so
|
||||||
|
# the two runners are fully independent. They share the `ubuntu-latest` label,
|
||||||
|
# but registration SCOPE (which repo each token came from) keeps their jobs
|
||||||
|
# separate — neither will pick up the other's work.
|
||||||
|
#
|
||||||
|
# If project 2 needs different build dependencies, build it its own image from
|
||||||
|
# an adjusted Containerfile and point Image= at that instead of reusing the
|
||||||
|
# trx-rs image below.
|
||||||
|
|
||||||
|
[Unit]
|
||||||
|
Description=Gitea Actions runner — project 2
|
||||||
|
After=network-online.target
|
||||||
|
Wants=network-online.target
|
||||||
|
|
||||||
|
[Container]
|
||||||
|
Image=localhost/gitea-act-runner:latest
|
||||||
|
ContainerName=gitea-runner-project2
|
||||||
|
Volume=gitea-runner-project2-data:/data:Z
|
||||||
|
|
||||||
|
Environment=CONFIG_FILE=/data/config.yaml
|
||||||
|
Environment=GITEA_INSTANCE_URL=https://git.haxx.space
|
||||||
|
Environment=GITEA_RUNNER_NAME=project2-podman
|
||||||
|
Environment=GITEA_RUNNER_LABELS=ubuntu-latest:host
|
||||||
|
Environment=GITEA_RUNNER_REGISTRATION_TOKEN=
|
||||||
|
|
||||||
|
PodmanArgs=--cpus=4.0 --memory=6g
|
||||||
|
|
||||||
|
[Service]
|
||||||
|
Restart=always
|
||||||
|
TimeoutStartSec=0
|
||||||
|
|
||||||
|
[Install]
|
||||||
|
WantedBy=default.target
|
||||||
@@ -0,0 +1,41 @@
|
|||||||
|
# SPDX-FileCopyrightText: 2026 Stan Grams <sjg@haxx.space>
|
||||||
|
#
|
||||||
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
#
|
||||||
|
# Rootless Podman Quadlet for the trx-rs Gitea Actions runner.
|
||||||
|
# Install to ~/.config/containers/systemd/trx-rs-runner.container then:
|
||||||
|
# systemctl --user daemon-reload
|
||||||
|
# systemctl --user start trx-rs-runner
|
||||||
|
#
|
||||||
|
# First boot only: paste a registration token (repo Settings -> Actions ->
|
||||||
|
# Runners) into GITEA_RUNNER_REGISTRATION_TOKEN. After the runner appears
|
||||||
|
# online you can blank it again — the registration is persisted in the volume.
|
||||||
|
|
||||||
|
[Unit]
|
||||||
|
Description=Gitea Actions runner — trx-rs
|
||||||
|
After=network-online.target
|
||||||
|
Wants=network-online.target
|
||||||
|
|
||||||
|
[Container]
|
||||||
|
Image=localhost/trx-rs-ci:latest
|
||||||
|
ContainerName=gitea-runner-trx-rs
|
||||||
|
# Persistent state: .runner registration, cache, workspaces.
|
||||||
|
Volume=gitea-runner-trx-rs-data:/data:Z
|
||||||
|
|
||||||
|
Environment=CONFIG_FILE=/data/config.yaml
|
||||||
|
Environment=GITEA_INSTANCE_URL=https://git.haxx.space
|
||||||
|
Environment=GITEA_RUNNER_NAME=trx-rs-podman
|
||||||
|
Environment=GITEA_RUNNER_LABELS=ubuntu-latest:host
|
||||||
|
Environment=GITEA_RUNNER_REGISTRATION_TOKEN=
|
||||||
|
|
||||||
|
# Resource caps so a heavy Rust build here cannot starve the other project's
|
||||||
|
# runner on the same host. Tune to your box.
|
||||||
|
PodmanArgs=--cpus=4.0 --memory=6g
|
||||||
|
|
||||||
|
[Service]
|
||||||
|
Restart=always
|
||||||
|
# A cold Rust build can be slow; don't let systemd consider startup failed.
|
||||||
|
TimeoutStartSec=0
|
||||||
|
|
||||||
|
[Install]
|
||||||
|
WantedBy=default.target
|
||||||
@@ -0,0 +1,50 @@
|
|||||||
|
<!--
|
||||||
|
SPDX-FileCopyrightText: 2026 Stan Grams <sjg@haxx.space>
|
||||||
|
|
||||||
|
SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
-->
|
||||||
|
|
||||||
|
# TypeScript migration baseline
|
||||||
|
|
||||||
|
This baseline records the browser architecture at the start of the migration.
|
||||||
|
It is intentionally historical; generated output sizes are tracked separately
|
||||||
|
by the deterministic frontend build.
|
||||||
|
|
||||||
|
## Startup order
|
||||||
|
|
||||||
|
The initial document loads these scripts in order:
|
||||||
|
|
||||||
|
1. `/vendor/opus-decoder-0.7.11.min.js`
|
||||||
|
2. `/vendor/leaflet.js`
|
||||||
|
3. `/leaflet-ais-tracksymbol.js`
|
||||||
|
4. `/webgl-renderer.js`
|
||||||
|
5. `/ui-core.js`
|
||||||
|
6. `/app.js`
|
||||||
|
|
||||||
|
Decoder and feature scripts are then loaded lazily by the inline loader in
|
||||||
|
`index.html`. The frontend smoke test locks the core ordering and rejects
|
||||||
|
remote script or stylesheet URLs.
|
||||||
|
|
||||||
|
## Source measurements
|
||||||
|
|
||||||
|
At baseline, first-party JavaScript comprised 23 files and approximately
|
||||||
|
776 KiB. The largest sources were:
|
||||||
|
|
||||||
|
| Source | Bytes |
|
||||||
|
|---|---:|
|
||||||
|
| `app.js` | 337,111 |
|
||||||
|
| `map-core.js` | 131,899 |
|
||||||
|
| `plugins/scheduler.js` | 60,883 |
|
||||||
|
| `plugins/bookmarks.js` | 30,543 |
|
||||||
|
| `plugins/sat.js` | 22,541 |
|
||||||
|
| `plugins/vchan.js` | 20,195 |
|
||||||
|
| `webgl-renderer.js` | 18,993 |
|
||||||
|
|
||||||
|
The migrated source snapshot contained 123 distinct direct `window.*`
|
||||||
|
assignments. These are compatibility callbacks, shared state, and plugin entry
|
||||||
|
points. New TypeScript code must not add to that set; the typed plugin registry
|
||||||
|
and explicit services replace it over the course of the migration.
|
||||||
|
|
||||||
|
All production scripts, stylesheets, fonts, icons, and map assets were already
|
||||||
|
served from local embedded routes. The automated startup test ensures no
|
||||||
|
remote runtime script or stylesheet dependency is introduced.
|
||||||
@@ -0,0 +1,549 @@
|
|||||||
|
<!--
|
||||||
|
SPDX-FileCopyrightText: 2026 Stan Grams <sjg@haxx.space>
|
||||||
|
|
||||||
|
SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
-->
|
||||||
|
|
||||||
|
# TypeScript Migration Plan
|
||||||
|
|
||||||
|
> **Scope**: `src/trx-client/trx-frontend/trx-frontend-http/`
|
||||||
|
>
|
||||||
|
> **Status**: Proposed
|
||||||
|
|
||||||
|
## 1. Decision
|
||||||
|
|
||||||
|
Migrating the web frontend to TypeScript is worthwhile, provided it is used to
|
||||||
|
remove implicit contracts and global coupling. Renaming JavaScript files to
|
||||||
|
`.ts` without changing their boundaries would add tooling without delivering
|
||||||
|
the main safety benefits.
|
||||||
|
|
||||||
|
The migration must be incremental. Every intermediate commit and pull request
|
||||||
|
must leave the frontend buildable and usable.
|
||||||
|
|
||||||
|
## 2. Current State
|
||||||
|
|
||||||
|
The frontend currently contains roughly 21,700 lines of first-party
|
||||||
|
JavaScript. Its largest components include:
|
||||||
|
|
||||||
|
- `app.js`: approximately 8,900 lines;
|
||||||
|
- `map-core.js`: approximately 3,500 lines;
|
||||||
|
- `plugins/scheduler.js`: approximately 1,500 lines;
|
||||||
|
- `plugins/bookmarks.js`: approximately 800 lines;
|
||||||
|
- `plugins/vchan.js`: approximately 560 lines.
|
||||||
|
|
||||||
|
Important characteristics of the current architecture are:
|
||||||
|
|
||||||
|
- scripts are embedded individually into the Rust binary with `include_str!`;
|
||||||
|
- the Rust HTTP server exposes an explicit route for each asset;
|
||||||
|
- plugins are loaded dynamically as classic scripts;
|
||||||
|
- script order is significant;
|
||||||
|
- modules communicate through `window.*`, `window.trx`, callbacks, and shared
|
||||||
|
mutable state;
|
||||||
|
- the main HTML file contains the plugin loader;
|
||||||
|
- a Web Worker is loaded through a fixed URL;
|
||||||
|
- Cargo builds do not require Node.js;
|
||||||
|
- CI images contain Node.js, but CI currently runs only Rust and REUSE checks;
|
||||||
|
- Leaflet, Opus decoder, fonts, images, and other vendored assets are local.
|
||||||
|
|
||||||
|
These constraints make a big-bang rewrite unnecessarily risky.
|
||||||
|
|
||||||
|
## 3. Goals
|
||||||
|
|
||||||
|
The migration should:
|
||||||
|
|
||||||
|
1. Create checked contracts between Rust responses and browser code.
|
||||||
|
2. Replace global callbacks with explicit module interfaces.
|
||||||
|
3. Split `app.js` by responsibility.
|
||||||
|
4. Make rig, capability, decoder, scheduler, audio, and spectrum state explicit.
|
||||||
|
5. Preserve lazy loading for expensive features.
|
||||||
|
6. Add frontend type checking, linting, and automated tests to CI.
|
||||||
|
7. Keep ordinary Cargo builds independent of Node.js and network access.
|
||||||
|
8. Preserve existing browser behavior throughout the migration.
|
||||||
|
|
||||||
|
## 4. Non-Goals
|
||||||
|
|
||||||
|
The migration will not initially:
|
||||||
|
|
||||||
|
- introduce a UI framework;
|
||||||
|
- redesign the user interface;
|
||||||
|
- convert vendored JavaScript to TypeScript;
|
||||||
|
- change REST, SSE, WebSocket, or worker protocols unless required to make an
|
||||||
|
existing contract unambiguous;
|
||||||
|
- make `build.rs` install packages or download frontend dependencies;
|
||||||
|
- convert all of `app.js` in one pull request.
|
||||||
|
|
||||||
|
## 5. Target Layout
|
||||||
|
|
||||||
|
```text
|
||||||
|
trx-frontend-http/
|
||||||
|
├── frontend/
|
||||||
|
│ ├── package.json
|
||||||
|
│ ├── package-lock.json
|
||||||
|
│ ├── tsconfig.json
|
||||||
|
│ ├── tsconfig.worker.json
|
||||||
|
│ ├── build.mjs
|
||||||
|
│ ├── src/
|
||||||
|
│ │ ├── bootstrap.ts
|
||||||
|
│ │ ├── api/
|
||||||
|
│ │ │ ├── client.ts
|
||||||
|
│ │ │ └── generated.ts
|
||||||
|
│ │ ├── core/
|
||||||
|
│ │ │ ├── dom.ts
|
||||||
|
│ │ │ ├── events.ts
|
||||||
|
│ │ │ ├── settings.ts
|
||||||
|
│ │ │ └── state.ts
|
||||||
|
│ │ ├── features/
|
||||||
|
│ │ │ ├── audio/
|
||||||
|
│ │ │ ├── bookmarks/
|
||||||
|
│ │ │ ├── map/
|
||||||
|
│ │ │ ├── navigation/
|
||||||
|
│ │ │ ├── radio/
|
||||||
|
│ │ │ ├── recorder/
|
||||||
|
│ │ │ ├── scheduler/
|
||||||
|
│ │ │ └── spectrum/
|
||||||
|
│ │ ├── decoders/
|
||||||
|
│ │ ├── workers/
|
||||||
|
│ │ └── legacy/
|
||||||
|
│ │ └── global-bridge.ts
|
||||||
|
│ └── tests/
|
||||||
|
└── assets/web/
|
||||||
|
├── generated/
|
||||||
|
├── vendor/
|
||||||
|
├── index.html
|
||||||
|
├── style.css
|
||||||
|
└── themes.css
|
||||||
|
```
|
||||||
|
|
||||||
|
The exact feature directories may evolve, but dependencies should point from
|
||||||
|
features toward `core` and `api`, never from `core` back into features.
|
||||||
|
|
||||||
|
## 6. Tooling
|
||||||
|
|
||||||
|
Use TypeScript for type checking and esbuild for bundling. A framework-specific
|
||||||
|
development server is not needed.
|
||||||
|
|
||||||
|
Recommended compiler baseline:
|
||||||
|
|
||||||
|
```json
|
||||||
|
{
|
||||||
|
"compilerOptions": {
|
||||||
|
"target": "ES2022",
|
||||||
|
"module": "ESNext",
|
||||||
|
"moduleResolution": "Bundler",
|
||||||
|
"strict": true,
|
||||||
|
"noUncheckedIndexedAccess": true,
|
||||||
|
"exactOptionalPropertyTypes": true,
|
||||||
|
"useUnknownInCatchVariables": true,
|
||||||
|
"noEmit": true,
|
||||||
|
"lib": ["ES2022", "DOM"]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
Worker code should use a separate configuration with `WebWorker` rather than
|
||||||
|
`DOM` globals.
|
||||||
|
|
||||||
|
The package scripts should provide at least:
|
||||||
|
|
||||||
|
```text
|
||||||
|
npm run typecheck
|
||||||
|
npm run lint
|
||||||
|
npm test
|
||||||
|
npm run build
|
||||||
|
npm run verify-generated
|
||||||
|
```
|
||||||
|
|
||||||
|
Pin dependencies in `package-lock.json`. New package and generated files must
|
||||||
|
carry or inherit valid REUSE licensing information.
|
||||||
|
|
||||||
|
## 7. Cargo and Asset Integration
|
||||||
|
|
||||||
|
Cargo must remain usable on machines without Node.js. Do not invoke `npm`
|
||||||
|
automatically from `build.rs`.
|
||||||
|
|
||||||
|
The initial integration should work as follows:
|
||||||
|
|
||||||
|
1. TypeScript and JavaScript sources live under `frontend/src`.
|
||||||
|
2. esbuild writes browser-ready output under `assets/web/generated`.
|
||||||
|
3. Generated browser output is committed to the repository.
|
||||||
|
4. Rust embeds generated output, not TypeScript source.
|
||||||
|
5. CI rebuilds the frontend and fails if committed output is stale.
|
||||||
|
|
||||||
|
During early phases, retain the existing public URLs, including:
|
||||||
|
|
||||||
|
```text
|
||||||
|
/app.js
|
||||||
|
/ui-core.js
|
||||||
|
/map-core.js
|
||||||
|
/scheduler.js
|
||||||
|
/decode-history-worker.js
|
||||||
|
```
|
||||||
|
|
||||||
|
Keeping these URLs stable avoids coupling the first migration phases to changes
|
||||||
|
in HTML loading, authentication rules, caching, or Rust routing.
|
||||||
|
|
||||||
|
After modules and code splitting are established, replace the explicit list of
|
||||||
|
Rust constants and handlers with an embedded generated-asset directory. The
|
||||||
|
server must still enforce an allowlist, correct MIME types, cache headers, and
|
||||||
|
path traversal protection.
|
||||||
|
|
||||||
|
## 8. Rust-to-TypeScript Contracts
|
||||||
|
|
||||||
|
Generate TypeScript definitions from Rust wire types instead of maintaining
|
||||||
|
parallel handwritten representations.
|
||||||
|
|
||||||
|
Initial candidates include:
|
||||||
|
|
||||||
|
- `RigState`, `RigInfo`, and `RigCapabilities`;
|
||||||
|
- the `/rigs` response;
|
||||||
|
- decoder registry entries;
|
||||||
|
- scheduler configuration and status;
|
||||||
|
- filter and spectrum state;
|
||||||
|
- recorder responses;
|
||||||
|
- SSE update payloads;
|
||||||
|
- decoded-message variants;
|
||||||
|
- WebSocket control and status messages.
|
||||||
|
|
||||||
|
A generator such as `ts-rs` can produce
|
||||||
|
`frontend/src/api/generated.ts`. Generated definitions should describe only
|
||||||
|
wire formats. UI state and view models should remain handwritten.
|
||||||
|
|
||||||
|
CI must regenerate these definitions and fail when the working tree changes.
|
||||||
|
Serde renames, tagged enums, optional fields, flattened values, and numeric
|
||||||
|
ranges must be checked explicitly during the initial generator integration.
|
||||||
|
|
||||||
|
TypeScript types do not validate data at runtime. Critical compatibility
|
||||||
|
boundaries should retain focused runtime checks for missing or malformed data,
|
||||||
|
particularly when clients and servers may run different versions.
|
||||||
|
|
||||||
|
## 9. Target Module Contracts
|
||||||
|
|
||||||
|
Plugins should eventually implement an explicit interface rather than assigning
|
||||||
|
callbacks to `window`:
|
||||||
|
|
||||||
|
```ts
|
||||||
|
interface TrxPlugin {
|
||||||
|
readonly id: string;
|
||||||
|
initialize(context: PluginContext): void | Promise<void>;
|
||||||
|
dispose?(): void;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface PluginContext {
|
||||||
|
api: TrxApi;
|
||||||
|
events: TrxEventBus;
|
||||||
|
navigation: NavigationService;
|
||||||
|
notifications: NotificationService;
|
||||||
|
state: ReadonlyRadioState;
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
During the transition, `legacy/global-bridge.ts` may expose the minimum globals
|
||||||
|
required by unmigrated scripts. The bridge must shrink as migration progresses;
|
||||||
|
new feature code must not add new global callbacks.
|
||||||
|
|
||||||
|
State should be divided by responsibility rather than replaced by one large
|
||||||
|
typed global:
|
||||||
|
|
||||||
|
```ts
|
||||||
|
interface RadioState {
|
||||||
|
activeRigId: string | null;
|
||||||
|
capabilities: RigCapabilities | null;
|
||||||
|
connection: ConnectionState;
|
||||||
|
frequencyHz: number | null;
|
||||||
|
mode: RigMode | null;
|
||||||
|
bandwidthHz: number | null;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface AudioState {
|
||||||
|
rx: AudioStreamState;
|
||||||
|
tx: AudioStreamState;
|
||||||
|
volume: VolumeState;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface DecoderState {
|
||||||
|
registry: DecoderDescriptor[];
|
||||||
|
status: ReadonlyMap<DecoderId, DecoderStatus>;
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
Commands should receive a rig ID explicitly. They must not infer their target
|
||||||
|
from mutable global selection state after an asynchronous operation begins.
|
||||||
|
|
||||||
|
## 10. Migration Phases
|
||||||
|
|
||||||
|
### Phase 0: Baseline and Measurements
|
||||||
|
|
||||||
|
- Record current asset names, sizes, and load order.
|
||||||
|
- Add a browser startup smoke test.
|
||||||
|
- Record existing global symbols and plugin callbacks.
|
||||||
|
- Confirm that generated bundles do not introduce remote runtime dependencies.
|
||||||
|
|
||||||
|
**Exit criterion:** current behavior and asset loading have an automated
|
||||||
|
baseline.
|
||||||
|
|
||||||
|
### Phase 1: Tooling Scaffold
|
||||||
|
|
||||||
|
- Add the frontend package, lockfile, TypeScript configuration, and esbuild.
|
||||||
|
- Allow existing JavaScript as build input without type checking it globally.
|
||||||
|
- Produce fixed-name outputs matching current URLs.
|
||||||
|
- Add frontend commands and CI checks.
|
||||||
|
- Document local frontend development commands.
|
||||||
|
|
||||||
|
**Exit criterion:** existing JavaScript passes through the frontend build with
|
||||||
|
no runtime changes, and CI detects stale generated output.
|
||||||
|
|
||||||
|
### Phase 2: Generated API Types
|
||||||
|
|
||||||
|
- Add Rust-to-TypeScript type generation.
|
||||||
|
- Generate the first status, rig, capability, and decoder contracts.
|
||||||
|
- Introduce a typed fetch/post client and typed SSE decoding boundary.
|
||||||
|
- Keep narrow runtime guards at compatibility boundaries.
|
||||||
|
|
||||||
|
**Exit criterion:** new API consumers cannot use untyped response objects.
|
||||||
|
|
||||||
|
### Phase 3: Core Browser Services
|
||||||
|
|
||||||
|
Convert or create:
|
||||||
|
|
||||||
|
- DOM lookup helpers;
|
||||||
|
- notifications and confirmations;
|
||||||
|
- settings and per-rig preferences;
|
||||||
|
- navigation;
|
||||||
|
- the event bus;
|
||||||
|
- application state stores;
|
||||||
|
- plugin registry and loader.
|
||||||
|
|
||||||
|
Convert `ui-core.js` as the first strict TypeScript entry.
|
||||||
|
|
||||||
|
**Exit criterion:** shared UI behavior is TypeScript, tested, and does not add
|
||||||
|
new globals.
|
||||||
|
|
||||||
|
### Phase 4: Independent Leaf Modules
|
||||||
|
|
||||||
|
Convert lower-coupling code first:
|
||||||
|
|
||||||
|
1. WebGL renderer;
|
||||||
|
2. decode-history worker;
|
||||||
|
3. screenshot support;
|
||||||
|
4. FT2 and FT4;
|
||||||
|
5. WSPR;
|
||||||
|
6. CW and other decoder views.
|
||||||
|
|
||||||
|
Workers must be separate build entries.
|
||||||
|
|
||||||
|
**Exit criterion:** each converted module has typed inputs, outputs, and tests.
|
||||||
|
|
||||||
|
### Phase 5: Plugin Loading
|
||||||
|
|
||||||
|
- Move the inline loader out of `index.html`.
|
||||||
|
- Replace classic-script injection with typed dynamic imports.
|
||||||
|
- Register plugins through `TrxPlugin`.
|
||||||
|
- Preserve lazy loading by tab and feature.
|
||||||
|
- Remove the corresponding global callbacks after each plugin migrates.
|
||||||
|
|
||||||
|
**Exit criterion:** plugin dependencies and loading order are represented by the
|
||||||
|
module graph rather than implicit script order.
|
||||||
|
|
||||||
|
### Phase 6: Split the Main Application
|
||||||
|
|
||||||
|
Extract `app.js` by responsibility:
|
||||||
|
|
||||||
|
1. authentication and API transport;
|
||||||
|
2. rig enumeration and switching;
|
||||||
|
3. radio commands and capabilities;
|
||||||
|
4. audio streaming;
|
||||||
|
5. spectrum state and rendering;
|
||||||
|
6. decode history;
|
||||||
|
7. recorder;
|
||||||
|
8. keyboard shortcuts;
|
||||||
|
9. application bootstrap.
|
||||||
|
|
||||||
|
Do not split by arbitrary line ranges. Each extraction must establish an
|
||||||
|
explicit interface and remove the corresponding globals.
|
||||||
|
|
||||||
|
**Exit criterion:** the bootstrap file composes services and features but does
|
||||||
|
not contain their implementations.
|
||||||
|
|
||||||
|
### Phase 7: High-Coupling Features
|
||||||
|
|
||||||
|
Convert the remaining large features after the core contracts are stable:
|
||||||
|
|
||||||
|
- scheduler and satellite scheduler;
|
||||||
|
- bookmarks;
|
||||||
|
- virtual channels;
|
||||||
|
- map and map-backed statistics;
|
||||||
|
- remaining decoder plugins.
|
||||||
|
|
||||||
|
**Exit criterion:** no first-party classic scripts or untyped plugin callbacks
|
||||||
|
remain.
|
||||||
|
|
||||||
|
### Phase 8: Asset-Server Consolidation
|
||||||
|
|
||||||
|
- Enable code splitting and hashed chunks.
|
||||||
|
- Embed the generated asset directory in Rust.
|
||||||
|
- Serve generated assets through a generic, allowlisted handler.
|
||||||
|
- Add appropriate immutable caching for hashed output.
|
||||||
|
- Retain stable handling for HTML and version metadata.
|
||||||
|
- Remove obsolete fixed-asset constants and handlers.
|
||||||
|
|
||||||
|
**Exit criterion:** Rust no longer needs a source edit for every generated
|
||||||
|
frontend chunk.
|
||||||
|
|
||||||
|
### Phase 9: Strictness and Cleanup
|
||||||
|
|
||||||
|
- Remove `allowJs`.
|
||||||
|
- Remove the legacy global bridge.
|
||||||
|
- Enable all selected strict compiler and lint rules.
|
||||||
|
- Remove obsolete generated compatibility bundles.
|
||||||
|
- Update architecture and contributor documentation.
|
||||||
|
|
||||||
|
**Exit criterion:** all first-party frontend source is strict TypeScript and the
|
||||||
|
browser runtime exposes only intentionally documented globals.
|
||||||
|
|
||||||
|
## 11. Testing Strategy
|
||||||
|
|
||||||
|
Frontend CI should run:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
npm ci
|
||||||
|
npm run typecheck
|
||||||
|
npm run lint
|
||||||
|
npm test
|
||||||
|
npm run build
|
||||||
|
git diff --exit-code -- assets/web/generated frontend/src/api/generated.ts
|
||||||
|
```
|
||||||
|
|
||||||
|
Testing should cover four layers:
|
||||||
|
|
||||||
|
1. **Pure unit tests** for bandwidth calculations, formatting, state changes,
|
||||||
|
capability decisions, and message routing.
|
||||||
|
2. **DOM component tests** for dialogs, tabs, workspace selection, rig
|
||||||
|
switching, and collapsible control sections.
|
||||||
|
3. **Worker tests** for decode-history pruning, batching, and message formats.
|
||||||
|
4. **Browser smoke tests** for startup, authentication gating, plugin loading,
|
||||||
|
navigation, rig switching, audio controls, and map initialization.
|
||||||
|
|
||||||
|
The existing dependency-free `ui-core` test can remain during the scaffold
|
||||||
|
phase. It should be moved to the standard TypeScript test runner once that
|
||||||
|
runner is established.
|
||||||
|
|
||||||
|
## 12. CI Changes
|
||||||
|
|
||||||
|
Add a dedicated frontend job rather than hiding frontend work inside the Cargo
|
||||||
|
jobs. The job should:
|
||||||
|
|
||||||
|
- use the Node.js version provided by the runner image;
|
||||||
|
- run with `npm ci`, never a mutable install;
|
||||||
|
- cache the npm download cache, not `node_modules`;
|
||||||
|
- type-check, lint, test, and build;
|
||||||
|
- verify generated artifacts and Rust-generated types are current;
|
||||||
|
- run REUSE validation after generated files are produced.
|
||||||
|
|
||||||
|
Rust lint and test jobs should continue to consume committed generated assets.
|
||||||
|
|
||||||
|
## 13. Pull Request Strategy
|
||||||
|
|
||||||
|
Use small, independently reversible pull requests. A recommended sequence is:
|
||||||
|
|
||||||
|
1. tooling and unchanged JavaScript build;
|
||||||
|
2. generated Rust wire types and typed API client;
|
||||||
|
3. `ui-core` conversion;
|
||||||
|
4. worker and WebGL conversion;
|
||||||
|
5. decoder plugin conversions in small groups;
|
||||||
|
6. plugin registry and dynamic imports;
|
||||||
|
7. one `app.js` responsibility per PR;
|
||||||
|
8. scheduler, bookmarks, and map conversions;
|
||||||
|
9. generic embedded asset serving;
|
||||||
|
10. removal of JavaScript compatibility mode.
|
||||||
|
|
||||||
|
Every PR should include:
|
||||||
|
|
||||||
|
- runtime behavior preserved or intentionally documented;
|
||||||
|
- frontend type checking and tests;
|
||||||
|
- strict Rust formatting and Clippy;
|
||||||
|
- generated-artifact drift verification;
|
||||||
|
- no newly introduced undocumented `window` globals;
|
||||||
|
- no remote runtime asset dependency.
|
||||||
|
|
||||||
|
## 14. Risks and Mitigations
|
||||||
|
|
||||||
|
### Superficial Conversion
|
||||||
|
|
||||||
|
**Risk:** globals receive declarations but remain coupled and mutable.
|
||||||
|
|
||||||
|
**Mitigation:** require every converted module to expose explicit inputs and
|
||||||
|
outputs and remove at least the globals it replaces.
|
||||||
|
|
||||||
|
### Cargo Becomes Dependent on Node
|
||||||
|
|
||||||
|
**Risk:** builds fail on systems without Node or network access.
|
||||||
|
|
||||||
|
**Mitigation:** commit deterministic generated output and keep npm outside
|
||||||
|
`build.rs`.
|
||||||
|
|
||||||
|
### Script-Order Regressions
|
||||||
|
|
||||||
|
**Risk:** switching to modules changes execution timing and scope.
|
||||||
|
|
||||||
|
**Mitigation:** retain current public entries initially, then replace script
|
||||||
|
loading only after the plugin registry is in place.
|
||||||
|
|
||||||
|
### Unreviewable `app.js` Rewrite
|
||||||
|
|
||||||
|
**Risk:** a large conversion is difficult to review, test, or bisect.
|
||||||
|
|
||||||
|
**Mitigation:** extract one responsibility at a time and keep bootstrap working
|
||||||
|
after every extraction.
|
||||||
|
|
||||||
|
### Rust and Browser Contracts Drift
|
||||||
|
|
||||||
|
**Risk:** TypeScript compiles against stale wire definitions.
|
||||||
|
|
||||||
|
**Mitigation:** generate types from Rust and enforce a clean working tree after
|
||||||
|
generation in CI.
|
||||||
|
|
||||||
|
### Generated Asset Noise
|
||||||
|
|
||||||
|
**Risk:** committed bundles make reviews noisy.
|
||||||
|
|
||||||
|
**Mitigation:** separate source and generated commits when useful, include
|
||||||
|
source maps, and require deterministic output.
|
||||||
|
|
||||||
|
### Bundle or Startup Regression
|
||||||
|
|
||||||
|
**Risk:** bundling loads too much code eagerly.
|
||||||
|
|
||||||
|
**Mitigation:** record the current baseline, preserve feature-level lazy loads,
|
||||||
|
and track entry/chunk sizes in CI.
|
||||||
|
|
||||||
|
## 15. Initial Proof of Concept
|
||||||
|
|
||||||
|
The first implementation PR should be deliberately limited to:
|
||||||
|
|
||||||
|
1. adding the frontend package and locked toolchain;
|
||||||
|
2. building existing JavaScript to fixed-name generated output;
|
||||||
|
3. adding frontend CI and drift checks;
|
||||||
|
4. generating initial rig/status TypeScript definitions;
|
||||||
|
5. introducing the typed API client;
|
||||||
|
6. converting `ui-core.js` to strict TypeScript;
|
||||||
|
7. preserving every existing asset URL and observable behavior.
|
||||||
|
|
||||||
|
This proof of concept is the decision gate for the remainder of the migration.
|
||||||
|
If it materially improves contract safety without making Cargo development
|
||||||
|
unwieldy, continue with the phased plan. If it does not, the repository can
|
||||||
|
retain the tooling and the converted core without committing to a full rewrite.
|
||||||
|
|
||||||
|
## 16. Completion Criteria
|
||||||
|
|
||||||
|
The migration is complete when:
|
||||||
|
|
||||||
|
- all first-party browser source is strict TypeScript;
|
||||||
|
- vendor files remain isolated and declared through narrow type adapters;
|
||||||
|
- Rust wire types generate their browser contracts;
|
||||||
|
- no feature depends on accidental script ordering;
|
||||||
|
- no undocumented mutable `window` callbacks remain;
|
||||||
|
- `app.js` has been replaced by a small typed bootstrap and feature modules;
|
||||||
|
- frontend type checking, linting, unit tests, component tests, browser smoke
|
||||||
|
tests, and generated-output checks run in CI;
|
||||||
|
- Cargo builds remain possible without Node.js or network access;
|
||||||
|
- production assets remain local, embedded, cacheable, and reproducible.
|
||||||
@@ -274,7 +274,8 @@ mod tests {
|
|||||||
|
|
||||||
// Pseudo-random noise vs gradient — correlation should be low.
|
// Pseudo-random noise vs gradient — correlation should be low.
|
||||||
let noise: Vec<u8> = (0..256)
|
let noise: Vec<u8> = (0..256)
|
||||||
.map(|i| ((i * 1103515245 + 12345) as u32 >> 8 & 0xff) as u8)
|
.map(|i| (i as u32).wrapping_mul(1_103_515_245).wrapping_add(12_345))
|
||||||
|
.map(|value| ((value >> 8) & 0xff) as u8)
|
||||||
.collect();
|
.collect();
|
||||||
let r = asm.correlation_with_last(&noise).expect("r");
|
let r = asm.correlation_with_last(&noise).expect("r");
|
||||||
assert!(
|
assert!(
|
||||||
|
|||||||
@@ -29,3 +29,4 @@ hex = "0.4"
|
|||||||
pickledb = "0.5"
|
pickledb = "0.5"
|
||||||
dirs = "6"
|
dirs = "6"
|
||||||
uuid = { workspace = true }
|
uuid = { workspace = true }
|
||||||
|
ts-rs = "12.0.1"
|
||||||
|
|||||||
@@ -23,6 +23,7 @@ window.onDecoderRegistryReady = function (fn) {
|
|||||||
for (const fn of _decoderRegistryReadyCallbacks) fn();
|
for (const fn of _decoderRegistryReadyCallbacks) fn();
|
||||||
_decoderRegistryReadyCallbacks.length = 0;
|
_decoderRegistryReadyCallbacks.length = 0;
|
||||||
hideUnsupportedDecoderTabs();
|
hideUnsupportedDecoderTabs();
|
||||||
|
refreshOperatorLayoutCapabilities();
|
||||||
}
|
}
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
console.error("Failed to fetch decoder registry:", e);
|
console.error("Failed to fetch decoder registry:", e);
|
||||||
@@ -333,8 +334,19 @@ function applyCapabilities(caps) {
|
|||||||
const txAudioBtn = document.getElementById("tx-audio-btn");
|
const txAudioBtn = document.getElementById("tx-audio-btn");
|
||||||
const txVolSlider = document.getElementById("tx-vol");
|
const txVolSlider = document.getElementById("tx-vol");
|
||||||
const txVolControl = txVolSlider ? txVolSlider.closest(".vol-label") : null;
|
const txVolControl = txVolSlider ? txVolSlider.closest(".vol-label") : null;
|
||||||
if (txPowerCol) txPowerCol.style.display = caps.tx ? "" : "none";
|
const hasPowerControl = !caps.filter_controls;
|
||||||
|
if (txPowerCol) {
|
||||||
|
txPowerCol.style.display = (caps.tx || hasPowerControl || caps.lockable) ? "" : "none";
|
||||||
|
const label = txPowerCol.querySelector(".label span");
|
||||||
|
if (label) {
|
||||||
|
label.textContent = caps.tx && hasPowerControl ? "Transmit / Power"
|
||||||
|
: caps.tx ? "Transmit / Tuning"
|
||||||
|
: hasPowerControl ? "Power / Tuning" : "Tuning";
|
||||||
|
}
|
||||||
|
}
|
||||||
if (pttBtn) pttBtn.style.display = caps.tx ? "" : "none";
|
if (pttBtn) pttBtn.style.display = caps.tx ? "" : "none";
|
||||||
|
if (powerBtn) powerBtn.style.display = hasPowerControl ? "" : "none";
|
||||||
|
if (lockBtn) lockBtn.style.display = caps.lockable ? "" : "none";
|
||||||
if (txMetersRow) txMetersRow.style.display = caps.tx ? "" : "none";
|
if (txMetersRow) txMetersRow.style.display = caps.tx ? "" : "none";
|
||||||
if (txAudioBtn) txAudioBtn.style.display = caps.tx ? "" : "none";
|
if (txAudioBtn) txAudioBtn.style.display = caps.tx ? "" : "none";
|
||||||
if (txVolControl) txVolControl.style.display = caps.tx ? "" : "none";
|
if (txVolControl) txVolControl.style.display = caps.tx ? "" : "none";
|
||||||
@@ -344,7 +356,7 @@ function applyCapabilities(caps) {
|
|||||||
|
|
||||||
// TX limit row
|
// TX limit row
|
||||||
const txLimitRow = document.getElementById("tx-limit-row");
|
const txLimitRow = document.getElementById("tx-limit-row");
|
||||||
if (txLimitRow && !caps.tx_limit) txLimitRow.style.display = "none";
|
if (txLimitRow) txLimitRow.style.display = caps.tx_limit ? "" : "none";
|
||||||
|
|
||||||
// VFO row
|
// VFO row
|
||||||
const vfoRow = document.getElementById("vfo-row");
|
const vfoRow = document.getElementById("vfo-row");
|
||||||
@@ -436,6 +448,7 @@ const signalSplitValueEl = document.getElementById("signal-split-value");
|
|||||||
const overviewPeakHoldEl = document.getElementById("overview-peak-hold");
|
const overviewPeakHoldEl = document.getElementById("overview-peak-hold");
|
||||||
const themeToggleBtn = document.getElementById("theme-toggle");
|
const themeToggleBtn = document.getElementById("theme-toggle");
|
||||||
const headerRigSwitchSelect = document.getElementById("header-rig-switch-select");
|
const headerRigSwitchSelect = document.getElementById("header-rig-switch-select");
|
||||||
|
const headerRigSummary = document.getElementById("header-rig-summary");
|
||||||
const headerStylePickSelect = document.getElementById("header-style-pick-select");
|
const headerStylePickSelect = document.getElementById("header-style-pick-select");
|
||||||
const rdsPsOverlay = document.getElementById("rds-ps-overlay");
|
const rdsPsOverlay = document.getElementById("rds-ps-overlay");
|
||||||
const tabMainEl = document.getElementById("tab-main");
|
const tabMainEl = document.getElementById("tab-main");
|
||||||
@@ -645,7 +658,7 @@ function flushDeferredDecodeMapSync() {
|
|||||||
if (!decodeMapSyncPending || decodeHistoryReplayActive || !window.trx?.map?.aprsMap) return;
|
if (!decodeMapSyncPending || decodeHistoryReplayActive || !window.trx?.map?.aprsMap) return;
|
||||||
decodeMapSyncPending = false;
|
decodeMapSyncPending = false;
|
||||||
scheduleUiFrameJob("decode-map-maintenance", () => {
|
scheduleUiFrameJob("decode-map-maintenance", () => {
|
||||||
window.trx.map?.pruneMapHistory();
|
window.trx.modules.map?.pruneMapHistory();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -840,6 +853,8 @@ let jogMult = loadSetting("jogMult", 1); // divisor: 1, 10, 100
|
|||||||
let jogStep = Math.max(Math.round(jogUnit / jogMult), 1);
|
let jogStep = Math.max(Math.round(jogUnit / jogMult), 1);
|
||||||
let minFreqStepHz = 1;
|
let minFreqStepHz = 1;
|
||||||
let lastModeName = "";
|
let lastModeName = "";
|
||||||
|
let lastWfmCci = 0;
|
||||||
|
let lastWfmAci = 0;
|
||||||
const VFO_COLORS = ["var(--accent-green)", "var(--accent-yellow)"];
|
const VFO_COLORS = ["var(--accent-green)", "var(--accent-yellow)"];
|
||||||
function vfoColor(idx) {
|
function vfoColor(idx) {
|
||||||
if (idx < VFO_COLORS.length) return VFO_COLORS[idx];
|
if (idx < VFO_COLORS.length) return VFO_COLORS[idx];
|
||||||
@@ -893,6 +908,7 @@ async function restorePreviousTuneState() {
|
|||||||
let lastRigIds = [];
|
let lastRigIds = [];
|
||||||
let lastRigDisplayNames = {};
|
let lastRigDisplayNames = {};
|
||||||
let lastActiveRigId = null;
|
let lastActiveRigId = null;
|
||||||
|
let rigSwitchInProgress = false;
|
||||||
let lastCityLabel = "";
|
let lastCityLabel = "";
|
||||||
let sseSessionId = null;
|
let sseSessionId = null;
|
||||||
const originalTitle = document.title;
|
const originalTitle = document.title;
|
||||||
@@ -1237,6 +1253,20 @@ function populateRigPicker(selectEl, rigIds, activeRigId, disabled) {
|
|||||||
selectEl.disabled = disabled;
|
selectEl.disabled = disabled;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function updateRigIdentitySummary(rigId, pending = false) {
|
||||||
|
if (!headerRigSummary) return;
|
||||||
|
const rig = serverRigs.find((entry) => entry?.remote === rigId);
|
||||||
|
if (!rig) {
|
||||||
|
headerRigSummary.textContent = pending ? "Switching rigs…" : "No rig details available";
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const hardware = [rig.manufacturer, rig.model].map(value => String(value || "").trim()).filter(Boolean).join(" ") || rig.remote;
|
||||||
|
const modes = Array.isArray(rig.supported_modes) ? rig.supported_modes.map(normalizeMode).filter(Boolean) : [];
|
||||||
|
const features = [rig.tx ? "TX" : "RX", rig.filter_controls ? "SDR filters" : null, ...modes.slice(0, 5)];
|
||||||
|
if (modes.length > 5) features.push(`+${modes.length - 5} modes`);
|
||||||
|
headerRigSummary.textContent = `${pending ? "Switching to " : ""}${hardware} · ${features.filter(Boolean).join(" · ")}`;
|
||||||
|
}
|
||||||
|
|
||||||
function updateRigSubtitle(activeRigId) {
|
function updateRigSubtitle(activeRigId) {
|
||||||
if (!rigSubtitle) return;
|
if (!rigSubtitle) return;
|
||||||
const name = (activeRigId && lastRigDisplayNames[activeRigId]) || activeRigId || "--";
|
const name = (activeRigId && lastRigDisplayNames[activeRigId]) || activeRigId || "--";
|
||||||
@@ -1273,13 +1303,15 @@ function applyRigList(activeRigId, rigIds, displayNames) {
|
|||||||
const disableSwitch = lastRigIds.length === 0 || !authRole || authRole === "rx";
|
const disableSwitch = lastRigIds.length === 0 || !authRole || authRole === "rx";
|
||||||
populateRigPicker(headerRigSwitchSelect, lastRigIds, lastActiveRigId, disableSwitch);
|
populateRigPicker(headerRigSwitchSelect, lastRigIds, lastActiveRigId, disableSwitch);
|
||||||
updateRigSubtitle(lastActiveRigId);
|
updateRigSubtitle(lastActiveRigId);
|
||||||
|
updateRigIdentitySummary(lastActiveRigId);
|
||||||
|
window.trxUi?.setActiveRig(lastActiveRigId);
|
||||||
if (rigListChanged) {
|
if (rigListChanged) {
|
||||||
if (typeof setSchedulerRig === "function") setSchedulerRig(lastActiveRigId);
|
if (typeof setSchedulerRig === "function") setSchedulerRig(lastActiveRigId);
|
||||||
if (typeof setBackgroundDecodeRig === "function") setBackgroundDecodeRig(lastActiveRigId);
|
if (typeof setBackgroundDecodeRig === "function") setBackgroundDecodeRig(lastActiveRigId);
|
||||||
if (typeof bmPopulateScopePicker === "function") bmPopulateScopePicker();
|
if (typeof bmPopulateScopePicker === "function") bmPopulateScopePicker();
|
||||||
if (typeof bmFetch === "function") bmFetch(document.getElementById("bm-category-filter")?.value || "");
|
if (typeof bmFetch === "function") bmFetch(document.getElementById("bm-category-filter")?.value || "");
|
||||||
}
|
}
|
||||||
window.trx.map?.updateMapRigFilter();
|
window.trx.modules.map?.updateMapRigFilter();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -1303,18 +1335,35 @@ async function refreshRigList() {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
serverRigs = rigs;
|
serverRigs = rigs;
|
||||||
|
refreshOperatorLayoutCapabilities();
|
||||||
serverActiveRigId = data.active_remote || null;
|
serverActiveRigId = data.active_remote || null;
|
||||||
applyRigList(data.active_remote, rigIds, displayNames);
|
applyRigList(data.active_remote, rigIds, displayNames);
|
||||||
window.trx.map?.syncAprsReceiverMarker();
|
window.trx.modules.map?.syncAprsReceiverMarker();
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
// Non-fatal: SSE/status path still drives main UI.
|
// Non-fatal: SSE/status path still drives main UI.
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function refreshOperatorLayoutCapabilities() {
|
||||||
|
const rigModes = serverRigs.map((rig) =>
|
||||||
|
Array.isArray(rig?.supported_modes) ? rig.supported_modes.map(normalizeMode).filter(Boolean) : []
|
||||||
|
);
|
||||||
|
const decoderModes = new Set(decoderRegistry.flatMap((decoder) =>
|
||||||
|
Array.isArray(decoder?.active_modes) ? decoder.active_modes.map(normalizeMode).filter(Boolean) : []
|
||||||
|
));
|
||||||
|
window.trxUi?.setLayoutCapabilities({
|
||||||
|
broadcast: rigModes.some((modes) => modes.includes("WFM")),
|
||||||
|
digital: decoderModes.size > 0 && rigModes.some((modes) => modes.some((mode) => decoderModes.has(mode))),
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
function showHint(msg, duration) {
|
function showHint(msg, duration) {
|
||||||
powerHint.textContent = msg;
|
powerHint.textContent = msg;
|
||||||
if (hintTimer) clearTimeout(hintTimer);
|
if (hintTimer) clearTimeout(hintTimer);
|
||||||
if (duration) hintTimer = setTimeout(() => { powerHint.textContent = readyText(); }, duration);
|
if (duration) hintTimer = setTimeout(() => { powerHint.textContent = readyText(); }, duration);
|
||||||
|
if (/failed|missing|unavailable|unknown|lost|required/i.test(msg)) {
|
||||||
|
window.trxUi?.notify(msg, { kind: "error" });
|
||||||
|
}
|
||||||
}
|
}
|
||||||
let supportedModes = [];
|
let supportedModes = [];
|
||||||
let supportedBands = [];
|
let supportedBands = [];
|
||||||
@@ -2829,7 +2878,7 @@ function showUnsupportedFreqPopup(hz) {
|
|||||||
const now = Date.now();
|
const now = Date.now();
|
||||||
if (now - lastUnsupportedFreqPopupAt < 1200) return;
|
if (now - lastUnsupportedFreqPopupAt < 1200) return;
|
||||||
lastUnsupportedFreqPopupAt = now;
|
lastUnsupportedFreqPopupAt = now;
|
||||||
window.alert(message);
|
window.trxUi?.notify(message.replaceAll("\n", " "), { kind: "error", duration: 7000 });
|
||||||
}
|
}
|
||||||
|
|
||||||
// Convert dBm (wire format) to S-units (S1=-121dBm, S9=-73dBm, 6dB/S-unit).
|
// Convert dBm (wire format) to S-units (S1=-121dBm, S9=-73dBm, 6dB/S-unit).
|
||||||
@@ -3143,9 +3192,9 @@ function render(update) {
|
|||||||
const grid = latLonToMaidenhead(serverLat, serverLon);
|
const grid = latLonToMaidenhead(serverLat, serverLon);
|
||||||
locationSubtitle.textContent = `Location: ${grid}`;
|
locationSubtitle.textContent = `Location: ${grid}`;
|
||||||
locationSubtitle.style.display = "";
|
locationSubtitle.style.display = "";
|
||||||
window.trx.map?.reverseGeocodeLocation(serverLat, serverLon, grid);
|
window.trx.modules.map?.reverseGeocodeLocation(serverLat, serverLon, grid);
|
||||||
}
|
}
|
||||||
window.trx.map?.syncAprsReceiverMarker();
|
window.trx.modules.map?.syncAprsReceiverMarker();
|
||||||
if (typeof update.initial_map_zoom === "number" && Number.isFinite(update.initial_map_zoom)) {
|
if (typeof update.initial_map_zoom === "number" && Number.isFinite(update.initial_map_zoom)) {
|
||||||
initialMapZoom = Math.max(1, Math.round(update.initial_map_zoom));
|
initialMapZoom = Math.max(1, Math.round(update.initial_map_zoom));
|
||||||
}
|
}
|
||||||
@@ -3293,8 +3342,14 @@ function render(update) {
|
|||||||
wfmStFlagEl.classList.toggle("wfm-st-flag-stereo", detected);
|
wfmStFlagEl.classList.toggle("wfm-st-flag-stereo", detected);
|
||||||
wfmStFlagEl.classList.toggle("wfm-st-flag-mono", !detected);
|
wfmStFlagEl.classList.toggle("wfm-st-flag-mono", !detected);
|
||||||
}
|
}
|
||||||
if (typeof update.filter.wfm_cci === "number") updateIntfBar(wfmCciFillEl, wfmCciValEl, update.filter.wfm_cci);
|
if (typeof update.filter.wfm_cci === "number") {
|
||||||
if (typeof update.filter.wfm_aci === "number") updateIntfBar(wfmAciFillEl, wfmAciValEl, update.filter.wfm_aci);
|
lastWfmCci = Math.max(0, Math.min(100, update.filter.wfm_cci));
|
||||||
|
updateIntfBar(wfmCciFillEl, wfmCciValEl, lastWfmCci);
|
||||||
|
}
|
||||||
|
if (typeof update.filter.wfm_aci === "number") {
|
||||||
|
lastWfmAci = Math.max(0, Math.min(100, update.filter.wfm_aci));
|
||||||
|
updateIntfBar(wfmAciFillEl, wfmAciValEl, lastWfmAci);
|
||||||
|
}
|
||||||
if (samStereoWidthEl && typeof update.filter.sam_stereo_width === "number") {
|
if (samStereoWidthEl && typeof update.filter.sam_stereo_width === "number") {
|
||||||
samStereoWidthEl.value = String(Math.round(update.filter.sam_stereo_width * 100));
|
samStereoWidthEl.value = String(Math.round(update.filter.sam_stereo_width * 100));
|
||||||
}
|
}
|
||||||
@@ -3421,7 +3476,11 @@ function render(update) {
|
|||||||
if (update.status && typeof update.status.tx_en === "boolean" && update.status.tx_en !== prevRenderData.txEn) {
|
if (update.status && typeof update.status.tx_en === "boolean" && update.status.tx_en !== prevRenderData.txEn) {
|
||||||
prevRenderData.txEn = update.status.tx_en;
|
prevRenderData.txEn = update.status.tx_en;
|
||||||
lastTxEn = update.status.tx_en;
|
lastTxEn = update.status.tx_en;
|
||||||
pttBtn.textContent = update.status.tx_en ? "PTT On" : "PTT Off";
|
window.trxUi?.setButtonState(pttBtn, {
|
||||||
|
active: update.status.tx_en,
|
||||||
|
activeLabel: "Stop TX",
|
||||||
|
inactiveLabel: "Start TX",
|
||||||
|
});
|
||||||
if (update.status.tx_en) {
|
if (update.status.tx_en) {
|
||||||
pttBtn.style.background = "var(--accent-red)";
|
pttBtn.style.background = "var(--accent-red)";
|
||||||
pttBtn.style.borderColor = "var(--accent-red)";
|
pttBtn.style.borderColor = "var(--accent-red)";
|
||||||
@@ -3530,11 +3589,15 @@ function render(update) {
|
|||||||
bandLabel.textContent = typeof update.band === "string" ? update.band : "--";
|
bandLabel.textContent = typeof update.band === "string" ? update.band : "--";
|
||||||
}
|
}
|
||||||
if (typeof update.enabled === "boolean") {
|
if (typeof update.enabled === "boolean") {
|
||||||
powerBtn.disabled = false;
|
window.trxUi?.setButtonState(powerBtn, {
|
||||||
powerBtn.textContent = update.enabled ? "Power Off" : "Power On";
|
active: update.enabled,
|
||||||
|
activeLabel: "Power Off",
|
||||||
|
inactiveLabel: "Power On",
|
||||||
|
});
|
||||||
} else {
|
} else {
|
||||||
powerBtn.disabled = true;
|
powerBtn.disabled = true;
|
||||||
powerBtn.textContent = "Toggle Power";
|
powerBtn.textContent = "Power unavailable";
|
||||||
|
powerBtn.setAttribute("aria-pressed", "false");
|
||||||
powerHint.textContent = "State unknown";
|
powerHint.textContent = "State unknown";
|
||||||
}
|
}
|
||||||
lastControl = update.enabled;
|
lastControl = update.enabled;
|
||||||
@@ -3649,7 +3712,11 @@ function render(update) {
|
|||||||
}
|
}
|
||||||
powerHint.textContent = readyText();
|
powerHint.textContent = readyText();
|
||||||
lastLocked = update.status && update.status.lock === true;
|
lastLocked = update.status && update.status.lock === true;
|
||||||
lockBtn.textContent = lastLocked ? "Unlock" : "Lock";
|
window.trxUi?.setButtonState(lockBtn, {
|
||||||
|
active: lastLocked,
|
||||||
|
activeLabel: "Unlock Tuning",
|
||||||
|
inactiveLabel: "Lock Tuning",
|
||||||
|
});
|
||||||
|
|
||||||
const tx = update.status && update.status.tx ? update.status.tx : null;
|
const tx = update.status && update.status.tx ? update.status.tx : null;
|
||||||
txMeters.style.display = lastHasTx ? "" : "none";
|
txMeters.style.display = lastHasTx ? "" : "none";
|
||||||
@@ -3836,12 +3903,16 @@ function scheduleUiFrameJob(key, job) {
|
|||||||
|
|
||||||
window.trxScheduleUiFrameJob = scheduleUiFrameJob;
|
window.trxScheduleUiFrameJob = scheduleUiFrameJob;
|
||||||
|
|
||||||
async function postPath(path) {
|
async function postPath(path, options = {}) {
|
||||||
|
if (rigSwitchInProgress && !options.allowDuringRigSwitch) {
|
||||||
|
throw new Error("Wait for the rig switch to finish");
|
||||||
|
}
|
||||||
|
const targetRigId = options.remote === undefined ? lastActiveRigId : options.remote;
|
||||||
// Auto-append remote so each tab targets its own rig.
|
// Auto-append remote so each tab targets its own rig.
|
||||||
// Skip when the caller already included remote (e.g. /select_rig).
|
// Skip when the caller already included remote (e.g. /select_rig).
|
||||||
if (lastActiveRigId && !path.includes("remote=")) {
|
if (targetRigId && !path.includes("remote=")) {
|
||||||
const sep = path.includes("?") ? "&" : "?";
|
const sep = path.includes("?") ? "&" : "?";
|
||||||
path = `${path}${sep}remote=${encodeURIComponent(lastActiveRigId)}`;
|
path = `${path}${sep}remote=${encodeURIComponent(targetRigId)}`;
|
||||||
}
|
}
|
||||||
const resp = await fetch(path, { method: "POST" });
|
const resp = await fetch(path, { method: "POST" });
|
||||||
if (authEnabled && resp.status === 401) {
|
if (authEnabled && resp.status === 401) {
|
||||||
@@ -3886,44 +3957,60 @@ async function switchRigFromSelect(selectEl) {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
const prevRig = lastActiveRigId;
|
const prevRig = lastActiveRigId;
|
||||||
lastActiveRigId = selectEl.value;
|
const nextRig = selectEl.value;
|
||||||
if (prevRig && prevRig !== lastActiveRigId) {
|
if (nextRig === prevRig || rigSwitchInProgress) return;
|
||||||
resetDecoderStateOnRigSwitch();
|
rigSwitchInProgress = true;
|
||||||
}
|
setControlPending(selectEl, true);
|
||||||
updateRigSubtitle(lastActiveRigId);
|
selectEl.closest(".header-rig-switch")?.classList.add("is-switching");
|
||||||
if (typeof setSchedulerRig === "function") setSchedulerRig(lastActiveRigId);
|
updateRigIdentitySummary(nextRig, true);
|
||||||
if (typeof setBackgroundDecodeRig === "function") setBackgroundDecodeRig(lastActiveRigId);
|
showHint(`Switching to ${lastRigDisplayNames[nextRig] || nextRig}…`);
|
||||||
if (typeof bmFetch === "function") bmFetch(document.getElementById("bm-category-filter")?.value || "");
|
|
||||||
window.trx.map?.syncAprsReceiverMarker();
|
|
||||||
// Switch this session's rig and reconnect SSE to the new rig's
|
|
||||||
// state channel.
|
|
||||||
try {
|
try {
|
||||||
const sidParam = sseSessionId ? `&session_id=${encodeURIComponent(sseSessionId)}` : "";
|
const sidParam = sseSessionId ? `&session_id=${encodeURIComponent(sseSessionId)}` : "";
|
||||||
await postPath(`/select_rig?remote=${encodeURIComponent(selectEl.value)}${sidParam}`);
|
await postPath(`/select_rig?remote=${encodeURIComponent(nextRig)}${sidParam}`, { allowDuringRigSwitch: true, remote: null });
|
||||||
|
lastActiveRigId = nextRig;
|
||||||
|
resetDecoderStateOnRigSwitch();
|
||||||
|
updateRigSubtitle(lastActiveRigId);
|
||||||
|
updateRigIdentitySummary(lastActiveRigId);
|
||||||
|
window.trxUi?.setActiveRig(lastActiveRigId);
|
||||||
|
if (typeof setSchedulerRig === "function") setSchedulerRig(lastActiveRigId);
|
||||||
|
if (typeof setBackgroundDecodeRig === "function") setBackgroundDecodeRig(lastActiveRigId);
|
||||||
|
if (typeof bmFetch === "function") bmFetch(document.getElementById("bm-category-filter")?.value || "");
|
||||||
|
window.trx.modules.map?.syncAprsReceiverMarker();
|
||||||
connect();
|
connect();
|
||||||
|
stopSpectrumStreaming();
|
||||||
|
startSpectrumStreaming();
|
||||||
|
stopMeterStreaming();
|
||||||
|
startMeterStreaming();
|
||||||
|
if (rxActive) {
|
||||||
|
stopRxAudio();
|
||||||
|
startRxAudio();
|
||||||
|
}
|
||||||
|
showHint(`Rig: ${lastRigDisplayNames[lastActiveRigId] || lastActiveRigId}`, 1500);
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
console.error("select_rig failed:", err);
|
console.error("select_rig failed:", err);
|
||||||
|
selectEl.value = prevRig || "";
|
||||||
|
updateRigIdentitySummary(prevRig);
|
||||||
|
window.trxUi?.notify("Rig could not be switched", { kind: "error" });
|
||||||
|
} finally {
|
||||||
|
rigSwitchInProgress = false;
|
||||||
|
setControlPending(selectEl, false);
|
||||||
|
selectEl.closest(".header-rig-switch")?.classList.remove("is-switching");
|
||||||
}
|
}
|
||||||
// Reconnect spectrum SSE to the new rig's spectrum channel.
|
|
||||||
stopSpectrumStreaming();
|
|
||||||
startSpectrumStreaming();
|
|
||||||
// Reconnect meter SSE to the new rig's meter channel.
|
|
||||||
stopMeterStreaming();
|
|
||||||
startMeterStreaming();
|
|
||||||
// Reconnect audio to the new rig if audio is active.
|
|
||||||
if (rxActive) {
|
|
||||||
stopRxAudio();
|
|
||||||
startRxAudio();
|
|
||||||
}
|
|
||||||
showHint(`Rig: ${lastActiveRigId}`, 1500);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (headerRigSwitchSelect) {
|
if (headerRigSwitchSelect) {
|
||||||
headerRigSwitchSelect.addEventListener("change", () => { switchRigFromSelect(headerRigSwitchSelect); });
|
headerRigSwitchSelect.addEventListener("change", () => { switchRigFromSelect(headerRigSwitchSelect); });
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function setControlPending(control, pending) {
|
||||||
|
if (!control) return;
|
||||||
|
control.disabled = pending;
|
||||||
|
control.classList.toggle("is-busy", pending);
|
||||||
|
control.setAttribute("aria-busy", String(pending));
|
||||||
|
}
|
||||||
|
|
||||||
powerBtn.addEventListener("click", async () => {
|
powerBtn.addEventListener("click", async () => {
|
||||||
powerBtn.disabled = true;
|
setControlPending(powerBtn, true);
|
||||||
showHint("Sending...");
|
showHint("Sending...");
|
||||||
try {
|
try {
|
||||||
await postPath("/toggle_power");
|
await postPath("/toggle_power");
|
||||||
@@ -3932,12 +4019,12 @@ powerBtn.addEventListener("click", async () => {
|
|||||||
showHint("Toggle failed", 2000);
|
showHint("Toggle failed", 2000);
|
||||||
console.error(err);
|
console.error(err);
|
||||||
} finally {
|
} finally {
|
||||||
powerBtn.disabled = false;
|
setControlPending(powerBtn, false);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
pttBtn.addEventListener("click", async () => {
|
pttBtn.addEventListener("click", async () => {
|
||||||
pttBtn.disabled = true;
|
setControlPending(pttBtn, true);
|
||||||
showHint("Toggling PTT…");
|
showHint("Toggling PTT…");
|
||||||
try {
|
try {
|
||||||
const desired = lastTxEn ? "false" : "true";
|
const desired = lastTxEn ? "false" : "true";
|
||||||
@@ -3947,7 +4034,7 @@ pttBtn.addEventListener("click", async () => {
|
|||||||
showHint("PTT toggle failed", 2000);
|
showHint("PTT toggle failed", 2000);
|
||||||
console.error(err);
|
console.error(err);
|
||||||
} finally {
|
} finally {
|
||||||
pttBtn.disabled = false;
|
setControlPending(pttBtn, false);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -3980,7 +4067,7 @@ async function applyCenterFreqFromInput() {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
centerFreqDirty = false;
|
centerFreqDirty = false;
|
||||||
centerFreqEl.disabled = true;
|
setControlPending(centerFreqEl, true);
|
||||||
showHint("Setting central frequency…");
|
showHint("Setting central frequency…");
|
||||||
try {
|
try {
|
||||||
await postPath(`/set_center_freq?hz=${parsed}`);
|
await postPath(`/set_center_freq?hz=${parsed}`);
|
||||||
@@ -3989,7 +4076,7 @@ async function applyCenterFreqFromInput() {
|
|||||||
showHint("Set central freq failed", 2000);
|
showHint("Set central freq failed", 2000);
|
||||||
console.error(err);
|
console.error(err);
|
||||||
} finally {
|
} finally {
|
||||||
centerFreqEl.disabled = false;
|
setControlPending(centerFreqEl, false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -4190,7 +4277,7 @@ async function applyModeFromPicker() {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
updateWfmControls();
|
updateWfmControls();
|
||||||
modeEl.disabled = true;
|
setControlPending(modeEl, true);
|
||||||
showHint("Setting mode…");
|
showHint("Setting mode…");
|
||||||
try {
|
try {
|
||||||
if (typeof vchanInterceptMode === "function" && await vchanInterceptMode(mode)) {
|
if (typeof vchanInterceptMode === "function" && await vchanInterceptMode(mode)) {
|
||||||
@@ -4208,7 +4295,7 @@ async function applyModeFromPicker() {
|
|||||||
showHint("Set mode failed", 2000);
|
showHint("Set mode failed", 2000);
|
||||||
console.error(err);
|
console.error(err);
|
||||||
} finally {
|
} finally {
|
||||||
modeEl.disabled = false;
|
setControlPending(modeEl, false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -4227,7 +4314,7 @@ txLimitBtn.addEventListener("click", async () => {
|
|||||||
showHint("Limit missing", 1500);
|
showHint("Limit missing", 1500);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
txLimitBtn.disabled = true;
|
setControlPending(txLimitBtn, true);
|
||||||
showHint("Setting TX limit…");
|
showHint("Setting TX limit…");
|
||||||
try {
|
try {
|
||||||
await postPath(`/set_tx_limit?limit=${encodeURIComponent(limit)}`);
|
await postPath(`/set_tx_limit?limit=${encodeURIComponent(limit)}`);
|
||||||
@@ -4236,22 +4323,22 @@ txLimitBtn.addEventListener("click", async () => {
|
|||||||
showHint("TX limit failed", 2000);
|
showHint("TX limit failed", 2000);
|
||||||
console.error(err);
|
console.error(err);
|
||||||
} finally {
|
} finally {
|
||||||
txLimitBtn.disabled = false;
|
setControlPending(txLimitBtn, false);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
lockBtn.addEventListener("click", async () => {
|
lockBtn.addEventListener("click", async () => {
|
||||||
lockBtn.disabled = true;
|
setControlPending(lockBtn, true);
|
||||||
showHint("Toggling lock…");
|
showHint("Toggling lock…");
|
||||||
try {
|
try {
|
||||||
const nextLock = lockBtn.textContent === "Lock";
|
const nextLock = !lastLocked;
|
||||||
await postPath(nextLock ? "/lock" : "/unlock");
|
await postPath(nextLock ? "/lock" : "/unlock");
|
||||||
showHint("Lock toggled", 1500);
|
showHint("Lock toggled", 1500);
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
showHint("Lock toggle failed", 2000);
|
showHint("Lock toggle failed", 2000);
|
||||||
console.error(err);
|
console.error(err);
|
||||||
} finally {
|
} finally {
|
||||||
lockBtn.disabled = false;
|
setControlPending(lockBtn, false);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -4268,7 +4355,7 @@ const MODE_BW_DEFAULTS = {
|
|||||||
FM: [12_500, 2_500, 25_000, 500],
|
FM: [12_500, 2_500, 25_000, 500],
|
||||||
AIS: [25_000, 12_500, 50_000, 500],
|
AIS: [25_000, 12_500, 50_000, 500],
|
||||||
VDES: [100_000, 25_000, 200_000, 1_000],
|
VDES: [100_000, 25_000, 200_000, 1_000],
|
||||||
WFM: [180_000, 50_000,300_000,5_000],
|
WFM: [180_000, 60_000,300_000,5_000],
|
||||||
DIG: [3_000, 300, 6_000, 100],
|
DIG: [3_000, 300, 6_000, 100],
|
||||||
PKT: [25_000, 300, 50_000, 500],
|
PKT: [25_000, 300, 50_000, 500],
|
||||||
};
|
};
|
||||||
@@ -4318,7 +4405,8 @@ async function applyBwDefaultForMode(mode, sendToServer) {
|
|||||||
scheduleSpectrumDraw();
|
scheduleSpectrumDraw();
|
||||||
}
|
}
|
||||||
if (sendToServer) {
|
if (sendToServer) {
|
||||||
try { await postPath(`/set_bandwidth?hz=${def}`); } catch (_) {}
|
try { await postPath(`/set_bandwidth?hz=${def}`); }
|
||||||
|
catch (error) { window.trxUi?.notify("Default bandwidth could not be applied", { kind: "error", action: { label: "Retry", run: () => applyBwDefaultForMode(mode, true) } }); }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -4345,67 +4433,115 @@ async function applyBandwidthFromInput() {
|
|||||||
if (Number.isFinite(lastFreqHz)) {
|
if (Number.isFinite(lastFreqHz)) {
|
||||||
await ensureTunedBandwidthCoverage(lastFreqHz);
|
await ensureTunedBandwidthCoverage(lastFreqHz);
|
||||||
}
|
}
|
||||||
} catch (_) {}
|
} catch (error) {
|
||||||
|
window.trxUi?.notify("Bandwidth could not be changed", { kind: "error", action: { label: "Retry", run: applyBandwidthFromInput } });
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function estimateBandwidthAroundPeak(data, centerHz) {
|
function estimateOccupiedBandwidth(data, centerHz, interference = {}) {
|
||||||
if (!data || !isBinsArray(data.bins) || data.bins.length < 3 || !Number.isFinite(centerHz)) {
|
if (!data || !isBinsArray(data.bins) || data.bins.length < 3 || !Number.isFinite(centerHz)) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
const bins = data.bins;
|
const bins = data.bins;
|
||||||
const maxIdx = bins.length - 1;
|
const maxIdx = bins.length - 1;
|
||||||
|
const hzPerBin = data.sample_rate / maxIdx;
|
||||||
const fullLoHz = data.center_hz - data.sample_rate / 2;
|
const fullLoHz = data.center_hz - data.sample_rate / 2;
|
||||||
const centerIdx = Math.max(
|
const centerIdx = Math.max(
|
||||||
1,
|
1,
|
||||||
Math.min(maxIdx - 1, Math.round(((centerHz - fullLoHz) / data.sample_rate) * maxIdx)),
|
Math.min(maxIdx - 1, Math.round(((centerHz - fullLoHz) / data.sample_rate) * maxIdx)),
|
||||||
);
|
);
|
||||||
const searchRadius = Math.max(6, Math.min(120, Math.round(maxIdx * 0.03)));
|
const mode = (modeEl ? modeEl.value : "USB").toUpperCase();
|
||||||
const searchLo = Math.max(1, centerIdx - searchRadius);
|
const [defaultBw, minBw, maxBw, stepBw] = mwDefaultsForMode(mode);
|
||||||
const searchHi = Math.min(maxIdx - 1, centerIdx + searchRadius);
|
const oneSided = mode === "USB" || mode === "DIG" || mode === "CW"
|
||||||
|
? 1
|
||||||
let peakIdx = centerIdx;
|
: mode === "LSB" || mode === "CWR" ? -1 : 0;
|
||||||
for (let i = searchLo; i <= searchHi; i++) {
|
const isWfm = mode === "WFM";
|
||||||
if (bins[i] > bins[peakIdx]) peakIdx = i;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
// Reduce single-bin peaks and holes before finding occupied-channel edges.
|
||||||
|
// WFM needs a wider smoothing window because its energy is noise-like and
|
||||||
|
// spread across the entire channel rather than concentrated at a carrier.
|
||||||
|
const smoothRadius = isWfm ? 3 : 1;
|
||||||
|
const smoothed = bins.map((_, i) => {
|
||||||
|
let sum = 0;
|
||||||
|
let count = 0;
|
||||||
|
for (let j = Math.max(0, i - smoothRadius); j <= Math.min(maxIdx, i + smoothRadius); j++) {
|
||||||
|
sum += bins[j];
|
||||||
|
count += 1;
|
||||||
|
}
|
||||||
|
return sum / count;
|
||||||
|
});
|
||||||
const sorted = [...bins].sort((a, b) => a - b);
|
const sorted = [...bins].sort((a, b) => a - b);
|
||||||
const noise = sorted[Math.floor(sorted.length * 0.2)];
|
const noise = sorted[Math.floor(sorted.length * 0.2)];
|
||||||
const peak = bins[peakIdx];
|
const maxSpanBins = Math.max(2, Math.ceil(maxBw / hzPerBin));
|
||||||
const threshold = Math.max(noise + 4, peak - Math.max(8, (peak - noise) * 0.35));
|
const searchHalfBins = oneSided === 0 ? Math.ceil(maxSpanBins / 2) : maxSpanBins;
|
||||||
|
const searchLo = Math.max(1, centerIdx - (oneSided > 0 ? 2 : searchHalfBins));
|
||||||
|
const searchHi = Math.min(maxIdx - 1, centerIdx + (oneSided < 0 ? 2 : searchHalfBins));
|
||||||
|
let peak = -Infinity;
|
||||||
|
for (let i = searchLo; i <= searchHi; i++) peak = Math.max(peak, smoothed[i]);
|
||||||
|
const snr = peak - noise;
|
||||||
|
if (!Number.isFinite(snr) || snr < (isWfm ? 5 : 4)) return isWfm ? minBw : defaultBw;
|
||||||
|
|
||||||
let left = peakIdx;
|
// A threshold relative to the noise floor finds occupied bandwidth much
|
||||||
let right = peakIdx;
|
// more reliably than one relative to the peak. The latter fails for WFM,
|
||||||
let belowCount = 0;
|
// whose multiplex spectrum has peaks, notches, and no narrow centre carrier.
|
||||||
for (let i = peakIdx; i > 1; i--) {
|
const threshold = noise + Math.max(3, Math.min(isWfm ? 6 : 10, snr * (isWfm ? 0.18 : 0.28)));
|
||||||
if (bins[i] < threshold) belowCount += 1;
|
const allowedGap = Math.max(isWfm ? 4 : 2, Math.ceil((isWfm ? 12_000 : stepBw) / hzPerBin));
|
||||||
else belowCount = 0;
|
|
||||||
if (belowCount >= 2) break;
|
function occupiedExtent(direction, limitBins) {
|
||||||
left = i;
|
let lastOccupied = centerIdx;
|
||||||
|
let gap = 0;
|
||||||
|
for (let n = 0; n <= limitBins; n++) {
|
||||||
|
const i = centerIdx + direction * n;
|
||||||
|
if (i <= 0 || i >= maxIdx) break;
|
||||||
|
if (smoothed[i] >= threshold) {
|
||||||
|
lastOccupied = i;
|
||||||
|
gap = 0;
|
||||||
|
} else if (++gap > allowedGap) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return Math.abs(lastOccupied - centerIdx) * hzPerBin;
|
||||||
}
|
}
|
||||||
|
|
||||||
belowCount = 0;
|
let rawBw;
|
||||||
for (let i = peakIdx; i < maxIdx - 1; i++) {
|
if (oneSided !== 0) {
|
||||||
if (bins[i] < threshold) belowCount += 1;
|
rawBw = occupiedExtent(oneSided, maxSpanBins);
|
||||||
else belowCount = 0;
|
} else {
|
||||||
if (belowCount >= 2) break;
|
const leftHz = occupiedExtent(-1, searchHalfBins);
|
||||||
right = i;
|
const rightHz = occupiedExtent(1, searchHalfBins);
|
||||||
|
// A symmetric RF filter must contain the larger of the two sidebands.
|
||||||
|
rawBw = 2 * Math.max(leftHz, rightHz);
|
||||||
}
|
}
|
||||||
|
|
||||||
const shoulderPad = Math.max(1, Math.round((right - left) * 0.08));
|
// Add a transition-band margin. Weak WFM deliberately falls back to the
|
||||||
left = Math.max(0, left - shoulderPad);
|
// 60 kHz mode floor above: a narrower filter trades stereo/RDS content for
|
||||||
right = Math.min(maxIdx, right + shoulderPad);
|
// a useful improvement in intelligibility when the signal is very poor.
|
||||||
|
rawBw *= isWfm ? 1.08 : 1.12;
|
||||||
const hzPerBin = data.sample_rate / maxIdx;
|
if (isWfm) {
|
||||||
const rawBw = Math.max(hzPerBin, (right - left) * hzPerBin);
|
const aci = Math.max(0, Math.min(100, Number(interference.aci) || 0)) / 100;
|
||||||
const [, minBw, maxBw, stepBw] = mwDefaultsForMode(modeEl ? modeEl.value : "USB");
|
const cci = Math.max(0, Math.min(100, Number(interference.cci) || 0)) / 100;
|
||||||
|
// Adjacent-channel energy is outside the wanted modulation, so ACI can
|
||||||
|
// safely drive the cap all the way from the 300 kHz ceiling to 60 kHz.
|
||||||
|
const aciCap = maxBw - (maxBw - minBw) * aci;
|
||||||
|
// CCI overlaps the wanted station and cannot be removed by an RF filter.
|
||||||
|
// Only distrust the widest edge estimates, retaining at least 65% of the
|
||||||
|
// useful range between the weak-signal floor and nominal WFM bandwidth.
|
||||||
|
const cciFloor = minBw + (defaultBw - minBw) * 0.65;
|
||||||
|
const cciCap = maxBw - (maxBw - cciFloor) * cci;
|
||||||
|
rawBw = Math.min(rawBw, aciCap, cciCap);
|
||||||
|
}
|
||||||
const clamped = Math.max(minBw, Math.min(maxBw, rawBw));
|
const clamped = Math.max(minBw, Math.min(maxBw, rawBw));
|
||||||
return Math.max(stepBw, Math.round(clamped / stepBw) * stepBw);
|
return Math.max(stepBw, Math.round(clamped / stepBw) * stepBw);
|
||||||
}
|
}
|
||||||
|
|
||||||
async function applyAutoBandwidth() {
|
async function applyAutoBandwidth() {
|
||||||
if (!lastSpectrumData || lastFreqHz == null) return;
|
if (!lastSpectrumData || lastFreqHz == null) return;
|
||||||
const estimated = estimateBandwidthAroundPeak(lastSpectrumData, lastFreqHz);
|
// WFM interference telemetry belongs to the primary DSP channel. Do not
|
||||||
|
// apply it to a virtual channel, where it would describe the wrong signal.
|
||||||
|
const onVirtual = typeof vchanIsOnVirtual === "function" && vchanIsOnVirtual();
|
||||||
|
const interference = onVirtual ? {} : { cci: lastWfmCci, aci: lastWfmAci };
|
||||||
|
const estimated = estimateOccupiedBandwidth(lastSpectrumData, lastFreqHz, interference);
|
||||||
if (!Number.isFinite(estimated) || estimated <= 0) {
|
if (!Number.isFinite(estimated) || estimated <= 0) {
|
||||||
syncBandwidthInput(currentBandwidthHz);
|
syncBandwidthInput(currentBandwidthHz);
|
||||||
return;
|
return;
|
||||||
@@ -4417,13 +4553,24 @@ async function applyAutoBandwidth() {
|
|||||||
if (lastSpectrumData) {
|
if (lastSpectrumData) {
|
||||||
scheduleSpectrumDraw();
|
scheduleSpectrumDraw();
|
||||||
}
|
}
|
||||||
|
const mode = (modeEl?.value || "").toUpperCase();
|
||||||
|
let reason = "measured occupied spectrum";
|
||||||
|
if (mode === "WFM") {
|
||||||
|
if (estimated === 60_000 && lastWfmAci >= 20) reason = `high adjacent-channel interference (${Math.round(lastWfmAci)}% ACI)`;
|
||||||
|
else if (estimated === 60_000) reason = "weak-signal noise rejection";
|
||||||
|
else if (lastWfmAci >= lastWfmCci && lastWfmAci >= 10) reason = `${Math.round(lastWfmAci)}% ACI cap`;
|
||||||
|
else if (lastWfmCci >= 10) reason = `${Math.round(lastWfmCci)}% CCI confidence cap`;
|
||||||
|
}
|
||||||
|
window.trxUi?.notify(`Auto BW: ${formatBwLabel(estimated)} — ${reason}`, { kind: "success", duration: 5000 });
|
||||||
try {
|
try {
|
||||||
if (typeof vchanInterceptBandwidth === "function" && await vchanInterceptBandwidth(estimated)) return;
|
if (typeof vchanInterceptBandwidth === "function" && await vchanInterceptBandwidth(estimated)) return;
|
||||||
await postPath(`/set_bandwidth?hz=${estimated}`);
|
await postPath(`/set_bandwidth?hz=${estimated}`);
|
||||||
if (Number.isFinite(lastFreqHz)) {
|
if (Number.isFinite(lastFreqHz)) {
|
||||||
await ensureTunedBandwidthCoverage(lastFreqHz);
|
await ensureTunedBandwidthCoverage(lastFreqHz);
|
||||||
}
|
}
|
||||||
} catch (_) {}
|
} catch (error) {
|
||||||
|
window.trxUi?.notify("Automatic bandwidth could not be applied", { kind: "error", action: { label: "Retry", run: applyAutoBandwidth } });
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (spectrumBwInput) {
|
if (spectrumBwInput) {
|
||||||
@@ -4480,23 +4627,23 @@ function updateTabHistory(name, replaceHistory = false) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Initialise the Leaflet map, waiting for both Leaflet (L) and map-core.js
|
// Initialise the Leaflet map, waiting for both Leaflet (L) and map-core.js
|
||||||
// (window.trx.map) if they haven't loaded yet.
|
// (window.trx.modules.map) if they haven't loaded yet.
|
||||||
let _mapInitTimer = null;
|
let _mapInitTimer = null;
|
||||||
function _initMapWhenReady() {
|
function _initMapWhenReady() {
|
||||||
const loadingEl = document.getElementById("map-loading");
|
const loadingEl = document.getElementById("map-loading");
|
||||||
if (window.trx.map && typeof L !== "undefined") {
|
if (window.trx.modules.map && typeof L !== "undefined") {
|
||||||
if (_mapInitTimer) { clearInterval(_mapInitTimer); _mapInitTimer = null; }
|
if (_mapInitTimer) { clearInterval(_mapInitTimer); _mapInitTimer = null; }
|
||||||
if (loadingEl) loadingEl.classList.add("is-hidden");
|
if (loadingEl) loadingEl.classList.add("is-hidden");
|
||||||
window.trx.map.initAprsMap();
|
window.trx.modules.map.initAprsMap();
|
||||||
window.trx.map.sizeAprsMapToViewport();
|
window.trx.modules.map.sizeAprsMapToViewport();
|
||||||
// The map panel was just made visible (display:none → ""); the browser
|
// The map panel was just made visible (display:none → ""); the browser
|
||||||
// may not have laid it out yet, so getBoundingClientRect() can return
|
// may not have laid it out yet, so getBoundingClientRect() can return
|
||||||
// stale/zero dimensions. Double-rAF ensures a full layout pass has
|
// stale/zero dimensions. Double-rAF ensures a full layout pass has
|
||||||
// completed before we re-measure and tell Leaflet about its real size.
|
// completed before we re-measure and tell Leaflet about its real size.
|
||||||
requestAnimationFrame(() => {
|
requestAnimationFrame(() => {
|
||||||
requestAnimationFrame(() => {
|
requestAnimationFrame(() => {
|
||||||
window.trx.map.sizeAprsMapToViewport();
|
window.trx.modules.map.sizeAprsMapToViewport();
|
||||||
if (window.trx.map.aprsMap) window.trx.map.aprsMap.invalidateSize();
|
if (window.trx.modules.map.aprsMap) window.trx.modules.map.aprsMap.invalidateSize();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
return;
|
return;
|
||||||
@@ -4512,6 +4659,7 @@ function _initMapWhenReady() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function navigateToTab(name, options = {}) {
|
function navigateToTab(name, options = {}) {
|
||||||
|
window.trxUi?.closeMobileOverlays?.();
|
||||||
const { updateHistory = true, replaceHistory = false } = options;
|
const { updateHistory = true, replaceHistory = false } = options;
|
||||||
if (authEnabled && !authRole && name !== "main") {
|
if (authEnabled && !authRole && name !== "main") {
|
||||||
showAuthGate(false);
|
showAuthGate(false);
|
||||||
@@ -4522,6 +4670,7 @@ function navigateToTab(name, options = {}) {
|
|||||||
_activeTab = name;
|
_activeTab = name;
|
||||||
document.querySelectorAll(".tab-bar .tab").forEach((t) => t.classList.remove("active"));
|
document.querySelectorAll(".tab-bar .tab").forEach((t) => t.classList.remove("active"));
|
||||||
btn.classList.add("active");
|
btn.classList.add("active");
|
||||||
|
window.trxUi?.syncSelectedTab(document.querySelector(".tab-bar-nav"), btn);
|
||||||
document.querySelectorAll(".tab-panel").forEach((p) => p.style.display = "none");
|
document.querySelectorAll(".tab-panel").forEach((p) => p.style.display = "none");
|
||||||
const panel = document.getElementById(`tab-${name}`);
|
const panel = document.getElementById(`tab-${name}`);
|
||||||
panel.style.display = "";
|
panel.style.display = "";
|
||||||
@@ -4544,12 +4693,13 @@ function navigateToTab(name, options = {}) {
|
|||||||
_initMapWhenReady();
|
_initMapWhenReady();
|
||||||
}
|
}
|
||||||
if (name === "statistics") {
|
if (name === "statistics") {
|
||||||
window.trx.map?.scheduleStatsRender();
|
window.trx.modules.map?.scheduleStatsRender();
|
||||||
}
|
}
|
||||||
if (name === "recorder") {
|
if (name === "recorder") {
|
||||||
refreshRecorderStatus();
|
refreshRecorderStatus();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
window.navigateToTab = navigateToTab;
|
||||||
|
|
||||||
document.querySelector(".tab-bar").addEventListener("click", (e) => {
|
document.querySelector(".tab-bar").addEventListener("click", (e) => {
|
||||||
const btn = e.target.closest(".tab[data-tab]");
|
const btn = e.target.closest(".tab[data-tab]");
|
||||||
@@ -4708,7 +4858,7 @@ if (headerAuthBtn) {
|
|||||||
headerAuthBtn.addEventListener("click", async () => {
|
headerAuthBtn.addEventListener("click", async () => {
|
||||||
if (authRole) {
|
if (authRole) {
|
||||||
// Logged in - show logout confirmation
|
// Logged in - show logout confirmation
|
||||||
if (confirm("Are you sure you want to logout?")) {
|
if (await window.trxUi.confirm({ title: "Log out?", message: "Audio and control access for this browser session will end.", confirmLabel: "Log out", danger: false })) {
|
||||||
await authLogout();
|
await authLogout();
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
@@ -4721,10 +4871,11 @@ if (headerAuthBtn) {
|
|||||||
// ── Shared namespace for lazy-loaded modules ────────────────────────────────
|
// ── Shared namespace for lazy-loaded modules ────────────────────────────────
|
||||||
// Modules (map-core.js, screenshot.js) access core state and utilities via
|
// Modules (map-core.js, screenshot.js) access core state and utilities via
|
||||||
// window.trx. Modules register their own APIs as sub-namespaces
|
// window.trx. Modules register their own APIs as sub-namespaces
|
||||||
// (e.g. window.trx.map, window.trx.screenshot).
|
// (e.g. window.trx.modules.map, window.trx.modules.screenshot).
|
||||||
window.trx = Object.create(null);
|
const trxState = Object.create(null);
|
||||||
|
const trxModules = Object.create(null);
|
||||||
// -- State getters (backed by core-scoped variables) --
|
// -- State getters (backed by core-scoped variables) --
|
||||||
Object.defineProperties(window.trx, {
|
Object.defineProperties(trxState, {
|
||||||
serverLat: { get() { return serverLat; }, set(v) { serverLat = v; } },
|
serverLat: { get() { return serverLat; }, set(v) { serverLat = v; } },
|
||||||
serverLon: { get() { return serverLon; }, set(v) { serverLon = v; } },
|
serverLon: { get() { return serverLon; }, set(v) { serverLon = v; } },
|
||||||
lastFreqHz: { get() { return lastFreqHz; } },
|
lastFreqHz: { get() { return lastFreqHz; } },
|
||||||
@@ -4762,7 +4913,7 @@ Object.defineProperties(window.trx, {
|
|||||||
signalOverlayGl: { get() { return signalOverlayGl; } },
|
signalOverlayGl: { get() { return signalOverlayGl; } },
|
||||||
});
|
});
|
||||||
// -- Shared utility functions --
|
// -- Shared utility functions --
|
||||||
Object.assign(window.trx, {
|
const trxCore = Object.freeze({
|
||||||
saveSetting, loadSetting, showHint, escapeMapHtml, formatFreq, formatFreqForHumans,
|
saveSetting, loadSetting, showHint, escapeMapHtml, formatFreq, formatFreqForHumans,
|
||||||
formatWavelength, formatBwLabel, formatUptime, formatSigStrength, formatSignal,
|
formatWavelength, formatBwLabel, formatUptime, formatSigStrength, formatSignal,
|
||||||
postPath, scheduleUiFrameJob, navigateToTab, rigBadgeColor,
|
postPath, scheduleUiFrameJob, navigateToTab, rigBadgeColor,
|
||||||
@@ -4772,18 +4923,19 @@ Object.assign(window.trx, {
|
|||||||
currentTheme, canvasPalette, currentStyle,
|
currentTheme, canvasPalette, currentStyle,
|
||||||
cssColorToRgba, rgbaWithAlpha, isBinsArray, estimateNoiseFloorDb,
|
cssColorToRgba, rgbaWithAlpha, isBinsArray, estimateNoiseFloorDb,
|
||||||
spectrumVisibleRange, drawSpectrum,
|
spectrumVisibleRange, drawSpectrum,
|
||||||
bandForHz: function(hz) { return window.trx.map?.bandForHz?.(hz); },
|
bandForHz: function(hz) { return trxModules.map?.bandForHz?.(hz); },
|
||||||
markDecodeMapSyncPending,
|
markDecodeMapSyncPending,
|
||||||
decodeHistoryMapRenderingDeferred,
|
decodeHistoryMapRenderingDeferred,
|
||||||
updateDocumentTitle,
|
updateDocumentTitle,
|
||||||
activeChannelRds,
|
activeChannelRds,
|
||||||
});
|
});
|
||||||
Object.defineProperties(window.trx, {
|
Object.defineProperties(trxState, {
|
||||||
decodeHistoryReplayActive: { get() { return decodeHistoryReplayActive; } },
|
decodeHistoryReplayActive: { get() { return decodeHistoryReplayActive; } },
|
||||||
decodeMapSyncPending: { get() { return decodeMapSyncPending; } },
|
decodeMapSyncPending: { get() { return decodeMapSyncPending; } },
|
||||||
_activeTab: { get() { return _activeTab; } },
|
_activeTab: { get() { return _activeTab; } },
|
||||||
locationSubtitle: { get() { return locationSubtitle; } },
|
locationSubtitle: { get() { return locationSubtitle; } },
|
||||||
});
|
});
|
||||||
|
window.trx = Object.freeze({ state: trxState, core: trxCore, modules: trxModules });
|
||||||
|
|
||||||
// Load plugin scripts now that window.trx is populated. Dynamic scripts are
|
// Load plugin scripts now that window.trx is populated. Dynamic scripts are
|
||||||
// async so they must not be created before the namespace they depend on exists.
|
// async so they must not be created before the namespace they depend on exists.
|
||||||
@@ -4797,7 +4949,7 @@ window.addEventListener("resize", resizeHeaderSignalCanvas);
|
|||||||
// ── Map module (extracted to map-core.js, lazy-loaded) ──────────────────────
|
// ── Map module (extracted to map-core.js, lazy-loaded) ──────────────────────
|
||||||
// The map, statistics, and geolocation code (~3,450 lines) has been moved to
|
// The map, statistics, and geolocation code (~3,450 lines) has been moved to
|
||||||
// map-core.js and is loaded on demand when the Map tab is first activated.
|
// map-core.js and is loaded on demand when the Map tab is first activated.
|
||||||
// Core communicates with the map module via window.trx.map.* namespace.
|
// Core communicates with the map module via window.trx.modules.map.* namespace.
|
||||||
|
|
||||||
// ── Geo utilities (shared with map-core.js via window.trx) ─────────────────
|
// ── Geo utilities (shared with map-core.js via window.trx) ─────────────────
|
||||||
function haversineKm(lat1, lon1, lat2, lon2) {
|
function haversineKm(lat1, lon1, lat2, lon2) {
|
||||||
@@ -4907,11 +5059,15 @@ function latLonToMaidenhead(lat, lon) {
|
|||||||
function _wireSubTabBar(bar) {
|
function _wireSubTabBar(bar) {
|
||||||
if (bar._subtabWired) return;
|
if (bar._subtabWired) return;
|
||||||
bar._subtabWired = true;
|
bar._subtabWired = true;
|
||||||
|
window.trxUi?.prepareTabList(bar, "secondary");
|
||||||
bar.addEventListener("click", (e) => {
|
bar.addEventListener("click", (e) => {
|
||||||
const btn = e.target.closest(".sub-tab[data-subtab]");
|
const btn = e.target.closest(".sub-tab[data-subtab]");
|
||||||
if (!btn) return;
|
if (!btn) return;
|
||||||
bar.querySelectorAll(".sub-tab").forEach((t) => t.classList.remove("active"));
|
bar.querySelectorAll(".sub-tab").forEach((t) => t.classList.remove("active"));
|
||||||
btn.classList.add("active");
|
btn.classList.add("active");
|
||||||
|
window.trxUi?.syncSelectedTab(bar, btn);
|
||||||
|
const decoderPicker = document.getElementById("decoder-tab-select");
|
||||||
|
if (decoderPicker && btn.closest("#tab-digital-modes")) decoderPicker.value = btn.dataset.subtab;
|
||||||
const parent = bar.parentElement;
|
const parent = bar.parentElement;
|
||||||
parent.querySelectorAll(".sub-tab-panel").forEach((p) => p.style.display = "none");
|
parent.querySelectorAll(".sub-tab-panel").forEach((p) => p.style.display = "none");
|
||||||
const nextPanel = parent.querySelector(`#subtab-${btn.dataset.subtab}`);
|
const nextPanel = parent.querySelector(`#subtab-${btn.dataset.subtab}`);
|
||||||
@@ -4932,7 +5088,7 @@ document.querySelectorAll(".sub-tab-bar").forEach(_wireSubTabBar);
|
|||||||
window.addEventListener("resize", () => {
|
window.addEventListener("resize", () => {
|
||||||
const mapTab = document.getElementById("tab-map");
|
const mapTab = document.getElementById("tab-map");
|
||||||
if (!mapTab || mapTab.style.display === "none") return;
|
if (!mapTab || mapTab.style.display === "none") return;
|
||||||
window.trx.map?.sizeAprsMapToViewport();
|
window.trx.modules.map?.sizeAprsMapToViewport();
|
||||||
});
|
});
|
||||||
|
|
||||||
// --- Signal measurement ---
|
// --- Signal measurement ---
|
||||||
@@ -5402,6 +5558,7 @@ function configureRxStream(nextInfo) {
|
|||||||
ensureRxAudioContext(nextSampleRate);
|
ensureRxAudioContext(nextSampleRate);
|
||||||
rxGainNode.gain.value = rxVolSlider.value / 100;
|
rxGainNode.gain.value = rxVolSlider.value / 100;
|
||||||
rxActive = true;
|
rxActive = true;
|
||||||
|
window.trxUi?.setButtonState(rxAudioBtn, { active: true, activeLabel: "Stop Audio", inactiveLabel: "Play Audio" });
|
||||||
setAudioLevel(0);
|
setAudioLevel(0);
|
||||||
rxAudioBtn.style.borderColor = "#00d17f";
|
rxAudioBtn.style.borderColor = "#00d17f";
|
||||||
rxAudioBtn.style.color = "#00d17f";
|
rxAudioBtn.style.color = "#00d17f";
|
||||||
@@ -5603,6 +5760,7 @@ function startRxAudio() {
|
|||||||
// If TX was active when WS closed, release PTT
|
// If TX was active when WS closed, release PTT
|
||||||
if (txActive) { stopTxAudio(); }
|
if (txActive) { stopTxAudio(); }
|
||||||
rxActive = false;
|
rxActive = false;
|
||||||
|
window.trxUi?.setButtonState(rxAudioBtn, { active: false, activeLabel: "Stop Audio", inactiveLabel: "Play Audio" });
|
||||||
streamInfo = null;
|
streamInfo = null;
|
||||||
updateWfmControls();
|
updateWfmControls();
|
||||||
rxAudioBtn.style.borderColor = "";
|
rxAudioBtn.style.borderColor = "";
|
||||||
@@ -5629,6 +5787,7 @@ function startRxAudio() {
|
|||||||
|
|
||||||
function stopRxAudio() {
|
function stopRxAudio() {
|
||||||
rxActive = false;
|
rxActive = false;
|
||||||
|
window.trxUi?.setButtonState(rxAudioBtn, { active: false, activeLabel: "Stop Audio", inactiveLabel: "Play Audio" });
|
||||||
streamInfo = null;
|
streamInfo = null;
|
||||||
if (audioWs) { audioWs.close(); audioWs = null; }
|
if (audioWs) { audioWs.close(); audioWs = null; }
|
||||||
if (audioCtx) { audioCtx.close(); audioCtx = null; }
|
if (audioCtx) { audioCtx.close(); audioCtx = null; }
|
||||||
@@ -5667,6 +5826,7 @@ function startTxAudio() {
|
|||||||
}).then(async (stream) => {
|
}).then(async (stream) => {
|
||||||
txStream = stream;
|
txStream = stream;
|
||||||
txActive = true;
|
txActive = true;
|
||||||
|
window.trxUi?.setButtonState(txAudioBtn, { active: true, activeLabel: "Stop Transmitting", inactiveLabel: "Transmit Audio" });
|
||||||
txAudioBtn.style.borderColor = "#e55353";
|
txAudioBtn.style.borderColor = "#e55353";
|
||||||
txAudioBtn.style.color = "#e55353";
|
txAudioBtn.style.color = "#e55353";
|
||||||
audioStatus.textContent = "RX+TX";
|
audioStatus.textContent = "RX+TX";
|
||||||
@@ -5744,6 +5904,7 @@ function startTxAudio() {
|
|||||||
async function stopTxAudio() {
|
async function stopTxAudio() {
|
||||||
if (!txActive) return;
|
if (!txActive) return;
|
||||||
txActive = false;
|
txActive = false;
|
||||||
|
window.trxUi?.setButtonState(txAudioBtn, { active: false, activeLabel: "Stop Transmitting", inactiveLabel: "Transmit Audio" });
|
||||||
clearTxTimeout();
|
clearTxTimeout();
|
||||||
|
|
||||||
// Release PTT automatically
|
// Release PTT automatically
|
||||||
@@ -5989,7 +6150,7 @@ function renderRecorderFiles() {
|
|||||||
el.querySelectorAll(".rec-delete-btn").forEach(function (btn) {
|
el.querySelectorAll(".rec-delete-btn").forEach(function (btn) {
|
||||||
btn.addEventListener("click", async function () {
|
btn.addEventListener("click", async function () {
|
||||||
const name = btn.dataset.name;
|
const name = btn.dataset.name;
|
||||||
if (!confirm("Delete recording " + name + "?")) return;
|
if (!await window.trxUi.confirm({ title: "Delete recording?", message: `${name} will be permanently removed.`, confirmLabel: "Delete" })) return;
|
||||||
try {
|
try {
|
||||||
const resp = await fetch("/api/recorder/files/" + encodeURIComponent(name), { method: "DELETE" });
|
const resp = await fetch("/api/recorder/files/" + encodeURIComponent(name), { method: "DELETE" });
|
||||||
if (!resp.ok) throw new Error("HTTP " + resp.status);
|
if (!resp.ok) throw new Error("HTTP " + resp.status);
|
||||||
@@ -5997,6 +6158,7 @@ function renderRecorderFiles() {
|
|||||||
renderRecorderFiles();
|
renderRecorderFiles();
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
console.error("Delete failed", e);
|
console.error("Delete failed", e);
|
||||||
|
window.trxUi?.notify("Recording could not be deleted", { kind: "error" });
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
@@ -6102,8 +6264,8 @@ function dispatchDecodeMessage(msg, skipStats) {
|
|||||||
if (msg.type === "wefax" && window.onServerWefax) window.onServerWefax(msg);
|
if (msg.type === "wefax" && window.onServerWefax) window.onServerWefax(msg);
|
||||||
if (msg.type === "wefax_progress" && window.onServerWefaxProgress) window.onServerWefaxProgress(msg);
|
if (msg.type === "wefax_progress" && window.onServerWefaxProgress) window.onServerWefaxProgress(msg);
|
||||||
if (!skipStats && msg.type && msg.type !== "lrpt_image" && msg.type !== "lrpt_progress" && msg.type !== "wefax" && msg.type !== "wefax_progress") {
|
if (!skipStats && msg.type && msg.type !== "lrpt_image" && msg.type !== "lrpt_progress" && msg.type !== "wefax" && msg.type !== "wefax_progress") {
|
||||||
window.trx.map?.statsRecordDecode(msg.type, msg.rig_id || msg.remote || null);
|
window.trx.modules.map?.statsRecordDecode(msg.type, msg.rig_id || msg.remote || null);
|
||||||
window.trx.map?.scheduleStatsRender();
|
window.trx.modules.map?.scheduleStatsRender();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -6112,10 +6274,10 @@ function dispatchDecodeBatch(batch) {
|
|||||||
// Record statistics for every message in the batch regardless of dispatch path.
|
// Record statistics for every message in the batch regardless of dispatch path.
|
||||||
for (const msg of batch) {
|
for (const msg of batch) {
|
||||||
if (msg.type && msg.type !== "lrpt_image" && msg.type !== "lrpt_progress" && msg.type !== "wefax" && msg.type !== "wefax_progress") {
|
if (msg.type && msg.type !== "lrpt_image" && msg.type !== "lrpt_progress" && msg.type !== "wefax" && msg.type !== "wefax_progress") {
|
||||||
window.trx.map?.statsRecordDecode(msg.type, msg.rig_id || msg.remote || null);
|
window.trx.modules.map?.statsRecordDecode(msg.type, msg.rig_id || msg.remote || null);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
window.trx.map?.scheduleStatsRender();
|
window.trx.modules.map?.scheduleStatsRender();
|
||||||
const type = String(batch[0]?.type || "");
|
const type = String(batch[0]?.type || "");
|
||||||
const uniformType = batch.every((msg) => String(msg?.type || "") === type);
|
const uniformType = batch.every((msg) => String(msg?.type || "") === type);
|
||||||
if (uniformType) {
|
if (uniformType) {
|
||||||
@@ -6200,9 +6362,9 @@ function restoreDecodeHistoryGroup(kind, messages) {
|
|||||||
// Record statistics for restored history messages.
|
// Record statistics for restored history messages.
|
||||||
if (kind !== "lrpt_image" && kind !== "lrpt_progress" && kind !== "wefax" && kind !== "wefax_progress") {
|
if (kind !== "lrpt_image" && kind !== "lrpt_progress" && kind !== "wefax" && kind !== "wefax_progress") {
|
||||||
for (const msg of messages) {
|
for (const msg of messages) {
|
||||||
window.trx.map?.statsRecordDecode(kind, msg.rig_id || msg.remote || null, msg.ts_ms || undefined);
|
window.trx.modules.map?.statsRecordDecode(kind, msg.rig_id || msg.remote || null, msg.ts_ms || undefined);
|
||||||
}
|
}
|
||||||
window.trx.map?.scheduleStatsRender();
|
window.trx.modules.map?.scheduleStatsRender();
|
||||||
}
|
}
|
||||||
if (kind === "ais") {
|
if (kind === "ais") {
|
||||||
if (window.restoreAisHistory) { window.restoreAisHistory(messages); }
|
if (window.restoreAisHistory) { window.restoreAisHistory(messages); }
|
||||||
@@ -6933,6 +7095,13 @@ function startSpectrumStreaming() {
|
|||||||
const rds = lastSpectrumData?.rds;
|
const rds = lastSpectrumData?.rds;
|
||||||
lastSpectrumData = { bins, center_hz: centerHz, sample_rate: sampleRate, rds };
|
lastSpectrumData = { bins, center_hz: centerHz, sample_rate: sampleRate, rds };
|
||||||
window.lastSpectrumData = lastSpectrumData;
|
window.lastSpectrumData = lastSpectrumData;
|
||||||
|
const spectrumSummary = document.getElementById("spectrum-text-summary");
|
||||||
|
if (spectrumSummary && bins.length) {
|
||||||
|
let peakIndex = 0;
|
||||||
|
for (let i = 1; i < bins.length; i += 1) if (bins[i] > bins[peakIndex]) peakIndex = i;
|
||||||
|
const peakHz = centerHz - sampleRate / 2 + (peakIndex / Math.max(1, bins.length - 1)) * sampleRate;
|
||||||
|
spectrumSummary.textContent = `Spectrum centered at ${formatFreqForHumans(centerHz)}, spanning ${formatFreqForHumans(sampleRate)}. Strongest visible bin near ${formatFreqForHumans(peakHz)} at ${bins[peakIndex]} dB.`;
|
||||||
|
}
|
||||||
// Server confirmed a new center — clear optimistic pending value.
|
// Server confirmed a new center — clear optimistic pending value.
|
||||||
if (spectrumCenterPendingHz !== null && Math.abs(centerHz - spectrumCenterPendingHz) < 1000) {
|
if (spectrumCenterPendingHz !== null && Math.abs(centerHz - spectrumCenterPendingHz) < 1000) {
|
||||||
spectrumCenterPendingHz = null;
|
spectrumCenterPendingHz = null;
|
||||||
@@ -8000,12 +8169,12 @@ window.addEventListener("keydown", (event) => {
|
|||||||
// S — spectrum screenshot (lazy-loads screenshot.js on first use)
|
// S — spectrum screenshot (lazy-loads screenshot.js on first use)
|
||||||
if (key === "s") {
|
if (key === "s") {
|
||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
if (window.trx.screenshot) {
|
if (window.trx.modules.screenshot) {
|
||||||
void window.trx.screenshot.captureSpectrumScreenshot();
|
void window.trx.modules.screenshot.captureSpectrumScreenshot();
|
||||||
} else {
|
} else {
|
||||||
const s = document.createElement("script");
|
const s = document.createElement("script");
|
||||||
s.src = "/screenshot.js";
|
s.src = "/screenshot.js";
|
||||||
s.onload = () => { void window.trx.screenshot?.captureSpectrumScreenshot(); };
|
s.onload = () => { void window.trx.modules.screenshot?.captureSpectrumScreenshot(); };
|
||||||
document.body.appendChild(s);
|
document.body.appendChild(s);
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
@@ -8395,7 +8564,12 @@ if (spectrumCanvas || overviewCanvas) {
|
|||||||
await ensureTunedBandwidthCoverage(lastFreqHz, currentBandwidthHz);
|
await ensureTunedBandwidthCoverage(lastFreqHz, currentBandwidthHz);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} catch (_) {}
|
} catch (error) {
|
||||||
|
window.trxUi?.notify("Bandwidth could not be changed", {
|
||||||
|
kind: "error",
|
||||||
|
action: { label: "Retry", run: () => postPath(`/set_bandwidth?hz=${Math.round(currentBandwidthHz)}`) },
|
||||||
|
});
|
||||||
|
}
|
||||||
_bwDragEdge = null;
|
_bwDragEdge = null;
|
||||||
_bwDragCanvas = null;
|
_bwDragCanvas = null;
|
||||||
return;
|
return;
|
||||||
|
|||||||
@@ -0,0 +1,331 @@
|
|||||||
|
// src/plugins/ais.ts
|
||||||
|
var aisWindow = window;
|
||||||
|
var escapeAisHtml = (input) => aisWindow.escapeMapHtml?.(input) ?? input.replaceAll("&", "&").replaceAll("<", "<").replaceAll(">", ">").replaceAll('"', """);
|
||||||
|
var aisStatus = document.getElementById("ais-status");
|
||||||
|
var aisMessagesEl = document.getElementById("ais-messages");
|
||||||
|
var aisFilterInput = document.getElementById("ais-filter");
|
||||||
|
var aisBarOverlay = document.getElementById("ais-bar-overlay");
|
||||||
|
var aisChannelSummaryEl = document.getElementById("ais-channel-summary");
|
||||||
|
var aisVesselCountEl = document.getElementById("ais-vessel-count");
|
||||||
|
var aisLatestSeenEl = document.getElementById("ais-latest-seen");
|
||||||
|
var AIS_BAR_WINDOW_MS = 15 * 60 * 1e3;
|
||||||
|
var AIS_DEFAULT_A_HZ = 161975e3;
|
||||||
|
var AIS_CHANNEL_SPACING_HZ = 5e4;
|
||||||
|
var aisFilterText = "";
|
||||||
|
var aisMessageHistory = [];
|
||||||
|
function currentAisHistoryRetentionMs() {
|
||||||
|
return typeof aisWindow.getDecodeHistoryRetentionMs === "function" ? aisWindow.getDecodeHistoryRetentionMs() : 24 * 60 * 60 * 1e3;
|
||||||
|
}
|
||||||
|
function pruneAisMessageHistory() {
|
||||||
|
const cutoffMs = Date.now() - currentAisHistoryRetentionMs();
|
||||||
|
aisMessageHistory = aisMessageHistory.filter((msg) => (msg._tsMs ?? 0) >= cutoffMs);
|
||||||
|
}
|
||||||
|
function scheduleAisUi(key, job) {
|
||||||
|
if (typeof aisWindow.trxScheduleUiFrameJob === "function") {
|
||||||
|
aisWindow.trxScheduleUiFrameJob(key, job);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
job();
|
||||||
|
}
|
||||||
|
function scheduleAisHistoryRender() {
|
||||||
|
scheduleAisUi("ais-history", () => {
|
||||||
|
renderAisHistory();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
function scheduleAisBarUpdate() {
|
||||||
|
scheduleAisUi("ais-bar", () => {
|
||||||
|
updateAisBar();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
function formatAisMhz(freqHz) {
|
||||||
|
return `${(freqHz / 1e6).toFixed(3)} MHz`;
|
||||||
|
}
|
||||||
|
function currentAisChannelPlan() {
|
||||||
|
const raw = (document.getElementById("freq")?.value || "").replace(/[^\d]/g, "");
|
||||||
|
const aHz = raw ? Number(raw) : AIS_DEFAULT_A_HZ;
|
||||||
|
const safeAHz = Number.isFinite(aHz) && aHz > 0 ? aHz : AIS_DEFAULT_A_HZ;
|
||||||
|
return {
|
||||||
|
aHz: safeAHz,
|
||||||
|
bHz: safeAHz + AIS_CHANNEL_SPACING_HZ
|
||||||
|
};
|
||||||
|
}
|
||||||
|
function aisChannelInfo(channel) {
|
||||||
|
const plan = currentAisChannelPlan();
|
||||||
|
const ch = (channel ?? "").trim().toUpperCase();
|
||||||
|
if (ch === "B") {
|
||||||
|
return {
|
||||||
|
label: "AIS-B",
|
||||||
|
badgeClass: "ais-badge ais-badge-channel-b",
|
||||||
|
freqText: formatAisMhz(plan.bHz)
|
||||||
|
};
|
||||||
|
}
|
||||||
|
return {
|
||||||
|
label: "AIS-A",
|
||||||
|
badgeClass: "ais-badge ais-badge-channel-a",
|
||||||
|
freqText: formatAisMhz(plan.aHz)
|
||||||
|
};
|
||||||
|
}
|
||||||
|
function aisDisplayName(msg) {
|
||||||
|
return msg.vessel_name || msg.callsign || `MMSI ${msg.mmsi}`;
|
||||||
|
}
|
||||||
|
function aisDisplayNameHtml(msg) {
|
||||||
|
const label = escapeAisHtml(aisDisplayName(msg));
|
||||||
|
const url = aisWindow.buildAisVesselUrl?.(msg.mmsi) ?? null;
|
||||||
|
if (!url) return label;
|
||||||
|
return `<a class="title-link" href="${escapeAisHtml(url)}" target="_blank" rel="noopener">${label}</a>`;
|
||||||
|
}
|
||||||
|
function aisTypeLabel(type) {
|
||||||
|
switch (Number(type)) {
|
||||||
|
case 1:
|
||||||
|
case 2:
|
||||||
|
case 3:
|
||||||
|
return "Class A Position";
|
||||||
|
case 4:
|
||||||
|
return "Base Station";
|
||||||
|
case 5:
|
||||||
|
return "Static/Voyage";
|
||||||
|
case 18:
|
||||||
|
return "Class B Position";
|
||||||
|
case 19:
|
||||||
|
return "Class B Extended";
|
||||||
|
case 21:
|
||||||
|
return "Aid to Nav";
|
||||||
|
case 24:
|
||||||
|
return "Class B Static";
|
||||||
|
default:
|
||||||
|
return `Type ${type ?? "--"}`;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
function aisAgeText(tsMs) {
|
||||||
|
if (typeof tsMs !== "number" || !Number.isFinite(tsMs)) return "just now";
|
||||||
|
const deltaMs = Math.max(0, Date.now() - tsMs);
|
||||||
|
const seconds = Math.round(deltaMs / 1e3);
|
||||||
|
if (seconds < 5) return "just now";
|
||||||
|
if (seconds < 60) return `${seconds}s ago`;
|
||||||
|
const minutes = Math.round(seconds / 60);
|
||||||
|
if (minutes < 60) return `${minutes}m ago`;
|
||||||
|
const hours = Math.round(minutes / 60);
|
||||||
|
return `${hours}h ago`;
|
||||||
|
}
|
||||||
|
function aisMotionText(msg) {
|
||||||
|
const parts = [
|
||||||
|
msg.sog_knots != null ? `${msg.sog_knots.toFixed(1)} kn` : null,
|
||||||
|
msg.cog_deg != null ? `${msg.cog_deg.toFixed(1)}° COG` : null,
|
||||||
|
msg.heading_deg != null ? `${msg.heading_deg.toFixed(0)}° HDG` : null
|
||||||
|
].filter(Boolean);
|
||||||
|
return parts.join(" · ");
|
||||||
|
}
|
||||||
|
function aisRouteText(msg) {
|
||||||
|
return [msg.callsign, msg.destination].filter(Boolean).join(" -> ");
|
||||||
|
}
|
||||||
|
function aisDistanceText(msg) {
|
||||||
|
if (aisWindow.serverLat == null || aisWindow.serverLon == null || msg.lat == null || msg.lon == null || !aisWindow.haversineKm) {
|
||||||
|
return "";
|
||||||
|
}
|
||||||
|
const distKm = aisWindow.haversineKm(aisWindow.serverLat, aisWindow.serverLon, msg.lat, msg.lon);
|
||||||
|
if (!Number.isFinite(distKm)) return "";
|
||||||
|
if (distKm < 1) return `${Math.round(distKm * 1e3)} m from TRX`;
|
||||||
|
return `${distKm.toFixed(1)} km from TRX`;
|
||||||
|
}
|
||||||
|
function aisLatestByVessel(messages) {
|
||||||
|
const byMmsi = /* @__PURE__ */ new Map();
|
||||||
|
for (const msg of messages) {
|
||||||
|
const key = Number.isFinite(msg.mmsi) ? String(msg.mmsi) : `${msg.channel || "?"}:${msg._tsMs || 0}`;
|
||||||
|
if (!byMmsi.has(key)) byMmsi.set(key, msg);
|
||||||
|
}
|
||||||
|
return Array.from(byMmsi.values());
|
||||||
|
}
|
||||||
|
function updateAisSummary() {
|
||||||
|
const plan = currentAisChannelPlan();
|
||||||
|
if (aisChannelSummaryEl) {
|
||||||
|
aisChannelSummaryEl.textContent = `A ${formatAisMhz(plan.aHz)} · B ${formatAisMhz(plan.bHz)}`;
|
||||||
|
}
|
||||||
|
const vessels = aisLatestByVessel(aisMessageHistory);
|
||||||
|
if (aisVesselCountEl) {
|
||||||
|
const count = vessels.length;
|
||||||
|
aisVesselCountEl.textContent = `${count} vessel${count === 1 ? "" : "s"}`;
|
||||||
|
}
|
||||||
|
if (aisLatestSeenEl) {
|
||||||
|
const latest = aisMessageHistory[0];
|
||||||
|
if (!latest) {
|
||||||
|
aisLatestSeenEl.textContent = "No traffic yet";
|
||||||
|
} else {
|
||||||
|
const channel = aisChannelInfo(latest.channel);
|
||||||
|
aisLatestSeenEl.textContent = `${channel.label} ${aisAgeText(latest._tsMs)}`;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
function renderAisRow(msg) {
|
||||||
|
const row = document.createElement("div");
|
||||||
|
row.className = "ais-message";
|
||||||
|
const ts = msg._ts || (/* @__PURE__ */ new Date()).toLocaleTimeString([], {
|
||||||
|
hour: "2-digit",
|
||||||
|
minute: "2-digit",
|
||||||
|
second: "2-digit"
|
||||||
|
});
|
||||||
|
const name = aisDisplayName(msg);
|
||||||
|
const nameHtml = aisDisplayNameHtml(msg);
|
||||||
|
const channel = aisChannelInfo(msg.channel);
|
||||||
|
const motion = aisMotionText(msg);
|
||||||
|
const route = aisRouteText(msg);
|
||||||
|
const distance = aisDistanceText(msg);
|
||||||
|
const pos = msg.lat != null && msg.lon != null ? `<a class="ais-pos-link" href="javascript:void(0)" onclick="window.navigateToAprsMap(${msg.lat},${msg.lon})">${msg.lat.toFixed(4)}, ${msg.lon.toFixed(4)}</a>` : "";
|
||||||
|
row.dataset.filterText = [
|
||||||
|
name,
|
||||||
|
msg.mmsi,
|
||||||
|
msg.channel,
|
||||||
|
channel.label,
|
||||||
|
msg.vessel_name,
|
||||||
|
msg.callsign,
|
||||||
|
msg.destination,
|
||||||
|
aisTypeLabel(msg.message_type)
|
||||||
|
].filter(Boolean).join(" ").toUpperCase();
|
||||||
|
row.innerHTML = `<div class="ais-row-head"><span class="ais-time">${ts}</span><span class="ais-call">${nameHtml}</span><span class="${channel.badgeClass}">${escapeAisHtml(channel.label)}</span><span class="ais-badge ais-badge-type">${escapeAisHtml(aisTypeLabel(msg.message_type))}</span></div><div class="ais-row-meta"><span>MMSI ${escapeAisHtml(String(msg.mmsi))}</span>` + (route ? `<span class="ais-meta-text">${escapeAisHtml(route)}</span>` : "") + `<span class="ais-meta-text">${escapeAisHtml(channel.freqText)}</span></div><div class="ais-row-detail">` + (motion ? `<span>${escapeAisHtml(motion)}</span>` : `<span>No motion data</span>`) + (distance ? `<span>${escapeAisHtml(distance)}</span>` : "") + (pos ? `<span>${pos}</span>` : "") + `<span>${escapeAisHtml(aisAgeText(msg._tsMs))}</span></div>`;
|
||||||
|
applyAisFilterToRow(row);
|
||||||
|
return row;
|
||||||
|
}
|
||||||
|
function applyAisFilterToRow(row) {
|
||||||
|
if (!aisFilterText) {
|
||||||
|
row.style.display = "";
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const message = row.dataset.filterText || "";
|
||||||
|
row.style.display = message.includes(aisFilterText) ? "" : "none";
|
||||||
|
}
|
||||||
|
function updateAisBar() {
|
||||||
|
if (!aisBarOverlay) return;
|
||||||
|
updateAisSummary();
|
||||||
|
const isAis = (document.getElementById("mode")?.value || "").toUpperCase() === "AIS";
|
||||||
|
const cutoffMs = Date.now() - AIS_BAR_WINDOW_MS;
|
||||||
|
const recent = aisMessageHistory.filter((msg) => (msg._tsMs ?? 0) >= cutoffMs);
|
||||||
|
const messages = aisLatestByVessel(recent).slice(0, 8);
|
||||||
|
if (!isAis || messages.length === 0) {
|
||||||
|
aisBarOverlay.style.display = "none";
|
||||||
|
aisBarOverlay.innerHTML = "";
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
let html = `<div class="aprs-bar-header"><span class="aprs-bar-title"><span class="aprs-bar-title-word">AIS</span><span class="aprs-bar-title-word">Live</span></span><span class="aprs-bar-clear-wrap"><span class="aprs-bar-clear" role="button" tabindex="0" onclick="window.clearAisBar()" onkeydown="if(event.key==='Enter'||event.key===' '){event.preventDefault();window.clearAisBar();}" aria-label="Clear AIS overlay">Clear</span></span><span class="aprs-bar-window">Last 15 minutes</span></div>`;
|
||||||
|
for (const msg of messages) {
|
||||||
|
const ts = msg._ts ? `<span class="aprs-bar-time">${msg._ts}</span>` : "";
|
||||||
|
const pin = msg.lat != null && msg.lon != null ? `<button class="aprs-bar-pin" title="${msg.lat.toFixed(4)}, ${msg.lon.toFixed(4)}" onclick="window.navigateToAprsMap(${msg.lat},${msg.lon})">📍</button>` : "";
|
||||||
|
const name = `<span class="ais-call">${aisDisplayNameHtml(msg)}</span>`;
|
||||||
|
const channel = aisChannelInfo(msg.channel);
|
||||||
|
const distance = aisDistanceText(msg);
|
||||||
|
const details = [
|
||||||
|
`MMSI ${escapeAisHtml(String(msg.mmsi))}`,
|
||||||
|
escapeAisHtml(channel.label),
|
||||||
|
msg.sog_knots != null ? `${msg.sog_knots.toFixed(1)} kn` : null,
|
||||||
|
msg.cog_deg != null ? `${msg.cog_deg.toFixed(1)}°` : null,
|
||||||
|
distance ? escapeAisHtml(distance) : null,
|
||||||
|
escapeAisHtml(aisAgeText(msg._tsMs))
|
||||||
|
].filter(Boolean).join(" · ");
|
||||||
|
html += `<div class="aprs-bar-frame"><div class="aprs-bar-frame-main">${ts}${pin}${name}: ${details}</div></div>`;
|
||||||
|
}
|
||||||
|
aisBarOverlay.innerHTML = html;
|
||||||
|
aisBarOverlay.style.display = "flex";
|
||||||
|
}
|
||||||
|
aisWindow.updateAisBar = updateAisBar;
|
||||||
|
aisWindow.clearAisBar = function() {
|
||||||
|
resetAisHistoryView();
|
||||||
|
};
|
||||||
|
function resetAisHistoryView() {
|
||||||
|
if (aisMessagesEl) aisMessagesEl.innerHTML = "";
|
||||||
|
aisMessageHistory = [];
|
||||||
|
updateAisBar();
|
||||||
|
renderAisHistory();
|
||||||
|
aisWindow.clearMapMarkersByType?.("ais");
|
||||||
|
}
|
||||||
|
function renderAisHistory() {
|
||||||
|
pruneAisMessageHistory();
|
||||||
|
if (!aisMessagesEl) {
|
||||||
|
updateAisSummary();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const fragment = document.createDocumentFragment();
|
||||||
|
for (const message of aisMessageHistory) {
|
||||||
|
fragment.appendChild(renderAisRow(message));
|
||||||
|
}
|
||||||
|
aisMessagesEl.replaceChildren(fragment);
|
||||||
|
updateAisSummary();
|
||||||
|
}
|
||||||
|
function addAisMessage(msg) {
|
||||||
|
const tsMs = Number.isFinite(msg.ts_ms) ? Number(msg.ts_ms) : Date.now();
|
||||||
|
msg._tsMs = tsMs;
|
||||||
|
msg._ts = new Date(tsMs).toLocaleTimeString([], {
|
||||||
|
hour: "2-digit",
|
||||||
|
minute: "2-digit",
|
||||||
|
second: "2-digit"
|
||||||
|
});
|
||||||
|
aisMessageHistory.unshift(msg);
|
||||||
|
pruneAisMessageHistory();
|
||||||
|
scheduleAisBarUpdate();
|
||||||
|
scheduleAisHistoryRender();
|
||||||
|
if (msg.lat != null && msg.lon != null && aisWindow.aisMapAddVessel) {
|
||||||
|
aisWindow.aisMapAddVessel(msg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
function normalizeServerAisMessage(msg) {
|
||||||
|
return {
|
||||||
|
...msg,
|
||||||
|
rig_id: msg.rig_id || null
|
||||||
|
};
|
||||||
|
}
|
||||||
|
function onServerAisBatch(messages) {
|
||||||
|
if (!Array.isArray(messages) || messages.length === 0) return;
|
||||||
|
if (aisStatus) aisStatus.textContent = "Receiving";
|
||||||
|
const normalized = [];
|
||||||
|
for (const msg of messages) {
|
||||||
|
const next = normalizeServerAisMessage(msg);
|
||||||
|
const tsMs = Number.isFinite(next.ts_ms) ? Number(next.ts_ms) : Date.now();
|
||||||
|
next._tsMs = tsMs;
|
||||||
|
next._ts = new Date(tsMs).toLocaleTimeString([], {
|
||||||
|
hour: "2-digit",
|
||||||
|
minute: "2-digit",
|
||||||
|
second: "2-digit"
|
||||||
|
});
|
||||||
|
if (next.lat != null && next.lon != null && aisWindow.aisMapAddVessel) {
|
||||||
|
aisWindow.aisMapAddVessel(next);
|
||||||
|
}
|
||||||
|
normalized.push(next);
|
||||||
|
}
|
||||||
|
normalized.reverse();
|
||||||
|
aisMessageHistory = normalized.concat(aisMessageHistory);
|
||||||
|
pruneAisMessageHistory();
|
||||||
|
scheduleAisBarUpdate();
|
||||||
|
scheduleAisHistoryRender();
|
||||||
|
}
|
||||||
|
function pruneAisHistoryView() {
|
||||||
|
pruneAisMessageHistory();
|
||||||
|
updateAisBar();
|
||||||
|
renderAisHistory();
|
||||||
|
}
|
||||||
|
document.getElementById("settings-clear-ais-history")?.addEventListener("click", () => {
|
||||||
|
void (async () => {
|
||||||
|
if (!await aisWindow.trxUi.confirm({ title: "Clear AIS history?", message: "All stored AIS messages will be permanently removed.", confirmLabel: "Clear history" })) return;
|
||||||
|
try {
|
||||||
|
await aisWindow.postPath?.("/clear_ais_decode");
|
||||||
|
resetAisHistoryView();
|
||||||
|
} catch (e) {
|
||||||
|
console.error("AIS history clear failed", e);
|
||||||
|
}
|
||||||
|
})();
|
||||||
|
});
|
||||||
|
if (aisFilterInput) {
|
||||||
|
aisFilterInput.addEventListener("input", () => {
|
||||||
|
aisFilterText = aisFilterInput.value.trim().toUpperCase();
|
||||||
|
renderAisHistory();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
function onServerAis(msg) {
|
||||||
|
if (aisStatus) aisStatus.textContent = "Receiving";
|
||||||
|
addAisMessage(normalizeServerAisMessage(msg));
|
||||||
|
}
|
||||||
|
updateAisSummary();
|
||||||
|
window.trxPluginRuntime.registerDecoder({
|
||||||
|
id: "ais",
|
||||||
|
onMessage: onServerAis,
|
||||||
|
onBatch: onServerAisBatch,
|
||||||
|
restore: onServerAisBatch,
|
||||||
|
reset: resetAisHistoryView,
|
||||||
|
prune: pruneAisHistoryView
|
||||||
|
});
|
||||||
@@ -0,0 +1,71 @@
|
|||||||
|
"use strict";
|
||||||
|
export class ApiError extends Error {
|
||||||
|
constructor(status, message) {
|
||||||
|
super(message);
|
||||||
|
this.status = status;
|
||||||
|
this.name = "ApiError";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
function isRecord(value) {
|
||||||
|
return typeof value === "object" && value !== null && !Array.isArray(value);
|
||||||
|
}
|
||||||
|
export function isRigSnapshot(value) {
|
||||||
|
if (!isRecord(value) || !isRecord(value.info) || !isRecord(value.status)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
const { info, status } = value;
|
||||||
|
return typeof value.initialized === "boolean" && typeof info.manufacturer === "string" && typeof info.model === "string" && isRecord(status.freq) && typeof status.freq.hz === "number" && (typeof status.mode === "string" || isRecord(status.mode)) && typeof status.tx_en === "boolean";
|
||||||
|
}
|
||||||
|
export function isRigListResponse(value) {
|
||||||
|
return isRecord(value) && (value.active_remote === null || typeof value.active_remote === "string") && Array.isArray(value.rigs) && value.rigs.every(
|
||||||
|
(rig) => isRecord(rig) && typeof rig.remote === "string" && typeof rig.manufacturer === "string" && typeof rig.model === "string" && Array.isArray(rig.supported_modes) && typeof rig.tx === "boolean" && typeof rig.filter_controls === "boolean" && typeof rig.initialized === "boolean"
|
||||||
|
);
|
||||||
|
}
|
||||||
|
export function isDecoderRegistry(value) {
|
||||||
|
return Array.isArray(value) && value.every(
|
||||||
|
(decoder) => isRecord(decoder) && typeof decoder.id === "string" && typeof decoder.label === "string" && (decoder.activation === "mode_bound" || decoder.activation === "toggle") && Array.isArray(decoder.active_modes) && decoder.active_modes.every((mode) => typeof mode === "string") && typeof decoder.background_decode === "boolean" && typeof decoder.bookmark_selectable === "boolean"
|
||||||
|
);
|
||||||
|
}
|
||||||
|
export class TrxApi {
|
||||||
|
constructor(baseUrl = "") {
|
||||||
|
this.baseUrl = baseUrl;
|
||||||
|
}
|
||||||
|
async get(path, validate) {
|
||||||
|
return this.request(path, { cache: "no-store" }, validate);
|
||||||
|
}
|
||||||
|
async post(path, body, validate) {
|
||||||
|
return this.request(
|
||||||
|
path,
|
||||||
|
{
|
||||||
|
method: "POST",
|
||||||
|
headers: { "Content-Type": "application/json" },
|
||||||
|
body: JSON.stringify(body)
|
||||||
|
},
|
||||||
|
validate
|
||||||
|
);
|
||||||
|
}
|
||||||
|
async request(path, init, validate) {
|
||||||
|
const response = await fetch(`${this.baseUrl}${path}`, init);
|
||||||
|
if (!response.ok) {
|
||||||
|
const detail = await response.text();
|
||||||
|
throw new ApiError(response.status, detail || response.statusText);
|
||||||
|
}
|
||||||
|
const value = await response.json();
|
||||||
|
if (!validate(value)) {
|
||||||
|
throw new ApiError(response.status, `Malformed response from ${path}`);
|
||||||
|
}
|
||||||
|
return value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
export function decodeServerEvent(event, validate) {
|
||||||
|
let value;
|
||||||
|
try {
|
||||||
|
value = JSON.parse(event.data);
|
||||||
|
} catch (error) {
|
||||||
|
throw new TypeError("Server event is not valid JSON", { cause: error });
|
||||||
|
}
|
||||||
|
if (!validate(value)) {
|
||||||
|
throw new TypeError("Server event has an unexpected shape");
|
||||||
|
}
|
||||||
|
return value;
|
||||||
|
}
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,314 @@
|
|||||||
|
import {
|
||||||
|
aprsAgeText,
|
||||||
|
aprsCategoryLabel,
|
||||||
|
aprsHexBytes,
|
||||||
|
aprsPacketCategory,
|
||||||
|
collapseAprsDuplicates,
|
||||||
|
normalizeAprsPacket,
|
||||||
|
renderAprsInfo,
|
||||||
|
renderLocalAprsSymbol
|
||||||
|
} from "./chunk-M2I6DH4X.js";
|
||||||
|
|
||||||
|
// src/plugins/aprs.ts
|
||||||
|
var aprsWindow = window;
|
||||||
|
var escapeAprsHtml = (input) => aprsWindow.escapeMapHtml?.(input) ?? input.replaceAll("&", "&").replaceAll("<", "<").replaceAll(">", ">").replaceAll('"', """);
|
||||||
|
var showAprsHint = (message, durationMs) => {
|
||||||
|
aprsWindow.showHint?.(message, durationMs);
|
||||||
|
};
|
||||||
|
var aprsStatus = document.getElementById("aprs-status");
|
||||||
|
var aprsPacketsEl = document.getElementById("aprs-packets");
|
||||||
|
var aprsFilterInput = document.getElementById("aprs-filter");
|
||||||
|
var aprsBarOverlay = document.getElementById("aprs-bar-overlay");
|
||||||
|
var aprsOnlyPosBtn = document.getElementById("aprs-only-pos-btn");
|
||||||
|
var aprsHideCrcBtn = document.getElementById("aprs-hide-crc-btn");
|
||||||
|
var aprsCollapseDupBtn = document.getElementById("aprs-collapse-dup-btn");
|
||||||
|
var aprsTotalCountEl = document.getElementById("aprs-total-count");
|
||||||
|
var aprsVisibleCountEl = document.getElementById("aprs-visible-count");
|
||||||
|
var aprsLatestSeenEl = document.getElementById("aprs-latest-seen");
|
||||||
|
var APRS_BAR_WINDOW_MS = 15 * 60 * 1e3;
|
||||||
|
var aprsFilterText = "";
|
||||||
|
var aprsPacketHistory = [];
|
||||||
|
var aprsBarDismissedAtMs = 0;
|
||||||
|
var aprsOnlyPos = false;
|
||||||
|
var aprsHideCrc = false;
|
||||||
|
var aprsCollapseDup = false;
|
||||||
|
var aprsTypeFilter = "all";
|
||||||
|
function currentAprsHistoryRetentionMs() {
|
||||||
|
return typeof aprsWindow.getDecodeHistoryRetentionMs === "function" ? aprsWindow.getDecodeHistoryRetentionMs() : 24 * 60 * 60 * 1e3;
|
||||||
|
}
|
||||||
|
function pruneAprsPacketHistory() {
|
||||||
|
const cutoffMs = Date.now() - currentAprsHistoryRetentionMs();
|
||||||
|
aprsPacketHistory = aprsPacketHistory.filter((pkt) => (pkt._tsMs ?? 0) >= cutoffMs);
|
||||||
|
}
|
||||||
|
function scheduleAprsUi(key, job) {
|
||||||
|
if (typeof aprsWindow.trxScheduleUiFrameJob === "function") {
|
||||||
|
aprsWindow.trxScheduleUiFrameJob(key, job);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
job();
|
||||||
|
}
|
||||||
|
function scheduleAprsHistoryRender() {
|
||||||
|
scheduleAprsUi("aprs-history", () => {
|
||||||
|
renderAprsHistory();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
function scheduleAprsBarUpdate() {
|
||||||
|
scheduleAprsUi("aprs-bar", () => {
|
||||||
|
updateAprsBar();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
function aprsDistanceText(pkt) {
|
||||||
|
if (aprsWindow.serverLat == null || aprsWindow.serverLon == null || pkt.lat == null || pkt.lon == null || !aprsWindow.haversineKm) return "";
|
||||||
|
const distKm = aprsWindow.haversineKm(aprsWindow.serverLat, aprsWindow.serverLon, pkt.lat, pkt.lon);
|
||||||
|
if (!Number.isFinite(distKm)) return "";
|
||||||
|
if (distKm < 1) return `${Math.round(distKm * 1e3)} m from TRX`;
|
||||||
|
return `${distKm.toFixed(1)} km from TRX`;
|
||||||
|
}
|
||||||
|
function aprsFilterMatch(pkt) {
|
||||||
|
if (aprsOnlyPos && (pkt.lat == null || pkt.lon == null)) return false;
|
||||||
|
if (aprsHideCrc && !pkt.crcOk) return false;
|
||||||
|
if (aprsTypeFilter !== "all" && aprsPacketCategory(pkt) !== aprsTypeFilter) return false;
|
||||||
|
if (!aprsFilterText) return true;
|
||||||
|
const haystack = [
|
||||||
|
pkt.srcCall,
|
||||||
|
pkt.destCall,
|
||||||
|
pkt.path,
|
||||||
|
pkt.info,
|
||||||
|
pkt.type,
|
||||||
|
pkt.lat != null ? pkt.lat.toFixed(4) : "",
|
||||||
|
pkt.lon != null ? pkt.lon.toFixed(4) : "",
|
||||||
|
aprsPacketCategory(pkt)
|
||||||
|
].filter(Boolean).join(" ").toUpperCase();
|
||||||
|
return haystack.includes(aprsFilterText);
|
||||||
|
}
|
||||||
|
function aprsVisiblePackets() {
|
||||||
|
const packets = aprsCollapseDup ? collapseAprsDuplicates(aprsPacketHistory) : aprsPacketHistory;
|
||||||
|
return packets.filter(aprsFilterMatch);
|
||||||
|
}
|
||||||
|
function updateAprsSummary() {
|
||||||
|
const visible = aprsVisiblePackets();
|
||||||
|
if (aprsTotalCountEl) {
|
||||||
|
aprsTotalCountEl.textContent = `${aprsPacketHistory.length} total`;
|
||||||
|
}
|
||||||
|
if (aprsVisibleCountEl) {
|
||||||
|
aprsVisibleCountEl.textContent = `${visible.length} shown`;
|
||||||
|
}
|
||||||
|
if (aprsLatestSeenEl) {
|
||||||
|
const latest = aprsPacketHistory[0];
|
||||||
|
if (!latest) {
|
||||||
|
aprsLatestSeenEl.textContent = "No packets yet";
|
||||||
|
} else {
|
||||||
|
aprsLatestSeenEl.textContent = `${latest.srcCall} ${aprsAgeText(latest._tsMs)}`;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
function updateAprsChipState() {
|
||||||
|
document.querySelectorAll("[id^='aprs-type-']").forEach((btn) => {
|
||||||
|
btn.classList.toggle("active", btn.id === `aprs-type-${aprsTypeFilter}`);
|
||||||
|
});
|
||||||
|
aprsOnlyPosBtn?.classList.toggle("active", aprsOnlyPos);
|
||||||
|
aprsHideCrcBtn?.classList.toggle("active", aprsHideCrc);
|
||||||
|
aprsCollapseDupBtn?.classList.toggle("active", aprsCollapseDup);
|
||||||
|
}
|
||||||
|
function renderAprsRow(pkt, isFresh) {
|
||||||
|
const row = document.createElement("div");
|
||||||
|
row.className = "aprs-packet";
|
||||||
|
if (!pkt.crcOk) row.classList.add("aprs-packet-crc");
|
||||||
|
if (isFresh) row.classList.add("aprs-packet-new");
|
||||||
|
const ts = pkt._ts || (/* @__PURE__ */ new Date()).toLocaleTimeString([], { hour: "2-digit", minute: "2-digit", second: "2-digit" });
|
||||||
|
const age = aprsAgeText(pkt._tsMs);
|
||||||
|
const category = aprsPacketCategory(pkt);
|
||||||
|
const categoryLabel = aprsCategoryLabel(category);
|
||||||
|
const categoryClass = `aprs-badge aprs-badge-type aprs-badge-type-${category}`;
|
||||||
|
const pathBadge = pkt.path ? `<span class="aprs-badge">${escapeAprsHtml(pkt.path)}</span>` : "";
|
||||||
|
const crcBadge = pkt.crcOk ? "" : '<span class="aprs-badge aprs-badge-crc">CRC Fail</span>';
|
||||||
|
const symbolHtml = renderLocalAprsSymbol(pkt, escapeAprsHtml);
|
||||||
|
const posLink = pkt.lat != null && pkt.lon != null ? `<a class="aprs-pos" href="javascript:void(0)" data-aprs-map="${pkt.lat},${pkt.lon}">${pkt.lat.toFixed(4)}, ${pkt.lon.toFixed(4)}</a>` : "";
|
||||||
|
const distance = aprsDistanceText(pkt);
|
||||||
|
const qrzHref = `https://qrzcq.com/call/${encodeURIComponent(pkt.srcCall || "")}`;
|
||||||
|
row.innerHTML = `<div class="aprs-row-head"><span class="aprs-time">${ts}</span>` + symbolHtml + `<span class="aprs-call">${escapeAprsHtml(pkt.srcCall ?? "")}</span><span>>${escapeAprsHtml(pkt.destCall || "")}</span><span class="${categoryClass}">${escapeAprsHtml(categoryLabel)}</span>` + pathBadge + crcBadge + `</div><div class="aprs-row-meta"><span class="aprs-meta-text">${escapeAprsHtml(age)}</span>` + (distance ? `<span class="aprs-meta-text">${escapeAprsHtml(distance)}</span>` : "") + `<span class="aprs-meta-text">${escapeAprsHtml(pkt.type || "--")}</span></div><div class="aprs-row-detail"><span title="${escapeAprsHtml(pkt.type || "")}">${renderAprsInfo(pkt)}</span>` + (posLink ? `<span>${posLink}</span>` : "") + `</div><div class="aprs-row-actions">` + (pkt.lat != null && pkt.lon != null ? `<button class="aprs-inline-btn" type="button" data-aprs-map="${pkt.lat},${pkt.lon}">Map</button>` : "") + (pkt.lat != null && pkt.lon != null ? `<button class="aprs-inline-btn" type="button" data-aprs-copy="${pkt.lat},${pkt.lon}">Copy Coords</button>` : "") + `<a class="aprs-inline-btn" href="${qrzHref}" target="_blank" rel="noopener">QRZ</a></div><details class="aprs-details"><summary>Details</summary><div class="aprs-details-grid"><span class="aprs-detail-label">Source</span><span class="aprs-detail-value">${escapeAprsHtml(pkt.srcCall || "--")}</span><span class="aprs-detail-label">Destination</span><span class="aprs-detail-value">${escapeAprsHtml(pkt.destCall || "--")}</span><span class="aprs-detail-label">Type</span><span class="aprs-detail-value">${escapeAprsHtml(pkt.type || "--")}</span><span class="aprs-detail-label">Path</span><span class="aprs-detail-value">${escapeAprsHtml(pkt.path || "--")}</span><span class="aprs-detail-label">Age</span><span class="aprs-detail-value">${escapeAprsHtml(age)}</span><span class="aprs-detail-label">CRC</span><span class="aprs-detail-value">${pkt.crcOk ? "OK" : "Failed"}</span><span class="aprs-detail-label">Position</span><span class="aprs-detail-value">${pkt.lat != null && pkt.lon != null ? `${pkt.lat.toFixed(5)}, ${pkt.lon.toFixed(5)}` : "--"}</span><span class="aprs-detail-label">Info</span><span class="aprs-detail-value">${escapeAprsHtml(pkt.info || "--")}</span><span class="aprs-detail-label">Info Bytes</span><span class="aprs-detail-value">${escapeAprsHtml(aprsHexBytes(pkt.info_bytes))}</span></div></details>`;
|
||||||
|
row.querySelectorAll("[data-aprs-map]").forEach((el) => {
|
||||||
|
el.addEventListener("click", (evt) => {
|
||||||
|
evt.preventDefault();
|
||||||
|
const raw = el.dataset.aprsMap ?? "";
|
||||||
|
const [lat, lon] = raw.split(",").map(Number);
|
||||||
|
if (aprsWindow.navigateToAprsMap && typeof lat === "number" && typeof lon === "number" && Number.isFinite(lat) && Number.isFinite(lon)) {
|
||||||
|
aprsWindow.navigateToAprsMap(lat, lon);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
const copyBtn = row.querySelector("[data-aprs-copy]");
|
||||||
|
if (copyBtn) {
|
||||||
|
copyBtn.addEventListener("click", () => {
|
||||||
|
void (async () => {
|
||||||
|
const raw = copyBtn.dataset.aprsCopy ?? "";
|
||||||
|
try {
|
||||||
|
const clipboard = Reflect.get(navigator, "clipboard");
|
||||||
|
if (clipboard) {
|
||||||
|
await clipboard.writeText(raw);
|
||||||
|
showAprsHint("Coordinates copied", 1200);
|
||||||
|
}
|
||||||
|
} catch {
|
||||||
|
showAprsHint("Copy failed", 1500);
|
||||||
|
}
|
||||||
|
})();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
return row;
|
||||||
|
}
|
||||||
|
function renderAprsHistory() {
|
||||||
|
pruneAprsPacketHistory();
|
||||||
|
if (!aprsPacketsEl) {
|
||||||
|
updateAprsSummary();
|
||||||
|
updateAprsChipState();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const visible = aprsVisiblePackets();
|
||||||
|
const fragment = document.createDocumentFragment();
|
||||||
|
for (const [index, packet] of visible.entries()) {
|
||||||
|
fragment.appendChild(renderAprsRow(packet, index === 0));
|
||||||
|
}
|
||||||
|
aprsPacketsEl.replaceChildren(fragment);
|
||||||
|
updateAprsSummary();
|
||||||
|
updateAprsChipState();
|
||||||
|
}
|
||||||
|
function updateAprsBar() {
|
||||||
|
if (!aprsBarOverlay) return;
|
||||||
|
const isPkt = (document.getElementById("mode")?.value || "").toUpperCase() === "PKT";
|
||||||
|
const cutoffMs = Date.now() - APRS_BAR_WINDOW_MS;
|
||||||
|
const okFrames = aprsPacketHistory.filter((p) => p.crcOk && (p._tsMs ?? 0) >= cutoffMs);
|
||||||
|
const frames = collapseAprsDuplicates(okFrames).slice(0, 8);
|
||||||
|
const newestTsMs = frames.reduce((latest, pkt) => Math.max(latest, Number(pkt._tsMs) || 0), 0);
|
||||||
|
if (!isPkt || frames.length === 0 || newestTsMs <= aprsBarDismissedAtMs) {
|
||||||
|
aprsBarOverlay.style.display = "none";
|
||||||
|
aprsBarOverlay.innerHTML = "";
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
let html = `<div class="aprs-bar-header"><span class="aprs-bar-title"><span class="aprs-bar-title-word">APRS</span><span class="aprs-bar-title-word">Live</span></span><span class="aprs-bar-actions"><span class="aprs-bar-window">Last 15 minutes</span><span class="aprs-bar-clear-wrap"><span class="aprs-bar-clear" role="button" tabindex="0" onclick="window.clearAprsBar()" onkeydown="if(event.key==='Enter'||event.key===' '){event.preventDefault();window.clearAprsBar();}" aria-label="Clear APRS overlay">Clear</span></span><button class="aprs-bar-close" type="button" onclick="window.closeAprsBar()" aria-label="Close APRS overlay">×</button></span></div>`;
|
||||||
|
for (const pkt of frames) {
|
||||||
|
const ts = pkt._ts ? `<span class="aprs-bar-time">${pkt._ts}</span>` : "";
|
||||||
|
const call = `<span class="aprs-bar-call">${escapeAprsHtml(pkt.srcCall ?? "")}</span>`;
|
||||||
|
const dest = escapeAprsHtml(pkt.destCall || "");
|
||||||
|
const info = escapeAprsHtml(pkt.info || "");
|
||||||
|
const pin = pkt.lat != null && pkt.lon != null ? `<button class="aprs-bar-pin" title="${pkt.lat.toFixed(4)}, ${pkt.lon.toFixed(4)}" onclick="window.navigateToAprsMap(${pkt.lat},${pkt.lon})">📍</button>` : "";
|
||||||
|
html += `<div class="aprs-bar-frame"><div class="aprs-bar-frame-main">${ts}${pin}${call}>${dest}: ${info}</div></div>`;
|
||||||
|
}
|
||||||
|
aprsBarOverlay.innerHTML = html;
|
||||||
|
aprsBarOverlay.style.display = "flex";
|
||||||
|
}
|
||||||
|
aprsWindow.updateAprsBar = updateAprsBar;
|
||||||
|
aprsWindow.clearAprsBar = function() {
|
||||||
|
resetAprsHistoryView();
|
||||||
|
};
|
||||||
|
aprsWindow.closeAprsBar = function() {
|
||||||
|
aprsBarDismissedAtMs = Date.now();
|
||||||
|
if (aprsBarOverlay) {
|
||||||
|
aprsBarOverlay.style.display = "none";
|
||||||
|
aprsBarOverlay.innerHTML = "";
|
||||||
|
}
|
||||||
|
};
|
||||||
|
function resetAprsHistoryView() {
|
||||||
|
if (aprsPacketsEl) aprsPacketsEl.innerHTML = "";
|
||||||
|
aprsPacketHistory = [];
|
||||||
|
updateAprsBar();
|
||||||
|
renderAprsHistory();
|
||||||
|
aprsWindow.clearMapMarkersByType?.("aprs");
|
||||||
|
}
|
||||||
|
function pruneAprsHistoryView() {
|
||||||
|
pruneAprsPacketHistory();
|
||||||
|
updateAprsBar();
|
||||||
|
renderAprsHistory();
|
||||||
|
}
|
||||||
|
function addAprsPacket(pkt) {
|
||||||
|
const tsMs = Number.isFinite(pkt.ts_ms) ? Number(pkt.ts_ms) : Date.now();
|
||||||
|
pkt._tsMs = tsMs;
|
||||||
|
pkt._ts = new Date(tsMs).toLocaleTimeString([], { hour: "2-digit", minute: "2-digit", second: "2-digit" });
|
||||||
|
aprsPacketHistory.unshift(pkt);
|
||||||
|
pruneAprsPacketHistory();
|
||||||
|
if (pkt.lat != null && pkt.lon != null && aprsWindow.aprsMapAddStation) {
|
||||||
|
aprsWindow.aprsMapAddStation(pkt.srcCall ?? "", pkt.lat, pkt.lon, pkt.info ?? "", pkt.symbolTable, pkt.symbolCode, pkt);
|
||||||
|
}
|
||||||
|
if (pkt.crcOk) scheduleAprsBarUpdate();
|
||||||
|
scheduleAprsHistoryRender();
|
||||||
|
}
|
||||||
|
function normalizeServerAprsPacket(pkt) {
|
||||||
|
return normalizeAprsPacket(pkt, aprsWindow.getDecodeRigMeta?.() ?? null);
|
||||||
|
}
|
||||||
|
function onServerAprsBatch(packets) {
|
||||||
|
if (!Array.isArray(packets) || packets.length === 0) return;
|
||||||
|
if (aprsStatus) aprsStatus.textContent = "Receiving";
|
||||||
|
const normalized = [];
|
||||||
|
let hasCrcOk = false;
|
||||||
|
for (const pkt of packets) {
|
||||||
|
const next = normalizeServerAprsPacket(pkt);
|
||||||
|
const tsMs = Number.isFinite(next.ts_ms) ? Number(next.ts_ms) : Date.now();
|
||||||
|
next._tsMs = tsMs;
|
||||||
|
next._ts = new Date(tsMs).toLocaleTimeString([], { hour: "2-digit", minute: "2-digit", second: "2-digit" });
|
||||||
|
if (next.lat != null && next.lon != null && aprsWindow.aprsMapAddStation) {
|
||||||
|
aprsWindow.aprsMapAddStation(next.srcCall ?? "", next.lat, next.lon, next.info ?? "", next.symbolTable, next.symbolCode, next);
|
||||||
|
}
|
||||||
|
if (next.crcOk) hasCrcOk = true;
|
||||||
|
normalized.push(next);
|
||||||
|
}
|
||||||
|
normalized.reverse();
|
||||||
|
aprsPacketHistory = normalized.concat(aprsPacketHistory);
|
||||||
|
pruneAprsPacketHistory();
|
||||||
|
if (hasCrcOk) scheduleAprsBarUpdate();
|
||||||
|
scheduleAprsHistoryRender();
|
||||||
|
}
|
||||||
|
document.getElementById("settings-clear-aprs-history")?.addEventListener("click", () => {
|
||||||
|
void (async () => {
|
||||||
|
if (!await aprsWindow.trxUi.confirm({ title: "Clear APRS history?", message: "All stored APRS packets will be permanently removed.", confirmLabel: "Clear history" })) return;
|
||||||
|
try {
|
||||||
|
await aprsWindow.postPath?.("/clear_aprs_decode");
|
||||||
|
resetAprsHistoryView();
|
||||||
|
} catch (e) {
|
||||||
|
console.error("APRS history clear failed", e);
|
||||||
|
}
|
||||||
|
})();
|
||||||
|
});
|
||||||
|
if (aprsOnlyPosBtn) {
|
||||||
|
aprsOnlyPosBtn.addEventListener("click", () => {
|
||||||
|
aprsOnlyPos = !aprsOnlyPos;
|
||||||
|
renderAprsHistory();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
if (aprsHideCrcBtn) {
|
||||||
|
aprsHideCrcBtn.addEventListener("click", () => {
|
||||||
|
aprsHideCrc = !aprsHideCrc;
|
||||||
|
renderAprsHistory();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
if (aprsCollapseDupBtn) {
|
||||||
|
aprsCollapseDupBtn.addEventListener("click", () => {
|
||||||
|
aprsCollapseDup = !aprsCollapseDup;
|
||||||
|
renderAprsHistory();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
["all", "position", "message", "weather", "telemetry", "other"].forEach((type) => {
|
||||||
|
const btn = document.getElementById(`aprs-type-${type}`);
|
||||||
|
if (!btn) return;
|
||||||
|
btn.addEventListener("click", () => {
|
||||||
|
aprsTypeFilter = type;
|
||||||
|
renderAprsHistory();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
if (aprsFilterInput) {
|
||||||
|
aprsFilterInput.addEventListener("input", () => {
|
||||||
|
aprsFilterText = aprsFilterInput.value.trim().toUpperCase();
|
||||||
|
renderAprsHistory();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
function onServerAprs(pkt) {
|
||||||
|
if (aprsStatus) aprsStatus.textContent = "Receiving";
|
||||||
|
addAprsPacket(normalizeServerAprsPacket(pkt));
|
||||||
|
}
|
||||||
|
renderAprsHistory();
|
||||||
|
window.trxPluginRuntime.registerDecoder({
|
||||||
|
id: "aprs",
|
||||||
|
onMessage: onServerAprs,
|
||||||
|
onBatch: onServerAprsBatch,
|
||||||
|
restore: onServerAprsBatch,
|
||||||
|
reset: resetAprsHistoryView,
|
||||||
|
prune: pruneAprsHistoryView
|
||||||
|
});
|
||||||
+366
@@ -0,0 +1,366 @@
|
|||||||
|
// src/plugins/background-decode.ts
|
||||||
|
var bgdWindow = window;
|
||||||
|
(function() {
|
||||||
|
"use strict";
|
||||||
|
function bgdSupportedIds() {
|
||||||
|
return (bgdWindow.decoderRegistry || []).filter(function(d) {
|
||||||
|
return d.background_decode;
|
||||||
|
}).map(function(d) {
|
||||||
|
return d.id;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
let backgroundDecodeRole = null;
|
||||||
|
let currentRigId = null;
|
||||||
|
let currentConfig = null;
|
||||||
|
let bookmarkList = [];
|
||||||
|
let statusInterval = null;
|
||||||
|
let bgdDirty = false;
|
||||||
|
function initBackgroundDecode(rigId, role) {
|
||||||
|
backgroundDecodeRole = role;
|
||||||
|
currentRigId = rigId || null;
|
||||||
|
if (currentRigId) loadBackgroundDecode();
|
||||||
|
startStatusPolling();
|
||||||
|
}
|
||||||
|
function setBackgroundDecodeRig(rigId) {
|
||||||
|
const nextRigId = rigId || null;
|
||||||
|
if (nextRigId === currentRigId) return;
|
||||||
|
currentRigId = nextRigId;
|
||||||
|
if (!currentRigId) return;
|
||||||
|
loadBackgroundDecode();
|
||||||
|
}
|
||||||
|
function apiGetConfig(rigId) {
|
||||||
|
return fetch("/background-decode/" + encodeURIComponent(rigId)).then(function(r) {
|
||||||
|
if (!r.ok) throw new Error(`HTTP ${String(r.status)}`);
|
||||||
|
return r.json();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
function apiPutConfig(rigId, config) {
|
||||||
|
return fetch("/background-decode/" + encodeURIComponent(rigId), {
|
||||||
|
method: "PUT",
|
||||||
|
headers: { "Content-Type": "application/json" },
|
||||||
|
body: JSON.stringify(config)
|
||||||
|
}).then(function(r) {
|
||||||
|
if (!r.ok) throw new Error(`HTTP ${String(r.status)}`);
|
||||||
|
return r.json();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
function apiResetConfig(rigId) {
|
||||||
|
return fetch("/background-decode/" + encodeURIComponent(rigId), {
|
||||||
|
method: "DELETE"
|
||||||
|
}).then(function(r) {
|
||||||
|
if (!r.ok) throw new Error(`HTTP ${String(r.status)}`);
|
||||||
|
return r.json();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
function apiGetStatus(rigId) {
|
||||||
|
return fetch("/background-decode/" + encodeURIComponent(rigId) + "/status").then(function(r) {
|
||||||
|
if (!r.ok) throw new Error(`HTTP ${String(r.status)}`);
|
||||||
|
return r.json();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
function apiGetBookmarks() {
|
||||||
|
return fetch("/bookmarks").then(function(r) {
|
||||||
|
if (!r.ok) throw new Error(`HTTP ${String(r.status)}`);
|
||||||
|
return r.json();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
function loadBackgroundDecode() {
|
||||||
|
const rigId = currentRigId;
|
||||||
|
if (!rigId) return;
|
||||||
|
Promise.all([apiGetConfig(rigId), apiGetBookmarks()]).then(function([config, bookmarks]) {
|
||||||
|
currentConfig = config;
|
||||||
|
bookmarkList = Array.isArray(bookmarks) ? bookmarks : [];
|
||||||
|
renderBackgroundDecode();
|
||||||
|
clearBgdDirty();
|
||||||
|
pollBackgroundDecodeStatus();
|
||||||
|
}).catch(function(err) {
|
||||||
|
console.error("background decode load failed", err);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
function supportedBookmarks() {
|
||||||
|
return bookmarkList.filter(function(bookmark) {
|
||||||
|
return bookmarkDecoderKinds(bookmark).length > 0;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
function bookmarkDecoderKinds(bookmark) {
|
||||||
|
const ids = bgdSupportedIds();
|
||||||
|
const decoders = bookmark.decoders ?? [];
|
||||||
|
const explicit = decoders.map(function(item) {
|
||||||
|
return item.trim().toLowerCase();
|
||||||
|
}).filter(function(item, index, arr) {
|
||||||
|
return ids.indexOf(item) >= 0 && arr.indexOf(item) === index;
|
||||||
|
});
|
||||||
|
if (explicit.length > 0) return explicit;
|
||||||
|
const mode = bookmark.mode.trim().toUpperCase();
|
||||||
|
return (bgdWindow.decoderRegistry || []).filter(function(d) {
|
||||||
|
return d.activation === "mode_bound" && d.background_decode && d.active_modes.indexOf(mode) >= 0;
|
||||||
|
}).map(function(d) {
|
||||||
|
return d.id;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
function renderBackgroundDecode() {
|
||||||
|
if (!currentConfig) {
|
||||||
|
currentConfig = { remote: currentRigId, enabled: false, bookmark_ids: [] };
|
||||||
|
}
|
||||||
|
setCheckbox("background-decode-enabled", currentConfig.enabled);
|
||||||
|
renderBookmarkChecklist();
|
||||||
|
const isControl = backgroundDecodeRole === "control" || bgdWindow.authEnabled === false;
|
||||||
|
const panel = document.getElementById("background-decode-panel");
|
||||||
|
if (panel) {
|
||||||
|
panel.querySelectorAll("input, select, button.sch-write").forEach(function(el) {
|
||||||
|
el.disabled = !isControl;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
const saveBtn = document.getElementById("background-decode-save-btn");
|
||||||
|
const resetBtn = document.getElementById("background-decode-reset-btn");
|
||||||
|
if (saveBtn) saveBtn.style.display = isControl ? "" : "none";
|
||||||
|
if (resetBtn) resetBtn.style.display = isControl ? "" : "none";
|
||||||
|
}
|
||||||
|
function renderBookmarkChecklist(filterText = "") {
|
||||||
|
const container = document.getElementById("bgd-bookmark-checklist");
|
||||||
|
if (!container) return;
|
||||||
|
container.innerHTML = "";
|
||||||
|
const selectedIds = new Set(
|
||||||
|
currentConfig && Array.isArray(currentConfig.bookmark_ids) ? currentConfig.bookmark_ids : []
|
||||||
|
);
|
||||||
|
const all = supportedBookmarks();
|
||||||
|
const filter = (filterText || "").trim().toLowerCase();
|
||||||
|
const filtered = filter ? all.filter(function(bm) {
|
||||||
|
const text = (bm.name + " " + formatFreq(bm.freq_hz) + " " + bm.mode).toLowerCase();
|
||||||
|
return text.indexOf(filter) >= 0;
|
||||||
|
}) : all;
|
||||||
|
if (filtered.length === 0) {
|
||||||
|
container.innerHTML = '<div class="bgd-checklist-empty">' + (all.length === 0 ? "No supported bookmarks available." : "No bookmarks match filter.") + "</div>";
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
filtered.forEach(function(bookmark) {
|
||||||
|
const row = document.createElement("label");
|
||||||
|
row.className = "bgd-checklist-row";
|
||||||
|
const decoders = bookmarkDecoderKinds(bookmark);
|
||||||
|
const checked = selectedIds.has(bookmark.id) ? " checked" : "";
|
||||||
|
row.innerHTML = '<input type="checkbox"' + checked + ' data-bm-id="' + escHtml(bookmark.id) + '" /><span class="bgd-checklist-name">' + escHtml(bookmark.name) + '</span><span class="bgd-checklist-meta">' + escHtml(formatFreq(bookmark.freq_hz) + " " + bookmark.mode + " · " + decoders.join("/").toUpperCase()) + "</span>";
|
||||||
|
row.querySelector("input")?.addEventListener("change", function(e) {
|
||||||
|
onChecklistToggle(bookmark.id, e.currentTarget.checked);
|
||||||
|
});
|
||||||
|
container.appendChild(row);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
function onChecklistToggle(bookmarkId, checked) {
|
||||||
|
if (!currentConfig) {
|
||||||
|
currentConfig = { remote: currentRigId, enabled: false, bookmark_ids: [] };
|
||||||
|
}
|
||||||
|
if (!Array.isArray(currentConfig.bookmark_ids)) currentConfig.bookmark_ids = [];
|
||||||
|
if (checked && !currentConfig.bookmark_ids.includes(bookmarkId)) {
|
||||||
|
currentConfig.bookmark_ids.push(bookmarkId);
|
||||||
|
} else if (!checked) {
|
||||||
|
currentConfig.bookmark_ids = currentConfig.bookmark_ids.filter(function(id) {
|
||||||
|
return id !== bookmarkId;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
markBgdDirty();
|
||||||
|
}
|
||||||
|
function saveBackgroundDecode() {
|
||||||
|
const rigId = currentRigId;
|
||||||
|
if (!rigId) return;
|
||||||
|
const payload = {
|
||||||
|
remote: rigId,
|
||||||
|
enabled: document.getElementById("background-decode-enabled")?.checked ?? false,
|
||||||
|
bookmark_ids: currentConfig?.bookmark_ids.slice() ?? []
|
||||||
|
};
|
||||||
|
const btn = document.getElementById("background-decode-save-btn");
|
||||||
|
if (btn) btn.disabled = true;
|
||||||
|
apiPutConfig(rigId, payload).then(function(saved) {
|
||||||
|
currentConfig = saved;
|
||||||
|
renderBackgroundDecode();
|
||||||
|
clearBgdDirty();
|
||||||
|
pollBackgroundDecodeStatus();
|
||||||
|
showToast("Background decode saved.", false);
|
||||||
|
}).catch(function(err) {
|
||||||
|
showToast(`Save failed: ${errorMessage(err)}`, true);
|
||||||
|
}).finally(function() {
|
||||||
|
if (btn) btn.disabled = false;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
async function resetBackgroundDecode() {
|
||||||
|
const rigId = currentRigId;
|
||||||
|
if (!rigId) return;
|
||||||
|
if (!await bgdWindow.trxUi.confirm({ title: "Reset background decoding?", message: "The current background decode configuration will be permanently reset.", confirmLabel: "Reset" })) return;
|
||||||
|
apiResetConfig(rigId).then(function(saved) {
|
||||||
|
currentConfig = saved;
|
||||||
|
renderBackgroundDecode();
|
||||||
|
clearBgdDirty();
|
||||||
|
pollBackgroundDecodeStatus();
|
||||||
|
showToast("Background decode reset.", false);
|
||||||
|
}).catch(function(err) {
|
||||||
|
showToast(`Reset failed: ${errorMessage(err)}`, true);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
function startStatusPolling() {
|
||||||
|
if (statusInterval) clearInterval(statusInterval);
|
||||||
|
statusInterval = setInterval(pollBackgroundDecodeStatus, 15e3);
|
||||||
|
}
|
||||||
|
function pollBackgroundDecodeStatus() {
|
||||||
|
const rigId = currentRigId;
|
||||||
|
if (!rigId) return;
|
||||||
|
apiGetStatus(rigId).then(renderStatus).catch(function() {
|
||||||
|
});
|
||||||
|
}
|
||||||
|
function renderStatus(status) {
|
||||||
|
const card = document.getElementById("background-decode-status-card");
|
||||||
|
if (!card) return;
|
||||||
|
const entries = status.entries ?? [];
|
||||||
|
if (!entries.length) {
|
||||||
|
card.textContent = "No background decode bookmarks configured.";
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const summary = [];
|
||||||
|
if (status.active_rig) {
|
||||||
|
if (typeof status.center_hz === "number" && Number.isFinite(status.center_hz)) summary.push("Center " + formatFreq(status.center_hz));
|
||||||
|
if (typeof status.sample_rate === "number" && Number.isFinite(status.sample_rate) && status.sample_rate > 0) summary.push("Span ±" + formatFreq(status.sample_rate / 2));
|
||||||
|
} else {
|
||||||
|
summary.push("This rig is not currently selected for audio.");
|
||||||
|
}
|
||||||
|
let html = summary.length ? '<div style="margin-bottom:0.8rem;color:var(--text-muted);">' + escHtml(summary.join(" · ")) + "</div>" : "";
|
||||||
|
html += '<div class="bgd-status-list">';
|
||||||
|
entries.forEach(function(entry) {
|
||||||
|
const name = entry.bookmark_name || entry.bookmark_id || "Unknown bookmark";
|
||||||
|
const parts = [];
|
||||||
|
if (typeof entry.freq_hz === "number" && Number.isFinite(entry.freq_hz)) parts.push(formatFreq(entry.freq_hz));
|
||||||
|
if (entry.mode) parts.push(entry.mode);
|
||||||
|
if (Array.isArray(entry.decoder_kinds) && entry.decoder_kinds.length) {
|
||||||
|
parts.push(entry.decoder_kinds.join("/").toUpperCase());
|
||||||
|
}
|
||||||
|
html += '<div class="bgd-status-row"><div><div class="bgd-status-name">' + escHtml(name) + '</div><div class="bgd-status-meta">' + escHtml(parts.join(" · ")) + '</div></div><div class="bgd-status-state" data-state="' + escHtml(entry.state || "inactive") + '"><svg class="bgd-state-dot" viewBox="0 0 8 8"><circle cx="4" cy="4" r="3.5"/></svg>' + escHtml(prettyState(entry.state)) + "</div></div>";
|
||||||
|
});
|
||||||
|
html += "</div>";
|
||||||
|
card.innerHTML = html;
|
||||||
|
}
|
||||||
|
function prettyState(state) {
|
||||||
|
switch (state) {
|
||||||
|
case "active":
|
||||||
|
return "✓ Active";
|
||||||
|
case "out_of_span":
|
||||||
|
return "△ Out of span";
|
||||||
|
case "waiting_for_spectrum":
|
||||||
|
return "△ Waiting";
|
||||||
|
case "waiting_for_user":
|
||||||
|
return "△ No user";
|
||||||
|
case "missing_bookmark":
|
||||||
|
return "✗ Missing";
|
||||||
|
case "no_supported_decoders":
|
||||||
|
return "✗ Unsupported";
|
||||||
|
case "disabled":
|
||||||
|
return "△ Disabled";
|
||||||
|
case "handled_by_scheduler":
|
||||||
|
return "△ Scheduler";
|
||||||
|
case "scheduler_has_control":
|
||||||
|
return "△ Scheduler";
|
||||||
|
case "handled_by_virtual_channel":
|
||||||
|
return "△ VChan";
|
||||||
|
default:
|
||||||
|
return "△ Inactive";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
function setCheckbox(id, value) {
|
||||||
|
const el = document.getElementById(id);
|
||||||
|
if (el) el.checked = value;
|
||||||
|
}
|
||||||
|
function formatFreq(hz) {
|
||||||
|
if (!Number.isFinite(hz) || hz <= 0) return "--";
|
||||||
|
if (hz >= 1e6) return (hz / 1e6).toFixed(3).replace(/\.?0+$/, "") + " MHz";
|
||||||
|
if (hz >= 1e3) return (hz / 1e3).toFixed(1).replace(/\.?0+$/, "") + " kHz";
|
||||||
|
return `${String(hz)} Hz`;
|
||||||
|
}
|
||||||
|
function escHtml(value) {
|
||||||
|
const text = typeof value === "string" || typeof value === "number" || typeof value === "boolean" ? String(value) : "";
|
||||||
|
return text.replace(/&/g, "&").replace(/</g, "<").replace(/>/g, ">").replace(/"/g, """);
|
||||||
|
}
|
||||||
|
function errorMessage(error) {
|
||||||
|
return error instanceof Error ? error.message : String(error);
|
||||||
|
}
|
||||||
|
function markBgdDirty() {
|
||||||
|
if (bgdDirty) return;
|
||||||
|
bgdDirty = true;
|
||||||
|
const btn = document.getElementById("background-decode-save-btn");
|
||||||
|
if (btn) btn.classList.add("sch-dirty");
|
||||||
|
}
|
||||||
|
function clearBgdDirty() {
|
||||||
|
bgdDirty = false;
|
||||||
|
const btn = document.getElementById("background-decode-save-btn");
|
||||||
|
if (btn) btn.classList.remove("sch-dirty");
|
||||||
|
}
|
||||||
|
function showToast(msg, isError) {
|
||||||
|
const el = document.getElementById("background-decode-toast");
|
||||||
|
if (!el) return;
|
||||||
|
el.textContent = msg;
|
||||||
|
el.style.background = isError ? "var(--color-error, #c00)" : "var(--accent-green)";
|
||||||
|
el.style.display = "block";
|
||||||
|
setTimeout(function() {
|
||||||
|
el.style.display = "none";
|
||||||
|
}, 3e3);
|
||||||
|
}
|
||||||
|
function selectAllBookmarks() {
|
||||||
|
if (!currentConfig) {
|
||||||
|
currentConfig = { remote: currentRigId, enabled: false, bookmark_ids: [] };
|
||||||
|
}
|
||||||
|
const ids = supportedBookmarks().map(function(bm) {
|
||||||
|
return bm.id;
|
||||||
|
});
|
||||||
|
currentConfig.bookmark_ids = ids;
|
||||||
|
renderBookmarkChecklist(document.getElementById("bgd-bookmark-filter")?.value);
|
||||||
|
markBgdDirty();
|
||||||
|
}
|
||||||
|
function deselectAllBookmarks() {
|
||||||
|
if (!currentConfig) {
|
||||||
|
currentConfig = { remote: currentRigId, enabled: false, bookmark_ids: [] };
|
||||||
|
}
|
||||||
|
currentConfig.bookmark_ids = [];
|
||||||
|
renderBookmarkChecklist(document.getElementById("bgd-bookmark-filter")?.value);
|
||||||
|
markBgdDirty();
|
||||||
|
}
|
||||||
|
function wireBackgroundDecodeEvents() {
|
||||||
|
const filterInput = document.getElementById("bgd-bookmark-filter");
|
||||||
|
if (filterInput && !filterInput._wired) {
|
||||||
|
filterInput._wired = true;
|
||||||
|
filterInput.addEventListener("input", function() {
|
||||||
|
renderBookmarkChecklist(filterInput.value);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
const enabledCb = document.getElementById("background-decode-enabled");
|
||||||
|
if (enabledCb && !enabledCb._wired) {
|
||||||
|
enabledCb._wired = true;
|
||||||
|
enabledCb.addEventListener("change", function() {
|
||||||
|
markBgdDirty();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
const selectAllBtn = document.getElementById("bgd-select-all-btn");
|
||||||
|
if (selectAllBtn && !selectAllBtn._wired) {
|
||||||
|
selectAllBtn._wired = true;
|
||||||
|
selectAllBtn.addEventListener("click", selectAllBookmarks);
|
||||||
|
}
|
||||||
|
const deselectAllBtn = document.getElementById("bgd-deselect-all-btn");
|
||||||
|
if (deselectAllBtn && !deselectAllBtn._wired) {
|
||||||
|
deselectAllBtn._wired = true;
|
||||||
|
deselectAllBtn.addEventListener("click", deselectAllBookmarks);
|
||||||
|
}
|
||||||
|
const saveBtn = document.getElementById("background-decode-save-btn");
|
||||||
|
if (saveBtn && !saveBtn._wired) {
|
||||||
|
saveBtn._wired = true;
|
||||||
|
saveBtn.addEventListener("click", saveBackgroundDecode);
|
||||||
|
}
|
||||||
|
const resetBtn = document.getElementById("background-decode-reset-btn");
|
||||||
|
if (resetBtn && !resetBtn._wired) {
|
||||||
|
resetBtn._wired = true;
|
||||||
|
resetBtn.addEventListener("click", () => {
|
||||||
|
void resetBackgroundDecode();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
bgdWindow.trx ??= {};
|
||||||
|
bgdWindow.trx.modules ??= {};
|
||||||
|
bgdWindow.trx.modules.backgroundDecode = {
|
||||||
|
initialize: initBackgroundDecode,
|
||||||
|
wireEvents: wireBackgroundDecodeEvents,
|
||||||
|
setRig: setBackgroundDecodeRig
|
||||||
|
};
|
||||||
|
})();
|
||||||
@@ -0,0 +1,677 @@
|
|||||||
|
// src/plugins/bookmarks.ts
|
||||||
|
var bridge = window;
|
||||||
|
function bmEl(id) {
|
||||||
|
const element = document.getElementById(id);
|
||||||
|
if (!element) throw new Error(`Missing bookmark element #${id}`);
|
||||||
|
return element;
|
||||||
|
}
|
||||||
|
function errorMessage(error) {
|
||||||
|
return error instanceof Error ? error.message : String(error);
|
||||||
|
}
|
||||||
|
var bmScope = "general";
|
||||||
|
function bmScopeParam(prefix, scope) {
|
||||||
|
const sep = prefix ? "&" : "?";
|
||||||
|
return sep + "scope=" + encodeURIComponent(scope != null ? scope : bmScope);
|
||||||
|
}
|
||||||
|
var bmList = [];
|
||||||
|
var bmOverlayList = [];
|
||||||
|
var bmOverlayRevision = 0;
|
||||||
|
var bmFilteredList = [];
|
||||||
|
var bmEditScope = null;
|
||||||
|
var bmCurrentPage = 1;
|
||||||
|
var BM_PAGE_SIZE = 25;
|
||||||
|
var bmSelected = /* @__PURE__ */ new Set();
|
||||||
|
function bmFmtFreq(hz) {
|
||||||
|
if (!Number.isFinite(hz) || hz <= 0) return "--";
|
||||||
|
if (hz >= 1e9) return (hz / 1e9).toFixed(6).replace(/\.?0+$/, "") + " GHz";
|
||||||
|
if (hz >= 1e6) return (hz / 1e6).toFixed(6).replace(/\.?0+$/, "") + " MHz";
|
||||||
|
if (hz >= 1e3) return (hz / 1e3).toFixed(3).replace(/\.?0+$/, "") + " kHz";
|
||||||
|
return `${hz} Hz`;
|
||||||
|
}
|
||||||
|
function bmEsc(str) {
|
||||||
|
const d = document.createElement("div");
|
||||||
|
d.appendChild(document.createTextNode(String(str)));
|
||||||
|
return d.innerHTML;
|
||||||
|
}
|
||||||
|
function bmCanControl() {
|
||||||
|
return typeof bridge.authEnabled !== "undefined" && !bridge.authEnabled || typeof bridge.authRole !== "undefined" && bridge.authRole === "control";
|
||||||
|
}
|
||||||
|
function bmSyncAccess() {
|
||||||
|
const canCtrl = bmCanControl();
|
||||||
|
const addBtn = bmEl("bm-add-btn");
|
||||||
|
const selectAllBtn = bmEl("bm-select-all-btn");
|
||||||
|
if (addBtn) addBtn.style.display = canCtrl ? "" : "none";
|
||||||
|
if (selectAllBtn) selectAllBtn.style.display = canCtrl ? "" : "none";
|
||||||
|
}
|
||||||
|
function bmListScope() {
|
||||||
|
const rig = typeof bridge.lastActiveRigId !== "undefined" ? bridge.lastActiveRigId : null;
|
||||||
|
return rig || "general";
|
||||||
|
}
|
||||||
|
async function bmFetchOverlay() {
|
||||||
|
const overlayScope = bmListScope();
|
||||||
|
try {
|
||||||
|
const resp = await fetch("/bookmarks" + bmScopeParam(false, overlayScope));
|
||||||
|
if (!resp.ok) throw new Error(`HTTP ${resp.status}`);
|
||||||
|
bmOverlayList = await resp.json();
|
||||||
|
} catch (e) {
|
||||||
|
console.error("Failed to fetch overlay bookmarks:", e);
|
||||||
|
bmOverlayList = [];
|
||||||
|
}
|
||||||
|
bmOverlayRevision++;
|
||||||
|
if (typeof bridge.syncBookmarkMapLocators === "function") {
|
||||||
|
bridge.syncBookmarkMapLocators(bmOverlayList);
|
||||||
|
}
|
||||||
|
if (typeof bridge.scheduleSpectrumDraw === "function") bridge.scheduleSpectrumDraw();
|
||||||
|
}
|
||||||
|
async function bmFetch(categoryFilter) {
|
||||||
|
let url = "/bookmarks";
|
||||||
|
let hasQuery = false;
|
||||||
|
if (categoryFilter && categoryFilter !== "") {
|
||||||
|
url += "?category=" + encodeURIComponent(categoryFilter);
|
||||||
|
hasQuery = true;
|
||||||
|
}
|
||||||
|
url += bmScopeParam(hasQuery);
|
||||||
|
const overlayPromise = bmFetchOverlay();
|
||||||
|
try {
|
||||||
|
const resp = await fetch(url);
|
||||||
|
if (!resp.ok) throw new Error(`HTTP ${resp.status}`);
|
||||||
|
bmList = await resp.json();
|
||||||
|
} catch (e) {
|
||||||
|
console.error("Failed to fetch bookmarks:", e);
|
||||||
|
bmList = [];
|
||||||
|
}
|
||||||
|
bmSelected.clear();
|
||||||
|
bmUpdateSelectionUi();
|
||||||
|
bmSyncAccess();
|
||||||
|
bmApplyFilters();
|
||||||
|
void bmRefreshCategoryFilter(categoryFilter);
|
||||||
|
await overlayPromise;
|
||||||
|
}
|
||||||
|
function bmApplyFilters() {
|
||||||
|
const text = (bmEl("bm-text-filter")?.value || "").trim().toLowerCase();
|
||||||
|
const modeFilter = (bmEl("bm-mode-filter")?.value || "").trim().toUpperCase();
|
||||||
|
let filtered = modeFilter ? bmList.filter((bm) => (bm.mode || "").toUpperCase() === modeFilter) : bmList;
|
||||||
|
filtered = text ? filtered.filter(
|
||||||
|
(bm) => (bm.name || "").toLowerCase().includes(text) || (bm.locator || "").toLowerCase().includes(text) || (bm.category || "").toLowerCase().includes(text) || (bm.comment || "").toLowerCase().includes(text)
|
||||||
|
) : filtered;
|
||||||
|
bmFilteredList = filtered;
|
||||||
|
bmCurrentPage = 1;
|
||||||
|
bmRender(filtered);
|
||||||
|
}
|
||||||
|
async function bmRefreshCategoryFilter(keepValue) {
|
||||||
|
const sel = bmEl("bm-category-filter");
|
||||||
|
const modeSel = bmEl("bm-mode-filter");
|
||||||
|
if (!sel && !modeSel) return;
|
||||||
|
try {
|
||||||
|
const resp = await fetch("/bookmarks" + bmScopeParam(false));
|
||||||
|
if (!resp.ok) return;
|
||||||
|
const all = await resp.json();
|
||||||
|
if (sel) {
|
||||||
|
const cats = [...new Set(all.map((b) => b.category || "").filter(Boolean))].sort();
|
||||||
|
while (sel.options.length > 1) sel.remove(1);
|
||||||
|
cats.forEach((cat) => {
|
||||||
|
const opt = document.createElement("option");
|
||||||
|
opt.value = cat;
|
||||||
|
opt.textContent = cat;
|
||||||
|
sel.add(opt);
|
||||||
|
});
|
||||||
|
if (keepValue && cats.includes(keepValue)) sel.value = keepValue;
|
||||||
|
}
|
||||||
|
if (modeSel) {
|
||||||
|
const keepMode = modeSel.value;
|
||||||
|
const modes = [...new Set(all.map((b) => (b.mode || "").trim().toUpperCase()).filter(Boolean))].sort();
|
||||||
|
while (modeSel.options.length > 1) modeSel.remove(1);
|
||||||
|
modes.forEach((mode) => {
|
||||||
|
const opt = document.createElement("option");
|
||||||
|
opt.value = mode;
|
||||||
|
opt.textContent = mode;
|
||||||
|
modeSel.add(opt);
|
||||||
|
});
|
||||||
|
if (keepMode && modes.includes(keepMode)) modeSel.value = keepMode;
|
||||||
|
}
|
||||||
|
} catch {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
function bmRender(list) {
|
||||||
|
const tbody = bmEl("bm-tbody");
|
||||||
|
const emptyEl = bmEl("bm-empty");
|
||||||
|
const paginatorEl = bmEl("bm-paginator");
|
||||||
|
const pageSummaryEl = bmEl("bm-page-summary");
|
||||||
|
const pageIndicatorEl = bmEl("bm-page-indicator");
|
||||||
|
const prevBtn = bmEl("bm-page-prev");
|
||||||
|
const nextBtn = bmEl("bm-page-next");
|
||||||
|
if (!tbody) return;
|
||||||
|
tbody.innerHTML = "";
|
||||||
|
if (list.length === 0) {
|
||||||
|
if (emptyEl) emptyEl.style.display = "";
|
||||||
|
if (paginatorEl) paginatorEl.style.display = "none";
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (emptyEl) emptyEl.style.display = "none";
|
||||||
|
const canControl = bmCanControl();
|
||||||
|
const totalPages = Math.max(1, Math.ceil(list.length / BM_PAGE_SIZE));
|
||||||
|
const page = Math.min(Math.max(bmCurrentPage, 1), totalPages);
|
||||||
|
bmCurrentPage = page;
|
||||||
|
const startIndex = (page - 1) * BM_PAGE_SIZE;
|
||||||
|
const endIndex = Math.min(startIndex + BM_PAGE_SIZE, list.length);
|
||||||
|
const pageItems = list.slice(startIndex, endIndex);
|
||||||
|
const showScope = bmScope !== "general";
|
||||||
|
pageItems.forEach((bm) => {
|
||||||
|
const tr = document.createElement("tr");
|
||||||
|
tr.dataset.bmId = bm.id;
|
||||||
|
const bwCell = bm.bandwidth_hz ? bmFmtFreq(bm.bandwidth_hz) : "--";
|
||||||
|
const locatorCell = bm.locator || "--";
|
||||||
|
const catCell = bm.category || "Uncategorised";
|
||||||
|
const decoderCell = (bm.decoders || []).join(", ").toUpperCase() || "--";
|
||||||
|
const commentCell = bm.comment || "";
|
||||||
|
const checked = bmSelected.has(bm.id) ? " checked" : "";
|
||||||
|
const scopeBadge = showScope && bm.scope === "general" ? ' <span class="bm-scope-badge">G</span>' : "";
|
||||||
|
tr.innerHTML = `<td class="bm-col-sel"><input type="checkbox" class="bm-row-sel" data-bm-id="${bmEsc(bm.id)}"${checked} aria-label="Select ${bmEsc(bm.name)}" /></td><td class="bm-col-name">${bmEsc(bm.name)}${scopeBadge}</td><td class="bm-col-freq">${bmFmtFreq(bm.freq_hz)}</td><td class="bm-col-mode">${bmEsc(bm.mode)}</td><td class="bm-col-bw">${bwCell}</td><td class="bm-col-loc">${bmEsc(locatorCell)}</td><td class="bm-col-cat">${bmEsc(catCell)}</td><td class="bm-col-dec">${bmEsc(decoderCell)}</td><td class="bm-col-cmt">${bmEsc(commentCell)}</td><td class="bm-col-act"><button class="bm-tune-btn" type="button" data-bm-id="${bmEsc(bm.id)}">Tune</button>` + (canControl ? `<button class="bm-edit-btn" type="button" data-bm-id="${bmEsc(bm.id)}">Edit</button><button class="bm-del-btn" type="button" data-bm-id="${bmEsc(bm.id)}">Delete</button>` : "") + `</td>`;
|
||||||
|
tbody.appendChild(tr);
|
||||||
|
});
|
||||||
|
bmSyncSelectAllCheckbox();
|
||||||
|
if (paginatorEl) paginatorEl.style.display = totalPages > 1 ? "flex" : "";
|
||||||
|
if (pageSummaryEl) pageSummaryEl.textContent = `Showing ${startIndex + 1}-${endIndex} of ${list.length}`;
|
||||||
|
if (pageIndicatorEl) pageIndicatorEl.textContent = `Page ${page} of ${totalPages}`;
|
||||||
|
if (prevBtn) prevBtn.disabled = page <= 1;
|
||||||
|
if (nextBtn) nextBtn.disabled = page >= totalPages;
|
||||||
|
}
|
||||||
|
function bmChangePage(delta) {
|
||||||
|
const totalPages = Math.max(1, Math.ceil(bmFilteredList.length / BM_PAGE_SIZE));
|
||||||
|
const nextPage = Math.min(Math.max(bmCurrentPage + delta, 1), totalPages);
|
||||||
|
if (nextPage === bmCurrentPage) return;
|
||||||
|
bmCurrentPage = nextPage;
|
||||||
|
bmRender(bmFilteredList);
|
||||||
|
}
|
||||||
|
function bmReadDecoders() {
|
||||||
|
return (bridge.decoderRegistry || []).filter((d) => d.bookmark_selectable).filter((d) => bmEl("bm-dec-" + d.id)?.checked).map((d) => d.id);
|
||||||
|
}
|
||||||
|
function bmWriteDecoders(decoders) {
|
||||||
|
const set = new Set(decoders || []);
|
||||||
|
(bridge.decoderRegistry || []).filter((d) => d.bookmark_selectable).forEach((d) => {
|
||||||
|
const el = bmEl("bm-dec-" + d.id);
|
||||||
|
if (el) el.checked = set.has(d.id);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
function bmBuildDecoderCheckboxes() {
|
||||||
|
const container = bmEl("bm-decoder-checkboxes");
|
||||||
|
if (!container) return;
|
||||||
|
container.innerHTML = "";
|
||||||
|
(bridge.decoderRegistry || []).filter((d) => d.bookmark_selectable).forEach((d) => {
|
||||||
|
const label = document.createElement("label");
|
||||||
|
label.className = "bm-decoder-check";
|
||||||
|
label.innerHTML = '<input type="checkbox" id="bm-dec-' + d.id + '" value="' + d.id + '" /> ' + d.label;
|
||||||
|
container.appendChild(label);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
function bmOpenForm(bm) {
|
||||||
|
const wrap = bmEl("bm-form-wrap");
|
||||||
|
if (!wrap) return;
|
||||||
|
bmEditScope = bm ? bm.scope || bmScope : null;
|
||||||
|
bmBuildDecoderCheckboxes();
|
||||||
|
bmEl("bm-id").value = bm ? bm.id : "";
|
||||||
|
bmEl("bm-name").value = bm ? bm.name : "";
|
||||||
|
bmEl("bm-freq").value = bm ? String(bm.freq_hz) : "";
|
||||||
|
bmEl("bm-mode").value = bm ? bm.mode : "";
|
||||||
|
bmEl("bm-bw").value = bm?.bandwidth_hz ? String(bm.bandwidth_hz) : "";
|
||||||
|
bmEl("bm-locator").value = bm ? bm.locator || "" : "";
|
||||||
|
bmEl("bm-category-input").value = bm ? bm.category || "" : "";
|
||||||
|
bmEl("bm-comment").value = bm ? bm.comment || "" : "";
|
||||||
|
bmWriteDecoders(bm?.decoders ?? []);
|
||||||
|
bmEl("bm-form-title").textContent = bm ? "Edit Bookmark" : "Add Bookmark";
|
||||||
|
wrap.style.display = "flex";
|
||||||
|
bmEl("bm-name").focus();
|
||||||
|
}
|
||||||
|
function bmCloseForm() {
|
||||||
|
const wrap = bmEl("bm-form-wrap");
|
||||||
|
if (wrap) wrap.style.display = "none";
|
||||||
|
}
|
||||||
|
function bmPrefillFromStatus() {
|
||||||
|
if (typeof bridge.lastFreqHz === "number" && Number.isFinite(bridge.lastFreqHz)) {
|
||||||
|
bmEl("bm-freq").value = String(Math.round(bridge.lastFreqHz));
|
||||||
|
}
|
||||||
|
if (typeof bridge.lastModeName === "string" && bridge.lastModeName) {
|
||||||
|
bmEl("bm-mode").value = bridge.lastModeName;
|
||||||
|
}
|
||||||
|
if (typeof bridge.currentBandwidthHz === "number" && bridge.currentBandwidthHz > 0) {
|
||||||
|
bmEl("bm-bw").value = String(Math.round(bridge.currentBandwidthHz));
|
||||||
|
}
|
||||||
|
const activeDecoders = (bridge.decoderRegistry || []).filter((d) => d.bookmark_selectable && d.activation === "toggle").filter((d) => {
|
||||||
|
const btn = bmEl(d.id + "-decode-toggle-btn");
|
||||||
|
return btn && btn.dataset.enabled === "true";
|
||||||
|
}).map((d) => d.id);
|
||||||
|
bmWriteDecoders(activeDecoders);
|
||||||
|
}
|
||||||
|
async function bmSave(e) {
|
||||||
|
e.preventDefault();
|
||||||
|
const id = bmEl("bm-id").value;
|
||||||
|
const name = bmEl("bm-name").value.trim();
|
||||||
|
const freqStr = bmEl("bm-freq").value;
|
||||||
|
const freq_hz = parseInt(freqStr, 10);
|
||||||
|
const mode = bmEl("bm-mode").value.trim();
|
||||||
|
const bwStr = bmEl("bm-bw").value;
|
||||||
|
const bandwidth_hz = bwStr ? parseInt(bwStr, 10) : null;
|
||||||
|
const locator = bmEl("bm-locator").value.trim().toUpperCase();
|
||||||
|
const category = bmEl("bm-category-input").value.trim();
|
||||||
|
const comment = bmEl("bm-comment").value.trim();
|
||||||
|
const decoders = bmReadDecoders();
|
||||||
|
const formError = bmEl("bm-form-error");
|
||||||
|
if (formError) formError.textContent = "";
|
||||||
|
if (!name || !Number.isFinite(freq_hz) || !mode) {
|
||||||
|
if (formError) formError.textContent = "Enter a name, a valid frequency, and a mode.";
|
||||||
|
const invalid = !name ? bmEl("bm-name") : !Number.isFinite(freq_hz) ? bmEl("bm-freq") : bmEl("bm-mode");
|
||||||
|
invalid?.focus();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const body = {
|
||||||
|
name,
|
||||||
|
freq_hz,
|
||||||
|
mode,
|
||||||
|
bandwidth_hz,
|
||||||
|
locator: locator || null,
|
||||||
|
category,
|
||||||
|
comment,
|
||||||
|
decoders
|
||||||
|
};
|
||||||
|
try {
|
||||||
|
let resp;
|
||||||
|
if (id) {
|
||||||
|
resp = await fetch("/bookmarks/" + encodeURIComponent(id) + bmScopeParam(false, bmEditScope), {
|
||||||
|
method: "PUT",
|
||||||
|
headers: { "Content-Type": "application/json" },
|
||||||
|
body: JSON.stringify(body)
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
resp = await fetch("/bookmarks" + bmScopeParam(false), {
|
||||||
|
method: "POST",
|
||||||
|
headers: { "Content-Type": "application/json" },
|
||||||
|
body: JSON.stringify(body)
|
||||||
|
});
|
||||||
|
}
|
||||||
|
if (!resp.ok) {
|
||||||
|
const text = await resp.text();
|
||||||
|
if (resp.status === 409) {
|
||||||
|
throw new Error("A bookmark for that frequency already exists.");
|
||||||
|
}
|
||||||
|
throw new Error(text || `HTTP ${resp.status}`);
|
||||||
|
}
|
||||||
|
bmCloseForm();
|
||||||
|
await bmFetch(bmEl("bm-category-filter").value);
|
||||||
|
} catch (err) {
|
||||||
|
console.error("Failed to save bookmark:", err);
|
||||||
|
if (formError) formError.textContent = "Failed to save bookmark: " + errorMessage(err);
|
||||||
|
bridge.trxUi.notify?.("Bookmark could not be saved", { kind: "error" });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
async function bmDelete(id) {
|
||||||
|
if (!await bridge.trxUi.confirm({ title: "Delete bookmark?", message: "This bookmark will be permanently removed.", confirmLabel: "Delete" })) return;
|
||||||
|
const bm = bmList.find((b) => b.id === id);
|
||||||
|
const scope = bm ? bm.scope : void 0;
|
||||||
|
try {
|
||||||
|
const resp = await fetch("/bookmarks/" + encodeURIComponent(id) + bmScopeParam(false, scope), {
|
||||||
|
method: "DELETE"
|
||||||
|
});
|
||||||
|
if (!resp.ok) throw new Error(`HTTP ${resp.status}`);
|
||||||
|
await bmFetch(bmEl("bm-category-filter").value);
|
||||||
|
} catch (err) {
|
||||||
|
console.error("Failed to delete bookmark:", err);
|
||||||
|
bridge.trxUi.notify?.("Failed to delete bookmark: " + errorMessage(err), { kind: "error" });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
function bmApply(bm) {
|
||||||
|
try {
|
||||||
|
if (typeof bridge.modeEl !== "undefined" && bridge.modeEl) {
|
||||||
|
bridge.modeEl.value = (bm.mode || "").toUpperCase();
|
||||||
|
}
|
||||||
|
if (bm.bandwidth_hz) {
|
||||||
|
if (typeof bridge.currentBandwidthHz !== "undefined") {
|
||||||
|
bridge.currentBandwidthHz = bm.bandwidth_hz;
|
||||||
|
}
|
||||||
|
bridge.currentBandwidthHz = bm.bandwidth_hz;
|
||||||
|
if (typeof bridge.syncBandwidthInput === "function") {
|
||||||
|
bridge.syncBandwidthInput(bm.bandwidth_hz);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (typeof bridge.applyLocalTunedFrequency === "function") {
|
||||||
|
if (typeof bridge._freqOptimisticSeq !== "undefined") {
|
||||||
|
++bridge._freqOptimisticSeq;
|
||||||
|
bridge._freqOptimisticHz = bm.freq_hz;
|
||||||
|
}
|
||||||
|
bridge.applyLocalTunedFrequency(bm.freq_hz, true);
|
||||||
|
}
|
||||||
|
if (typeof bridge.scheduleSpectrumDraw === "function" && typeof bridge.lastSpectrumData !== "undefined" && bridge.lastSpectrumData) {
|
||||||
|
bridge.scheduleSpectrumDraw();
|
||||||
|
}
|
||||||
|
const tunePromise = (async () => {
|
||||||
|
await bridge.trx?.modules?.vchan?.takeSchedulerControl();
|
||||||
|
const onVirtual = await bridge.trx?.modules?.vchan?.interceptMode(bm.mode) ?? false;
|
||||||
|
if (!onVirtual) {
|
||||||
|
await bridge.postPath("/set_mode?mode=" + encodeURIComponent(bm.mode));
|
||||||
|
}
|
||||||
|
if (bm.bandwidth_hz) {
|
||||||
|
const bwHandledByVchan = await bridge.trx?.modules?.vchan?.interceptBandwidth(bm.bandwidth_hz) ?? false;
|
||||||
|
if (!bwHandledByVchan) {
|
||||||
|
await bridge.postPath(`/set_bandwidth?hz=${bm.bandwidth_hz}`);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (typeof bridge.setRigFrequency === "function") {
|
||||||
|
await bridge.setRigFrequency(bm.freq_hz);
|
||||||
|
} else {
|
||||||
|
await bridge.postPath(`/set_freq?hz=${bm.freq_hz}`);
|
||||||
|
}
|
||||||
|
})();
|
||||||
|
const hasDecoders = Array.isArray(bm.decoders) && bm.decoders.length > 0;
|
||||||
|
const modeUp = (bm.mode || "").toUpperCase();
|
||||||
|
const allToggleDecoders = (bridge.decoderRegistry || []).filter(
|
||||||
|
(d) => d.activation === "toggle"
|
||||||
|
);
|
||||||
|
const decoderPromise = allToggleDecoders.length ? (async () => {
|
||||||
|
let statusUrl = "/status";
|
||||||
|
if (typeof bridge.lastActiveRigId !== "undefined" && bridge.lastActiveRigId) {
|
||||||
|
statusUrl += "?remote=" + encodeURIComponent(bridge.lastActiveRigId);
|
||||||
|
}
|
||||||
|
const statusResp = await fetch(statusUrl);
|
||||||
|
if (!statusResp.ok) return;
|
||||||
|
const st = await statusResp.json();
|
||||||
|
const toggles = [];
|
||||||
|
for (const d of allToggleDecoders) {
|
||||||
|
const statusKey = d.id.replace(/-/g, "_") + "_decode_enabled";
|
||||||
|
const currentlyOn = !!st[statusKey];
|
||||||
|
const compatible = Array.isArray(d.active_modes) && d.active_modes.includes(modeUp);
|
||||||
|
let wanted;
|
||||||
|
if (!compatible) {
|
||||||
|
wanted = false;
|
||||||
|
} else if (hasDecoders) {
|
||||||
|
wanted = bm.decoders?.includes(d.id) ?? false;
|
||||||
|
} else {
|
||||||
|
wanted = currentlyOn;
|
||||||
|
}
|
||||||
|
if (wanted !== currentlyOn) {
|
||||||
|
toggles.push(bridge.postPath("/toggle_" + d.id.replace(/-/g, "_") + "_decode"));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (toggles.length) await Promise.all(toggles);
|
||||||
|
})() : Promise.resolve();
|
||||||
|
void Promise.all([tunePromise, decoderPromise]).catch((error) => {
|
||||||
|
console.error("Bookmark apply background error:", error);
|
||||||
|
});
|
||||||
|
} catch (err) {
|
||||||
|
console.error("Failed to apply bookmark:", err);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
bridge.trx ??= {};
|
||||||
|
bridge.trx.modules ??= {};
|
||||||
|
bridge.trx.modules.bookmarks = {
|
||||||
|
get overlayList() {
|
||||||
|
return bmOverlayList;
|
||||||
|
},
|
||||||
|
get overlayRevision() {
|
||||||
|
return bmOverlayRevision;
|
||||||
|
},
|
||||||
|
refreshOverlay: bmFetchOverlay,
|
||||||
|
invalidateColors() {
|
||||||
|
bmOverlayRevision += 1;
|
||||||
|
},
|
||||||
|
apply: bmApply,
|
||||||
|
formatFrequency: bmFmtFreq,
|
||||||
|
fetch: bmFetch,
|
||||||
|
populateScopePicker: bmPopulateScopePicker
|
||||||
|
};
|
||||||
|
function bmUpdateSelectionUi() {
|
||||||
|
const count = bmSelected.size;
|
||||||
|
const canCtrl = bmCanControl();
|
||||||
|
const visible = count > 0 && canCtrl;
|
||||||
|
const btn = bmEl("bm-del-selected-btn");
|
||||||
|
const countEl = bmEl("bm-del-selected-count");
|
||||||
|
if (btn) btn.style.display = visible ? "" : "none";
|
||||||
|
if (countEl) countEl.textContent = String(count);
|
||||||
|
const moveWrap = bmEl("bm-move-selected-wrap");
|
||||||
|
const moveCountEl = bmEl("bm-move-selected-count");
|
||||||
|
if (moveWrap) moveWrap.style.display = visible ? "" : "none";
|
||||||
|
if (moveCountEl) moveCountEl.textContent = String(count);
|
||||||
|
if (visible) bmPopulateMoveTarget();
|
||||||
|
const selectAllBtn = bmEl("bm-select-all-btn");
|
||||||
|
if (selectAllBtn && bmCanControl()) {
|
||||||
|
const allSelected = bmFilteredList.length > 0 && bmFilteredList.every((bm) => bmSelected.has(bm.id));
|
||||||
|
selectAllBtn.textContent = allSelected ? "Deselect All" : "Select All";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
function bmPopulateMoveTarget() {
|
||||||
|
const sel = bmEl("bm-move-target");
|
||||||
|
if (!sel) return;
|
||||||
|
const rigIds = typeof bridge.lastRigIds !== "undefined" && Array.isArray(bridge.lastRigIds) ? bridge.lastRigIds : [];
|
||||||
|
const displayNames = typeof bridge.lastRigDisplayNames !== "undefined" ? bridge.lastRigDisplayNames : {};
|
||||||
|
const prev = sel.value;
|
||||||
|
sel.innerHTML = "";
|
||||||
|
if (bmScope !== "general") {
|
||||||
|
const opt = document.createElement("option");
|
||||||
|
opt.value = "general";
|
||||||
|
opt.textContent = "General";
|
||||||
|
sel.appendChild(opt);
|
||||||
|
}
|
||||||
|
rigIds.forEach((id) => {
|
||||||
|
if (id === bmScope) return;
|
||||||
|
const opt = document.createElement("option");
|
||||||
|
opt.value = id;
|
||||||
|
opt.textContent = displayNames[id] || id;
|
||||||
|
sel.appendChild(opt);
|
||||||
|
});
|
||||||
|
if (prev && sel.querySelector(`option[value="${CSS.escape(prev)}"]`)) {
|
||||||
|
sel.value = prev;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
async function bmMoveSelected() {
|
||||||
|
const ids = Array.from(bmSelected);
|
||||||
|
if (ids.length === 0) return;
|
||||||
|
const target = bmEl("bm-move-target")?.value;
|
||||||
|
if (!target) return;
|
||||||
|
const targetLabel = bmEl("bm-move-target")?.selectedOptions[0]?.textContent || target;
|
||||||
|
if (!await bridge.trxUi.confirm({
|
||||||
|
title: "Move selected bookmarks?",
|
||||||
|
message: `${ids.length} bookmark${ids.length > 1 ? "s" : ""} will move to “${targetLabel}”.`,
|
||||||
|
confirmLabel: "Move",
|
||||||
|
danger: false
|
||||||
|
})) return;
|
||||||
|
try {
|
||||||
|
const byScope = {};
|
||||||
|
for (const id of ids) {
|
||||||
|
const bm = bmList.find((b) => b.id === id);
|
||||||
|
const scope = bm?.scope || bmScope;
|
||||||
|
if (scope === target) continue;
|
||||||
|
(byScope[scope] ||= []).push(id);
|
||||||
|
}
|
||||||
|
await Promise.all(Object.entries(byScope).map(
|
||||||
|
([scope, scopeIds]) => fetch("/bookmarks/batch_move" + bmScopeParam(false, scope), {
|
||||||
|
method: "POST",
|
||||||
|
headers: { "Content-Type": "application/json" },
|
||||||
|
body: JSON.stringify({ ids: scopeIds, to: target })
|
||||||
|
}).then((r) => {
|
||||||
|
if (!r.ok) throw new Error(`HTTP ${r.status}`);
|
||||||
|
})
|
||||||
|
));
|
||||||
|
bmSelected.clear();
|
||||||
|
bmUpdateSelectionUi();
|
||||||
|
await bmFetch(bmEl("bm-category-filter").value);
|
||||||
|
} catch (err) {
|
||||||
|
console.error("Failed to move bookmarks:", err);
|
||||||
|
bridge.trxUi.notify?.("Failed to move bookmarks: " + errorMessage(err), { kind: "error" });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
function bmSyncSelectAllCheckbox() {
|
||||||
|
const selectAll = bmEl("bm-select-all");
|
||||||
|
if (!selectAll) return;
|
||||||
|
const checkboxes = document.querySelectorAll(".bm-row-sel");
|
||||||
|
if (checkboxes.length === 0) {
|
||||||
|
selectAll.checked = false;
|
||||||
|
selectAll.indeterminate = false;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const checkedCount = Array.from(checkboxes).filter((cb) => cb.checked).length;
|
||||||
|
selectAll.checked = checkedCount === checkboxes.length;
|
||||||
|
selectAll.indeterminate = checkedCount > 0 && checkedCount < checkboxes.length;
|
||||||
|
}
|
||||||
|
async function bmDeleteSelected() {
|
||||||
|
const ids = Array.from(bmSelected);
|
||||||
|
if (ids.length === 0) return;
|
||||||
|
if (!await bridge.trxUi.confirm({
|
||||||
|
title: "Delete selected bookmarks?",
|
||||||
|
message: `${ids.length} bookmark${ids.length > 1 ? "s" : ""} will be permanently removed.`,
|
||||||
|
confirmLabel: "Delete"
|
||||||
|
})) return;
|
||||||
|
try {
|
||||||
|
const byScope = {};
|
||||||
|
for (const id of ids) {
|
||||||
|
const bm = bmList.find((b) => b.id === id);
|
||||||
|
const scope = bm?.scope || bmScope;
|
||||||
|
(byScope[scope] ||= []).push(id);
|
||||||
|
}
|
||||||
|
await Promise.all(Object.entries(byScope).map(
|
||||||
|
([scope, scopeIds]) => fetch("/bookmarks/batch_delete" + bmScopeParam(false, scope), {
|
||||||
|
method: "POST",
|
||||||
|
headers: { "Content-Type": "application/json" },
|
||||||
|
body: JSON.stringify({ ids: scopeIds })
|
||||||
|
}).then((r) => {
|
||||||
|
if (!r.ok) throw new Error(`HTTP ${r.status}`);
|
||||||
|
})
|
||||||
|
));
|
||||||
|
bmSelected.clear();
|
||||||
|
bmUpdateSelectionUi();
|
||||||
|
await bmFetch(bmEl("bm-category-filter").value);
|
||||||
|
} catch (err) {
|
||||||
|
console.error("Failed to delete bookmarks:", err);
|
||||||
|
bridge.trxUi.notify?.("Failed to delete bookmarks: " + errorMessage(err), { kind: "error" });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
function bmPopulateScopePicker() {
|
||||||
|
const picker = bmEl("bm-scope-picker");
|
||||||
|
if (!picker) return;
|
||||||
|
const rigIds = typeof bridge.lastRigIds !== "undefined" && Array.isArray(bridge.lastRigIds) ? bridge.lastRigIds : [];
|
||||||
|
const displayNames = typeof bridge.lastRigDisplayNames !== "undefined" ? bridge.lastRigDisplayNames : {};
|
||||||
|
const prev = picker.value;
|
||||||
|
while (picker.options.length > 1) picker.remove(1);
|
||||||
|
rigIds.forEach((id) => {
|
||||||
|
const opt = document.createElement("option");
|
||||||
|
opt.value = id;
|
||||||
|
opt.textContent = displayNames[id] || id;
|
||||||
|
picker.appendChild(opt);
|
||||||
|
});
|
||||||
|
if (prev && (prev === "general" || rigIds.includes(prev))) {
|
||||||
|
picker.value = prev;
|
||||||
|
} else {
|
||||||
|
picker.value = "general";
|
||||||
|
}
|
||||||
|
bmScope = picker.value;
|
||||||
|
}
|
||||||
|
(function initBookmarks() {
|
||||||
|
bmSyncAccess();
|
||||||
|
bmBuildDecoderCheckboxes();
|
||||||
|
if (typeof bridge.onDecoderRegistryReady === "function") {
|
||||||
|
bridge.onDecoderRegistryReady(bmBuildDecoderCheckboxes);
|
||||||
|
}
|
||||||
|
bmPopulateScopePicker();
|
||||||
|
const scopePicker = bmEl("bm-scope-picker");
|
||||||
|
if (scopePicker) {
|
||||||
|
scopePicker.addEventListener("change", (e) => {
|
||||||
|
bmScope = e.currentTarget.value;
|
||||||
|
void bmFetch(bmEl("bm-category-filter").value || "");
|
||||||
|
});
|
||||||
|
}
|
||||||
|
document.querySelector(".tab-bar")?.addEventListener("click", (e) => {
|
||||||
|
const btn = e.target instanceof Element ? e.target.closest('.tab[data-tab="bookmarks"]') : null;
|
||||||
|
if (!btn) return;
|
||||||
|
void bmFetch(bmEl("bm-category-filter").value);
|
||||||
|
});
|
||||||
|
bmEl("bm-add-btn").addEventListener("click", () => {
|
||||||
|
bmOpenForm(null);
|
||||||
|
bmPrefillFromStatus();
|
||||||
|
});
|
||||||
|
bmEl("bm-category-filter").addEventListener("change", (e) => {
|
||||||
|
void bmFetch(e.currentTarget.value);
|
||||||
|
});
|
||||||
|
bmEl("bm-mode-filter").addEventListener("change", () => {
|
||||||
|
bmApplyFilters();
|
||||||
|
});
|
||||||
|
bmEl("bm-text-filter").addEventListener("input", () => {
|
||||||
|
bmApplyFilters();
|
||||||
|
});
|
||||||
|
bmEl("bm-page-prev").addEventListener("click", () => {
|
||||||
|
bmChangePage(-1);
|
||||||
|
});
|
||||||
|
bmEl("bm-page-next").addEventListener("click", () => {
|
||||||
|
bmChangePage(1);
|
||||||
|
});
|
||||||
|
bmEl("bm-form").addEventListener("submit", (event) => {
|
||||||
|
void bmSave(event);
|
||||||
|
});
|
||||||
|
bmEl("bm-form-cancel").addEventListener("click", bmCloseForm);
|
||||||
|
const formWrap = bmEl("bm-form-wrap");
|
||||||
|
if (formWrap) {
|
||||||
|
formWrap.addEventListener("click", (e) => {
|
||||||
|
if (e.target === formWrap) bmCloseForm();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
document.addEventListener("keydown", (e) => {
|
||||||
|
if (e.key === "Escape" && bmEl("bm-form-wrap")?.style.display === "flex") {
|
||||||
|
bmCloseForm();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
bmEl("bm-select-all").addEventListener("change", (e) => {
|
||||||
|
const checked = e.currentTarget.checked;
|
||||||
|
document.querySelectorAll(".bm-row-sel").forEach((cb) => {
|
||||||
|
cb.checked = checked;
|
||||||
|
const id = cb.dataset.bmId;
|
||||||
|
if (!id) return;
|
||||||
|
if (checked) bmSelected.add(id);
|
||||||
|
else bmSelected.delete(id);
|
||||||
|
});
|
||||||
|
bmUpdateSelectionUi();
|
||||||
|
});
|
||||||
|
bmEl("bm-select-all-btn").addEventListener("click", () => {
|
||||||
|
const allSelected = bmFilteredList.length > 0 && bmFilteredList.every((bm) => bmSelected.has(bm.id));
|
||||||
|
if (allSelected) {
|
||||||
|
bmSelected.clear();
|
||||||
|
} else {
|
||||||
|
bmFilteredList.forEach((bm) => bmSelected.add(bm.id));
|
||||||
|
}
|
||||||
|
document.querySelectorAll(".bm-row-sel").forEach((cb) => {
|
||||||
|
cb.checked = !!cb.dataset.bmId && bmSelected.has(cb.dataset.bmId);
|
||||||
|
});
|
||||||
|
bmSyncSelectAllCheckbox();
|
||||||
|
bmUpdateSelectionUi();
|
||||||
|
});
|
||||||
|
bmEl("bm-del-selected-btn").addEventListener("click", () => {
|
||||||
|
void bmDeleteSelected();
|
||||||
|
});
|
||||||
|
bmEl("bm-move-selected-btn").addEventListener("click", () => {
|
||||||
|
void bmMoveSelected();
|
||||||
|
});
|
||||||
|
bmEl("bm-tbody").addEventListener("click", (e) => {
|
||||||
|
void (async () => {
|
||||||
|
if (!(e.target instanceof Element)) return;
|
||||||
|
const checkbox = e.target.closest(".bm-row-sel");
|
||||||
|
if (checkbox) {
|
||||||
|
const id = checkbox.dataset.bmId;
|
||||||
|
if (!id) return;
|
||||||
|
if (checkbox.checked) bmSelected.add(id);
|
||||||
|
else bmSelected.delete(id);
|
||||||
|
bmSyncSelectAllCheckbox();
|
||||||
|
bmUpdateSelectionUi();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const tuneBtn = e.target.closest(".bm-tune-btn");
|
||||||
|
const editBtn = e.target.closest(".bm-edit-btn");
|
||||||
|
const delBtn = e.target.closest(".bm-del-btn");
|
||||||
|
if (tuneBtn) {
|
||||||
|
const bm = bmList.find((b) => b.id === tuneBtn.dataset.bmId);
|
||||||
|
if (bm) bmApply(bm);
|
||||||
|
} else if (editBtn) {
|
||||||
|
const bm = bmList.find((b) => b.id === editBtn.dataset.bmId);
|
||||||
|
if (bm) bmOpenForm(bm);
|
||||||
|
} else if (delBtn) {
|
||||||
|
const id = delBtn.dataset.bmId;
|
||||||
|
if (id) await bmDelete(id);
|
||||||
|
}
|
||||||
|
})();
|
||||||
|
});
|
||||||
|
void bmFetch("");
|
||||||
|
})();
|
||||||
@@ -0,0 +1,112 @@
|
|||||||
|
// src/plugins/aprs-shared.ts
|
||||||
|
function aprsPacketCategory(packet) {
|
||||||
|
const type = (packet.type ?? "").toLowerCase();
|
||||||
|
const info = (packet.info ?? "").toLowerCase();
|
||||||
|
if (packet.lat != null && packet.lon != null || type.includes("position")) return "position";
|
||||||
|
if (type.includes("message") || info.startsWith(":")) return "message";
|
||||||
|
if (type.includes("weather") || info.startsWith("_")) return "weather";
|
||||||
|
if (type.includes("telemetry") || info.startsWith("t#")) return "telemetry";
|
||||||
|
return "other";
|
||||||
|
}
|
||||||
|
function aprsCategoryLabel(category) {
|
||||||
|
switch (category) {
|
||||||
|
case "position":
|
||||||
|
return "Position";
|
||||||
|
case "message":
|
||||||
|
return "Message";
|
||||||
|
case "weather":
|
||||||
|
return "Weather";
|
||||||
|
case "telemetry":
|
||||||
|
return "Telemetry";
|
||||||
|
default:
|
||||||
|
return "Other";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
function aprsAgeText(timestampMs) {
|
||||||
|
if (typeof timestampMs !== "number" || !Number.isFinite(timestampMs)) return "just now";
|
||||||
|
const seconds = Math.round(Math.max(0, Date.now() - timestampMs) / 1e3);
|
||||||
|
if (seconds < 5) return "just now";
|
||||||
|
if (seconds < 60) return `${String(seconds)}s ago`;
|
||||||
|
const minutes = Math.round(seconds / 60);
|
||||||
|
if (minutes < 60) return `${String(minutes)}m ago`;
|
||||||
|
return `${String(Math.round(minutes / 60))}h ago`;
|
||||||
|
}
|
||||||
|
function aprsPacketSignature(packet) {
|
||||||
|
return [
|
||||||
|
packet.srcCall ?? "",
|
||||||
|
packet.destCall ?? "",
|
||||||
|
packet.path ?? "",
|
||||||
|
packet.info ?? "",
|
||||||
|
packet.type ?? "",
|
||||||
|
packet.lat?.toFixed(4) ?? "",
|
||||||
|
packet.lon?.toFixed(4) ?? ""
|
||||||
|
].join("|");
|
||||||
|
}
|
||||||
|
function collapseAprsDuplicates(packets) {
|
||||||
|
const seen = /* @__PURE__ */ new Set();
|
||||||
|
return packets.filter((packet) => {
|
||||||
|
const signature = aprsPacketSignature(packet);
|
||||||
|
if (seen.has(signature)) return false;
|
||||||
|
seen.add(signature);
|
||||||
|
return true;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
function aprsHexBytes(bytes) {
|
||||||
|
if (!bytes?.length) return "--";
|
||||||
|
return bytes.map((byte) => byte.toString(16).toUpperCase().padStart(2, "0")).join(" ");
|
||||||
|
}
|
||||||
|
function renderAprsInfo(packet) {
|
||||||
|
if (packet.info_bytes?.length) {
|
||||||
|
return packet.info_bytes.map((byte) => renderAprsByte(byte)).join("");
|
||||||
|
}
|
||||||
|
return Array.from(packet.info ?? "", (character) => renderAprsCharacter(character)).join("");
|
||||||
|
}
|
||||||
|
function renderAprsByte(byte) {
|
||||||
|
return byte >= 32 && byte <= 126 ? escapeAprsCharacter(String.fromCharCode(byte)) : `<span class="aprs-byte">0x${byte.toString(16).toUpperCase().padStart(2, "0")}</span>`;
|
||||||
|
}
|
||||||
|
function renderAprsCharacter(character) {
|
||||||
|
const code = character.charCodeAt(0);
|
||||||
|
return code >= 32 && code <= 126 ? escapeAprsCharacter(character) : `<span class="aprs-byte">0x${code.toString(16).toUpperCase().padStart(2, "0")}</span>`;
|
||||||
|
}
|
||||||
|
function escapeAprsCharacter(character) {
|
||||||
|
if (character === "<") return "<";
|
||||||
|
if (character === ">") return ">";
|
||||||
|
if (character === "&") return "&";
|
||||||
|
if (character === '"') return """;
|
||||||
|
return character;
|
||||||
|
}
|
||||||
|
function renderLocalAprsSymbol(packet, escapeHtml) {
|
||||||
|
if (!packet.symbolTable || !packet.symbolCode) return "";
|
||||||
|
const symbol = escapeHtml(packet.symbolCode);
|
||||||
|
const table = packet.symbolTable === "/" ? "Primary" : "Alternate";
|
||||||
|
return `<span class="aprs-symbol aprs-symbol-local" title="${table} APRS symbol ${symbol}">${symbol}</span>`;
|
||||||
|
}
|
||||||
|
function normalizeAprsPacket(packet, receiver) {
|
||||||
|
return {
|
||||||
|
rig_id: packet.rig_id || null,
|
||||||
|
receiver,
|
||||||
|
srcCall: packet.src_call ?? "",
|
||||||
|
destCall: packet.dest_call ?? "",
|
||||||
|
path: packet.path ?? "",
|
||||||
|
info: packet.info ?? "",
|
||||||
|
info_bytes: packet.info_bytes ?? [],
|
||||||
|
type: packet.packet_type ?? "",
|
||||||
|
crcOk: packet.crc_ok ?? false,
|
||||||
|
ts_ms: packet.ts_ms ?? null,
|
||||||
|
lat: packet.lat ?? null,
|
||||||
|
lon: packet.lon ?? null,
|
||||||
|
symbolTable: packet.symbol_table ?? null,
|
||||||
|
symbolCode: packet.symbol_code ?? null
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
export {
|
||||||
|
aprsPacketCategory,
|
||||||
|
aprsCategoryLabel,
|
||||||
|
aprsAgeText,
|
||||||
|
collapseAprsDuplicates,
|
||||||
|
aprsHexBytes,
|
||||||
|
renderAprsInfo,
|
||||||
|
renderLocalAprsSymbol,
|
||||||
|
normalizeAprsPacket
|
||||||
|
};
|
||||||
@@ -0,0 +1,269 @@
|
|||||||
|
// src/plugins/ftx-family.ts
|
||||||
|
var bridge = window;
|
||||||
|
function finiteNumber(value) {
|
||||||
|
const number = typeof value === "number" ? value : Number(value);
|
||||||
|
return Number.isFinite(number) ? number : null;
|
||||||
|
}
|
||||||
|
function isAlphaNumeric(value) {
|
||||||
|
return value !== void 0 && /[A-Za-z0-9]/.test(value);
|
||||||
|
}
|
||||||
|
function isGrid(value) {
|
||||||
|
const normalized = value.trim().toUpperCase();
|
||||||
|
return /^[A-R]{2}\d{2}(?:[A-X]{2})?$/.test(normalized) && normalized !== "RR73" && normalized !== "73" && normalized !== "RR";
|
||||||
|
}
|
||||||
|
function escapeFtxHtml(input) {
|
||||||
|
return input.replaceAll("&", "&").replaceAll("<", "<").replaceAll(">", ">").replaceAll('"', """);
|
||||||
|
}
|
||||||
|
function extractFtxGrids(message) {
|
||||||
|
return [...new Set(message.toUpperCase().split(/[^A-Z0-9]+/).filter(isGrid))];
|
||||||
|
}
|
||||||
|
function tokenize(message) {
|
||||||
|
return message.toUpperCase().split(/[^A-Z0-9/]+/).filter(Boolean);
|
||||||
|
}
|
||||||
|
function isCallsign(token) {
|
||||||
|
return token !== void 0 && token.length >= 3 && token.length <= 12 && !["CQ", "DE", "QRZ", "DX"].includes(token) && !isGrid(token) && /^[A-Z0-9/]{1,5}\d[A-Z0-9/]{1,6}$/.test(token);
|
||||||
|
}
|
||||||
|
function extractFtxLocatorDetails(message) {
|
||||||
|
const tokens = tokenize(message);
|
||||||
|
const grids = extractFtxGrids(message);
|
||||||
|
const gridIndex = tokens.findIndex(isGrid);
|
||||||
|
const callsigns = tokens.slice(0, gridIndex < 0 ? tokens.length : gridIndex).filter(isCallsign);
|
||||||
|
const directed = callsigns.length >= 2 && !["CQ", "DE", "QRZ"].includes(tokens[0] ?? "");
|
||||||
|
const source = directed ? callsigns[1] ?? null : callsigns[0] ?? null;
|
||||||
|
const target = directed ? callsigns[0] ?? null : null;
|
||||||
|
return grids.map((grid) => ({ grid, station: source, source, target }));
|
||||||
|
}
|
||||||
|
function extractFtxCallsign(message) {
|
||||||
|
return extractFtxLocatorDetails(message)[0]?.station ?? tokenize(message).find(isCallsign) ?? null;
|
||||||
|
}
|
||||||
|
function renderFtxMessage(message) {
|
||||||
|
let html = "";
|
||||||
|
let index = 0;
|
||||||
|
while (index < message.length) {
|
||||||
|
if (!isAlphaNumeric(message[index])) {
|
||||||
|
html += escapeFtxHtml(message[index] ?? "");
|
||||||
|
index += 1;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
let end = index + 1;
|
||||||
|
while (end < message.length && isAlphaNumeric(message[end])) end += 1;
|
||||||
|
const token = message.slice(index, end);
|
||||||
|
const grid = token.toUpperCase();
|
||||||
|
html += isGrid(grid) ? `<span class="ft8-locator" data-locator-grid="${grid}" role="button" tabindex="0" aria-label="Show locator ${grid} on map">${grid}</span>` : escapeFtxHtml(token);
|
||||||
|
index = end;
|
||||||
|
}
|
||||||
|
return html;
|
||||||
|
}
|
||||||
|
function installFtxCompatibilityHelpers() {
|
||||||
|
bridge.renderFt8Message = renderFtxMessage;
|
||||||
|
bridge.ft8EscapeHtml = escapeFtxHtml;
|
||||||
|
bridge.ft8ExtractLocatorDetails = extractFtxLocatorDetails;
|
||||||
|
bridge.ft8ExtractAllGrids = extractFtxGrids;
|
||||||
|
bridge.ft8ExtractLikelyCallsign = extractFtxCallsign;
|
||||||
|
}
|
||||||
|
function initializeFt8FamilyBar() {
|
||||||
|
const labels = { ft8: "FT8", ft4: "FT4", ft2: "FT2" };
|
||||||
|
const builders = {};
|
||||||
|
const dismissed = { ft8: 0, ft4: 0, ft2: 0 };
|
||||||
|
const overlay = document.getElementById("ft8-bar-overlay");
|
||||||
|
let active = "ft8";
|
||||||
|
const update = () => {
|
||||||
|
if (!overlay) return;
|
||||||
|
const mode = (document.getElementById("mode")?.value ?? "").toUpperCase();
|
||||||
|
const result = builders[active]?.();
|
||||||
|
if (mode !== "DIG" && mode !== "USB" || !result || result.count === 0 || result.newestTsMs <= dismissed[active]) {
|
||||||
|
overlay.style.display = "none";
|
||||||
|
overlay.innerHTML = "";
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const label = labels[active];
|
||||||
|
overlay.innerHTML = `<div class="aprs-bar-header"><span class="aprs-bar-title"><span class="aprs-bar-title-word">${label}</span><span class="aprs-bar-title-word">Live</span></span><span class="aprs-bar-actions"><span class="aprs-bar-window">Last 15 minutes</span><span class="aprs-bar-clear-wrap"><span class="aprs-bar-clear" role="button" tabindex="0" onclick="window.clearFt8Bar()" onkeydown="if(event.key==='Enter'||event.key===' '){event.preventDefault();window.clearFt8Bar();}" aria-label="Clear ${label} overlay">Clear</span></span><button class="aprs-bar-close" type="button" onclick="window.closeFt8Bar()" aria-label="Close ${label} overlay">×</button></span></div>${result.html}`;
|
||||||
|
overlay.style.display = "flex";
|
||||||
|
};
|
||||||
|
bridge.registerFt8FamilyBarRenderer = (decoder, builder) => {
|
||||||
|
builders[decoder] = builder;
|
||||||
|
};
|
||||||
|
bridge.setFt8FamilyBarDecoder = (decoder) => {
|
||||||
|
active = decoder;
|
||||||
|
update();
|
||||||
|
};
|
||||||
|
bridge.updateFt8Bar = update;
|
||||||
|
bridge.clearFt8Bar = () => {
|
||||||
|
bridge.trxPluginRuntime.reset(active);
|
||||||
|
};
|
||||||
|
bridge.closeFt8Bar = () => {
|
||||||
|
dismissed[active] = Date.now();
|
||||||
|
update();
|
||||||
|
};
|
||||||
|
}
|
||||||
|
function initializeFtxDecoder(config) {
|
||||||
|
const { id, label, periodMs, periodDigits = 1 } = config;
|
||||||
|
const status = document.getElementById(`${id}-status`);
|
||||||
|
const period = document.getElementById(`${id}-period`);
|
||||||
|
const messagesElement = document.getElementById(`${id}-messages`);
|
||||||
|
const filterInput = document.getElementById(`${id}-filter`);
|
||||||
|
let filterText = "";
|
||||||
|
let history = [];
|
||||||
|
const renderMessage = (message) => {
|
||||||
|
return bridge.renderFt8Message?.(message) ?? renderFtxMessage(message);
|
||||||
|
};
|
||||||
|
const retentionMs = () => bridge.getDecodeHistoryRetentionMs?.() ?? 864e5;
|
||||||
|
const prune = () => {
|
||||||
|
const cutoff = Date.now() - retentionMs();
|
||||||
|
history = history.filter((message) => (finiteNumber(message._tsMs ?? message.ts_ms) ?? 0) >= cutoff);
|
||||||
|
};
|
||||||
|
const schedule = (job) => {
|
||||||
|
if (bridge.trxScheduleUiFrameJob) bridge.trxScheduleUiFrameJob(`${id}-history`, job);
|
||||||
|
else job();
|
||||||
|
};
|
||||||
|
const displayFrequency = (value) => {
|
||||||
|
const raw = finiteNumber(value);
|
||||||
|
if (raw === null) return null;
|
||||||
|
const base = finiteNumber(bridge.ft8BaseHz);
|
||||||
|
return base !== null && base > 0 && raw >= 0 && raw < 1e5 ? base + raw : raw;
|
||||||
|
};
|
||||||
|
const renderRow = (message) => {
|
||||||
|
const row = document.createElement("div");
|
||||||
|
row.className = "ft8-row";
|
||||||
|
const raw = message.message ?? "";
|
||||||
|
row.dataset.message = raw.toUpperCase();
|
||||||
|
row.dataset.decoder = id;
|
||||||
|
const storedFrequency = finiteNumber(message.freq_hz);
|
||||||
|
row.dataset.storedFreqHz = storedFrequency === null ? "" : String(storedFrequency);
|
||||||
|
const snr = finiteNumber(message.snr_db);
|
||||||
|
const delta = finiteNumber(message.dt_s);
|
||||||
|
const frequency = displayFrequency(message.freq_hz);
|
||||||
|
const timestamp = finiteNumber(message._tsMs ?? message.ts_ms);
|
||||||
|
const time = timestamp === null ? "--:--:--" : new Date(timestamp).toLocaleTimeString([], {
|
||||||
|
hour: "2-digit",
|
||||||
|
minute: "2-digit",
|
||||||
|
second: "2-digit"
|
||||||
|
});
|
||||||
|
row.innerHTML = `<span class="ft8-time">${time}</span><span class="ft8-snr">${snr?.toFixed(1) ?? "--"}</span><span class="ft8-dt">${delta?.toFixed(2) ?? "--"}</span><span class="ft8-freq">${frequency?.toFixed(0) ?? "--"}</span><span class="ft8-msg">${renderMessage(raw)}</span>`;
|
||||||
|
return row;
|
||||||
|
};
|
||||||
|
const render = () => {
|
||||||
|
prune();
|
||||||
|
if (!messagesElement) return;
|
||||||
|
const fragment = document.createDocumentFragment();
|
||||||
|
let count = 0;
|
||||||
|
for (const message of history) {
|
||||||
|
if (count >= 200) break;
|
||||||
|
if (filterText && !(message.message ?? "").toUpperCase().includes(filterText)) continue;
|
||||||
|
fragment.appendChild(renderRow(message));
|
||||||
|
count += 1;
|
||||||
|
}
|
||||||
|
messagesElement.replaceChildren(fragment);
|
||||||
|
};
|
||||||
|
const normalize = (message) => {
|
||||||
|
const raw = message.message ?? "";
|
||||||
|
const locatorDetails = bridge.ft8ExtractLocatorDetails?.(raw) ?? extractFtxLocatorDetails(raw);
|
||||||
|
const grids = locatorDetails.length > 0 ? locatorDetails.map(({ grid }) => grid) : bridge.ft8ExtractAllGrids?.(raw) ?? extractFtxGrids(raw);
|
||||||
|
const station = bridge.ft8ExtractLikelyCallsign?.(raw) ?? extractFtxCallsign(raw);
|
||||||
|
const frequency = displayFrequency(message.freq_hz);
|
||||||
|
if (grids.length > 0) {
|
||||||
|
bridge.mapAddLocator?.(raw, grids, id, station, {
|
||||||
|
...message,
|
||||||
|
freq_hz: frequency ?? message.freq_hz,
|
||||||
|
locator_details: locatorDetails
|
||||||
|
});
|
||||||
|
}
|
||||||
|
return {
|
||||||
|
receiver: bridge.getDecodeRigMeta?.() ?? null,
|
||||||
|
ts_ms: message.ts_ms,
|
||||||
|
snr_db: message.snr_db,
|
||||||
|
dt_s: message.dt_s,
|
||||||
|
freq_hz: frequency ?? message.freq_hz,
|
||||||
|
message: message.message,
|
||||||
|
_tsMs: finiteNumber(message.ts_ms) ?? Date.now()
|
||||||
|
};
|
||||||
|
};
|
||||||
|
const receiveBatch = (messages) => {
|
||||||
|
if (messages.length === 0) return;
|
||||||
|
if (status) status.textContent = "Receiving";
|
||||||
|
history = messages.map(normalize).reverse().concat(history);
|
||||||
|
prune();
|
||||||
|
bridge.setFt8FamilyBarDecoder?.(id);
|
||||||
|
bridge.updateFt8Bar?.();
|
||||||
|
schedule(render);
|
||||||
|
};
|
||||||
|
const reset = () => {
|
||||||
|
history = [];
|
||||||
|
bridge.updateFt8Bar?.();
|
||||||
|
render();
|
||||||
|
bridge.clearMapMarkersByType?.(id);
|
||||||
|
};
|
||||||
|
const barFrames = () => {
|
||||||
|
const recent = history.filter((message) => (finiteNumber(message._tsMs ?? message.ts_ms) ?? 0) >= Date.now() - 9e5).slice(0, 8);
|
||||||
|
let html = "";
|
||||||
|
for (const message of recent) {
|
||||||
|
const timestamp = finiteNumber(message._tsMs ?? message.ts_ms);
|
||||||
|
const time = timestamp === null ? "" : `<span class="aprs-bar-time">${bridge.fmtTime?.(timestamp) ?? ""}</span>`;
|
||||||
|
const snr = finiteNumber(message.snr_db);
|
||||||
|
const delta = finiteNumber(message.dt_s);
|
||||||
|
const frequency = displayFrequency(message.freq_hz);
|
||||||
|
const detail = [snr === null ? "-- dB" : `${snr.toFixed(1)} dB`, delta === null ? null : `dt ${delta.toFixed(2)}`, frequency === null ? null : `${frequency.toFixed(0)} Hz`].filter((part) => part !== null).join(" · ");
|
||||||
|
html += `<div class="aprs-bar-frame"><div class="aprs-bar-frame-main">${time}<span class="aprs-bar-call">${renderMessage(message.message ?? "")}</span>${detail ? ` · ${detail}` : ""}</div></div>`;
|
||||||
|
}
|
||||||
|
return { count: recent.length, newestTsMs: recent.reduce((latest, message) => Math.max(latest, finiteNumber(message._tsMs ?? message.ts_ms) ?? 0), 0), html };
|
||||||
|
};
|
||||||
|
bridge.trxPluginRuntime.registerDecoder({
|
||||||
|
id,
|
||||||
|
onMessage: (message) => {
|
||||||
|
receiveBatch([message]);
|
||||||
|
},
|
||||||
|
onBatch: receiveBatch,
|
||||||
|
restore: receiveBatch,
|
||||||
|
prune: () => {
|
||||||
|
prune();
|
||||||
|
render();
|
||||||
|
},
|
||||||
|
reset
|
||||||
|
});
|
||||||
|
bridge.registerFt8FamilyBarRenderer?.(id, barFrames);
|
||||||
|
const updatePeriod = () => {
|
||||||
|
if (period) period.textContent = `Next slot ${((periodMs - Date.now() % periodMs) / 1e3).toFixed(periodDigits)}s`;
|
||||||
|
};
|
||||||
|
updatePeriod();
|
||||||
|
window.setInterval(updatePeriod, 250);
|
||||||
|
filterInput?.addEventListener("input", () => {
|
||||||
|
filterText = filterInput.value.trim().toUpperCase();
|
||||||
|
render();
|
||||||
|
});
|
||||||
|
messagesElement?.addEventListener("click", (event) => {
|
||||||
|
if (!(event.target instanceof Element)) return;
|
||||||
|
const grid = event.target.closest(".ft8-locator[data-locator-grid]")?.dataset.locatorGrid;
|
||||||
|
if (grid) {
|
||||||
|
bridge.navigateToMapLocator?.(grid.toUpperCase(), id);
|
||||||
|
event.preventDefault();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
const toggle = document.getElementById(`${id}-decode-toggle-btn`);
|
||||||
|
toggle?.addEventListener("click", () => {
|
||||||
|
void (async () => {
|
||||||
|
try {
|
||||||
|
await bridge.takeSchedulerControlForDecoderDisable?.(toggle);
|
||||||
|
await bridge.postPath?.(`/toggle_${id}_decode`);
|
||||||
|
} catch (error) {
|
||||||
|
console.error(`${label} toggle failed`, error);
|
||||||
|
}
|
||||||
|
})();
|
||||||
|
});
|
||||||
|
document.getElementById(`settings-clear-${id}-history`)?.addEventListener("click", () => {
|
||||||
|
void (async () => {
|
||||||
|
if (!await bridge.trxUi.confirm({ title: `Clear ${label} history?`, message: `All stored ${label} decodes will be permanently removed.`, confirmLabel: "Clear history" })) return;
|
||||||
|
try {
|
||||||
|
await bridge.postPath?.(`/clear_${id}_decode`);
|
||||||
|
reset();
|
||||||
|
} catch (error) {
|
||||||
|
console.error(`${label} history clear failed`, error);
|
||||||
|
}
|
||||||
|
})();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
export {
|
||||||
|
installFtxCompatibilityHelpers,
|
||||||
|
initializeFt8FamilyBar,
|
||||||
|
initializeFtxDecoder
|
||||||
|
};
|
||||||
@@ -0,0 +1,400 @@
|
|||||||
|
// src/plugins/cw.ts
|
||||||
|
var cwWindow = window;
|
||||||
|
var cwStatusEl = document.getElementById("cw-status");
|
||||||
|
var cwOutputEl = document.getElementById("cw-output");
|
||||||
|
var cwAutoInput = document.getElementById("cw-auto");
|
||||||
|
var cwWpmInput = document.getElementById("cw-wpm");
|
||||||
|
var cwToneInput = document.getElementById("cw-tone");
|
||||||
|
var cwSignalIndicator = document.getElementById("cw-signal-indicator");
|
||||||
|
var cwToneCanvas = document.getElementById("cw-tone-waterfall");
|
||||||
|
var cwToneGl = cwToneCanvas && cwWindow.createTrxWebGlRenderer ? cwWindow.createTrxWebGlRenderer(cwToneCanvas, { alpha: true }) : null;
|
||||||
|
var cwTonePickerEl = document.querySelector(".cw-tone-picker");
|
||||||
|
var cwToneRangeEl = document.getElementById("cw-tone-range");
|
||||||
|
var cwBarOverlay = document.getElementById("cw-bar-overlay");
|
||||||
|
var CW_MAX_LINES = 200;
|
||||||
|
var CW_TONE_MIN_HZ = 100;
|
||||||
|
var CW_TONE_MAX_HZ = 1e4;
|
||||||
|
var CW_WPM_MIN = 5;
|
||||||
|
var CW_WPM_MAX = 40;
|
||||||
|
var CW_BAR_WINDOW_MS = 15 * 60 * 1e3;
|
||||||
|
var CW_BAR_LINE_GAP_MS = 5e3;
|
||||||
|
var cwLastAppendTime = 0;
|
||||||
|
var cwTonePickerRaf = null;
|
||||||
|
var cwBarHistory = [];
|
||||||
|
var cwBarCurrentLine = null;
|
||||||
|
var cwBarDismissedAtMs = 0;
|
||||||
|
var cwAutoLocalOverride = null;
|
||||||
|
function escapeCwHtml(input) {
|
||||||
|
return cwWindow.escapeMapHtml?.(input) ?? input.replaceAll("&", "&").replaceAll("<", "<").replaceAll(">", ">").replaceAll('"', """);
|
||||||
|
}
|
||||||
|
function applyCwAutoUi(enabled) {
|
||||||
|
if (cwAutoInput) cwAutoInput.checked = enabled;
|
||||||
|
if (cwWpmInput) {
|
||||||
|
cwWpmInput.disabled = enabled;
|
||||||
|
cwWpmInput.readOnly = enabled;
|
||||||
|
}
|
||||||
|
if (cwToneInput) {
|
||||||
|
cwToneInput.disabled = enabled;
|
||||||
|
cwToneInput.readOnly = enabled;
|
||||||
|
}
|
||||||
|
if (cwTonePickerEl) {
|
||||||
|
cwTonePickerEl.classList.toggle("is-auto", enabled);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
cwWindow.applyCwAutoUi = applyCwAutoUi;
|
||||||
|
cwWindow.applyCwAutoUiFromServer = function(enabled) {
|
||||||
|
if (cwAutoLocalOverride !== null) return;
|
||||||
|
applyCwAutoUi(enabled);
|
||||||
|
};
|
||||||
|
function cwBarFlushCurrentLine() {
|
||||||
|
if (cwBarCurrentLine && cwBarCurrentLine.text.trim()) {
|
||||||
|
cwBarHistory.unshift(cwBarCurrentLine);
|
||||||
|
if (cwBarHistory.length > 50) cwBarHistory.length = 50;
|
||||||
|
}
|
||||||
|
cwBarCurrentLine = null;
|
||||||
|
}
|
||||||
|
function updateCwBar() {
|
||||||
|
if (!cwBarOverlay) return;
|
||||||
|
const mode = (document.getElementById("mode")?.value || "").toUpperCase();
|
||||||
|
const isCw = mode === "CW" || mode === "CWR";
|
||||||
|
const cutoffMs = Date.now() - CW_BAR_WINDOW_MS;
|
||||||
|
const recent = cwBarHistory.filter((l) => l.tsMs >= cutoffMs);
|
||||||
|
const liveLines = cwBarCurrentLine && cwBarCurrentLine.text ? [cwBarCurrentLine, ...recent] : recent;
|
||||||
|
const newestTsMs = liveLines.reduce((latest, line) => Math.max(latest, line.tsMs || 0), 0);
|
||||||
|
if (!isCw || liveLines.length === 0 || newestTsMs <= cwBarDismissedAtMs) {
|
||||||
|
cwBarOverlay.style.display = "none";
|
||||||
|
cwBarOverlay.innerHTML = "";
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
let html = `<div class="aprs-bar-header"><span class="aprs-bar-title"><span class="aprs-bar-title-word">CW</span><span class="aprs-bar-title-word">Live</span></span><span class="aprs-bar-actions"><span class="aprs-bar-window">Last 15 minutes</span><span class="aprs-bar-clear-wrap"><span class="aprs-bar-clear" role="button" tabindex="0" onclick="window.clearCwBar()" onkeydown="if(event.key==='Enter'||event.key===' '){event.preventDefault();window.clearCwBar();}" aria-label="Clear CW overlay">Clear</span></span><button class="aprs-bar-close" type="button" onclick="window.closeCwBar()" aria-label="Close CW overlay">×</button></span></div>`;
|
||||||
|
for (const line of liveLines.slice(0, 8)) {
|
||||||
|
const ts = line.ts ? `<span class="aprs-bar-time">${line.ts}</span>` : "";
|
||||||
|
const meta = [
|
||||||
|
line.wpm ? `${String(line.wpm)} WPM` : null,
|
||||||
|
line.tone_hz ? `${String(line.tone_hz)} Hz` : null
|
||||||
|
].filter(Boolean).join(" · ");
|
||||||
|
html += `<div class="aprs-bar-frame"><div class="aprs-bar-frame-main">${ts}${escapeCwHtml(line.text)}` + (meta ? ` <span class="aprs-bar-time">${escapeCwHtml(meta)}</span>` : "") + `</div></div>`;
|
||||||
|
}
|
||||||
|
cwBarOverlay.innerHTML = html;
|
||||||
|
cwBarOverlay.style.display = "flex";
|
||||||
|
}
|
||||||
|
cwWindow.updateCwBar = updateCwBar;
|
||||||
|
cwWindow.clearCwBar = function() {
|
||||||
|
resetCwHistoryView();
|
||||||
|
};
|
||||||
|
cwWindow.closeCwBar = function() {
|
||||||
|
cwBarDismissedAtMs = Date.now();
|
||||||
|
if (cwBarOverlay) {
|
||||||
|
cwBarOverlay.style.display = "none";
|
||||||
|
cwBarOverlay.innerHTML = "";
|
||||||
|
}
|
||||||
|
};
|
||||||
|
function clampCwWpm(wpm) {
|
||||||
|
const numeric = Number(wpm);
|
||||||
|
if (!Number.isFinite(numeric)) return 15;
|
||||||
|
return Math.round(Math.max(CW_WPM_MIN, Math.min(CW_WPM_MAX, numeric)));
|
||||||
|
}
|
||||||
|
function clampCwTone(tone) {
|
||||||
|
const numeric = Number(tone);
|
||||||
|
if (!Number.isFinite(numeric)) return 700;
|
||||||
|
return Math.round(Math.max(CW_TONE_MIN_HZ, Math.min(CW_TONE_MAX_HZ, numeric)));
|
||||||
|
}
|
||||||
|
function currentCwToneRange() {
|
||||||
|
const tunedHz = Number.isFinite(cwWindow.lastFreqHz) ? Number(cwWindow.lastFreqHz) : NaN;
|
||||||
|
const bandwidthHz = Number.isFinite(cwWindow.currentBandwidthHz) ? Number(cwWindow.currentBandwidthHz) : NaN;
|
||||||
|
if (!Number.isFinite(tunedHz) || !Number.isFinite(bandwidthHz) || bandwidthHz <= 0) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
const mode = (document.getElementById("mode")?.value || "").toUpperCase();
|
||||||
|
const lowerSideband = mode === "CWR";
|
||||||
|
const upperSideband = mode === "CW";
|
||||||
|
if (!lowerSideband && !upperSideband) return null;
|
||||||
|
const toneMinHz = CW_TONE_MIN_HZ;
|
||||||
|
const toneMaxHz = CW_TONE_MAX_HZ;
|
||||||
|
return {
|
||||||
|
tunedHz,
|
||||||
|
bandwidthHz,
|
||||||
|
toneMinHz,
|
||||||
|
toneMaxHz,
|
||||||
|
toneSpanHz: Math.max(1, toneMaxHz - toneMinHz),
|
||||||
|
lowerSideband,
|
||||||
|
mode
|
||||||
|
};
|
||||||
|
}
|
||||||
|
function cwToneToRfHz(range, toneHz) {
|
||||||
|
if (!range) return NaN;
|
||||||
|
return range.lowerSideband ? range.tunedHz - toneHz : range.tunedHz + toneHz;
|
||||||
|
}
|
||||||
|
function toneClampForRange(tone, range) {
|
||||||
|
const clamped = clampCwTone(tone);
|
||||||
|
if (!range) return clamped;
|
||||||
|
return Math.max(range.toneMinHz, Math.min(range.toneMaxHz, clamped));
|
||||||
|
}
|
||||||
|
function ensureCwToneCanvasResolution() {
|
||||||
|
if (!cwToneCanvas || !cwToneGl || !cwToneGl.ready) return false;
|
||||||
|
const rect = cwToneCanvas.getBoundingClientRect();
|
||||||
|
const cssWidth = Math.round(rect.width);
|
||||||
|
const cssHeight = Math.round(rect.height);
|
||||||
|
if (cssWidth < 8 || cssHeight < 8) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
const dpr = window.devicePixelRatio || 1;
|
||||||
|
return cwToneGl.ensureSize(cssWidth, cssHeight, dpr);
|
||||||
|
}
|
||||||
|
function drawCwTonePicker() {
|
||||||
|
if (!cwToneCanvas || !cwToneGl || !cwToneGl.ready) return;
|
||||||
|
ensureCwToneCanvasResolution();
|
||||||
|
if (cwToneCanvas.width < 8 || cwToneCanvas.height < 8) return;
|
||||||
|
const width = cwToneCanvas.width;
|
||||||
|
const height = cwToneCanvas.height;
|
||||||
|
cwToneGl.clear([0, 0, 0, 0]);
|
||||||
|
const range = currentCwToneRange();
|
||||||
|
if (!cwWindow.lastSpectrumData || !Array.isArray(cwWindow.lastSpectrumData.bins) || !cwWindow.lastSpectrumData.bins.length || !range) {
|
||||||
|
if (cwToneRangeEl) {
|
||||||
|
const mode = (document.getElementById("mode")?.value || "").toUpperCase();
|
||||||
|
if (mode !== "CW" && mode !== "CWR") {
|
||||||
|
cwToneRangeEl.textContent = "CW/CWR mode required";
|
||||||
|
} else if (!cwWindow.lastSpectrumData || !Array.isArray(cwWindow.lastSpectrumData.bins) || !cwWindow.lastSpectrumData.bins.length) {
|
||||||
|
cwToneRangeEl.textContent = "Waiting for spectrum";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
cwToneGl.fillRect(0, 0, width, height, [130 / 255, 150 / 255, 165 / 255, 0.22]);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (cwToneRangeEl) {
|
||||||
|
const side = range.lowerSideband ? "Lower side" : "Upper side";
|
||||||
|
cwToneRangeEl.textContent = `Audio ${String(range.toneMinHz)}-${String(range.toneMaxHz)} Hz · ${side}`;
|
||||||
|
}
|
||||||
|
const bins = cwWindow.lastSpectrumData.bins;
|
||||||
|
const sampleRate = cwWindow.lastSpectrumData.sample_rate;
|
||||||
|
const centerHz = cwWindow.lastSpectrumData.center_hz;
|
||||||
|
const maxIdx = Math.max(1, bins.length - 1);
|
||||||
|
const fullLoHz = centerHz - sampleRate / 2;
|
||||||
|
const tones = new Array(width).fill(-140);
|
||||||
|
for (let x = 0; x < width; x += 1) {
|
||||||
|
const frac = width <= 1 ? 0 : x / (width - 1);
|
||||||
|
const toneHz = range.toneMinHz + frac * range.toneSpanHz;
|
||||||
|
const rfHz = cwToneToRfHz(range, toneHz);
|
||||||
|
const idx = Math.max(0, Math.min(maxIdx, Math.round((rfHz - fullLoHz) / sampleRate * maxIdx)));
|
||||||
|
const power = Number.isFinite(Number(bins[idx])) ? Number(bins[idx]) : -140;
|
||||||
|
tones[x] = power;
|
||||||
|
}
|
||||||
|
const smoothed = new Array(width).fill(-140);
|
||||||
|
const smoothRadius = Math.max(1, Math.round(width / 180));
|
||||||
|
for (let x = 0; x < width; x += 1) {
|
||||||
|
let sum = 0;
|
||||||
|
let count = 0;
|
||||||
|
for (let i = x - smoothRadius; i <= x + smoothRadius; i += 1) {
|
||||||
|
if (i < 0 || i >= width) continue;
|
||||||
|
sum += tones[i] ?? -140;
|
||||||
|
count += 1;
|
||||||
|
}
|
||||||
|
smoothed[x] = count > 0 ? sum / count : tones[x] ?? -140;
|
||||||
|
}
|
||||||
|
const sorted = smoothed.slice().sort((a, b) => a - b);
|
||||||
|
const q20 = sorted[Math.floor((sorted.length - 1) * 0.2)] ?? -120;
|
||||||
|
const q95 = sorted[Math.floor((sorted.length - 1) * 0.95)] ?? -70;
|
||||||
|
const floorDb = Math.min(q20 - 2, q95 - 10);
|
||||||
|
const ceilDb = Math.max(floorDb + 18, q95 + 2);
|
||||||
|
const dbSpan = Math.max(1, ceilDb - floorDb);
|
||||||
|
const yForDb = (db) => {
|
||||||
|
const n = Math.max(0, Math.min(1, (db - floorDb) / dbSpan));
|
||||||
|
return Math.round((1 - n) * (height - 1));
|
||||||
|
};
|
||||||
|
const rootStyle = getComputedStyle(document.documentElement);
|
||||||
|
const accent = (rootStyle.getPropertyValue("--accent-green") || "").trim() || "#00d17f";
|
||||||
|
const parseColor = typeof cwWindow.trxParseCssColor === "function" ? cwWindow.trxParseCssColor : null;
|
||||||
|
const accentRgba = parseColor ? parseColor(accent) : [0, 0.82, 0.5, 1];
|
||||||
|
const axisColor = [230 / 255, 235 / 255, 245 / 255, 0.15];
|
||||||
|
cwToneGl.fillRect(0, 0, width, height, [7 / 255, 12 / 255, 18 / 255, 0.94]);
|
||||||
|
const hGridCount = 4;
|
||||||
|
const gridSegments = [];
|
||||||
|
for (let i = 1; i <= hGridCount; i += 1) {
|
||||||
|
const y = Math.round(i / (hGridCount + 1) * (height - 1));
|
||||||
|
gridSegments.push(0, y, width, y);
|
||||||
|
}
|
||||||
|
cwToneGl.drawSegments(gridSegments, axisColor, 1);
|
||||||
|
const toneStep = range.toneSpanHz <= 500 ? 50 : range.toneSpanHz <= 1e3 ? 100 : 200;
|
||||||
|
const firstTick = Math.ceil(range.toneMinHz / toneStep) * toneStep;
|
||||||
|
const tickSegments = [];
|
||||||
|
for (let tone = firstTick; tone <= range.toneMaxHz; tone += toneStep) {
|
||||||
|
const frac = (tone - range.toneMinHz) / range.toneSpanHz;
|
||||||
|
const x = Math.max(0, Math.min(width - 1, Math.round(frac * (width - 1))));
|
||||||
|
tickSegments.push(x, 0, x, height);
|
||||||
|
}
|
||||||
|
cwToneGl.drawSegments(tickSegments, axisColor, 1);
|
||||||
|
const linePoints = [];
|
||||||
|
for (let x = 0; x < width; x += 1) {
|
||||||
|
linePoints.push(x, yForDb(smoothed[x] ?? -140));
|
||||||
|
}
|
||||||
|
cwToneGl.drawFilledArea(linePoints, height, [accentRgba[0], accentRgba[1], accentRgba[2], 0.24]);
|
||||||
|
cwToneGl.drawPolyline(linePoints, accentRgba, Math.max(1.2, (window.devicePixelRatio || 1) * 1.2));
|
||||||
|
const currentTone = toneClampForRange(cwToneInput ? cwToneInput.value : 700, range);
|
||||||
|
const markerFrac = (currentTone - range.toneMinHz) / range.toneSpanHz;
|
||||||
|
const markerX = Math.max(0, Math.min(width - 1, Math.round(markerFrac * (width - 1))));
|
||||||
|
const markerY = yForDb(smoothed[Math.max(0, Math.min(width - 1, markerX))] ?? -140);
|
||||||
|
cwToneGl.drawSegments([markerX, 0, markerX, height], [1, 1, 1, 0.9], 1.5);
|
||||||
|
cwToneGl.drawPoints([markerX, markerY], Math.max(2, Math.round(height * 0.055)), [1, 1, 1, 0.9]);
|
||||||
|
if (cwAutoInput?.checked) {
|
||||||
|
cwToneGl.fillRect(0, 0, width, height, [0, 0, 0, 0.22]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
async function setCwTone(tone, { syncInput = true } = {}) {
|
||||||
|
const range = currentCwToneRange();
|
||||||
|
const clamped = toneClampForRange(tone, range);
|
||||||
|
if (cwToneInput && syncInput) {
|
||||||
|
cwToneInput.value = String(clamped);
|
||||||
|
}
|
||||||
|
try {
|
||||||
|
await cwWindow.postPath?.(`/set_cw_tone?tone_hz=${encodeURIComponent(clamped)}`);
|
||||||
|
} catch (e) {
|
||||||
|
console.error("CW tone set failed", e);
|
||||||
|
}
|
||||||
|
drawCwTonePicker();
|
||||||
|
}
|
||||||
|
if (cwAutoInput) {
|
||||||
|
cwAutoInput.addEventListener("change", () => {
|
||||||
|
void (async () => {
|
||||||
|
const enabled = cwAutoInput.checked;
|
||||||
|
cwAutoLocalOverride = enabled;
|
||||||
|
applyCwAutoUi(enabled);
|
||||||
|
try {
|
||||||
|
await cwWindow.postPath?.(`/set_cw_auto?enabled=${enabled ? "true" : "false"}`);
|
||||||
|
drawCwTonePicker();
|
||||||
|
} catch (error) {
|
||||||
|
console.error("CW auto toggle failed", error);
|
||||||
|
} finally {
|
||||||
|
cwAutoLocalOverride = null;
|
||||||
|
}
|
||||||
|
})();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
if (cwWpmInput) {
|
||||||
|
cwWpmInput.addEventListener("change", () => {
|
||||||
|
void (async () => {
|
||||||
|
if (cwAutoInput?.checked) return;
|
||||||
|
const wpm = clampCwWpm(cwWpmInput.value);
|
||||||
|
cwWpmInput.value = String(wpm);
|
||||||
|
try {
|
||||||
|
await cwWindow.postPath?.(`/set_cw_wpm?wpm=${encodeURIComponent(wpm)}`);
|
||||||
|
} catch (error) {
|
||||||
|
console.error("CW WPM set failed", error);
|
||||||
|
}
|
||||||
|
})();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
if (cwToneInput) {
|
||||||
|
cwToneInput.addEventListener("change", () => {
|
||||||
|
if (!cwAutoInput?.checked) void setCwTone(cwToneInput.value);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
if (cwToneCanvas) {
|
||||||
|
cwToneCanvas.addEventListener("click", (event) => {
|
||||||
|
if (cwAutoInput?.checked) return;
|
||||||
|
const rect = cwToneCanvas.getBoundingClientRect();
|
||||||
|
if (rect.width <= 0) return;
|
||||||
|
const range = currentCwToneRange();
|
||||||
|
if (!range) return;
|
||||||
|
const frac = Math.max(0, Math.min(1, (event.clientX - rect.left) / rect.width));
|
||||||
|
const tone = range.toneMinHz + frac * range.toneSpanHz;
|
||||||
|
void setCwTone(tone);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
function resetCwHistoryView() {
|
||||||
|
if (cwOutputEl) cwOutputEl.innerHTML = "";
|
||||||
|
cwLastAppendTime = 0;
|
||||||
|
cwBarHistory = [];
|
||||||
|
cwBarCurrentLine = null;
|
||||||
|
updateCwBar();
|
||||||
|
drawCwTonePicker();
|
||||||
|
}
|
||||||
|
document.getElementById("settings-clear-cw-history")?.addEventListener("click", () => {
|
||||||
|
void (async () => {
|
||||||
|
if (!await cwWindow.trxUi.confirm({ title: "Clear CW history?", message: "All stored CW decodes will be permanently removed.", confirmLabel: "Clear history" })) return;
|
||||||
|
try {
|
||||||
|
await cwWindow.postPath?.("/clear_cw_decode");
|
||||||
|
resetCwHistoryView();
|
||||||
|
} catch (error) {
|
||||||
|
console.error("CW history clear failed", error);
|
||||||
|
}
|
||||||
|
})();
|
||||||
|
});
|
||||||
|
function onServerCw(evt) {
|
||||||
|
if (cwStatusEl) cwStatusEl.textContent = "Receiving";
|
||||||
|
if (evt.text && cwOutputEl) {
|
||||||
|
const now = Date.now();
|
||||||
|
if (!cwOutputEl.lastElementChild || now - cwLastAppendTime > 1e4 || evt.text === "\n") {
|
||||||
|
const line = document.createElement("div");
|
||||||
|
line.className = "cw-line";
|
||||||
|
cwOutputEl.appendChild(line);
|
||||||
|
}
|
||||||
|
cwLastAppendTime = now;
|
||||||
|
const lastLine = cwOutputEl.lastElementChild;
|
||||||
|
if (lastLine) {
|
||||||
|
lastLine.textContent += evt.text;
|
||||||
|
}
|
||||||
|
while (cwOutputEl.children.length > CW_MAX_LINES) {
|
||||||
|
const firstChild = cwOutputEl.firstChild;
|
||||||
|
if (!firstChild) break;
|
||||||
|
cwOutputEl.removeChild(firstChild);
|
||||||
|
}
|
||||||
|
cwOutputEl.scrollTop = cwOutputEl.scrollHeight;
|
||||||
|
}
|
||||||
|
if (evt.text) {
|
||||||
|
const now = Date.now();
|
||||||
|
if (evt.text === "\n") {
|
||||||
|
cwBarFlushCurrentLine();
|
||||||
|
} else {
|
||||||
|
if (!cwBarCurrentLine || now - cwBarCurrentLine.lastMs > CW_BAR_LINE_GAP_MS) {
|
||||||
|
cwBarFlushCurrentLine();
|
||||||
|
const ts = new Date(now).toLocaleTimeString([], { hour: "2-digit", minute: "2-digit", second: "2-digit" });
|
||||||
|
cwBarCurrentLine = { tsMs: now, ts, text: "", wpm: null, tone_hz: null, lastMs: now };
|
||||||
|
}
|
||||||
|
cwBarCurrentLine.text += evt.text;
|
||||||
|
cwBarCurrentLine.lastMs = now;
|
||||||
|
if (Number.isFinite(Number(evt.wpm))) cwBarCurrentLine.wpm = clampCwWpm(evt.wpm);
|
||||||
|
if (Number.isFinite(Number(evt.tone_hz))) cwBarCurrentLine.tone_hz = Math.round(Number(evt.tone_hz));
|
||||||
|
}
|
||||||
|
updateCwBar();
|
||||||
|
}
|
||||||
|
if (cwSignalIndicator) {
|
||||||
|
cwSignalIndicator.className = evt.signal_on ? "cw-signal-on" : "cw-signal-off";
|
||||||
|
}
|
||||||
|
if (!cwAutoInput || cwAutoInput.checked) {
|
||||||
|
if (cwWpmInput && Number.isFinite(Number(evt.wpm))) {
|
||||||
|
cwWpmInput.value = String(clampCwWpm(evt.wpm));
|
||||||
|
}
|
||||||
|
if (cwToneInput && Number.isFinite(Number(evt.tone_hz))) {
|
||||||
|
cwToneInput.value = String(toneClampForRange(evt.tone_hz, currentCwToneRange()));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (cwTonePickerRaf != null) return;
|
||||||
|
cwTonePickerRaf = requestAnimationFrame(() => {
|
||||||
|
cwTonePickerRaf = null;
|
||||||
|
drawCwTonePicker();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
function restoreCwHistory(events) {
|
||||||
|
if (!Array.isArray(events) || events.length === 0) return;
|
||||||
|
if (cwStatusEl) cwStatusEl.textContent = "Receiving";
|
||||||
|
for (const evt of events) {
|
||||||
|
onServerCw(evt);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
cwWindow.trxPluginRuntime.registerDecoder({
|
||||||
|
id: "cw",
|
||||||
|
onMessage: onServerCw,
|
||||||
|
restore: restoreCwHistory,
|
||||||
|
reset: resetCwHistoryView
|
||||||
|
});
|
||||||
|
cwWindow.refreshCwTonePicker = function refreshCwTonePicker() {
|
||||||
|
ensureCwToneCanvasResolution();
|
||||||
|
drawCwTonePicker();
|
||||||
|
};
|
||||||
|
window.addEventListener("resize", () => {
|
||||||
|
if (ensureCwToneCanvasResolution()) drawCwTonePicker();
|
||||||
|
});
|
||||||
|
applyCwAutoUi(!!cwAutoInput?.checked);
|
||||||
|
updateCwBar();
|
||||||
|
ensureCwToneCanvasResolution();
|
||||||
|
drawCwTonePicker();
|
||||||
+179
@@ -0,0 +1,179 @@
|
|||||||
|
"use strict";
|
||||||
|
(() => {
|
||||||
|
// src/decode-history-worker.ts
|
||||||
|
var textDecoder = typeof TextDecoder === "function" ? new TextDecoder() : null;
|
||||||
|
var HISTORY_GROUP_KEYS = ["ais", "vdes", "aprs", "hf_aprs", "cw", "ft8", "ft4", "ft2", "wspr", "wefax"];
|
||||||
|
var workerScope = self;
|
||||||
|
function decodeCborUint(view, bytes, state, additional) {
|
||||||
|
const offset = state.offset;
|
||||||
|
if (additional < 24) return additional;
|
||||||
|
if (additional === 24) {
|
||||||
|
if (offset + 1 > bytes.length) throw new Error("CBOR payload truncated");
|
||||||
|
state.offset += 1;
|
||||||
|
return bytes[offset] ?? 0;
|
||||||
|
}
|
||||||
|
if (additional === 25) {
|
||||||
|
if (offset + 2 > bytes.length) throw new Error("CBOR payload truncated");
|
||||||
|
state.offset += 2;
|
||||||
|
return view.getUint16(offset);
|
||||||
|
}
|
||||||
|
if (additional === 26) {
|
||||||
|
if (offset + 4 > bytes.length) throw new Error("CBOR payload truncated");
|
||||||
|
state.offset += 4;
|
||||||
|
return view.getUint32(offset);
|
||||||
|
}
|
||||||
|
if (additional === 27) {
|
||||||
|
if (offset + 8 > bytes.length) throw new Error("CBOR payload truncated");
|
||||||
|
const value = view.getBigUint64(offset);
|
||||||
|
state.offset += 8;
|
||||||
|
const numeric = Number(value);
|
||||||
|
if (!Number.isSafeInteger(numeric)) throw new Error("CBOR integer exceeds JS safe range");
|
||||||
|
return numeric;
|
||||||
|
}
|
||||||
|
throw new Error("Unsupported CBOR additional info");
|
||||||
|
}
|
||||||
|
function decodeCborFloat16(bits) {
|
||||||
|
const sign = bits & 32768 ? -1 : 1;
|
||||||
|
const exponent = bits >> 10 & 31;
|
||||||
|
const fraction = bits & 1023;
|
||||||
|
if (exponent === 0) {
|
||||||
|
return fraction === 0 ? sign * 0 : sign * Math.pow(2, -14) * (fraction / 1024);
|
||||||
|
}
|
||||||
|
if (exponent === 31) {
|
||||||
|
return fraction === 0 ? sign * Infinity : Number.NaN;
|
||||||
|
}
|
||||||
|
return sign * Math.pow(2, exponent - 15) * (1 + fraction / 1024);
|
||||||
|
}
|
||||||
|
function decodeCborItem(view, bytes, state) {
|
||||||
|
if (state.offset >= bytes.length) throw new Error("CBOR payload truncated");
|
||||||
|
const initial = bytes[state.offset++];
|
||||||
|
if (initial === void 0) throw new Error("CBOR payload truncated");
|
||||||
|
const major = initial >> 5;
|
||||||
|
const additional = initial & 31;
|
||||||
|
if (major === 0) return decodeCborUint(view, bytes, state, additional);
|
||||||
|
if (major === 1) return -1 - decodeCborUint(view, bytes, state, additional);
|
||||||
|
if (major === 2) {
|
||||||
|
const length = decodeCborUint(view, bytes, state, additional);
|
||||||
|
if (state.offset + length > bytes.length) throw new Error("CBOR payload truncated");
|
||||||
|
const chunk = bytes.slice(state.offset, state.offset + length);
|
||||||
|
state.offset += length;
|
||||||
|
return Array.from(chunk);
|
||||||
|
}
|
||||||
|
if (major === 3) {
|
||||||
|
const length = decodeCborUint(view, bytes, state, additional);
|
||||||
|
if (state.offset + length > bytes.length) throw new Error("CBOR payload truncated");
|
||||||
|
const chunk = bytes.subarray(state.offset, state.offset + length);
|
||||||
|
state.offset += length;
|
||||||
|
return textDecoder ? textDecoder.decode(chunk) : String.fromCharCode(...chunk);
|
||||||
|
}
|
||||||
|
if (major === 4) {
|
||||||
|
const length = decodeCborUint(view, bytes, state, additional);
|
||||||
|
const items = new Array(length);
|
||||||
|
for (let i = 0; i < length; i += 1) {
|
||||||
|
items[i] = decodeCborItem(view, bytes, state);
|
||||||
|
}
|
||||||
|
return items;
|
||||||
|
}
|
||||||
|
if (major === 5) {
|
||||||
|
const length = decodeCborUint(view, bytes, state, additional);
|
||||||
|
const value = {};
|
||||||
|
for (let i = 0; i < length; i += 1) {
|
||||||
|
const key = decodeCborItem(view, bytes, state);
|
||||||
|
const property = typeof key === "string" || typeof key === "number" || typeof key === "boolean" ? String(key) : JSON.stringify(key);
|
||||||
|
value[property] = decodeCborItem(view, bytes, state);
|
||||||
|
}
|
||||||
|
return value;
|
||||||
|
}
|
||||||
|
if (major === 6) {
|
||||||
|
decodeCborUint(view, bytes, state, additional);
|
||||||
|
return decodeCborItem(view, bytes, state);
|
||||||
|
}
|
||||||
|
if (major === 7) {
|
||||||
|
if (additional === 20) return false;
|
||||||
|
if (additional === 21) return true;
|
||||||
|
if (additional === 22) return null;
|
||||||
|
if (additional === 23) return void 0;
|
||||||
|
if (additional === 25) {
|
||||||
|
if (state.offset + 2 > bytes.length) throw new Error("CBOR payload truncated");
|
||||||
|
const bits = view.getUint16(state.offset);
|
||||||
|
state.offset += 2;
|
||||||
|
return decodeCborFloat16(bits);
|
||||||
|
}
|
||||||
|
if (additional === 26) {
|
||||||
|
if (state.offset + 4 > bytes.length) throw new Error("CBOR payload truncated");
|
||||||
|
const value = view.getFloat32(state.offset);
|
||||||
|
state.offset += 4;
|
||||||
|
return value;
|
||||||
|
}
|
||||||
|
if (additional === 27) {
|
||||||
|
if (state.offset + 8 > bytes.length) throw new Error("CBOR payload truncated");
|
||||||
|
const value = view.getFloat64(state.offset);
|
||||||
|
state.offset += 8;
|
||||||
|
return value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
throw new Error("Unsupported CBOR major type");
|
||||||
|
}
|
||||||
|
function decodeCborPayload(buffer) {
|
||||||
|
const bytes = buffer instanceof Uint8Array ? buffer : new Uint8Array(buffer);
|
||||||
|
const view = new DataView(bytes.buffer, bytes.byteOffset, bytes.byteLength);
|
||||||
|
const state = { offset: 0 };
|
||||||
|
const value = decodeCborItem(view, bytes, state);
|
||||||
|
if (state.offset !== bytes.length) {
|
||||||
|
throw new Error("Unexpected trailing bytes in decode history payload");
|
||||||
|
}
|
||||||
|
return value;
|
||||||
|
}
|
||||||
|
function isHistory(value) {
|
||||||
|
return typeof value === "object" && value !== null && !Array.isArray(value);
|
||||||
|
}
|
||||||
|
async function fetchAndDecodeHistory(url, batchLimit) {
|
||||||
|
workerScope.postMessage({ type: "status", phase: "fetching" });
|
||||||
|
const resp = await fetch(url, { credentials: "same-origin" });
|
||||||
|
if (!resp.ok) throw new Error(`History fetch failed: ${String(resp.status)}`);
|
||||||
|
const payload = await resp.arrayBuffer();
|
||||||
|
if (payload.byteLength === 0) {
|
||||||
|
workerScope.postMessage({ type: "start", total: 0 });
|
||||||
|
workerScope.postMessage({ type: "done", total: 0 });
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
workerScope.postMessage({ type: "status", phase: "decoding" });
|
||||||
|
const history = decodeCborPayload(payload);
|
||||||
|
const total = HISTORY_GROUP_KEYS.reduce((sum, key) => {
|
||||||
|
const items = isHistory(history) && Array.isArray(history[key]) ? history[key] : [];
|
||||||
|
return sum + items.length;
|
||||||
|
}, 0);
|
||||||
|
workerScope.postMessage({ type: "start", total });
|
||||||
|
let processed = 0;
|
||||||
|
const safeLimit = Math.max(1, Math.min(2048, Number(batchLimit) || 512));
|
||||||
|
for (const kind of HISTORY_GROUP_KEYS) {
|
||||||
|
const items = isHistory(history) && Array.isArray(history[kind]) ? history[kind] : [];
|
||||||
|
if (items.length === 0) continue;
|
||||||
|
for (let index = 0; index < items.length; index += safeLimit) {
|
||||||
|
const messages = items.slice(index, index + safeLimit);
|
||||||
|
processed += messages.length;
|
||||||
|
workerScope.postMessage({
|
||||||
|
type: "group",
|
||||||
|
kind,
|
||||||
|
messages,
|
||||||
|
processed,
|
||||||
|
total
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
workerScope.postMessage({ type: "done", total });
|
||||||
|
}
|
||||||
|
function isFetchHistoryRequest(value) {
|
||||||
|
return typeof value === "object" && value !== null && "type" in value && value.type === "fetch-history";
|
||||||
|
}
|
||||||
|
workerScope.onmessage = (event) => {
|
||||||
|
const data = event.data;
|
||||||
|
if (!isFetchHistoryRequest(data)) return;
|
||||||
|
fetchAndDecodeHistory(data.url || "/decode/history", data.batchLimit).catch((error) => {
|
||||||
|
workerScope.postMessage({
|
||||||
|
type: "error",
|
||||||
|
message: error instanceof Error ? error.message : typeof error === "string" ? error : "unknown worker failure"
|
||||||
|
});
|
||||||
|
});
|
||||||
|
};
|
||||||
|
})();
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
import {
|
||||||
|
initializeFtxDecoder
|
||||||
|
} from "./chunk-SGMG5LG2.js";
|
||||||
|
|
||||||
|
// src/plugins/ft2.ts
|
||||||
|
initializeFtxDecoder({ id: "ft2", label: "FT2", periodMs: 3750 });
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
import {
|
||||||
|
initializeFtxDecoder
|
||||||
|
} from "./chunk-SGMG5LG2.js";
|
||||||
|
|
||||||
|
// src/plugins/ft4.ts
|
||||||
|
initializeFtxDecoder({ id: "ft4", label: "FT4", periodMs: 7500 });
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
import {
|
||||||
|
initializeFt8FamilyBar,
|
||||||
|
initializeFtxDecoder,
|
||||||
|
installFtxCompatibilityHelpers
|
||||||
|
} from "./chunk-SGMG5LG2.js";
|
||||||
|
|
||||||
|
// src/plugins/ft8.ts
|
||||||
|
installFtxCompatibilityHelpers();
|
||||||
|
initializeFt8FamilyBar();
|
||||||
|
initializeFtxDecoder({ id: "ft8", label: "FT8", periodMs: 15e3, periodDigits: 0 });
|
||||||
@@ -0,0 +1,265 @@
|
|||||||
|
import {
|
||||||
|
aprsAgeText,
|
||||||
|
aprsCategoryLabel,
|
||||||
|
aprsHexBytes,
|
||||||
|
aprsPacketCategory,
|
||||||
|
collapseAprsDuplicates,
|
||||||
|
normalizeAprsPacket,
|
||||||
|
renderAprsInfo,
|
||||||
|
renderLocalAprsSymbol
|
||||||
|
} from "./chunk-M2I6DH4X.js";
|
||||||
|
|
||||||
|
// src/plugins/hf-aprs.ts
|
||||||
|
var hfAprsWindow = window;
|
||||||
|
var escapeHfAprsHtml = (input) => hfAprsWindow.escapeMapHtml?.(input) ?? input.replaceAll("&", "&").replaceAll("<", "<").replaceAll(">", ">").replaceAll('"', """);
|
||||||
|
var hfAprsStatus = document.getElementById("hf-aprs-status");
|
||||||
|
var hfAprsPacketsEl = document.getElementById("hf-aprs-packets");
|
||||||
|
var hfAprsFilterInput = document.getElementById("hf-aprs-filter");
|
||||||
|
var hfAprsOnlyPosBtn = document.getElementById("hf-aprs-only-pos-btn");
|
||||||
|
var hfAprsHideCrcBtn = document.getElementById("hf-aprs-hide-crc-btn");
|
||||||
|
var hfAprsCollapseDupBtn = document.getElementById("hf-aprs-collapse-dup-btn");
|
||||||
|
var hfAprsTotalCountEl = document.getElementById("hf-aprs-total-count");
|
||||||
|
var hfAprsVisibleCountEl = document.getElementById("hf-aprs-visible-count");
|
||||||
|
var hfAprsLatestSeenEl = document.getElementById("hf-aprs-latest-seen");
|
||||||
|
var hfAprsFilterText = "";
|
||||||
|
var hfAprsPacketHistory = [];
|
||||||
|
var hfAprsOnlyPos = false;
|
||||||
|
var hfAprsHideCrc = false;
|
||||||
|
var hfAprsCollapseDup = false;
|
||||||
|
var hfAprsTypeFilter = "all";
|
||||||
|
function currentHfAprsHistoryRetentionMs() {
|
||||||
|
return typeof hfAprsWindow.getDecodeHistoryRetentionMs === "function" ? hfAprsWindow.getDecodeHistoryRetentionMs() : 24 * 60 * 60 * 1e3;
|
||||||
|
}
|
||||||
|
function pruneHfAprsPacketHistory() {
|
||||||
|
const cutoffMs = Date.now() - currentHfAprsHistoryRetentionMs();
|
||||||
|
hfAprsPacketHistory = hfAprsPacketHistory.filter((pkt) => (pkt._tsMs ?? 0) >= cutoffMs);
|
||||||
|
}
|
||||||
|
function scheduleHfAprsHistoryRender() {
|
||||||
|
if (typeof hfAprsWindow.trxScheduleUiFrameJob === "function") {
|
||||||
|
hfAprsWindow.trxScheduleUiFrameJob("hf-aprs-history", () => {
|
||||||
|
renderHfAprsHistory();
|
||||||
|
});
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
renderHfAprsHistory();
|
||||||
|
}
|
||||||
|
function hfAprsDistanceText(pkt) {
|
||||||
|
if (hfAprsWindow.serverLat == null || hfAprsWindow.serverLon == null || pkt.lat == null || pkt.lon == null || !hfAprsWindow.haversineKm) return "";
|
||||||
|
const distKm = hfAprsWindow.haversineKm(hfAprsWindow.serverLat, hfAprsWindow.serverLon, pkt.lat, pkt.lon);
|
||||||
|
if (!Number.isFinite(distKm)) return "";
|
||||||
|
if (distKm < 1) return `${Math.round(distKm * 1e3)} m from TRX`;
|
||||||
|
return `${distKm.toFixed(1)} km from TRX`;
|
||||||
|
}
|
||||||
|
function hfAprsFilterMatch(pkt) {
|
||||||
|
if (hfAprsOnlyPos && (pkt.lat == null || pkt.lon == null)) return false;
|
||||||
|
if (hfAprsHideCrc && !pkt.crcOk) return false;
|
||||||
|
if (hfAprsTypeFilter !== "all" && aprsPacketCategory(pkt) !== hfAprsTypeFilter) return false;
|
||||||
|
if (!hfAprsFilterText) return true;
|
||||||
|
const haystack = [
|
||||||
|
pkt.srcCall,
|
||||||
|
pkt.destCall,
|
||||||
|
pkt.path,
|
||||||
|
pkt.info,
|
||||||
|
pkt.type,
|
||||||
|
pkt.lat != null ? pkt.lat.toFixed(4) : "",
|
||||||
|
pkt.lon != null ? pkt.lon.toFixed(4) : "",
|
||||||
|
aprsPacketCategory(pkt)
|
||||||
|
].filter(Boolean).join(" ").toUpperCase();
|
||||||
|
return haystack.includes(hfAprsFilterText);
|
||||||
|
}
|
||||||
|
function hfAprsVisiblePackets() {
|
||||||
|
const packets = hfAprsCollapseDup ? collapseHfAprsDuplicates(hfAprsPacketHistory) : hfAprsPacketHistory;
|
||||||
|
return packets.filter(hfAprsFilterMatch);
|
||||||
|
}
|
||||||
|
var collapseHfAprsDuplicates = collapseAprsDuplicates;
|
||||||
|
function updateHfAprsSummary() {
|
||||||
|
const visible = hfAprsVisiblePackets();
|
||||||
|
if (hfAprsTotalCountEl) {
|
||||||
|
hfAprsTotalCountEl.textContent = `${hfAprsPacketHistory.length} total`;
|
||||||
|
}
|
||||||
|
if (hfAprsVisibleCountEl) {
|
||||||
|
hfAprsVisibleCountEl.textContent = `${visible.length} shown`;
|
||||||
|
}
|
||||||
|
if (hfAprsLatestSeenEl) {
|
||||||
|
const latest = hfAprsPacketHistory[0];
|
||||||
|
if (!latest) {
|
||||||
|
hfAprsLatestSeenEl.textContent = "No packets yet";
|
||||||
|
} else {
|
||||||
|
hfAprsLatestSeenEl.textContent = `${latest.srcCall} ${aprsAgeText(latest._tsMs)}`;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
function updateHfAprsChipState() {
|
||||||
|
document.querySelectorAll("[id^='hf-aprs-type-']").forEach((btn) => {
|
||||||
|
btn.classList.toggle("active", btn.id === `hf-aprs-type-${hfAprsTypeFilter}`);
|
||||||
|
});
|
||||||
|
hfAprsOnlyPosBtn?.classList.toggle("active", hfAprsOnlyPos);
|
||||||
|
hfAprsHideCrcBtn?.classList.toggle("active", hfAprsHideCrc);
|
||||||
|
hfAprsCollapseDupBtn?.classList.toggle("active", hfAprsCollapseDup);
|
||||||
|
}
|
||||||
|
function renderHfAprsRow(pkt, isFresh) {
|
||||||
|
const row = document.createElement("div");
|
||||||
|
row.className = "aprs-packet";
|
||||||
|
if (!pkt.crcOk) row.classList.add("aprs-packet-crc");
|
||||||
|
if (isFresh) row.classList.add("aprs-packet-new");
|
||||||
|
const ts = pkt._ts || (/* @__PURE__ */ new Date()).toLocaleTimeString([], { hour: "2-digit", minute: "2-digit", second: "2-digit" });
|
||||||
|
const age = aprsAgeText(pkt._tsMs);
|
||||||
|
const category = aprsPacketCategory(pkt);
|
||||||
|
const categoryLabel = aprsCategoryLabel(category);
|
||||||
|
const categoryClass = `aprs-badge aprs-badge-type aprs-badge-type-${category}`;
|
||||||
|
const pathBadge = pkt.path ? `<span class="aprs-badge">${escapeHfAprsHtml(pkt.path)}</span>` : "";
|
||||||
|
const crcBadge = pkt.crcOk ? "" : '<span class="aprs-badge aprs-badge-crc">CRC Fail</span>';
|
||||||
|
const hfBadge = '<span class="aprs-badge" style="background:var(--accent-alt,#f59e0b);color:#000">HF</span>';
|
||||||
|
const symbolHtml = renderLocalAprsSymbol(pkt, escapeHfAprsHtml);
|
||||||
|
const posLink = pkt.lat != null && pkt.lon != null ? `<a class="aprs-pos" href="javascript:void(0)" data-aprs-map="${pkt.lat},${pkt.lon}">${pkt.lat.toFixed(4)}, ${pkt.lon.toFixed(4)}</a>` : "";
|
||||||
|
const distance = hfAprsDistanceText(pkt);
|
||||||
|
const qrzHref = `https://qrzcq.com/call/${encodeURIComponent(pkt.srcCall || "")}`;
|
||||||
|
row.innerHTML = `<div class="aprs-row-head"><span class="aprs-time">${ts}</span>` + hfBadge + symbolHtml + `<span class="aprs-call">${escapeHfAprsHtml(pkt.srcCall ?? "")}</span><span>>${escapeHfAprsHtml(pkt.destCall || "")}</span><span class="${categoryClass}">${escapeHfAprsHtml(categoryLabel)}</span>` + pathBadge + crcBadge + `</div><div class="aprs-row-meta"><span class="aprs-meta-text">${escapeHfAprsHtml(age)}</span>` + (distance ? `<span class="aprs-meta-text">${escapeHfAprsHtml(distance)}</span>` : "") + `<span class="aprs-meta-text">${escapeHfAprsHtml(pkt.type || "--")}</span></div><div class="aprs-row-detail"><span title="${escapeHfAprsHtml(pkt.type || "")}">${renderAprsInfo(pkt)}</span>` + (posLink ? `<span>${posLink}</span>` : "") + `</div><div class="aprs-row-actions">` + (pkt.lat != null && pkt.lon != null ? `<button class="aprs-inline-btn" type="button" data-aprs-map="${pkt.lat},${pkt.lon}">Map</button>` : "") + (pkt.lat != null && pkt.lon != null ? `<button class="aprs-inline-btn" type="button" data-aprs-copy="${pkt.lat},${pkt.lon}">Copy Coords</button>` : "") + `<a class="aprs-inline-btn" href="${qrzHref}" target="_blank" rel="noopener">QRZ</a></div><details class="aprs-details"><summary>Details</summary><div class="aprs-details-grid"><span class="aprs-detail-label">Source</span><span class="aprs-detail-value">${escapeHfAprsHtml(pkt.srcCall || "--")}</span><span class="aprs-detail-label">Destination</span><span class="aprs-detail-value">${escapeHfAprsHtml(pkt.destCall || "--")}</span><span class="aprs-detail-label">Type</span><span class="aprs-detail-value">${escapeHfAprsHtml(pkt.type || "--")}</span><span class="aprs-detail-label">Path</span><span class="aprs-detail-value">${escapeHfAprsHtml(pkt.path || "--")}</span><span class="aprs-detail-label">Age</span><span class="aprs-detail-value">${escapeHfAprsHtml(age)}</span><span class="aprs-detail-label">CRC</span><span class="aprs-detail-value">${pkt.crcOk ? "OK" : "Failed"}</span><span class="aprs-detail-label">Position</span><span class="aprs-detail-value">${pkt.lat != null && pkt.lon != null ? `${pkt.lat.toFixed(5)}, ${pkt.lon.toFixed(5)}` : "--"}</span><span class="aprs-detail-label">Info</span><span class="aprs-detail-value">${escapeHfAprsHtml(pkt.info || "--")}</span><span class="aprs-detail-label">Info Bytes</span><span class="aprs-detail-value">${escapeHfAprsHtml(aprsHexBytes(pkt.info_bytes))}</span></div></details>`;
|
||||||
|
row.querySelectorAll("[data-aprs-map]").forEach((el) => {
|
||||||
|
el.addEventListener("click", (evt) => {
|
||||||
|
evt.preventDefault();
|
||||||
|
const raw = el.dataset.aprsMap ?? "";
|
||||||
|
const [lat, lon] = raw.split(",").map(Number);
|
||||||
|
if (hfAprsWindow.navigateToAprsMap && typeof lat === "number" && typeof lon === "number" && Number.isFinite(lat) && Number.isFinite(lon)) {
|
||||||
|
hfAprsWindow.navigateToAprsMap(lat, lon);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
const copyBtn = row.querySelector("[data-aprs-copy]");
|
||||||
|
if (copyBtn) {
|
||||||
|
copyBtn.addEventListener("click", () => {
|
||||||
|
void (async () => {
|
||||||
|
const raw = copyBtn.dataset.aprsCopy ?? "";
|
||||||
|
try {
|
||||||
|
const clipboard = Reflect.get(navigator, "clipboard");
|
||||||
|
if (clipboard) {
|
||||||
|
await clipboard.writeText(raw);
|
||||||
|
hfAprsWindow.showHint?.("Coordinates copied", 1200);
|
||||||
|
}
|
||||||
|
} catch {
|
||||||
|
hfAprsWindow.showHint?.("Copy failed", 1500);
|
||||||
|
}
|
||||||
|
})();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
return row;
|
||||||
|
}
|
||||||
|
function renderHfAprsHistory() {
|
||||||
|
pruneHfAprsPacketHistory();
|
||||||
|
if (!hfAprsPacketsEl) {
|
||||||
|
updateHfAprsSummary();
|
||||||
|
updateHfAprsChipState();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const visible = hfAprsVisiblePackets();
|
||||||
|
const fragment = document.createDocumentFragment();
|
||||||
|
for (const [index, packet] of visible.entries()) {
|
||||||
|
fragment.appendChild(renderHfAprsRow(packet, index === 0));
|
||||||
|
}
|
||||||
|
hfAprsPacketsEl.replaceChildren(fragment);
|
||||||
|
updateHfAprsSummary();
|
||||||
|
updateHfAprsChipState();
|
||||||
|
}
|
||||||
|
function resetHfAprsHistoryView() {
|
||||||
|
if (hfAprsPacketsEl) hfAprsPacketsEl.innerHTML = "";
|
||||||
|
hfAprsPacketHistory = [];
|
||||||
|
renderHfAprsHistory();
|
||||||
|
}
|
||||||
|
function pruneHfAprsHistoryView() {
|
||||||
|
pruneHfAprsPacketHistory();
|
||||||
|
renderHfAprsHistory();
|
||||||
|
}
|
||||||
|
function addHfAprsPacket(pkt) {
|
||||||
|
const tsMs = Number.isFinite(pkt.ts_ms) ? Number(pkt.ts_ms) : Date.now();
|
||||||
|
pkt._tsMs = tsMs;
|
||||||
|
pkt._ts = new Date(tsMs).toLocaleTimeString([], { hour: "2-digit", minute: "2-digit", second: "2-digit" });
|
||||||
|
hfAprsPacketHistory.unshift(pkt);
|
||||||
|
pruneHfAprsPacketHistory();
|
||||||
|
scheduleHfAprsHistoryRender();
|
||||||
|
}
|
||||||
|
function normalizeServerHfAprsPacket(pkt) {
|
||||||
|
return normalizeAprsPacket(pkt, hfAprsWindow.getDecodeRigMeta?.() ?? null);
|
||||||
|
}
|
||||||
|
function onServerHfAprsBatch(packets) {
|
||||||
|
if (!Array.isArray(packets) || packets.length === 0) return;
|
||||||
|
if (hfAprsStatus) hfAprsStatus.textContent = "Receiving";
|
||||||
|
const normalized = [];
|
||||||
|
for (const pkt of packets) {
|
||||||
|
const next = normalizeServerHfAprsPacket(pkt);
|
||||||
|
const tsMs = Number.isFinite(next.ts_ms) ? Number(next.ts_ms) : Date.now();
|
||||||
|
next._tsMs = tsMs;
|
||||||
|
next._ts = new Date(tsMs).toLocaleTimeString([], { hour: "2-digit", minute: "2-digit", second: "2-digit" });
|
||||||
|
normalized.push(next);
|
||||||
|
}
|
||||||
|
normalized.reverse();
|
||||||
|
hfAprsPacketHistory = normalized.concat(hfAprsPacketHistory);
|
||||||
|
pruneHfAprsPacketHistory();
|
||||||
|
scheduleHfAprsHistoryRender();
|
||||||
|
}
|
||||||
|
var hfAprsDecodeToggleBtn = document.getElementById("hf-aprs-decode-toggle-btn");
|
||||||
|
hfAprsDecodeToggleBtn?.addEventListener("click", () => {
|
||||||
|
void (async () => {
|
||||||
|
try {
|
||||||
|
await hfAprsWindow.takeSchedulerControlForDecoderDisable?.(hfAprsDecodeToggleBtn);
|
||||||
|
await hfAprsWindow.postPath?.("/toggle_hf_aprs_decode");
|
||||||
|
} catch (e) {
|
||||||
|
console.error("HF APRS toggle failed", e);
|
||||||
|
}
|
||||||
|
})();
|
||||||
|
});
|
||||||
|
document.getElementById("settings-clear-hf-aprs-history")?.addEventListener("click", () => {
|
||||||
|
void (async () => {
|
||||||
|
if (!await hfAprsWindow.trxUi.confirm({ title: "Clear HF APRS history?", message: "All stored HF APRS packets will be permanently removed.", confirmLabel: "Clear history" })) return;
|
||||||
|
try {
|
||||||
|
await hfAprsWindow.postPath?.("/clear_hf_aprs_decode");
|
||||||
|
resetHfAprsHistoryView();
|
||||||
|
} catch (e) {
|
||||||
|
console.error("HF APRS history clear failed", e);
|
||||||
|
}
|
||||||
|
})();
|
||||||
|
});
|
||||||
|
if (hfAprsOnlyPosBtn) {
|
||||||
|
hfAprsOnlyPosBtn.addEventListener("click", () => {
|
||||||
|
hfAprsOnlyPos = !hfAprsOnlyPos;
|
||||||
|
renderHfAprsHistory();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
if (hfAprsHideCrcBtn) {
|
||||||
|
hfAprsHideCrcBtn.addEventListener("click", () => {
|
||||||
|
hfAprsHideCrc = !hfAprsHideCrc;
|
||||||
|
renderHfAprsHistory();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
if (hfAprsCollapseDupBtn) {
|
||||||
|
hfAprsCollapseDupBtn.addEventListener("click", () => {
|
||||||
|
hfAprsCollapseDup = !hfAprsCollapseDup;
|
||||||
|
renderHfAprsHistory();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
["all", "position", "message", "weather", "telemetry", "other"].forEach((type) => {
|
||||||
|
const btn = document.getElementById(`hf-aprs-type-${type}`);
|
||||||
|
if (!btn) return;
|
||||||
|
btn.addEventListener("click", () => {
|
||||||
|
hfAprsTypeFilter = type;
|
||||||
|
renderHfAprsHistory();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
if (hfAprsFilterInput) {
|
||||||
|
hfAprsFilterInput.addEventListener("input", () => {
|
||||||
|
hfAprsFilterText = hfAprsFilterInput.value.trim().toUpperCase();
|
||||||
|
renderHfAprsHistory();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
function onServerHfAprs(pkt) {
|
||||||
|
if (hfAprsStatus) hfAprsStatus.textContent = "Receiving";
|
||||||
|
addHfAprsPacket(normalizeServerHfAprsPacket(pkt));
|
||||||
|
}
|
||||||
|
renderHfAprsHistory();
|
||||||
|
window.trxPluginRuntime.registerDecoder({
|
||||||
|
id: "hf_aprs",
|
||||||
|
onMessage: onServerHfAprs,
|
||||||
|
onBatch: onServerHfAprsBatch,
|
||||||
|
restore: onServerHfAprsBatch,
|
||||||
|
reset: resetHfAprsHistoryView,
|
||||||
|
prune: pruneHfAprsHistoryView
|
||||||
|
});
|
||||||
+95
@@ -0,0 +1,95 @@
|
|||||||
|
// src/leaflet-ais-tracksymbol.ts
|
||||||
|
(function() {
|
||||||
|
const leaflet = globalThis.L;
|
||||||
|
if (!leaflet) return;
|
||||||
|
function clamp(value, min, max) {
|
||||||
|
return Math.max(min, Math.min(max, value));
|
||||||
|
}
|
||||||
|
function finiteAngle(value) {
|
||||||
|
if (value === null || !Number.isFinite(value)) return null;
|
||||||
|
const normalized = (value % 360 + 360) % 360;
|
||||||
|
return normalized;
|
||||||
|
}
|
||||||
|
function svgColor(value, fallback) {
|
||||||
|
const text = value || fallback || "";
|
||||||
|
return text.replace(/"/g, """);
|
||||||
|
}
|
||||||
|
function buildSymbolHtml(options, zoom) {
|
||||||
|
const heading = finiteAngle(options.heading);
|
||||||
|
const course = finiteAngle(options.course);
|
||||||
|
const angle = heading != null ? heading : course;
|
||||||
|
const speed = Number.isFinite(options.speed) ? Math.max(0, Number(options.speed)) : 0;
|
||||||
|
const sizeBase = Number.isFinite(options.size) ? options.size : 22;
|
||||||
|
const zoomBoost = zoom >= 12 ? 4 : zoom >= 9 ? 2 : 0;
|
||||||
|
const size = clamp(sizeBase + zoomBoost, 16, 32);
|
||||||
|
const courseLen = course != null ? clamp(size * (0.55 + Math.min(speed, 30) / 30), size * 0.55, size * 1.2) : 0;
|
||||||
|
const color = svgColor(options.color, "#ff7559");
|
||||||
|
const outline = svgColor(options.outline, "#6b2118");
|
||||||
|
const body = angle != null ? `<g transform="translate(${size / 2} ${size / 2}) rotate(${angle}) translate(${-size / 2} ${-size / 2})"><path d="M ${size * 0.5} ${size * 0.06} L ${size * 0.82} ${size * 0.78} L ${size * 0.5} ${size * 0.62} L ${size * 0.18} ${size * 0.78} Z" fill="${color}" stroke="${outline}" stroke-width="1.2" stroke-linejoin="round" /></g>` : `<path d="M ${size * 0.5} ${size * 0.12} L ${size * 0.88} ${size * 0.5} L ${size * 0.5} ${size * 0.88} L ${size * 0.12} ${size * 0.5} Z" fill="${color}" stroke="${outline}" stroke-width="1.2" stroke-linejoin="round" />`;
|
||||||
|
const courseLine = course != null ? `<g transform="translate(${size / 2} ${size / 2}) rotate(${course})"><line x1="0" y1="${-size * 0.22}" x2="0" y2="${-(size * 0.22 + courseLen)}" stroke="${color}" stroke-width="1.4" stroke-linecap="round" opacity="0.75" /></g>` : "";
|
||||||
|
return `<svg xmlns="http://www.w3.org/2000/svg" width="${size}" height="${size}" viewBox="0 0 ${size} ${size}" aria-hidden="true">` + courseLine + body + `</svg>`;
|
||||||
|
}
|
||||||
|
leaflet.TrxAisTrackSymbol = leaflet.Marker.extend({
|
||||||
|
options: {
|
||||||
|
heading: null,
|
||||||
|
course: null,
|
||||||
|
speed: null,
|
||||||
|
color: "#ff7559",
|
||||||
|
outline: "#6b2118",
|
||||||
|
size: 22,
|
||||||
|
interactive: true,
|
||||||
|
keyboard: true,
|
||||||
|
riseOnHover: true
|
||||||
|
},
|
||||||
|
initialize: function(latlng, options) {
|
||||||
|
const merged = leaflet.Util.extend({}, this.options, options || {});
|
||||||
|
merged.icon = leaflet.divIcon({
|
||||||
|
className: "trx-ais-track-symbol-icon",
|
||||||
|
html: "",
|
||||||
|
iconSize: [merged.size, merged.size],
|
||||||
|
iconAnchor: [merged.size / 2, merged.size / 2]
|
||||||
|
});
|
||||||
|
leaflet.Marker.prototype.initialize.call(this, latlng, merged);
|
||||||
|
},
|
||||||
|
onAdd: function(map) {
|
||||||
|
leaflet.Marker.prototype.onAdd.call(this, map);
|
||||||
|
this._refreshIcon();
|
||||||
|
this._boundZoomRefresh = this._refreshIcon.bind(this);
|
||||||
|
map.on("zoomend", this._boundZoomRefresh);
|
||||||
|
},
|
||||||
|
onRemove: function(map) {
|
||||||
|
if (this._boundZoomRefresh) {
|
||||||
|
map.off("zoomend", this._boundZoomRefresh);
|
||||||
|
this._boundZoomRefresh = null;
|
||||||
|
}
|
||||||
|
leaflet.Marker.prototype.onRemove.call(this, map);
|
||||||
|
},
|
||||||
|
setAisState: function(next) {
|
||||||
|
if ("heading" in next) this.options.heading = next.heading;
|
||||||
|
if ("course" in next) this.options.course = next.course;
|
||||||
|
if ("speed" in next) this.options.speed = next.speed;
|
||||||
|
if ("color" in next) this.options.color = next.color;
|
||||||
|
if ("outline" in next) this.options.outline = next.outline;
|
||||||
|
this._refreshIcon();
|
||||||
|
return this;
|
||||||
|
},
|
||||||
|
_refreshIcon: function() {
|
||||||
|
if (!this._icon) return;
|
||||||
|
const zoom = this._map && typeof this._map.getZoom === "function" ? this._map.getZoom() : 0;
|
||||||
|
const html = buildSymbolHtml(this.options, zoom);
|
||||||
|
this._icon.innerHTML = html;
|
||||||
|
const sizeBase = Number.isFinite(this.options.size) ? this.options.size : 22;
|
||||||
|
const zoomBoost = zoom >= 12 ? 4 : zoom >= 9 ? 2 : 0;
|
||||||
|
const size = clamp(sizeBase + zoomBoost, 16, 32);
|
||||||
|
this._icon.style.width = `${size}px`;
|
||||||
|
this._icon.style.height = `${size}px`;
|
||||||
|
this._icon.style.marginLeft = `${-size / 2}px`;
|
||||||
|
this._icon.style.marginTop = `${-size / 2}px`;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
leaflet.trxAisTrackSymbol = function(latlng, options) {
|
||||||
|
const Constructor = leaflet.TrxAisTrackSymbol;
|
||||||
|
if (!Constructor) throw new Error("AIS track symbol constructor is unavailable");
|
||||||
|
return new Constructor(latlng, options);
|
||||||
|
};
|
||||||
|
})();
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,45 @@
|
|||||||
|
"use strict";
|
||||||
|
const pluginGroups = {
|
||||||
|
"digital-modes": ["/ft8.js", "/ft4.js", "/ft2.js", "/wspr.js", "/cw.js", "/background-decode.js", "/sat.js", "/wefax.js"],
|
||||||
|
"map-data": ["/map-core.js", "/ais.js", "/vdes.js", "/aprs.js", "/hf-aprs.js"],
|
||||||
|
map: ["/map-core.js", "/ais.js", "/vdes.js", "/aprs.js", "/hf-aprs.js", "/sat.js", "/sat-scheduler.js"],
|
||||||
|
statistics: ["/map-core.js"],
|
||||||
|
bookmarks: ["/bookmarks.js"],
|
||||||
|
recorder: [],
|
||||||
|
settings: ["/vchan.js", "/scheduler.js"]
|
||||||
|
};
|
||||||
|
const loaded = /* @__PURE__ */ new Set();
|
||||||
|
const loading = /* @__PURE__ */ new Map();
|
||||||
|
async function loadPlugin(path) {
|
||||||
|
if (loaded.has(path)) return;
|
||||||
|
const pending = loading.get(path);
|
||||||
|
if (pending) return pending;
|
||||||
|
const request = import(path).then(() => {
|
||||||
|
loaded.add(path);
|
||||||
|
loading.delete(path);
|
||||||
|
}).catch((error) => {
|
||||||
|
loading.delete(path);
|
||||||
|
throw new Error(`Failed to load plugin module: ${path}`, { cause: error });
|
||||||
|
});
|
||||||
|
loading.set(path, request);
|
||||||
|
return request;
|
||||||
|
}
|
||||||
|
async function loadPlugins(group) {
|
||||||
|
if (!(group in pluginGroups)) return;
|
||||||
|
for (const path of pluginGroups[group]) await loadPlugin(path);
|
||||||
|
}
|
||||||
|
function requestPlugins(group) {
|
||||||
|
void loadPlugins(group).catch((error) => {
|
||||||
|
console.error(error);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
const loaderWindow = window;
|
||||||
|
loaderWindow.loadEagerPlugins = async () => {
|
||||||
|
await Promise.all(["digital-modes", "map-data", "bookmarks", "settings"].map(loadPlugins));
|
||||||
|
};
|
||||||
|
loaderWindow.loadPluginsForTab = loadPlugins;
|
||||||
|
document.addEventListener("click", (event) => {
|
||||||
|
if (!(event.target instanceof Element)) return;
|
||||||
|
const tab = event.target.closest("[data-tab]")?.dataset.tab;
|
||||||
|
if (tab) requestPlugins(tab);
|
||||||
|
});
|
||||||
@@ -0,0 +1,80 @@
|
|||||||
|
"use strict";
|
||||||
|
const decoders = /* @__PURE__ */ new Map();
|
||||||
|
const queued = /* @__PURE__ */ new Map();
|
||||||
|
const MAX_QUEUED_ACTIONS_PER_DECODER = 512;
|
||||||
|
function enqueue(id, action) {
|
||||||
|
const actions = queued.get(id) ?? [];
|
||||||
|
actions.push(action);
|
||||||
|
if (actions.length > MAX_QUEUED_ACTIONS_PER_DECODER) actions.splice(0, actions.length - MAX_QUEUED_ACTIONS_PER_DECODER);
|
||||||
|
queued.set(id, actions);
|
||||||
|
}
|
||||||
|
function deliver(plugin, action) {
|
||||||
|
if (action.kind === "message" && plugin.onMessage) {
|
||||||
|
plugin.onMessage(action.payload);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
if (action.kind === "batch" && plugin.onBatch) {
|
||||||
|
plugin.onBatch(action.payload);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
if (action.kind === "restore" && plugin.restore) {
|
||||||
|
plugin.restore(action.payload);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
function dispatchOrQueue(id, action) {
|
||||||
|
const plugin = decoders.get(id);
|
||||||
|
if (!plugin) {
|
||||||
|
enqueue(id, action);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if (!deliver(plugin, action)) {
|
||||||
|
if (action.kind === "batch" && plugin.onMessage) {
|
||||||
|
for (const message of action.payload) plugin.onMessage(message);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
if (action.kind === "restore" && plugin.onBatch) {
|
||||||
|
plugin.onBatch(action.payload);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
const runtime = {
|
||||||
|
registerDecoder(plugin) {
|
||||||
|
if (decoders.has(plugin.id)) throw new Error(`Decoder plugin already registered: ${plugin.id}`);
|
||||||
|
const erased = plugin;
|
||||||
|
decoders.set(plugin.id, erased);
|
||||||
|
const pending = queued.get(plugin.id) ?? [];
|
||||||
|
queued.delete(plugin.id);
|
||||||
|
for (const action of pending) deliver(erased, action);
|
||||||
|
return () => {
|
||||||
|
if (decoders.get(plugin.id) === erased) decoders.delete(plugin.id);
|
||||||
|
};
|
||||||
|
},
|
||||||
|
dispatch: (id, message) => dispatchOrQueue(id, { kind: "message", payload: message }),
|
||||||
|
dispatchBatch: (id, messages) => dispatchOrQueue(id, { kind: "batch", payload: messages }),
|
||||||
|
restore: (id, messages) => dispatchOrQueue(id, { kind: "restore", payload: messages }),
|
||||||
|
reset(id) {
|
||||||
|
const plugin = decoders.get(id);
|
||||||
|
if (!plugin?.reset) return false;
|
||||||
|
plugin.reset();
|
||||||
|
return true;
|
||||||
|
},
|
||||||
|
resetAll() {
|
||||||
|
for (const plugin of decoders.values()) plugin.reset?.();
|
||||||
|
},
|
||||||
|
prune(id) {
|
||||||
|
const plugin = decoders.get(id);
|
||||||
|
if (!plugin?.prune) return false;
|
||||||
|
plugin.prune();
|
||||||
|
return true;
|
||||||
|
},
|
||||||
|
clearQueued() {
|
||||||
|
queued.clear();
|
||||||
|
},
|
||||||
|
hasDecoder: (id) => decoders.has(id)
|
||||||
|
};
|
||||||
|
window.trxPluginRuntime = runtime;
|
||||||
@@ -0,0 +1,263 @@
|
|||||||
|
// src/plugins/sat-scheduler.ts
|
||||||
|
var satSchedulerWindow = window;
|
||||||
|
(function() {
|
||||||
|
"use strict";
|
||||||
|
const dom = {
|
||||||
|
enabled: document.getElementById("scheduler-sat-enabled"),
|
||||||
|
pretune: document.getElementById("scheduler-sat-pretune"),
|
||||||
|
body: document.getElementById("scheduler-sat-body"),
|
||||||
|
tbody: document.getElementById("scheduler-sat-tbody"),
|
||||||
|
addBtn: document.getElementById("scheduler-sat-add-btn"),
|
||||||
|
passStatus: document.getElementById("scheduler-sat-pass-status"),
|
||||||
|
formWrap: document.getElementById("sch-sat-form-wrap"),
|
||||||
|
formTitle: document.getElementById("sch-sat-form-title"),
|
||||||
|
form: document.getElementById("sch-sat-form"),
|
||||||
|
formCancel: document.getElementById("sch-sat-form-cancel"),
|
||||||
|
preset: document.getElementById("scheduler-sat-preset"),
|
||||||
|
name: document.getElementById("scheduler-sat-name"),
|
||||||
|
norad: document.getElementById("scheduler-sat-norad"),
|
||||||
|
bookmark: document.getElementById("scheduler-sat-bookmark"),
|
||||||
|
minEl: document.getElementById("scheduler-sat-min-el"),
|
||||||
|
priority: document.getElementById("scheduler-sat-priority"),
|
||||||
|
centerHz: document.getElementById("scheduler-sat-center-hz")
|
||||||
|
};
|
||||||
|
let editIdx = null;
|
||||||
|
let eventsWired = false;
|
||||||
|
function getBridge() {
|
||||||
|
return satSchedulerWindow.trx?.modules?.scheduler ?? null;
|
||||||
|
}
|
||||||
|
function getConfig() {
|
||||||
|
const b = getBridge();
|
||||||
|
return b?.getConfig() ?? null;
|
||||||
|
}
|
||||||
|
function getStatus() {
|
||||||
|
const b = getBridge();
|
||||||
|
return b?.getStatus() ?? null;
|
||||||
|
}
|
||||||
|
function getBookmarks() {
|
||||||
|
const b = getBridge();
|
||||||
|
return b?.getBookmarks() ?? [];
|
||||||
|
}
|
||||||
|
function markDirty() {
|
||||||
|
getBridge()?.markDirty();
|
||||||
|
}
|
||||||
|
function bmName(id) {
|
||||||
|
const bm = getBookmarks().find(function(b) {
|
||||||
|
return b.id === id;
|
||||||
|
});
|
||||||
|
return bm ? bm.name : id;
|
||||||
|
}
|
||||||
|
function escHtml(s) {
|
||||||
|
return s.replace(/&/g, "&").replace(/</g, "<").replace(/>/g, ">").replace(/"/g, """);
|
||||||
|
}
|
||||||
|
function formatFreq(hz) {
|
||||||
|
if (hz >= 1e6) return (hz / 1e6).toFixed(3) + " MHz";
|
||||||
|
if (hz >= 1e3) return (hz / 1e3).toFixed(1) + " kHz";
|
||||||
|
return `${String(hz)} Hz`;
|
||||||
|
}
|
||||||
|
function getSatelliteEntries() {
|
||||||
|
const config = getConfig();
|
||||||
|
return config && config.satellites && Array.isArray(config.satellites.entries) ? config.satellites.entries : [];
|
||||||
|
}
|
||||||
|
function ensureSatelliteConfig() {
|
||||||
|
const config = getConfig();
|
||||||
|
if (!config) return { enabled: false, pretune_secs: 60, entries: [] };
|
||||||
|
if (!config.satellites) config.satellites = { enabled: false, pretune_secs: 60, entries: [] };
|
||||||
|
return config.satellites;
|
||||||
|
}
|
||||||
|
function collectSatelliteConfig() {
|
||||||
|
const enabled = dom.enabled ? dom.enabled.checked : false;
|
||||||
|
const pretune = dom.pretune ? parseInt(dom.pretune.value, 10) : 60;
|
||||||
|
return {
|
||||||
|
enabled,
|
||||||
|
pretune_secs: isNaN(pretune) || pretune < 0 ? 60 : pretune,
|
||||||
|
entries: getSatelliteEntries()
|
||||||
|
};
|
||||||
|
}
|
||||||
|
function renderSection() {
|
||||||
|
const config = getConfig();
|
||||||
|
const satCfg = config?.satellites;
|
||||||
|
const enabled = satCfg?.enabled ?? false;
|
||||||
|
if (dom.enabled) dom.enabled.checked = enabled;
|
||||||
|
if (dom.pretune) dom.pretune.value = String(satCfg?.pretune_secs ?? 60);
|
||||||
|
if (dom.body) dom.body.style.display = enabled ? "" : "none";
|
||||||
|
renderEntries();
|
||||||
|
renderPassStatus();
|
||||||
|
}
|
||||||
|
function renderEntries() {
|
||||||
|
if (!dom.tbody) return;
|
||||||
|
const entries = getSatelliteEntries();
|
||||||
|
const frag = document.createDocumentFragment();
|
||||||
|
entries.forEach(function(entry, idx) {
|
||||||
|
const tr = document.createElement("tr");
|
||||||
|
const tdSat = document.createElement("td");
|
||||||
|
tdSat.textContent = entry.satellite || "";
|
||||||
|
tr.appendChild(tdSat);
|
||||||
|
const tdNorad = document.createElement("td");
|
||||||
|
tdNorad.textContent = String(entry.norad_id || "");
|
||||||
|
tr.appendChild(tdNorad);
|
||||||
|
const tdBm = document.createElement("td");
|
||||||
|
tdBm.textContent = bmName(entry.bookmark_id);
|
||||||
|
tr.appendChild(tdBm);
|
||||||
|
const tdEl = document.createElement("td");
|
||||||
|
tdEl.textContent = `${String(entry.min_elevation_deg)}°`;
|
||||||
|
tr.appendChild(tdEl);
|
||||||
|
const tdPrio = document.createElement("td");
|
||||||
|
tdPrio.textContent = String(entry.priority || 0);
|
||||||
|
tr.appendChild(tdPrio);
|
||||||
|
const tdActions = document.createElement("td");
|
||||||
|
const editBtn = document.createElement("button");
|
||||||
|
editBtn.className = "sch-write";
|
||||||
|
editBtn.type = "button";
|
||||||
|
editBtn.textContent = "Edit";
|
||||||
|
editBtn.addEventListener("click", function() {
|
||||||
|
openForm(entry, idx);
|
||||||
|
});
|
||||||
|
tdActions.appendChild(editBtn);
|
||||||
|
const removeBtn = document.createElement("button");
|
||||||
|
removeBtn.className = "sch-write";
|
||||||
|
removeBtn.type = "button";
|
||||||
|
removeBtn.textContent = "Remove";
|
||||||
|
removeBtn.addEventListener("click", function() {
|
||||||
|
removeEntry(idx);
|
||||||
|
});
|
||||||
|
tdActions.appendChild(removeBtn);
|
||||||
|
tr.appendChild(tdActions);
|
||||||
|
frag.appendChild(tr);
|
||||||
|
});
|
||||||
|
dom.tbody.replaceChildren(frag);
|
||||||
|
}
|
||||||
|
function renderPassStatus() {
|
||||||
|
if (!dom.passStatus) return;
|
||||||
|
const entries = getSatelliteEntries();
|
||||||
|
if (entries.length === 0) {
|
||||||
|
dom.passStatus.innerHTML = "";
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const status = getStatus();
|
||||||
|
if (status && status.active_satellite) {
|
||||||
|
dom.passStatus.innerHTML = '<span class="sch-sat-active-badge">PASS ACTIVE: ' + escHtml(status.active_satellite) + "</span>";
|
||||||
|
} else {
|
||||||
|
dom.passStatus.innerHTML = '<span style="color:var(--text-muted);font-size:0.8rem;">No satellite pass active. Predictions available in the SAT tab.</span>';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
function renderBookmarkSelect(selectedId) {
|
||||||
|
const bookmarkSelect = dom.bookmark;
|
||||||
|
if (!bookmarkSelect) return;
|
||||||
|
bookmarkSelect.innerHTML = '<option value="">— none —</option>';
|
||||||
|
getBookmarks().forEach(function(bm) {
|
||||||
|
const opt = document.createElement("option");
|
||||||
|
opt.value = bm.id;
|
||||||
|
opt.textContent = bm.name + " (" + formatFreq(bm.freq_hz) + " " + bm.mode + ")";
|
||||||
|
if (bm.id === selectedId) opt.selected = true;
|
||||||
|
bookmarkSelect.appendChild(opt);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
function removeEntry(idx) {
|
||||||
|
const sat = ensureSatelliteConfig();
|
||||||
|
sat.entries.splice(idx, 1);
|
||||||
|
renderEntries();
|
||||||
|
markDirty();
|
||||||
|
}
|
||||||
|
function openForm(entry, idx) {
|
||||||
|
editIdx = idx != null ? idx : null;
|
||||||
|
if (dom.formTitle) dom.formTitle.textContent = entry ? "Edit Satellite" : "Add Satellite";
|
||||||
|
if (dom.preset) dom.preset.value = "";
|
||||||
|
if (dom.name) dom.name.value = entry ? entry.satellite || "" : "";
|
||||||
|
if (dom.norad) dom.norad.value = entry ? String(entry.norad_id || "") : "";
|
||||||
|
if (dom.minEl) dom.minEl.value = String(entry?.min_elevation_deg ?? 5);
|
||||||
|
if (dom.priority) dom.priority.value = String(entry?.priority ?? 0);
|
||||||
|
if (dom.centerHz) dom.centerHz.value = entry?.center_hz ? String(entry.center_hz) : "";
|
||||||
|
renderBookmarkSelect(entry ? entry.bookmark_id : null);
|
||||||
|
if (dom.formWrap) {
|
||||||
|
dom.formWrap.style.display = "flex";
|
||||||
|
if (dom.name) dom.name.focus();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
function closeForm() {
|
||||||
|
if (dom.formWrap) dom.formWrap.style.display = "none";
|
||||||
|
editIdx = null;
|
||||||
|
}
|
||||||
|
function onFormSubmit(e) {
|
||||||
|
e.preventDefault();
|
||||||
|
const satellite = dom.name ? dom.name.value.trim() : "";
|
||||||
|
const noradId = dom.norad ? parseInt(dom.norad.value, 10) : NaN;
|
||||||
|
const bmId = dom.bookmark ? dom.bookmark.value : "";
|
||||||
|
if (!satellite) {
|
||||||
|
satSchedulerWindow.trxUi?.notify("Enter a satellite name.", { kind: "error" });
|
||||||
|
dom.name?.focus();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (isNaN(noradId) || noradId <= 0) {
|
||||||
|
satSchedulerWindow.trxUi?.notify("Enter a valid NORAD catalog number.", { kind: "error" });
|
||||||
|
dom.norad?.focus();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (!bmId) {
|
||||||
|
satSchedulerWindow.trxUi?.notify("Select a bookmark.", { kind: "error" });
|
||||||
|
dom.bookmark?.focus();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const minEl = dom.minEl ? parseFloat(dom.minEl.value) : 5;
|
||||||
|
const prio = dom.priority ? parseInt(dom.priority.value, 10) : 0;
|
||||||
|
const centerHzRaw = dom.centerHz ? parseInt(dom.centerHz.value, 10) : NaN;
|
||||||
|
const sat = ensureSatelliteConfig();
|
||||||
|
const existing = editIdx !== null ? sat.entries[editIdx] : void 0;
|
||||||
|
const entryData = {
|
||||||
|
id: existing?.id ?? `sat_${Date.now().toString(36)}`,
|
||||||
|
satellite,
|
||||||
|
norad_id: noradId,
|
||||||
|
bookmark_id: bmId,
|
||||||
|
min_elevation_deg: isNaN(minEl) ? 5 : minEl,
|
||||||
|
priority: isNaN(prio) ? 0 : prio,
|
||||||
|
center_hz: !isNaN(centerHzRaw) && centerHzRaw > 0 ? centerHzRaw : null,
|
||||||
|
bookmark_ids: []
|
||||||
|
};
|
||||||
|
if (editIdx !== null) {
|
||||||
|
sat.entries[editIdx] = entryData;
|
||||||
|
} else {
|
||||||
|
sat.entries.push(entryData);
|
||||||
|
}
|
||||||
|
closeForm();
|
||||||
|
renderEntries();
|
||||||
|
markDirty();
|
||||||
|
}
|
||||||
|
function onPresetChange() {
|
||||||
|
if (!dom.preset || !dom.preset.value) return;
|
||||||
|
const parts = dom.preset.value.split("|");
|
||||||
|
if (dom.name) dom.name.value = parts[0] || "";
|
||||||
|
if (dom.norad) dom.norad.value = parts[1] || "";
|
||||||
|
}
|
||||||
|
function wireEvents() {
|
||||||
|
if (eventsWired) return;
|
||||||
|
eventsWired = true;
|
||||||
|
if (dom.enabled) {
|
||||||
|
const enabledInput = dom.enabled;
|
||||||
|
dom.enabled.addEventListener("change", function() {
|
||||||
|
if (dom.body) dom.body.style.display = enabledInput.checked ? "" : "none";
|
||||||
|
markDirty();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
if (dom.pretune) {
|
||||||
|
dom.pretune.addEventListener("input", function() {
|
||||||
|
markDirty();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
if (dom.addBtn) dom.addBtn.addEventListener("click", function() {
|
||||||
|
openForm(null, null);
|
||||||
|
});
|
||||||
|
if (dom.form) dom.form.addEventListener("submit", onFormSubmit);
|
||||||
|
if (dom.formCancel) dom.formCancel.addEventListener("click", closeForm);
|
||||||
|
if (dom.preset) dom.preset.addEventListener("change", onPresetChange);
|
||||||
|
}
|
||||||
|
satSchedulerWindow.satScheduler = {
|
||||||
|
wireEvents,
|
||||||
|
renderSection,
|
||||||
|
renderPassStatus,
|
||||||
|
collectSatelliteConfig
|
||||||
|
};
|
||||||
|
if (getBridge()) {
|
||||||
|
wireEvents();
|
||||||
|
renderSection();
|
||||||
|
}
|
||||||
|
})();
|
||||||
@@ -0,0 +1,479 @@
|
|||||||
|
// src/plugins/sat.ts
|
||||||
|
var satWindow = window;
|
||||||
|
var satDom = {
|
||||||
|
status: document.getElementById("sat-status"),
|
||||||
|
liveView: document.getElementById("sat-live-view"),
|
||||||
|
historyView: document.getElementById("sat-history-view"),
|
||||||
|
predictionsView: document.getElementById("sat-predictions-view"),
|
||||||
|
liveLatest: document.getElementById("sat-live-latest"),
|
||||||
|
historyList: document.getElementById("sat-history-list"),
|
||||||
|
historyCount: document.getElementById("sat-history-count"),
|
||||||
|
filterInput: document.getElementById("sat-filter"),
|
||||||
|
sortSelect: document.getElementById("sat-sort"),
|
||||||
|
typeFilter: document.getElementById("sat-type-filter"),
|
||||||
|
lrptState: document.getElementById("sat-lrpt-state"),
|
||||||
|
viewLiveBtn: document.getElementById("sat-view-live"),
|
||||||
|
viewHistoryBtn: document.getElementById("sat-view-history"),
|
||||||
|
viewPredBtn: document.getElementById("sat-view-predictions"),
|
||||||
|
predFilter: document.getElementById("sat-pred-filter"),
|
||||||
|
predMinEl: document.getElementById("sat-pred-min-el"),
|
||||||
|
predCategory: document.getElementById("sat-pred-category"),
|
||||||
|
predCurrentList: document.getElementById("sat-pred-current-list"),
|
||||||
|
predUpcomingList: document.getElementById("sat-pred-list"),
|
||||||
|
predCurrentSec: document.getElementById("sat-pred-current-section"),
|
||||||
|
predUpcomingSec: document.getElementById("sat-pred-upcoming-section"),
|
||||||
|
predStatus: document.getElementById("sat-pred-status")
|
||||||
|
};
|
||||||
|
var satImageHistory = [];
|
||||||
|
var SAT_MAX_IMAGES = 100;
|
||||||
|
var SAT_PRED_PAGE_SIZE = 50;
|
||||||
|
var satPredShowAll = false;
|
||||||
|
var satFilterText = "";
|
||||||
|
var satActiveView = "live";
|
||||||
|
var satPredData = [];
|
||||||
|
var satPredFilterText = "";
|
||||||
|
var satPredMinEl = 0;
|
||||||
|
var satPredCategory = "all";
|
||||||
|
var satPredSatCount = 0;
|
||||||
|
var satPredCountdownTimer = null;
|
||||||
|
function scheduleSatUi(key, job) {
|
||||||
|
if (typeof satWindow.trxScheduleUiFrameJob === "function") {
|
||||||
|
satWindow.trxScheduleUiFrameJob(key, job);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
job();
|
||||||
|
}
|
||||||
|
function switchSatView(view) {
|
||||||
|
const leavingPredictions = satActiveView === "predictions" && view !== "predictions";
|
||||||
|
satActiveView = view;
|
||||||
|
if (satDom.liveView) satDom.liveView.style.display = view === "live" ? "" : "none";
|
||||||
|
if (satDom.historyView) satDom.historyView.style.display = view === "history" ? "" : "none";
|
||||||
|
if (satDom.predictionsView) satDom.predictionsView.style.display = view === "predictions" ? "" : "none";
|
||||||
|
if (satDom.viewLiveBtn) satDom.viewLiveBtn.classList.toggle("sat-view-active", view === "live");
|
||||||
|
if (satDom.viewHistoryBtn) satDom.viewHistoryBtn.classList.toggle("sat-view-active", view === "history");
|
||||||
|
if (satDom.viewPredBtn) satDom.viewPredBtn.classList.toggle("sat-view-active", view === "predictions");
|
||||||
|
if (leavingPredictions) clearPredictionDom();
|
||||||
|
if (view === "history") {
|
||||||
|
renderSatHistoryTable();
|
||||||
|
} else if (view === "predictions") {
|
||||||
|
satPredShowAll = false;
|
||||||
|
void loadSatPredictions();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
function clearPredictionDom() {
|
||||||
|
stopCountdownTimer();
|
||||||
|
if (satDom.predCurrentList) satDom.predCurrentList.innerHTML = "";
|
||||||
|
if (satDom.predUpcomingList) satDom.predUpcomingList.innerHTML = "";
|
||||||
|
}
|
||||||
|
satWindow.clearSatPredictionDom = clearPredictionDom;
|
||||||
|
satDom.viewLiveBtn?.addEventListener("click", () => {
|
||||||
|
switchSatView("live");
|
||||||
|
});
|
||||||
|
satDom.viewHistoryBtn?.addEventListener("click", () => {
|
||||||
|
switchSatView("history");
|
||||||
|
});
|
||||||
|
satDom.viewPredBtn?.addEventListener("click", () => {
|
||||||
|
switchSatView("predictions");
|
||||||
|
});
|
||||||
|
var lastSatLrptOn = null;
|
||||||
|
satWindow.updateSatLiveState = function(update) {
|
||||||
|
if (!satDom.lrptState) return;
|
||||||
|
const lrptOn = !!update.lrpt_decode_enabled;
|
||||||
|
if (lrptOn !== lastSatLrptOn) {
|
||||||
|
lastSatLrptOn = lrptOn;
|
||||||
|
satDom.lrptState.textContent = lrptOn ? "Listening" : "Idle";
|
||||||
|
satDom.lrptState.className = "sat-live-value " + (lrptOn ? "sat-state-listening" : "sat-state-idle");
|
||||||
|
if (satDom.status) {
|
||||||
|
if (lrptOn) {
|
||||||
|
satDom.status.textContent = "Decoder active — waiting for signal";
|
||||||
|
} else {
|
||||||
|
satDom.status.textContent = "Decoder idle";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
function renderSatLatestCard() {
|
||||||
|
if (!satDom.liveLatest) return;
|
||||||
|
if (satImageHistory.length === 0) {
|
||||||
|
satDom.liveLatest.innerHTML = '<div style="color:var(--text-muted);font-size:0.82rem;">No images decoded yet. Enable a decoder and wait for a satellite pass.</div>';
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const img = satImageHistory[0];
|
||||||
|
if (!img) return;
|
||||||
|
const typeName = "Meteor LRPT";
|
||||||
|
const satellite = img.satellite || "";
|
||||||
|
const channels = img.channels || img.channel_a || "";
|
||||||
|
const lines = img.mcu_count || img.line_count || 0;
|
||||||
|
const unit = "MCU rows";
|
||||||
|
const ts = img._ts || "--";
|
||||||
|
const date = img._tsMs ? new Date(img._tsMs).toLocaleDateString() : "";
|
||||||
|
const meta = [typeName];
|
||||||
|
if (satellite) meta.push(satellite);
|
||||||
|
if (channels) meta.push(channels);
|
||||||
|
meta.push(`${lines} ${unit}`);
|
||||||
|
meta.push(`${date} ${ts}`);
|
||||||
|
let html = `<div class="sat-latest-card">`;
|
||||||
|
html += `<div class="sat-latest-title">Latest decoded image</div>`;
|
||||||
|
html += `<div class="sat-latest-meta">${meta.join(" · ")}</div>`;
|
||||||
|
if (img.path) {
|
||||||
|
html += `<a href="${img.path}" target="_blank" style="font-size:0.8rem;color:var(--accent);display:inline-block;margin-top:0.25rem;">Download PNG</a>`;
|
||||||
|
}
|
||||||
|
if (img.geo_bounds) {
|
||||||
|
html += ` <button type="button" class="sat-map-btn" onclick="window.satShowOnMap(${img.geo_bounds[0]},${img.geo_bounds[1]},${img.geo_bounds[2]},${img.geo_bounds[3]})" style="font-size:0.8rem;margin-top:0.25rem;margin-left:0.5rem;cursor:pointer;background:none;border:1px solid var(--accent);color:var(--accent);border-radius:3px;padding:1px 6px;">Show on Map</button>`;
|
||||||
|
}
|
||||||
|
html += `</div>`;
|
||||||
|
satDom.liveLatest.innerHTML = html;
|
||||||
|
}
|
||||||
|
function getSatFilteredHistory() {
|
||||||
|
let items = satImageHistory;
|
||||||
|
const typeVal = satDom.typeFilter ? satDom.typeFilter.value : "all";
|
||||||
|
if (typeVal === "lrpt") items = items.filter((i) => i._decoder === "lrpt");
|
||||||
|
if (satFilterText) {
|
||||||
|
items = items.filter((i) => {
|
||||||
|
const haystack = [
|
||||||
|
"meteor lrpt",
|
||||||
|
i.satellite || "",
|
||||||
|
i.channels || "",
|
||||||
|
i.channel_a || "",
|
||||||
|
i.channel_b || ""
|
||||||
|
].join(" ").toUpperCase();
|
||||||
|
return haystack.includes(satFilterText);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
const sortVal = satDom.sortSelect ? satDom.sortSelect.value : "newest";
|
||||||
|
if (sortVal === "oldest") items = items.slice().reverse();
|
||||||
|
return items;
|
||||||
|
}
|
||||||
|
function renderSatHistoryRow(img) {
|
||||||
|
const row = document.createElement("div");
|
||||||
|
row.className = "sat-history-row";
|
||||||
|
const typeName = "Meteor LRPT";
|
||||||
|
const typeClass = "sat-type-lrpt";
|
||||||
|
const ts = img._ts || "--";
|
||||||
|
const date = img._tsMs ? new Date(img._tsMs).toLocaleDateString([], { month: "short", day: "numeric" }) : "";
|
||||||
|
const satellite = img.satellite || "--";
|
||||||
|
const channels = img.channels || "--";
|
||||||
|
const lines = img.mcu_count || img.line_count || 0;
|
||||||
|
const unit = "MCU";
|
||||||
|
let link = img.path ? `<a href="${img.path}" target="_blank" style="color:var(--accent);">PNG</a>` : "--";
|
||||||
|
if (img.geo_bounds) {
|
||||||
|
link += ` <a href="javascript:void(0)" onclick="window.satShowOnMap(${img.geo_bounds[0]},${img.geo_bounds[1]},${img.geo_bounds[2]},${img.geo_bounds[3]})" style="color:var(--accent);">Map</a>`;
|
||||||
|
}
|
||||||
|
row.innerHTML = [
|
||||||
|
`<span>${date} ${ts}</span>`,
|
||||||
|
`<span class="sat-col-type ${typeClass}">${typeName}</span>`,
|
||||||
|
`<span>${satellite}</span>`,
|
||||||
|
`<span>${channels}</span>`,
|
||||||
|
`<span>${lines} ${unit}</span>`,
|
||||||
|
`<span>${link}</span>`
|
||||||
|
].join("");
|
||||||
|
return row;
|
||||||
|
}
|
||||||
|
function renderSatHistoryTable() {
|
||||||
|
if (!satDom.historyList) return;
|
||||||
|
const items = getSatFilteredHistory();
|
||||||
|
const fragment = document.createDocumentFragment();
|
||||||
|
for (const image of items) {
|
||||||
|
fragment.appendChild(renderSatHistoryRow(image));
|
||||||
|
}
|
||||||
|
satDom.historyList.replaceChildren(fragment);
|
||||||
|
if (satDom.historyCount) {
|
||||||
|
const total = satImageHistory.length;
|
||||||
|
const shown = items.length;
|
||||||
|
satDom.historyCount.textContent = total === 0 ? "No images yet" : shown === total ? `${total} image${total === 1 ? "" : "s"}` : `${shown} of ${total} images`;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
function addSatImage(img, decoder) {
|
||||||
|
const tsMs = Number.isFinite(img.ts_ms) ? Number(img.ts_ms) : Date.now();
|
||||||
|
img._tsMs = tsMs;
|
||||||
|
img._ts = new Date(tsMs).toLocaleTimeString([], {
|
||||||
|
hour: "2-digit",
|
||||||
|
minute: "2-digit",
|
||||||
|
second: "2-digit"
|
||||||
|
});
|
||||||
|
img._decoder = decoder;
|
||||||
|
satImageHistory.unshift(img);
|
||||||
|
if (satImageHistory.length > SAT_MAX_IMAGES) {
|
||||||
|
satImageHistory = satImageHistory.slice(0, SAT_MAX_IMAGES);
|
||||||
|
}
|
||||||
|
scheduleSatUi("sat-latest", () => {
|
||||||
|
renderSatLatestCard();
|
||||||
|
});
|
||||||
|
if (satActiveView === "history") {
|
||||||
|
scheduleSatUi("sat-history", () => {
|
||||||
|
renderSatHistoryTable();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
function onServerLrptProgress(msg) {
|
||||||
|
if (satDom.status && (msg.mcu_count ?? 0) > 0) {
|
||||||
|
satDom.status.textContent = `Receiving — ${String(msg.mcu_count ?? 0)} MCU rows decoded`;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
function onServerLrptImage(msg) {
|
||||||
|
if (satDom.status) satDom.status.textContent = "Image received (Meteor LRPT)";
|
||||||
|
addSatImage(msg, "lrpt");
|
||||||
|
if (msg.geo_bounds && msg.path && satWindow.addSatMapOverlay) {
|
||||||
|
satWindow.addSatMapOverlay(msg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
function resetSatHistoryView() {
|
||||||
|
satImageHistory = [];
|
||||||
|
if (satDom.historyList) satDom.historyList.innerHTML = "";
|
||||||
|
renderSatLatestCard();
|
||||||
|
renderSatHistoryTable();
|
||||||
|
satWindow.clearSatMapOverlays?.();
|
||||||
|
}
|
||||||
|
function pruneSatHistoryView() {
|
||||||
|
renderSatHistoryTable();
|
||||||
|
renderSatLatestCard();
|
||||||
|
}
|
||||||
|
satWindow.trxPluginRuntime.registerDecoder({
|
||||||
|
id: "lrpt_image",
|
||||||
|
onMessage: onServerLrptImage,
|
||||||
|
reset: resetSatHistoryView,
|
||||||
|
prune: pruneSatHistoryView
|
||||||
|
});
|
||||||
|
satWindow.trxPluginRuntime.registerDecoder({
|
||||||
|
id: "lrpt_progress",
|
||||||
|
onMessage: onServerLrptProgress
|
||||||
|
});
|
||||||
|
var lrptDecodeToggleBtn = document.getElementById("lrpt-decode-toggle-btn");
|
||||||
|
lrptDecodeToggleBtn?.addEventListener("click", () => {
|
||||||
|
void (async () => {
|
||||||
|
try {
|
||||||
|
await satWindow.takeSchedulerControlForDecoderDisable?.(lrptDecodeToggleBtn);
|
||||||
|
await satWindow.postPath?.("/toggle_lrpt_decode");
|
||||||
|
} catch (e) {
|
||||||
|
console.error("LRPT toggle failed", e);
|
||||||
|
}
|
||||||
|
})();
|
||||||
|
});
|
||||||
|
var satFilterInput = satDom.filterInput;
|
||||||
|
satFilterInput?.addEventListener("input", () => {
|
||||||
|
satFilterText = satFilterInput.value.trim().toUpperCase();
|
||||||
|
renderSatHistoryTable();
|
||||||
|
});
|
||||||
|
satDom.sortSelect?.addEventListener("change", () => {
|
||||||
|
renderSatHistoryTable();
|
||||||
|
});
|
||||||
|
satDom.typeFilter?.addEventListener("change", () => {
|
||||||
|
renderSatHistoryTable();
|
||||||
|
});
|
||||||
|
document.getElementById("settings-clear-sat-history")?.addEventListener("click", () => {
|
||||||
|
void (async () => {
|
||||||
|
if (!await satWindow.trxUi.confirm({ title: "Clear satellite history?", message: "All stored satellite decodes will be permanently removed.", confirmLabel: "Clear history" })) return;
|
||||||
|
try {
|
||||||
|
await satWindow.postPath?.("/clear_lrpt_decode");
|
||||||
|
resetSatHistoryView();
|
||||||
|
} catch (e) {
|
||||||
|
console.error("Weather satellite history clear failed", e);
|
||||||
|
}
|
||||||
|
})();
|
||||||
|
});
|
||||||
|
function azToCardinal(deg) {
|
||||||
|
const dirs = ["N", "NE", "E", "SE", "S", "SW", "W", "NW"];
|
||||||
|
return dirs[Math.round(deg / 45) % 8] ?? "N";
|
||||||
|
}
|
||||||
|
function formatPredTime(ms) {
|
||||||
|
const d = new Date(ms);
|
||||||
|
const now = /* @__PURE__ */ new Date();
|
||||||
|
const dayNames = ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"];
|
||||||
|
const day = d.getUTCDay() !== now.getUTCDay() ? `${dayNames[d.getUTCDay()] ?? ""} ` : "";
|
||||||
|
const hh = String(d.getUTCHours()).padStart(2, "0");
|
||||||
|
const mm = String(d.getUTCMinutes()).padStart(2, "0");
|
||||||
|
return `${day}${hh}:${mm}`;
|
||||||
|
}
|
||||||
|
function formatPredDuration(s) {
|
||||||
|
if (s >= 60) return `${Math.round(s / 60)} min`;
|
||||||
|
return `${s}s`;
|
||||||
|
}
|
||||||
|
function formatCountdown(ms) {
|
||||||
|
const totalSec = Math.max(0, Math.floor(ms / 1e3));
|
||||||
|
const m = Math.floor(totalSec / 60);
|
||||||
|
const s = totalSec % 60;
|
||||||
|
return `${m}:${String(s).padStart(2, "0")}`;
|
||||||
|
}
|
||||||
|
function elevationClass(deg) {
|
||||||
|
if (deg >= 45) return "sat-pred-el-high";
|
||||||
|
if (deg >= 10) return "sat-pred-el-mid";
|
||||||
|
return "sat-pred-el-low";
|
||||||
|
}
|
||||||
|
function stopCountdownTimer() {
|
||||||
|
if (satPredCountdownTimer) {
|
||||||
|
clearInterval(satPredCountdownTimer);
|
||||||
|
satPredCountdownTimer = null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
function startCountdownTimer(container) {
|
||||||
|
const countdownEls = container?.querySelectorAll(".sat-pred-col-countdown") ?? [];
|
||||||
|
if (countdownEls.length === 0) return;
|
||||||
|
satPredCountdownTimer = setInterval(() => {
|
||||||
|
if (satActiveView !== "predictions") {
|
||||||
|
stopCountdownTimer();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const n = Date.now();
|
||||||
|
let anyActive = false;
|
||||||
|
for (const el of countdownEls) {
|
||||||
|
const los = Number.parseInt(el.dataset.los ?? "0", 10);
|
||||||
|
const rem = los - n;
|
||||||
|
if (rem > 0) {
|
||||||
|
el.textContent = formatCountdown(rem);
|
||||||
|
anyActive = true;
|
||||||
|
} else {
|
||||||
|
el.textContent = "0:00";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (!anyActive) {
|
||||||
|
stopCountdownTimer();
|
||||||
|
renderSatPredictions(getFilteredPredictions());
|
||||||
|
}
|
||||||
|
}, 1e3);
|
||||||
|
}
|
||||||
|
function buildCurrentPassRow(pass, now) {
|
||||||
|
const row = document.createElement("div");
|
||||||
|
row.className = "sat-pred-row-current";
|
||||||
|
const dir = `${azToCardinal(pass.azimuth_aos_deg)} → ${azToCardinal(pass.azimuth_los_deg)}`;
|
||||||
|
const remaining = Math.max(0, pass.los_ms - now);
|
||||||
|
row.innerHTML = [
|
||||||
|
`<span class="sat-pred-col-sat">${pass.satellite}</span>`,
|
||||||
|
`<span class="sat-pred-col-el ${elevationClass(pass.max_elevation_deg)}">${pass.max_elevation_deg.toFixed(1)}°</span>`,
|
||||||
|
`<span class="sat-pred-col-time">${formatPredTime(pass.aos_ms)}</span>`,
|
||||||
|
`<span class="sat-pred-col-time">${formatPredTime(pass.los_ms)}</span>`,
|
||||||
|
`<span class="sat-pred-col-countdown" data-los="${pass.los_ms}">${formatCountdown(remaining)}</span>`,
|
||||||
|
`<span class="sat-pred-col-dir">${dir}</span>`
|
||||||
|
].join("");
|
||||||
|
return row;
|
||||||
|
}
|
||||||
|
function buildUpcomingPassRow(pass) {
|
||||||
|
const row = document.createElement("div");
|
||||||
|
row.className = "sat-pred-row";
|
||||||
|
const dir = `${azToCardinal(pass.azimuth_aos_deg)} → ${azToCardinal(pass.azimuth_los_deg)}`;
|
||||||
|
row.innerHTML = [
|
||||||
|
`<span class="sat-pred-col-time">${formatPredTime(pass.aos_ms)}</span>`,
|
||||||
|
`<span class="sat-pred-col-sat">${pass.satellite}</span>`,
|
||||||
|
`<span class="sat-pred-col-el ${elevationClass(pass.max_elevation_deg)}">${pass.max_elevation_deg.toFixed(1)}°</span>`,
|
||||||
|
`<span class="sat-pred-col-dur">${formatPredDuration(pass.duration_s)}</span>`,
|
||||||
|
`<span class="sat-pred-col-dir">${dir}</span>`
|
||||||
|
].join("");
|
||||||
|
return row;
|
||||||
|
}
|
||||||
|
function getFilteredPredictions() {
|
||||||
|
let items = satPredData;
|
||||||
|
if (satPredCategory !== "all") items = items.filter((p) => p.category === satPredCategory);
|
||||||
|
if (satPredMinEl > 0) items = items.filter((p) => p.max_elevation_deg >= satPredMinEl);
|
||||||
|
if (satPredFilterText) items = items.filter((p) => p.satellite.toUpperCase().includes(satPredFilterText));
|
||||||
|
return items;
|
||||||
|
}
|
||||||
|
function applyPredFilters() {
|
||||||
|
renderSatPredictions(getFilteredPredictions());
|
||||||
|
}
|
||||||
|
var satPredictionFilter = satDom.predFilter;
|
||||||
|
satPredictionFilter?.addEventListener("input", () => {
|
||||||
|
satPredFilterText = satPredictionFilter.value.trim().toUpperCase();
|
||||||
|
applyPredFilters();
|
||||||
|
});
|
||||||
|
var satPredictionMinElevation = satDom.predMinEl;
|
||||||
|
satPredictionMinElevation?.addEventListener("change", () => {
|
||||||
|
satPredMinEl = Number.parseInt(satPredictionMinElevation.value, 10) || 0;
|
||||||
|
applyPredFilters();
|
||||||
|
});
|
||||||
|
var satPredictionCategory = satDom.predCategory;
|
||||||
|
satPredictionCategory?.addEventListener("change", () => {
|
||||||
|
satPredCategory = satPredictionCategory.value;
|
||||||
|
applyPredFilters();
|
||||||
|
});
|
||||||
|
function renderSatPredictions(passes, error) {
|
||||||
|
stopCountdownTimer();
|
||||||
|
if (error) {
|
||||||
|
if (satDom.predCurrentList) satDom.predCurrentList.innerHTML = "";
|
||||||
|
if (satDom.predUpcomingList) satDom.predUpcomingList.innerHTML = "";
|
||||||
|
if (satDom.predCurrentSec) satDom.predCurrentSec.style.display = "none";
|
||||||
|
if (satDom.predUpcomingSec) satDom.predUpcomingSec.style.display = "none";
|
||||||
|
if (satDom.predStatus) satDom.predStatus.textContent = error;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (!Array.isArray(passes) || passes.length === 0) {
|
||||||
|
if (satDom.predCurrentList) satDom.predCurrentList.innerHTML = "";
|
||||||
|
if (satDom.predUpcomingList) satDom.predUpcomingList.innerHTML = "";
|
||||||
|
if (satDom.predCurrentSec) satDom.predCurrentSec.style.display = "none";
|
||||||
|
if (satDom.predUpcomingSec) satDom.predUpcomingSec.style.display = "none";
|
||||||
|
if (satDom.predStatus) satDom.predStatus.textContent = "No passes found in the next 24 hours.";
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const now = Date.now();
|
||||||
|
const current = passes.filter((p) => p.aos_ms <= now && p.los_ms > now);
|
||||||
|
const upcoming = passes.filter((p) => p.aos_ms > now);
|
||||||
|
if (satDom.predCurrentSec) satDom.predCurrentSec.style.display = current.length > 0 ? "" : "none";
|
||||||
|
if (satDom.predCurrentList) {
|
||||||
|
if (current.length === 0) {
|
||||||
|
satDom.predCurrentList.innerHTML = "";
|
||||||
|
} else {
|
||||||
|
const frag = document.createDocumentFragment();
|
||||||
|
for (const pass of current) frag.appendChild(buildCurrentPassRow(pass, now));
|
||||||
|
satDom.predCurrentList.replaceChildren(frag);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
const upcomingLimit = satPredShowAll ? upcoming.length : SAT_PRED_PAGE_SIZE;
|
||||||
|
const visibleUpcoming = upcoming.slice(0, upcomingLimit);
|
||||||
|
const hiddenCount = upcoming.length - visibleUpcoming.length;
|
||||||
|
if (satDom.predUpcomingSec) satDom.predUpcomingSec.style.display = upcoming.length > 0 ? "" : "none";
|
||||||
|
if (satDom.predUpcomingList) {
|
||||||
|
const frag = document.createDocumentFragment();
|
||||||
|
for (const pass of visibleUpcoming) frag.appendChild(buildUpcomingPassRow(pass));
|
||||||
|
if (hiddenCount > 0) {
|
||||||
|
const moreRow = document.createElement("div");
|
||||||
|
moreRow.className = "sat-pred-row";
|
||||||
|
moreRow.style.cursor = "pointer";
|
||||||
|
moreRow.style.textAlign = "center";
|
||||||
|
moreRow.innerHTML = `<span style="grid-column:1/-1;color:var(--accent);font-size:0.82rem;">Show ${hiddenCount} more passes…</span>`;
|
||||||
|
moreRow.addEventListener("click", () => {
|
||||||
|
satPredShowAll = true;
|
||||||
|
renderSatPredictions(getFilteredPredictions());
|
||||||
|
});
|
||||||
|
frag.appendChild(moreRow);
|
||||||
|
}
|
||||||
|
satDom.predUpcomingList.replaceChildren(frag);
|
||||||
|
}
|
||||||
|
if (satDom.predStatus) {
|
||||||
|
let text = `${current.length} active · ${upcoming.length} upcoming · times in UTC`;
|
||||||
|
if (satPredSatCount > 0) text += ` · ${satPredSatCount} satellites tracked`;
|
||||||
|
satDom.predStatus.textContent = text;
|
||||||
|
}
|
||||||
|
if (current.length > 0 && satActiveView === "predictions") {
|
||||||
|
startCountdownTimer(satDom.predCurrentList);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
async function loadSatPredictions() {
|
||||||
|
if (satDom.predStatus) satDom.predStatus.textContent = "Loading predictions…";
|
||||||
|
if (satDom.predCurrentList) satDom.predCurrentList.innerHTML = "";
|
||||||
|
if (satDom.predUpcomingList) satDom.predUpcomingList.innerHTML = "";
|
||||||
|
try {
|
||||||
|
const resp = await fetch("/sat_passes");
|
||||||
|
if (!resp.ok) throw new Error(`HTTP ${resp.status}`);
|
||||||
|
const data = await resp.json();
|
||||||
|
satPredSatCount = data.satellite_count || 0;
|
||||||
|
if (data.error) {
|
||||||
|
satPredData = [];
|
||||||
|
renderSatPredictions([], data.error);
|
||||||
|
} else {
|
||||||
|
satPredData = data.passes || [];
|
||||||
|
renderSatPredictions(getFilteredPredictions());
|
||||||
|
}
|
||||||
|
} catch (error) {
|
||||||
|
renderSatPredictions([], `Failed to load predictions: ${error instanceof Error ? error.message : String(error)}`);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
satWindow.satShowOnMap = function(south, west, north, east) {
|
||||||
|
if (typeof satWindow.enableMapSourceFilter === "function") {
|
||||||
|
satWindow.enableMapSourceFilter("sat");
|
||||||
|
}
|
||||||
|
const lat = (south + north) / 2;
|
||||||
|
const lon = (west + east) / 2;
|
||||||
|
if (satWindow.navigateToAprsMap) {
|
||||||
|
satWindow.navigateToAprsMap(lat, lon);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
renderSatLatestCard();
|
||||||
|
renderSatHistoryTable();
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,242 @@
|
|||||||
|
"use strict";
|
||||||
|
const screenshotWindow = window;
|
||||||
|
(function() {
|
||||||
|
"use strict";
|
||||||
|
const T = screenshotWindow.trx;
|
||||||
|
function isVisibleForSnapshot(el) {
|
||||||
|
if (!el) return false;
|
||||||
|
const style = getComputedStyle(el);
|
||||||
|
if (style.display === "none" || style.visibility === "hidden") return false;
|
||||||
|
const opacity = Number(style.opacity);
|
||||||
|
if (Number.isFinite(opacity) && opacity <= 0) return false;
|
||||||
|
const rect = el.getBoundingClientRect();
|
||||||
|
return rect.width > 0 && rect.height > 0;
|
||||||
|
}
|
||||||
|
function drawRoundedRectPath(ctx, x, y, w, h, r) {
|
||||||
|
const radius = Math.max(0, Math.min(r, Math.min(w, h) / 2));
|
||||||
|
ctx.beginPath();
|
||||||
|
ctx.moveTo(x + radius, y);
|
||||||
|
ctx.lineTo(x + w - radius, y);
|
||||||
|
ctx.quadraticCurveTo(x + w, y, x + w, y + radius);
|
||||||
|
ctx.lineTo(x + w, y + h - radius);
|
||||||
|
ctx.quadraticCurveTo(x + w, y + h, x + w - radius, y + h);
|
||||||
|
ctx.lineTo(x + radius, y + h);
|
||||||
|
ctx.quadraticCurveTo(x, y + h, x, y + h - radius);
|
||||||
|
ctx.lineTo(x, y + radius);
|
||||||
|
ctx.quadraticCurveTo(x, y, x + radius, y);
|
||||||
|
ctx.closePath();
|
||||||
|
}
|
||||||
|
function drawElementChrome(ctx, el, rootRect, maxAlpha = 1) {
|
||||||
|
if (!isVisibleForSnapshot(el)) return null;
|
||||||
|
const rect = el.getBoundingClientRect();
|
||||||
|
const style = getComputedStyle(el);
|
||||||
|
const x = rect.left - rootRect.left;
|
||||||
|
const y = rect.top - rootRect.top;
|
||||||
|
const w = rect.width;
|
||||||
|
const h = rect.height;
|
||||||
|
const radius = parseFloat(style.borderTopLeftRadius) || 0;
|
||||||
|
const bg = T.cssColorToRgba(style.backgroundColor || "rgba(0,0,0,0)");
|
||||||
|
const borderWidth = Math.max(0, parseFloat(style.borderTopWidth) || 0);
|
||||||
|
const border = T.cssColorToRgba(style.borderTopColor || "rgba(0,0,0,0)");
|
||||||
|
const bgAlpha = Math.min(bg[3], maxAlpha);
|
||||||
|
if (bgAlpha > 0.01) {
|
||||||
|
drawRoundedRectPath(ctx, x, y, w, h, radius);
|
||||||
|
ctx.fillStyle = `rgba(${String(Math.round(bg[0]))}, ${String(Math.round(bg[1]))}, ${String(Math.round(bg[2]))}, ${String(bgAlpha)})`;
|
||||||
|
ctx.fill();
|
||||||
|
}
|
||||||
|
const borderAlpha = Math.min(border[3], maxAlpha);
|
||||||
|
if (borderWidth > 0 && borderAlpha > 0.01) {
|
||||||
|
drawRoundedRectPath(ctx, x + borderWidth * 0.5, y + borderWidth * 0.5, w - borderWidth, h - borderWidth, Math.max(0, radius - borderWidth * 0.5));
|
||||||
|
ctx.lineWidth = borderWidth;
|
||||||
|
ctx.strokeStyle = `rgba(${String(Math.round(border[0]))}, ${String(Math.round(border[1]))}, ${String(Math.round(border[2]))}, ${String(borderAlpha)})`;
|
||||||
|
ctx.stroke();
|
||||||
|
}
|
||||||
|
return { x, y, w, h, style };
|
||||||
|
}
|
||||||
|
function drawWrappedText(ctx, text, x, y, maxWidth, lineHeight, maxLines) {
|
||||||
|
const words = (text || "").split(/\s+/).filter(Boolean);
|
||||||
|
if (!words.length) return;
|
||||||
|
let line = "";
|
||||||
|
let lineIdx = 0;
|
||||||
|
for (let i = 0; i < words.length; i += 1) {
|
||||||
|
const word = words[i] ?? "";
|
||||||
|
const candidate = line ? `${line} ${word}` : word;
|
||||||
|
if (ctx.measureText(candidate).width <= maxWidth || !line) {
|
||||||
|
line = candidate;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
ctx.fillText(line, x, y + lineIdx * lineHeight);
|
||||||
|
lineIdx += 1;
|
||||||
|
if (lineIdx >= maxLines) return;
|
||||||
|
line = word;
|
||||||
|
}
|
||||||
|
if (line && lineIdx < maxLines) {
|
||||||
|
ctx.fillText(line, x, y + lineIdx * lineHeight);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
function drawElementTextBlock(ctx, el, rootRect, fallbackText = null, maxAlpha = 1) {
|
||||||
|
const chrome = drawElementChrome(ctx, el, rootRect, maxAlpha);
|
||||||
|
if (!chrome) return;
|
||||||
|
const text = (fallbackText == null ? el.innerText : fallbackText) || "";
|
||||||
|
const clean = text.replace(/\s+\n/g, "\n").replace(/\n\s+/g, "\n").trim();
|
||||||
|
if (!clean) return;
|
||||||
|
const style = chrome.style;
|
||||||
|
const fontSize = parseFloat(style.fontSize) || 12;
|
||||||
|
const lineHeight = parseFloat(style.lineHeight) || fontSize * 1.25;
|
||||||
|
const padX = 6;
|
||||||
|
const padY = 4;
|
||||||
|
const maxWidth = Math.max(20, chrome.w - padX * 2);
|
||||||
|
const maxLines = Math.max(1, Math.floor((chrome.h - padY * 2) / lineHeight));
|
||||||
|
ctx.fillStyle = style.color || "#ffffff";
|
||||||
|
ctx.font = `${style.fontStyle || "normal"} ${style.fontWeight || "400"} ${style.fontSize || "12px"} ${style.fontFamily || "sans-serif"}`;
|
||||||
|
ctx.textBaseline = "top";
|
||||||
|
const lines = clean.split(/\n+/);
|
||||||
|
let lineCursor = 0;
|
||||||
|
for (const line of lines) {
|
||||||
|
if (lineCursor >= maxLines) break;
|
||||||
|
drawWrappedText(
|
||||||
|
ctx,
|
||||||
|
line,
|
||||||
|
chrome.x + padX,
|
||||||
|
chrome.y + padY + lineCursor * lineHeight,
|
||||||
|
maxWidth,
|
||||||
|
lineHeight,
|
||||||
|
maxLines - lineCursor
|
||||||
|
);
|
||||||
|
lineCursor += 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
function drawAxisLabels(ctx, axisEl, rootRect) {
|
||||||
|
if (!isVisibleForSnapshot(axisEl)) return;
|
||||||
|
for (const node of axisEl.children) {
|
||||||
|
if (!(node instanceof HTMLElement)) continue;
|
||||||
|
if (!(node.matches("span") || node.matches("button"))) continue;
|
||||||
|
if (!isVisibleForSnapshot(node)) continue;
|
||||||
|
const chrome = drawElementChrome(ctx, node, rootRect);
|
||||||
|
const text = (node.textContent || "").trim();
|
||||||
|
if (!chrome || !text) continue;
|
||||||
|
const style = chrome.style;
|
||||||
|
ctx.fillStyle = style.color || "#ffffff";
|
||||||
|
ctx.font = `${style.fontStyle || "normal"} ${style.fontWeight || "400"} ${style.fontSize || "12px"} ${style.fontFamily || "sans-serif"}`;
|
||||||
|
ctx.textBaseline = "middle";
|
||||||
|
ctx.fillText(text, chrome.x + 4, chrome.y + chrome.h / 2);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
function buildSpectrumSnapshotCanvas() {
|
||||||
|
const rootEl = document.querySelector(".signal-visual-block");
|
||||||
|
const spectrumPanelEl = document.getElementById("spectrum-panel");
|
||||||
|
if (!rootEl || !isVisibleForSnapshot(rootEl) || !isVisibleForSnapshot(spectrumPanelEl)) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
for (const renderer of [T.overviewGl, T.spectrumGl, T.signalOverlayGl]) {
|
||||||
|
const gl = renderer?.gl;
|
||||||
|
if (!gl) continue;
|
||||||
|
try {
|
||||||
|
if (typeof gl.flush === "function") gl.flush();
|
||||||
|
if (typeof gl.finish === "function") gl.finish();
|
||||||
|
} catch {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
const rootRect = rootEl.getBoundingClientRect();
|
||||||
|
const dpr = window.devicePixelRatio || 1;
|
||||||
|
const out = document.createElement("canvas");
|
||||||
|
out.width = Math.max(1, Math.round(rootRect.width * dpr));
|
||||||
|
out.height = Math.max(1, Math.round(rootRect.height * dpr));
|
||||||
|
const ctx = out.getContext("2d");
|
||||||
|
if (!ctx) return null;
|
||||||
|
ctx.scale(dpr, dpr);
|
||||||
|
const bg = getComputedStyle(document.documentElement).getPropertyValue("--bg").trim() || getComputedStyle(document.body).backgroundColor || "#000";
|
||||||
|
ctx.fillStyle = bg;
|
||||||
|
ctx.fillRect(0, 0, rootRect.width, rootRect.height);
|
||||||
|
const signalOverlayCanvas = document.getElementById("signal-overlay-canvas");
|
||||||
|
const canvases = [T.overviewCanvas, T.spectrumCanvas, signalOverlayCanvas];
|
||||||
|
for (const canvas of canvases) {
|
||||||
|
if (!canvas || !isVisibleForSnapshot(canvas)) continue;
|
||||||
|
const rect = canvas.getBoundingClientRect();
|
||||||
|
ctx.drawImage(
|
||||||
|
canvas,
|
||||||
|
rect.left - rootRect.left,
|
||||||
|
rect.top - rootRect.top,
|
||||||
|
rect.width,
|
||||||
|
rect.height
|
||||||
|
);
|
||||||
|
}
|
||||||
|
const decoderOverlayIds = [
|
||||||
|
"ais-bar-overlay",
|
||||||
|
"vdes-bar-overlay",
|
||||||
|
"ft8-bar-overlay",
|
||||||
|
"aprs-bar-overlay",
|
||||||
|
"rds-ps-overlay"
|
||||||
|
];
|
||||||
|
for (const id of decoderOverlayIds) {
|
||||||
|
const overlayEl = document.getElementById(id);
|
||||||
|
if (!overlayEl || !isVisibleForSnapshot(overlayEl)) continue;
|
||||||
|
drawElementTextBlock(ctx, overlayEl, rootRect, null, 0.35);
|
||||||
|
}
|
||||||
|
const spectrumFreqAxis = document.getElementById("spectrum-freq-axis");
|
||||||
|
const spectrumDbAxis = document.getElementById("spectrum-db-axis");
|
||||||
|
drawAxisLabels(ctx, spectrumFreqAxis, rootRect);
|
||||||
|
drawAxisLabels(ctx, spectrumDbAxis, rootRect);
|
||||||
|
drawAxisLabels(ctx, document.getElementById("spectrum-bookmark-axis"), rootRect);
|
||||||
|
drawAxisLabels(ctx, document.getElementById("spectrum-bookmark-side-left"), rootRect);
|
||||||
|
drawAxisLabels(ctx, document.getElementById("spectrum-bookmark-side-right"), rootRect);
|
||||||
|
return out;
|
||||||
|
}
|
||||||
|
function clickCanvasDownload(href, fileName) {
|
||||||
|
const a = document.createElement("a");
|
||||||
|
a.href = href;
|
||||||
|
a.download = fileName;
|
||||||
|
a.rel = "noopener";
|
||||||
|
a.style.display = "none";
|
||||||
|
document.body.appendChild(a);
|
||||||
|
a.click();
|
||||||
|
requestAnimationFrame(() => {
|
||||||
|
a.remove();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
function saveCanvasAsPng(canvas, fileName) {
|
||||||
|
if (!canvas) return Promise.resolve(false);
|
||||||
|
if (typeof canvas.toBlob === "function") {
|
||||||
|
return new Promise((resolve) => {
|
||||||
|
try {
|
||||||
|
canvas.toBlob((blob) => {
|
||||||
|
if (!blob) {
|
||||||
|
resolve(false);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const url = URL.createObjectURL(blob);
|
||||||
|
clickCanvasDownload(url, fileName);
|
||||||
|
setTimeout(() => {
|
||||||
|
URL.revokeObjectURL(url);
|
||||||
|
}, 1e3);
|
||||||
|
resolve(true);
|
||||||
|
}, "image/png");
|
||||||
|
} catch {
|
||||||
|
resolve(false);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
try {
|
||||||
|
clickCanvasDownload(canvas.toDataURL("image/png"), fileName);
|
||||||
|
return Promise.resolve(true);
|
||||||
|
} catch {
|
||||||
|
return Promise.resolve(false);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
async function captureSpectrumScreenshot() {
|
||||||
|
const snapshotCanvas = buildSpectrumSnapshotCanvas();
|
||||||
|
if (!snapshotCanvas) {
|
||||||
|
T.showHint("Spectrum view not ready", 1300);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
const stamp = (/* @__PURE__ */ new Date()).toISOString().replace(/[:.]/g, "-");
|
||||||
|
const saved = await saveCanvasAsPng(snapshotCanvas, `trx-spectrum-${stamp}.png`);
|
||||||
|
T.showHint(saved ? "Spectrum screenshot saved" : "Spectrum screenshot failed", saved ? 1500 : 1800);
|
||||||
|
return saved;
|
||||||
|
}
|
||||||
|
screenshotWindow.trx.modules.screenshot = {
|
||||||
|
captureSpectrumScreenshot,
|
||||||
|
buildSpectrumSnapshotCanvas,
|
||||||
|
saveCanvasAsPng
|
||||||
|
};
|
||||||
|
})();
|
||||||
@@ -0,0 +1,360 @@
|
|||||||
|
"use strict";
|
||||||
|
const browserWindow = window;
|
||||||
|
const preparedTabLists = /* @__PURE__ */ new WeakSet();
|
||||||
|
function elementById(id) {
|
||||||
|
const element = document.getElementById(id);
|
||||||
|
if (!element) throw new Error(`Missing required UI element #${id}`);
|
||||||
|
return element;
|
||||||
|
}
|
||||||
|
(function initUiCore() {
|
||||||
|
const api = browserWindow.trxUi ?? {};
|
||||||
|
browserWindow.trxUi = api;
|
||||||
|
function ensureLiveRegions() {
|
||||||
|
if (!document.getElementById("toast-region")) {
|
||||||
|
const region = document.createElement("div");
|
||||||
|
region.id = "toast-region";
|
||||||
|
region.className = "toast-region";
|
||||||
|
region.setAttribute("aria-live", "polite");
|
||||||
|
region.setAttribute("aria-atomic", "false");
|
||||||
|
document.body.appendChild(region);
|
||||||
|
}
|
||||||
|
if (!document.getElementById("ui-confirm-dialog")) {
|
||||||
|
const dialog = document.createElement("dialog");
|
||||||
|
dialog.id = "ui-confirm-dialog";
|
||||||
|
dialog.className = "ui-dialog";
|
||||||
|
dialog.innerHTML = `
|
||||||
|
<form method="dialog" class="ui-dialog-card">
|
||||||
|
<h2 id="ui-confirm-title">Confirm action</h2>
|
||||||
|
<p id="ui-confirm-message"></p>
|
||||||
|
<div class="ui-dialog-actions">
|
||||||
|
<button value="cancel" type="submit">Cancel</button>
|
||||||
|
<button value="confirm" type="submit" class="danger">Confirm</button>
|
||||||
|
</div>
|
||||||
|
</form>`;
|
||||||
|
document.body.appendChild(dialog);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
api.notify = function notify(message, options = {}) {
|
||||||
|
ensureLiveRegions();
|
||||||
|
const { kind = "info", duration = kind === "error" ? 7e3 : 3200, action = null } = options;
|
||||||
|
const toast = document.createElement("div");
|
||||||
|
toast.className = `toast toast-${kind}`;
|
||||||
|
toast.setAttribute("role", kind === "error" ? "alert" : "status");
|
||||||
|
const text = document.createElement("span");
|
||||||
|
text.textContent = message;
|
||||||
|
toast.appendChild(text);
|
||||||
|
if (action && typeof action.run === "function") {
|
||||||
|
const button = document.createElement("button");
|
||||||
|
button.type = "button";
|
||||||
|
button.textContent = action.label || "Retry";
|
||||||
|
button.addEventListener("click", () => {
|
||||||
|
action.run();
|
||||||
|
toast.remove();
|
||||||
|
});
|
||||||
|
toast.appendChild(button);
|
||||||
|
}
|
||||||
|
elementById("toast-region").appendChild(toast);
|
||||||
|
requestAnimationFrame(() => {
|
||||||
|
toast.classList.add("toast-visible");
|
||||||
|
});
|
||||||
|
if (duration > 0) setTimeout(() => {
|
||||||
|
toast.remove();
|
||||||
|
}, duration);
|
||||||
|
return toast;
|
||||||
|
};
|
||||||
|
api.confirm = function confirmAction(options = {}) {
|
||||||
|
ensureLiveRegions();
|
||||||
|
const dialog = elementById("ui-confirm-dialog");
|
||||||
|
elementById("ui-confirm-title").textContent = options.title || "Confirm action";
|
||||||
|
elementById("ui-confirm-message").textContent = options.message || "Continue?";
|
||||||
|
const confirmButton = dialog.querySelector('[value="confirm"]');
|
||||||
|
if (!confirmButton) throw new Error("Confirmation dialog has no confirm button");
|
||||||
|
confirmButton.textContent = options.confirmLabel || "Confirm";
|
||||||
|
confirmButton.classList.toggle("danger", options.danger !== false);
|
||||||
|
return new Promise((resolve) => {
|
||||||
|
const finish = () => {
|
||||||
|
resolve(dialog.returnValue === "confirm");
|
||||||
|
};
|
||||||
|
dialog.addEventListener("close", finish, { once: true });
|
||||||
|
dialog.showModal();
|
||||||
|
});
|
||||||
|
};
|
||||||
|
api.setButtonState = function setButtonState(button, options = {}) {
|
||||||
|
if (!button) return;
|
||||||
|
const { active = false, activeLabel, inactiveLabel, busy = false, disabled = false } = options;
|
||||||
|
button.classList.toggle("is-active", active);
|
||||||
|
button.classList.toggle("is-busy", busy);
|
||||||
|
button.setAttribute("aria-pressed", String(active));
|
||||||
|
button.setAttribute("aria-busy", String(busy));
|
||||||
|
button.disabled = disabled || busy;
|
||||||
|
const label = active ? activeLabel : inactiveLabel;
|
||||||
|
if (label) button.textContent = label;
|
||||||
|
};
|
||||||
|
api.prepareTabList = function prepareTabList(bar, kind = "primary") {
|
||||||
|
if (!bar) return;
|
||||||
|
if (preparedTabLists.has(bar)) return;
|
||||||
|
preparedTabLists.add(bar);
|
||||||
|
const selector = kind === "primary" ? ".tab[data-tab]" : ".sub-tab[data-subtab]";
|
||||||
|
const buttons = Array.from(bar.querySelectorAll(selector));
|
||||||
|
bar.setAttribute("role", "tablist");
|
||||||
|
buttons.forEach((button, index) => {
|
||||||
|
button.setAttribute("role", "tab");
|
||||||
|
button.setAttribute("aria-selected", String(button.classList.contains("active")));
|
||||||
|
button.tabIndex = button.classList.contains("active") || !buttons.some((b) => b.classList.contains("active")) && index === 0 ? 0 : -1;
|
||||||
|
const key = button.dataset.tab || button.dataset.subtab;
|
||||||
|
if (!key) return;
|
||||||
|
button.setAttribute("aria-controls", `${kind === "primary" ? "tab-" : "subtab-"}${key}`);
|
||||||
|
const panel = document.getElementById(`${kind === "primary" ? "tab-" : "subtab-"}${key}`);
|
||||||
|
if (panel) {
|
||||||
|
if (!button.id) button.id = `${kind}-tab-${key}`;
|
||||||
|
panel.setAttribute("role", "tabpanel");
|
||||||
|
panel.setAttribute("aria-labelledby", button.id);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
bar.addEventListener("keydown", (event) => {
|
||||||
|
if (!(event.target instanceof HTMLElement) || !buttons.includes(event.target)) return;
|
||||||
|
const direction = event.key === "ArrowRight" || event.key === "ArrowDown" ? 1 : event.key === "ArrowLeft" || event.key === "ArrowUp" ? -1 : 0;
|
||||||
|
if (!direction) return;
|
||||||
|
event.preventDefault();
|
||||||
|
const next = buttons[(buttons.indexOf(event.target) + direction + buttons.length) % buttons.length];
|
||||||
|
if (!next) return;
|
||||||
|
next.focus();
|
||||||
|
next.click();
|
||||||
|
});
|
||||||
|
};
|
||||||
|
api.syncSelectedTab = function syncSelectedTab(bar, selected) {
|
||||||
|
if (!bar) return;
|
||||||
|
bar.querySelectorAll('[role="tab"]').forEach((tab) => {
|
||||||
|
const active = tab === selected;
|
||||||
|
tab.setAttribute("aria-selected", String(active));
|
||||||
|
tab.tabIndex = active ? 0 : -1;
|
||||||
|
});
|
||||||
|
};
|
||||||
|
const layouts = {
|
||||||
|
compact: { label: "Compact", advanced: false, audio: false, scheduler: false, preferredTab: "main" },
|
||||||
|
broadcast: { label: "Broadcast", unavailable: "Broadcast requires an enumerated WFM-capable receiver", advanced: false, audio: true, scheduler: false, preferredTab: "main", capability: "broadcast" },
|
||||||
|
digital: { label: "Digital", unavailable: "Digital requires a compatible rig mode and an available decoder", advanced: false, audio: false, scheduler: false, preferredTab: "digital-modes", capability: "digital" },
|
||||||
|
full: { label: "Full controls", advanced: true, audio: true, scheduler: true, preferredTab: "main" }
|
||||||
|
};
|
||||||
|
const layoutCapabilities = { broadcast: false, digital: false };
|
||||||
|
let activeRigId = null;
|
||||||
|
function layoutStorageKey() {
|
||||||
|
return activeRigId ? `trxOperatorLayout:${activeRigId}` : "trxOperatorLayout";
|
||||||
|
}
|
||||||
|
function savedLayoutName() {
|
||||||
|
return localStorage.getItem(layoutStorageKey()) || localStorage.getItem("trxOperatorLayout") || "compact";
|
||||||
|
}
|
||||||
|
function layoutAvailable(layout) {
|
||||||
|
return !layout.capability || layoutCapabilities[layout.capability];
|
||||||
|
}
|
||||||
|
function unavailableLayoutMessage() {
|
||||||
|
const unavailable = Object.values(layouts).filter((layout) => !layoutAvailable(layout) && layout.unavailable);
|
||||||
|
return unavailable.length ? `Unavailable: ${unavailable.map((layout) => layout.unavailable).join("; ")}.` : "";
|
||||||
|
}
|
||||||
|
function refreshLayoutOptions() {
|
||||||
|
const select = document.getElementById("operator-layout-select");
|
||||||
|
if (!select) return;
|
||||||
|
const previous = select.value || document.body.dataset.operatorLayout || "compact";
|
||||||
|
select.replaceChildren();
|
||||||
|
Object.entries(layouts).forEach(([value, layout]) => {
|
||||||
|
if (!layoutAvailable(layout)) return;
|
||||||
|
select.add(new Option(layout.label, value));
|
||||||
|
});
|
||||||
|
const available = Array.from(select.options).some((option) => option.value === previous);
|
||||||
|
select.value = available ? previous : "compact";
|
||||||
|
if (!available && previous !== "compact") api.applyLayout("compact", { persist: false });
|
||||||
|
select.title = unavailableLayoutMessage();
|
||||||
|
}
|
||||||
|
api.setLayoutCapabilities = function setLayoutCapabilities(capabilities = {}) {
|
||||||
|
Object.keys(layoutCapabilities).forEach((name) => {
|
||||||
|
if (name in capabilities) layoutCapabilities[name] = Boolean(capabilities[name]);
|
||||||
|
});
|
||||||
|
refreshLayoutOptions();
|
||||||
|
const select = document.getElementById("operator-layout-select");
|
||||||
|
const saved = savedLayoutName();
|
||||||
|
if (select && Array.from(select.options).some((option) => option.value === saved)) {
|
||||||
|
select.value = saved;
|
||||||
|
api.applyLayout(saved, { persist: false });
|
||||||
|
}
|
||||||
|
};
|
||||||
|
api.setActiveRig = function setActiveRig(rigId) {
|
||||||
|
activeRigId = typeof rigId === "string" && rigId ? rigId : null;
|
||||||
|
const saved = savedLayoutName();
|
||||||
|
const select = document.getElementById("operator-layout-select");
|
||||||
|
if (select) select.value = Array.from(select.options).some((option) => option.value === saved) ? saved : "compact";
|
||||||
|
api.applyLayout(select?.value || saved, { persist: false });
|
||||||
|
};
|
||||||
|
api.applyLayout = function applyLayout(name, options = {}) {
|
||||||
|
const requestedName = name in layouts ? name : "compact";
|
||||||
|
const requestedLayout = layouts[requestedName];
|
||||||
|
const permittedName = layoutAvailable(requestedLayout) ? requestedName : "compact";
|
||||||
|
const layout = layouts[permittedName];
|
||||||
|
document.body.dataset.operatorLayout = permittedName in layouts ? permittedName : "compact";
|
||||||
|
if (options.persist !== false) localStorage.setItem(layoutStorageKey(), permittedName);
|
||||||
|
const details = document.getElementById("advanced-radio-controls");
|
||||||
|
if (details) details.open = layout.advanced;
|
||||||
|
const audioDetails = document.getElementById("audio-controls");
|
||||||
|
if (audioDetails) audioDetails.open = layout.audio;
|
||||||
|
const schedulerDetails = document.getElementById("scheduler-controls");
|
||||||
|
if (schedulerDetails) schedulerDetails.open = layout.scheduler;
|
||||||
|
if (options.navigate && typeof browserWindow.navigateToTab === "function") {
|
||||||
|
browserWindow.navigateToTab(layout.preferredTab);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
function installLayoutControls() {
|
||||||
|
const actions = document.querySelector(".top-bar-actions");
|
||||||
|
if (actions && !document.getElementById("operator-layout-select")) {
|
||||||
|
const label = document.createElement("label");
|
||||||
|
label.className = "operator-layout-picker";
|
||||||
|
label.innerHTML = '<span class="visually-hidden">Operator layout</span><select id="operator-layout-select" aria-label="Operator layout"></select>';
|
||||||
|
const select = label.querySelector("select");
|
||||||
|
if (!select) throw new Error("Operator layout picker has no select element");
|
||||||
|
const savedLayout = savedLayoutName();
|
||||||
|
actions.insertBefore(label, actions.firstChild);
|
||||||
|
select.value = savedLayout;
|
||||||
|
refreshLayoutOptions();
|
||||||
|
if (savedLayout !== "broadcast" && savedLayout in layouts) select.value = savedLayout;
|
||||||
|
select.addEventListener("change", () => {
|
||||||
|
api.applyLayout(select.value, { navigate: true });
|
||||||
|
});
|
||||||
|
api.applyLayout(select.value);
|
||||||
|
}
|
||||||
|
const tray = document.querySelector(".controls-tray");
|
||||||
|
if (tray && !document.getElementById("advanced-radio-controls")) {
|
||||||
|
const details = document.createElement("details");
|
||||||
|
details.id = "advanced-radio-controls";
|
||||||
|
details.className = "advanced-radio-controls";
|
||||||
|
details.innerHTML = '<summary>Advanced radio controls</summary><div class="advanced-radio-body"></div>';
|
||||||
|
const body = details.querySelector(".advanced-radio-body");
|
||||||
|
if (!body) throw new Error("Advanced controls have no body");
|
||||||
|
["sdr-settings-row", "vchan-row", "tx-limit-row"].forEach((id) => {
|
||||||
|
const element = document.getElementById(id);
|
||||||
|
if (element) body.appendChild(element);
|
||||||
|
});
|
||||||
|
tray.appendChild(details);
|
||||||
|
api.applyLayout(savedLayoutName(), { persist: false });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
function installMobileMore() {
|
||||||
|
const nav = document.querySelector(".tab-bar-nav");
|
||||||
|
if (!nav || document.getElementById("mobile-more-btn")) return;
|
||||||
|
const more = document.createElement("button");
|
||||||
|
more.id = "mobile-more-btn";
|
||||||
|
more.className = "tab mobile-more-btn";
|
||||||
|
more.type = "button";
|
||||||
|
more.innerHTML = '<span class="tab-more-icon" aria-hidden="true">•••</span><span class="tab-label">More</span>';
|
||||||
|
more.setAttribute("aria-haspopup", "menu");
|
||||||
|
more.setAttribute("aria-expanded", "false");
|
||||||
|
const menu = document.createElement("div");
|
||||||
|
menu.id = "mobile-more-menu";
|
||||||
|
menu.className = "mobile-more-menu";
|
||||||
|
menu.setAttribute("role", "menu");
|
||||||
|
more.setAttribute("aria-controls", menu.id);
|
||||||
|
const closeMore = (restoreFocus = false) => {
|
||||||
|
if (!menu.classList.contains("is-open")) return;
|
||||||
|
menu.classList.remove("is-open");
|
||||||
|
more.setAttribute("aria-expanded", "false");
|
||||||
|
if (restoreFocus) more.focus();
|
||||||
|
};
|
||||||
|
api.closeMobileOverlays = closeMore;
|
||||||
|
["statistics", "recorder", "settings", "about"].forEach((tabName) => {
|
||||||
|
const source = nav.querySelector(`[data-tab="${tabName}"]`);
|
||||||
|
if (!source) return;
|
||||||
|
const item = document.createElement("button");
|
||||||
|
item.type = "button";
|
||||||
|
item.setAttribute("role", "menuitem");
|
||||||
|
item.dataset.navigateTab = tabName;
|
||||||
|
item.textContent = source.textContent.trim();
|
||||||
|
item.addEventListener("click", () => {
|
||||||
|
if (typeof browserWindow.navigateToTab === "function") browserWindow.navigateToTab(tabName);
|
||||||
|
closeMore();
|
||||||
|
});
|
||||||
|
menu.appendChild(item);
|
||||||
|
});
|
||||||
|
more.addEventListener("click", () => {
|
||||||
|
const open = menu.classList.toggle("is-open");
|
||||||
|
more.setAttribute("aria-expanded", String(open));
|
||||||
|
if (open) menu.querySelector('[role="menuitem"]')?.focus();
|
||||||
|
});
|
||||||
|
document.addEventListener("click", (event) => {
|
||||||
|
if (!(event.target instanceof Node) || !menu.contains(event.target) && !more.contains(event.target)) closeMore();
|
||||||
|
});
|
||||||
|
document.addEventListener("keydown", (event) => {
|
||||||
|
if (event.key === "Escape") closeMore(true);
|
||||||
|
});
|
||||||
|
window.addEventListener("resize", () => {
|
||||||
|
closeMore();
|
||||||
|
});
|
||||||
|
window.addEventListener("popstate", () => {
|
||||||
|
closeMore();
|
||||||
|
});
|
||||||
|
nav.append(more, menu);
|
||||||
|
}
|
||||||
|
function installDecoderPicker() {
|
||||||
|
const bar = document.querySelector("#tab-digital-modes > .sub-tab-bar");
|
||||||
|
if (!bar || document.getElementById("decoder-tab-select")) return;
|
||||||
|
const select = document.createElement("select");
|
||||||
|
select.id = "decoder-tab-select";
|
||||||
|
select.className = "decoder-tab-select";
|
||||||
|
select.setAttribute("aria-label", "Decoder view");
|
||||||
|
const groups = [
|
||||||
|
["Overview", ["overview"]],
|
||||||
|
["Marine & packet", ["ais", "vdes", "aprs", "hf-aprs"]],
|
||||||
|
["Weak signal", ["cw", "ft8", "ft4", "ft2", "wspr"]],
|
||||||
|
["Broadcast & images", ["rds", "sat", "wefax"]]
|
||||||
|
];
|
||||||
|
groups.forEach(([label, ids]) => {
|
||||||
|
const group = document.createElement("optgroup");
|
||||||
|
group.label = label;
|
||||||
|
ids.forEach((id) => {
|
||||||
|
const button = bar.querySelector(`[data-subtab="${id}"]`);
|
||||||
|
if (button) group.appendChild(new Option(button.textContent.trim(), id));
|
||||||
|
});
|
||||||
|
select.appendChild(group);
|
||||||
|
});
|
||||||
|
select.addEventListener("change", () => bar.querySelector(`[data-subtab="${select.value}"]`)?.click());
|
||||||
|
bar.insertAdjacentElement("afterend", select);
|
||||||
|
}
|
||||||
|
function installDecoderBadges() {
|
||||||
|
const bar = document.querySelector("#tab-digital-modes > .sub-tab-bar");
|
||||||
|
if (!bar) return;
|
||||||
|
bar.querySelectorAll(".sub-tab[data-subtab]").forEach((button) => {
|
||||||
|
const id = button.dataset.subtab;
|
||||||
|
if (!id) return;
|
||||||
|
if (id === "overview" || button.querySelector(".decoder-state-dot")) return;
|
||||||
|
const dot = document.createElement("span");
|
||||||
|
dot.className = "decoder-state-dot";
|
||||||
|
dot.setAttribute("aria-hidden", "true");
|
||||||
|
button.appendChild(dot);
|
||||||
|
const status = document.getElementById(`${id}-status`);
|
||||||
|
if (!status) return;
|
||||||
|
const sync = () => {
|
||||||
|
const value = status.textContent.toLowerCase();
|
||||||
|
const state = /receiv|decod|connected|listening/.test(value) ? "active" : /error|fail|disconnected/.test(value) ? "error" : "idle";
|
||||||
|
dot.dataset.state = state;
|
||||||
|
button.title = `${button.childNodes[0]?.textContent?.trim() || id}: ${status.textContent.trim()}`;
|
||||||
|
};
|
||||||
|
new MutationObserver(sync).observe(status, { childList: true, characterData: true, subtree: true });
|
||||||
|
sync();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
api.init = function init() {
|
||||||
|
ensureLiveRegions();
|
||||||
|
installLayoutControls();
|
||||||
|
installMobileMore();
|
||||||
|
installDecoderPicker();
|
||||||
|
installDecoderBadges();
|
||||||
|
api.prepareTabList(document.querySelector(".tab-bar-nav"), "primary");
|
||||||
|
document.querySelectorAll(".sub-tab-bar").forEach((bar) => {
|
||||||
|
api.prepareTabList(bar, "secondary");
|
||||||
|
});
|
||||||
|
window.addEventListener("unhandledrejection", (event) => {
|
||||||
|
const message = event.reason instanceof Error ? event.reason.message : "An operation failed unexpectedly";
|
||||||
|
api.notify(message, { kind: "error" });
|
||||||
|
});
|
||||||
|
};
|
||||||
|
if (document.readyState === "loading") document.addEventListener("DOMContentLoaded", () => {
|
||||||
|
api.init();
|
||||||
|
}, { once: true });
|
||||||
|
else api.init();
|
||||||
|
})();
|
||||||
@@ -0,0 +1,470 @@
|
|||||||
|
// src/plugins/vchan.ts
|
||||||
|
var vchanWindow = window;
|
||||||
|
var vchanSessionId = null;
|
||||||
|
var vchanRigId = null;
|
||||||
|
var vchanChannels = [];
|
||||||
|
var vchanActiveId = null;
|
||||||
|
var schedulerReleaseState = null;
|
||||||
|
var schedulerReleasePollTimer = null;
|
||||||
|
function vchanFmtFreq(hz) {
|
||||||
|
if (!Number.isFinite(hz) || hz <= 0) return "--";
|
||||||
|
if (hz >= 1e9) return (hz / 1e9).toFixed(4).replace(/\.?0+$/, "") + " GHz";
|
||||||
|
if (hz >= 1e6) return (hz / 1e6).toFixed(4).replace(/\.?0+$/, "") + " MHz";
|
||||||
|
if (hz >= 1e3) return (hz / 1e3).toFixed(1).replace(/\.?0+$/, "") + " kHz";
|
||||||
|
return `${String(hz)} Hz`;
|
||||||
|
}
|
||||||
|
function schedulerReleaseSummaryText(state) {
|
||||||
|
if (!state) return "Scheduler is controlling the rig.";
|
||||||
|
const connected = Number(state.connected_sessions) || 0;
|
||||||
|
const released = Number(state.released_sessions) || 0;
|
||||||
|
if (connected === 0) return "Scheduler can control the rig.";
|
||||||
|
if (state.all_released) {
|
||||||
|
return connected === 1 ? "Scheduler is controlling the rig." : `Scheduler is controlling the rig for all ${connected} users.`;
|
||||||
|
}
|
||||||
|
if (!state.current_session_released) {
|
||||||
|
const othersReleased = Math.max(released, 0);
|
||||||
|
return othersReleased > 0 ? `You are holding control. ${othersReleased} other user${othersReleased === 1 ? "" : "s"} already released it.` : "You are holding control. Release it to return control to the scheduler.";
|
||||||
|
}
|
||||||
|
const blocking = Math.max(connected - released, 0);
|
||||||
|
return blocking > 0 ? `Scheduler is waiting for ${blocking} user${blocking === 1 ? "" : "s"} to stop manual tuning.` : "Scheduler can control the rig.";
|
||||||
|
}
|
||||||
|
function vchanRenderSchedulerRelease() {
|
||||||
|
const btn = document.getElementById("scheduler-release-btn");
|
||||||
|
const status = document.getElementById("scheduler-release-status");
|
||||||
|
if (!btn || !status) return;
|
||||||
|
const currentReleased = !!(schedulerReleaseState && schedulerReleaseState.current_session_released);
|
||||||
|
btn.disabled = !vchanSessionId || currentReleased;
|
||||||
|
btn.classList.toggle("active", !currentReleased);
|
||||||
|
btn.textContent = "Release to Scheduler";
|
||||||
|
status.textContent = schedulerReleaseSummaryText(schedulerReleaseState);
|
||||||
|
}
|
||||||
|
async function vchanPollSchedulerRelease() {
|
||||||
|
if (!vchanSessionId) {
|
||||||
|
schedulerReleaseState = null;
|
||||||
|
vchanRenderSchedulerRelease();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
try {
|
||||||
|
const resp = await fetch(`/scheduler-control?session_id=${encodeURIComponent(vchanSessionId)}`);
|
||||||
|
if (!resp.ok) throw new Error(`HTTP ${resp.status}`);
|
||||||
|
schedulerReleaseState = await resp.json();
|
||||||
|
vchanRenderSchedulerRelease();
|
||||||
|
} catch (e) {
|
||||||
|
console.error("scheduler release status failed", e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
function vchanStartSchedulerReleasePolling() {
|
||||||
|
if (schedulerReleasePollTimer) {
|
||||||
|
clearInterval(schedulerReleasePollTimer);
|
||||||
|
}
|
||||||
|
schedulerReleasePollTimer = setInterval(() => {
|
||||||
|
void vchanPollSchedulerRelease();
|
||||||
|
}, 1e4);
|
||||||
|
}
|
||||||
|
async function vchanToggleSchedulerRelease() {
|
||||||
|
if (!vchanSessionId) return;
|
||||||
|
const rigId = vchanRigId || vchanWindow.lastActiveRigId || null;
|
||||||
|
try {
|
||||||
|
const resp = await fetch("/scheduler-control", {
|
||||||
|
method: "PUT",
|
||||||
|
headers: { "Content-Type": "application/json" },
|
||||||
|
body: JSON.stringify({ session_id: vchanSessionId, released: true, remote: rigId })
|
||||||
|
});
|
||||||
|
if (!resp.ok) throw new Error(`HTTP ${resp.status}`);
|
||||||
|
schedulerReleaseState = await resp.json();
|
||||||
|
vchanRenderSchedulerRelease();
|
||||||
|
} catch (e) {
|
||||||
|
console.error("scheduler release toggle failed", e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
async function vchanTakeSchedulerControl() {
|
||||||
|
if (!vchanSessionId) return;
|
||||||
|
if (schedulerReleaseState && !schedulerReleaseState.current_session_released) return;
|
||||||
|
try {
|
||||||
|
const resp = await fetch("/scheduler-control", {
|
||||||
|
method: "PUT",
|
||||||
|
headers: { "Content-Type": "application/json" },
|
||||||
|
body: JSON.stringify({ session_id: vchanSessionId, released: false })
|
||||||
|
});
|
||||||
|
if (!resp.ok) throw new Error(`HTTP ${resp.status}`);
|
||||||
|
schedulerReleaseState = await resp.json();
|
||||||
|
vchanRenderSchedulerRelease();
|
||||||
|
} catch (e) {
|
||||||
|
console.error("scheduler control takeover failed", e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
function vchanHandleSession(data) {
|
||||||
|
try {
|
||||||
|
const d = JSON.parse(data);
|
||||||
|
vchanSessionId = d.session_id || null;
|
||||||
|
void vchanPollSchedulerRelease();
|
||||||
|
} catch (e) {
|
||||||
|
console.warn("vchan: bad session event", e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
function vchanHandleChannels(data) {
|
||||||
|
try {
|
||||||
|
const d = JSON.parse(data);
|
||||||
|
vchanRigId = d.remote || null;
|
||||||
|
vchanChannels = d.channels || [];
|
||||||
|
const ids = new Set(vchanChannels.map((c) => c.id));
|
||||||
|
const primaryChannel = vchanChannels[0];
|
||||||
|
if (!vchanActiveId && primaryChannel && vchanSessionId) {
|
||||||
|
void vchanAutoJoinPrimary(primaryChannel.id);
|
||||||
|
} else if (vchanActiveId && !ids.has(vchanActiveId)) {
|
||||||
|
vchanActiveId = vchanChannels[0]?.id ?? null;
|
||||||
|
vchanReconnectAudio();
|
||||||
|
}
|
||||||
|
vchanRender();
|
||||||
|
vchanRenderSchedulerRelease();
|
||||||
|
vchanWindow.renderRdsOverlays?.();
|
||||||
|
} catch (e) {
|
||||||
|
console.warn("vchan: bad channels event", e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
function vchanRender() {
|
||||||
|
const picker = document.getElementById("vchan-picker");
|
||||||
|
if (!picker) return;
|
||||||
|
picker.innerHTML = "";
|
||||||
|
vchanChannels.forEach((ch) => {
|
||||||
|
const btn = document.createElement("button");
|
||||||
|
btn.type = "button";
|
||||||
|
btn.title = `Ch ${ch.index}: ${vchanFmtFreq(ch.freq_hz)} ${ch.mode} · ${ch.subscribers} subscriber${ch.subscribers !== 1 ? "s" : ""}`;
|
||||||
|
if (ch.id === vchanActiveId) btn.classList.add("active");
|
||||||
|
const label = document.createElement("span");
|
||||||
|
label.className = "vchan-label";
|
||||||
|
label.textContent = `${ch.index}: ${vchanFmtFreq(ch.freq_hz)} ${ch.mode}`;
|
||||||
|
btn.appendChild(label);
|
||||||
|
if (!ch.permanent) {
|
||||||
|
const del = document.createElement("span");
|
||||||
|
del.className = "vchan-del";
|
||||||
|
del.textContent = "×";
|
||||||
|
del.title = "Delete channel";
|
||||||
|
del.addEventListener("click", (e) => {
|
||||||
|
e.stopPropagation();
|
||||||
|
void vchanDelete(ch.id);
|
||||||
|
});
|
||||||
|
btn.appendChild(del);
|
||||||
|
}
|
||||||
|
btn.addEventListener("click", () => {
|
||||||
|
if (ch.id !== vchanActiveId) void vchanSubscribe(ch.id);
|
||||||
|
});
|
||||||
|
picker.appendChild(btn);
|
||||||
|
});
|
||||||
|
const addBtn = document.createElement("button");
|
||||||
|
addBtn.type = "button";
|
||||||
|
addBtn.className = "vchan-add";
|
||||||
|
addBtn.textContent = "+";
|
||||||
|
addBtn.title = "Allocate new virtual channel at current frequency";
|
||||||
|
addBtn.addEventListener("click", () => {
|
||||||
|
void vchanAllocate();
|
||||||
|
});
|
||||||
|
picker.appendChild(addBtn);
|
||||||
|
vchanSyncAccentUI();
|
||||||
|
if (vchanWindow.updateDocumentTitle && vchanWindow.activeChannelRds) {
|
||||||
|
vchanWindow.updateDocumentTitle(vchanWindow.activeChannelRds());
|
||||||
|
}
|
||||||
|
vchanRenderSchedulerRelease();
|
||||||
|
}
|
||||||
|
async function vchanAllocate() {
|
||||||
|
if (!vchanSessionId || !vchanRigId) return;
|
||||||
|
const freqHz = typeof vchanWindow.lastFreqHz === "number" && vchanWindow.lastFreqHz > 0 ? vchanWindow.lastFreqHz : 0;
|
||||||
|
const modeEl = document.getElementById("mode");
|
||||||
|
const mode = modeEl ? modeEl.value || "USB" : "USB";
|
||||||
|
try {
|
||||||
|
const resp = await fetch(`/channels/${encodeURIComponent(vchanRigId)}`, {
|
||||||
|
method: "POST",
|
||||||
|
headers: { "Content-Type": "application/json" },
|
||||||
|
body: JSON.stringify({ session_id: vchanSessionId, freq_hz: freqHz, mode })
|
||||||
|
});
|
||||||
|
if (!resp.ok) {
|
||||||
|
const msg = await resp.text().catch(() => String(resp.status));
|
||||||
|
console.warn("vchan: allocate failed —", msg);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const ch = await resp.json();
|
||||||
|
vchanActiveId = ch.id;
|
||||||
|
vchanRender();
|
||||||
|
vchanReconnectAudio();
|
||||||
|
} catch (e) {
|
||||||
|
console.error("vchan: allocate error", e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
async function vchanDelete(channelId) {
|
||||||
|
if (!vchanRigId) return;
|
||||||
|
try {
|
||||||
|
const resp = await fetch(
|
||||||
|
`/channels/${encodeURIComponent(vchanRigId)}/${encodeURIComponent(channelId)}`,
|
||||||
|
{ method: "DELETE" }
|
||||||
|
);
|
||||||
|
if (!resp.ok) {
|
||||||
|
console.warn("vchan: delete failed", resp.status);
|
||||||
|
}
|
||||||
|
} catch (e) {
|
||||||
|
console.error("vchan: delete error", e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
async function vchanAutoJoinPrimary(channelId) {
|
||||||
|
if (!vchanSessionId || !vchanRigId) return;
|
||||||
|
try {
|
||||||
|
const resp = await fetch(
|
||||||
|
`/channels/${encodeURIComponent(vchanRigId)}/${encodeURIComponent(channelId)}/subscribe`,
|
||||||
|
{
|
||||||
|
method: "POST",
|
||||||
|
headers: { "Content-Type": "application/json" },
|
||||||
|
body: JSON.stringify({ session_id: vchanSessionId })
|
||||||
|
}
|
||||||
|
);
|
||||||
|
if (!resp.ok) {
|
||||||
|
console.warn("vchan: auto-join primary failed", resp.status);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
vchanActiveId = channelId;
|
||||||
|
vchanRender();
|
||||||
|
} catch (e) {
|
||||||
|
console.error("vchan: auto-join error", e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
async function vchanSubscribe(channelId) {
|
||||||
|
if (!vchanSessionId || !vchanRigId) return;
|
||||||
|
try {
|
||||||
|
await vchanTakeSchedulerControl();
|
||||||
|
const resp = await fetch(
|
||||||
|
`/channels/${encodeURIComponent(vchanRigId)}/${encodeURIComponent(channelId)}/subscribe`,
|
||||||
|
{
|
||||||
|
method: "POST",
|
||||||
|
headers: { "Content-Type": "application/json" },
|
||||||
|
body: JSON.stringify({ session_id: vchanSessionId })
|
||||||
|
}
|
||||||
|
);
|
||||||
|
if (!resp.ok) {
|
||||||
|
console.warn("vchan: subscribe failed", resp.status);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
vchanActiveId = channelId;
|
||||||
|
vchanRender();
|
||||||
|
vchanSyncModeDisplay();
|
||||||
|
vchanReconnectAudio();
|
||||||
|
} catch (e) {
|
||||||
|
console.error("vchan: subscribe error", e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
function vchanReconnectAudio() {
|
||||||
|
const ch = vchanIsOnVirtual() ? vchanActiveChannel() : null;
|
||||||
|
vchanWindow._audioChannelOverride = ch?.id ?? null;
|
||||||
|
if (!vchanWindow.rxActive) return;
|
||||||
|
vchanWindow.stopRxAudio?.();
|
||||||
|
setTimeout(() => {
|
||||||
|
vchanWindow.startRxAudio?.();
|
||||||
|
}, 300);
|
||||||
|
}
|
||||||
|
function vchanApplyCapabilities(caps) {
|
||||||
|
const picker = document.getElementById("vchan-picker");
|
||||||
|
if (!picker) return;
|
||||||
|
picker.style.display = caps && caps.filter_controls ? "" : "none";
|
||||||
|
vchanRenderSchedulerRelease();
|
||||||
|
}
|
||||||
|
function vchanIsOnVirtual() {
|
||||||
|
if (!vchanActiveId || vchanChannels.length === 0) return false;
|
||||||
|
return vchanActiveId !== vchanChannels[0]?.id;
|
||||||
|
}
|
||||||
|
function vchanActiveChannel() {
|
||||||
|
return vchanChannels.find((c) => c.id === vchanActiveId) || null;
|
||||||
|
}
|
||||||
|
function vchanUpdateFreqDisplay() {
|
||||||
|
const ch = vchanActiveChannel();
|
||||||
|
if (!ch) return;
|
||||||
|
const el = document.getElementById("freq");
|
||||||
|
if (!el) return;
|
||||||
|
if (vchanWindow.formatFreqForStep && typeof vchanWindow.jogUnit === "number") {
|
||||||
|
el.value = vchanWindow.formatFreqForStep(ch.freq_hz, vchanWindow.jogUnit);
|
||||||
|
} else {
|
||||||
|
el.value = (ch.freq_hz / 1e6).toFixed(6).replace(/\.?0+$/, "");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
function vchanSyncModeDisplay() {
|
||||||
|
const modeEl = document.getElementById("mode");
|
||||||
|
if (!modeEl) return;
|
||||||
|
if (vchanIsOnVirtual()) {
|
||||||
|
const ch = vchanActiveChannel();
|
||||||
|
if (ch && ch.mode) modeEl.value = ch.mode.toUpperCase();
|
||||||
|
}
|
||||||
|
const modeUpper = (modeEl.value || "").toUpperCase();
|
||||||
|
if (typeof vchanWindow.lastModeName === "string") {
|
||||||
|
if (modeUpper === "WFM" && vchanWindow.lastModeName !== "WFM") {
|
||||||
|
vchanWindow.setJogDivisor?.(10);
|
||||||
|
vchanWindow.resetRdsDisplay?.();
|
||||||
|
} else if (modeUpper !== "WFM" && vchanWindow.lastModeName === "WFM") {
|
||||||
|
vchanWindow.resetRdsDisplay?.();
|
||||||
|
}
|
||||||
|
vchanWindow.lastModeName = modeUpper;
|
||||||
|
}
|
||||||
|
vchanWindow.updateWfmControls?.();
|
||||||
|
vchanWindow.updateSdrSquelchControlVisibility?.();
|
||||||
|
if (vchanWindow.refreshRdsUi) {
|
||||||
|
vchanWindow.refreshRdsUi();
|
||||||
|
} else {
|
||||||
|
vchanWindow.positionRdsPsOverlay?.();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
function vchanSyncBwDisplay() {
|
||||||
|
if (!vchanIsOnVirtual()) return;
|
||||||
|
const ch = vchanActiveChannel();
|
||||||
|
if (!ch) return;
|
||||||
|
const bwEl = document.getElementById("spectrum-bw-input");
|
||||||
|
if (!bwEl) return;
|
||||||
|
let bwHz = ch.bandwidth_hz || 0;
|
||||||
|
if (bwHz === 0 && vchanWindow.mwDefaultsForMode) {
|
||||||
|
bwHz = vchanWindow.mwDefaultsForMode(ch.mode)[0] || 0;
|
||||||
|
}
|
||||||
|
if (bwHz > 0) {
|
||||||
|
bwEl.value = (bwHz / 1e3).toFixed(3).replace(/\.?0+$/, "");
|
||||||
|
vchanWindow.currentBandwidthHz = bwHz;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
function vchanSyncAccentUI() {
|
||||||
|
const onVirtual = vchanIsOnVirtual();
|
||||||
|
const freqEl = document.getElementById("freq");
|
||||||
|
const bwEl = document.getElementById("spectrum-bw-input");
|
||||||
|
if (freqEl) freqEl.classList.toggle("vchan-ch-active", onVirtual);
|
||||||
|
if (bwEl) bwEl.classList.toggle("vchan-ch-active", onVirtual);
|
||||||
|
if (onVirtual) {
|
||||||
|
vchanUpdateFreqDisplay();
|
||||||
|
vchanSyncModeDisplay();
|
||||||
|
vchanSyncBwDisplay();
|
||||||
|
} else {
|
||||||
|
origRefreshFreqDisplay?.();
|
||||||
|
}
|
||||||
|
if (vchanWindow.updateDocumentTitle && vchanWindow.activeChannelRds) {
|
||||||
|
vchanWindow.updateDocumentTitle(vchanWindow.activeChannelRds());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
var origRefreshFreqDisplay = null;
|
||||||
|
function vchanSetChannelFreq(freqHz) {
|
||||||
|
if (!vchanRigId || !vchanActiveId) return;
|
||||||
|
if (vchanWindow.lastSpectrumData && vchanWindow.lastSpectrumData.sample_rate > 0) {
|
||||||
|
const halfSpan = vchanWindow.lastSpectrumData.sample_rate / 2;
|
||||||
|
const center = vchanWindow.lastSpectrumData.center_hz;
|
||||||
|
if (Math.abs(freqHz - center) > halfSpan) {
|
||||||
|
if (vchanWindow.showHint) {
|
||||||
|
vchanWindow.showHint(
|
||||||
|
`Out of SDR bandwidth (center ${(center / 1e6).toFixed(3)} MHz ±${(halfSpan / 1e3).toFixed(0)} kHz)`,
|
||||||
|
3e3
|
||||||
|
);
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
void vchanTakeSchedulerControl();
|
||||||
|
void fetch(
|
||||||
|
`/channels/${encodeURIComponent(vchanRigId)}/${encodeURIComponent(vchanActiveId)}/freq`,
|
||||||
|
{
|
||||||
|
method: "PUT",
|
||||||
|
headers: { "Content-Type": "application/json" },
|
||||||
|
body: JSON.stringify({ freq_hz: Math.round(freqHz) })
|
||||||
|
}
|
||||||
|
).catch((error) => {
|
||||||
|
console.error("vchan: set freq error", error);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
async function vchanSetChannelBandwidth(bwHz) {
|
||||||
|
if (!vchanRigId || !vchanActiveId) return;
|
||||||
|
try {
|
||||||
|
await vchanTakeSchedulerControl();
|
||||||
|
const resp = await fetch(
|
||||||
|
`/channels/${encodeURIComponent(vchanRigId)}/${encodeURIComponent(vchanActiveId)}/bw`,
|
||||||
|
{
|
||||||
|
method: "PUT",
|
||||||
|
headers: { "Content-Type": "application/json" },
|
||||||
|
body: JSON.stringify({ bandwidth_hz: Math.round(bwHz) })
|
||||||
|
}
|
||||||
|
);
|
||||||
|
if (!resp.ok) console.warn("vchan: set bw failed", resp.status);
|
||||||
|
} catch (e) {
|
||||||
|
console.error("vchan: set bw error", e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
async function vchanSetChannelMode(mode) {
|
||||||
|
if (!vchanRigId || !vchanActiveId) return;
|
||||||
|
try {
|
||||||
|
await vchanTakeSchedulerControl();
|
||||||
|
const resp = await fetch(
|
||||||
|
`/channels/${encodeURIComponent(vchanRigId)}/${encodeURIComponent(vchanActiveId)}/mode`,
|
||||||
|
{
|
||||||
|
method: "PUT",
|
||||||
|
headers: { "Content-Type": "application/json" },
|
||||||
|
body: JSON.stringify({ mode })
|
||||||
|
}
|
||||||
|
);
|
||||||
|
if (!resp.ok) console.warn("vchan: set mode failed", resp.status);
|
||||||
|
} catch (e) {
|
||||||
|
console.error("vchan: set mode error", e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
async function vchanInterceptMode(mode) {
|
||||||
|
if (!vchanIsOnVirtual()) return false;
|
||||||
|
await vchanSetChannelMode(mode);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
async function vchanInterceptBandwidth(bwHz) {
|
||||||
|
if (!vchanIsOnVirtual()) return false;
|
||||||
|
await vchanSetChannelBandwidth(bwHz);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
vchanWindow.trx ??= {};
|
||||||
|
vchanWindow.trx.modules ??= {};
|
||||||
|
vchanWindow.trx.modules.vchan = {
|
||||||
|
get channels() {
|
||||||
|
return vchanChannels;
|
||||||
|
},
|
||||||
|
get activeId() {
|
||||||
|
return vchanActiveId;
|
||||||
|
},
|
||||||
|
activeChannel: vchanActiveChannel,
|
||||||
|
applyCapabilities: vchanApplyCapabilities,
|
||||||
|
handleSession: vchanHandleSession,
|
||||||
|
handleChannels: vchanHandleChannels,
|
||||||
|
isOnVirtual: vchanIsOnVirtual,
|
||||||
|
interceptMode: vchanInterceptMode,
|
||||||
|
interceptBandwidth: vchanInterceptBandwidth,
|
||||||
|
takeSchedulerControl: vchanTakeSchedulerControl,
|
||||||
|
releaseToScheduler: vchanToggleSchedulerRelease
|
||||||
|
};
|
||||||
|
(function() {
|
||||||
|
const original = vchanWindow.setRigFrequency;
|
||||||
|
vchanWindow.setRigFrequency = function(freqHz) {
|
||||||
|
if (vchanIsOnVirtual()) {
|
||||||
|
if (vchanWindow.applyLocalTunedFrequency) {
|
||||||
|
if (typeof vchanWindow._freqOptimisticSeq === "number") {
|
||||||
|
vchanWindow._freqOptimisticSeq += 1;
|
||||||
|
vchanWindow._freqOptimisticHz = Math.round(freqHz);
|
||||||
|
}
|
||||||
|
vchanWindow.applyLocalTunedFrequency(Math.round(freqHz));
|
||||||
|
}
|
||||||
|
vchanSetChannelFreq(freqHz);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
void vchanTakeSchedulerControl();
|
||||||
|
original?.(freqHz);
|
||||||
|
};
|
||||||
|
})();
|
||||||
|
(function initSchedulerReleaseControl() {
|
||||||
|
const btn = document.getElementById("scheduler-release-btn");
|
||||||
|
if (btn) {
|
||||||
|
btn.addEventListener("click", () => {
|
||||||
|
void vchanToggleSchedulerRelease();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
vchanStartSchedulerReleasePolling();
|
||||||
|
vchanRenderSchedulerRelease();
|
||||||
|
})();
|
||||||
|
(function() {
|
||||||
|
origRefreshFreqDisplay = vchanWindow.refreshFreqDisplay ?? null;
|
||||||
|
vchanWindow.refreshFreqDisplay = function() {
|
||||||
|
if (vchanIsOnVirtual()) {
|
||||||
|
vchanUpdateFreqDisplay();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
origRefreshFreqDisplay?.();
|
||||||
|
};
|
||||||
|
})();
|
||||||
@@ -0,0 +1,268 @@
|
|||||||
|
// src/plugins/vdes.ts
|
||||||
|
var vdesWindow = window;
|
||||||
|
var escapeVdesHtml = (input) => vdesWindow.escapeMapHtml?.(input) ?? input.replaceAll("&", "&").replaceAll("<", "<").replaceAll(">", ">").replaceAll('"', """);
|
||||||
|
var vdesStatus = document.getElementById("vdes-status");
|
||||||
|
var vdesMessagesEl = document.getElementById("vdes-messages");
|
||||||
|
var vdesFilterInput = document.getElementById("vdes-filter");
|
||||||
|
var vdesBarOverlay = document.getElementById("vdes-bar-overlay");
|
||||||
|
var vdesChannelSummaryEl = document.getElementById("vdes-channel-summary");
|
||||||
|
var vdesFrameCountEl = document.getElementById("vdes-frame-count");
|
||||||
|
var vdesLatestSeenEl = document.getElementById("vdes-latest-seen");
|
||||||
|
var VDES_BAR_WINDOW_MS = 15 * 60 * 1e3;
|
||||||
|
var vdesFilterText = "";
|
||||||
|
var vdesMessageHistory = [];
|
||||||
|
function currentVdesHistoryRetentionMs() {
|
||||||
|
return typeof vdesWindow.getDecodeHistoryRetentionMs === "function" ? vdesWindow.getDecodeHistoryRetentionMs() : 24 * 60 * 60 * 1e3;
|
||||||
|
}
|
||||||
|
function pruneVdesMessageHistory() {
|
||||||
|
const cutoffMs = Date.now() - currentVdesHistoryRetentionMs();
|
||||||
|
vdesMessageHistory = vdesMessageHistory.filter((msg) => (msg._tsMs ?? 0) >= cutoffMs);
|
||||||
|
}
|
||||||
|
function scheduleVdesUi(key, job) {
|
||||||
|
if (typeof vdesWindow.trxScheduleUiFrameJob === "function") {
|
||||||
|
vdesWindow.trxScheduleUiFrameJob(key, job);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
job();
|
||||||
|
}
|
||||||
|
function scheduleVdesHistoryRender() {
|
||||||
|
scheduleVdesUi("vdes-history", () => {
|
||||||
|
renderVdesHistory();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
function scheduleVdesBarUpdate() {
|
||||||
|
scheduleVdesUi("vdes-bar", () => {
|
||||||
|
updateVdesBar();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
function currentVdesCenterText() {
|
||||||
|
const raw = (document.getElementById("freq")?.value || "").replace(/[^\d]/g, "");
|
||||||
|
const hz = raw ? Number(raw) : 0;
|
||||||
|
if (!Number.isFinite(hz) || hz <= 0) return "100 kHz centered on tuned frequency";
|
||||||
|
return `100 kHz @ ${(hz / 1e6).toFixed(3)} MHz`;
|
||||||
|
}
|
||||||
|
function vdesAgeText(tsMs) {
|
||||||
|
if (typeof tsMs !== "number" || !Number.isFinite(tsMs)) return "just now";
|
||||||
|
const deltaMs = Math.max(0, Date.now() - tsMs);
|
||||||
|
const seconds = Math.round(deltaMs / 1e3);
|
||||||
|
if (seconds < 5) return "just now";
|
||||||
|
if (seconds < 60) return `${seconds}s ago`;
|
||||||
|
const minutes = Math.round(seconds / 60);
|
||||||
|
if (minutes < 60) return `${minutes}m ago`;
|
||||||
|
const hours = Math.round(minutes / 60);
|
||||||
|
return `${hours}h ago`;
|
||||||
|
}
|
||||||
|
function vdesHexPreview(rawBytes) {
|
||||||
|
if (!Array.isArray(rawBytes) || rawBytes.length === 0) return "--";
|
||||||
|
return rawBytes.slice(0, 20).map((value) => value.toString(16).padStart(2, "0")).join(" ").toUpperCase();
|
||||||
|
}
|
||||||
|
function updateVdesSummary() {
|
||||||
|
pruneVdesMessageHistory();
|
||||||
|
if (vdesChannelSummaryEl) {
|
||||||
|
vdesChannelSummaryEl.textContent = currentVdesCenterText();
|
||||||
|
}
|
||||||
|
if (vdesFrameCountEl) {
|
||||||
|
const count = vdesMessageHistory.length;
|
||||||
|
vdesFrameCountEl.textContent = `${count} burst${count === 1 ? "" : "s"}`;
|
||||||
|
}
|
||||||
|
if (vdesLatestSeenEl) {
|
||||||
|
const latest = vdesMessageHistory[0];
|
||||||
|
vdesLatestSeenEl.textContent = latest ? vdesAgeText(latest._tsMs) : "No traffic yet";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
function applyVdesFilterToRow(row) {
|
||||||
|
if (!vdesFilterText) {
|
||||||
|
row.style.display = "";
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const text = row.dataset.filterText || "";
|
||||||
|
row.style.display = text.includes(vdesFilterText) ? "" : "none";
|
||||||
|
}
|
||||||
|
function renderVdesRow(msg) {
|
||||||
|
const row = document.createElement("div");
|
||||||
|
row.className = "vdes-message";
|
||||||
|
const ts = msg._ts || (/* @__PURE__ */ new Date()).toLocaleTimeString([], {
|
||||||
|
hour: "2-digit",
|
||||||
|
minute: "2-digit",
|
||||||
|
second: "2-digit"
|
||||||
|
});
|
||||||
|
const title = msg.vessel_name || "VDES Burst";
|
||||||
|
const label = msg.callsign || "VDES";
|
||||||
|
const info = msg.destination || "";
|
||||||
|
const labelText = msg.message_label || "";
|
||||||
|
const linkText = Number.isFinite(msg.link_id) ? `LID ${msg.link_id}` : "";
|
||||||
|
const syncText = Number.isFinite(msg.sync_score) ? `Sync ${(Number(msg.sync_score) * 100).toFixed(0)}%` : "";
|
||||||
|
const phaseText = Number.isFinite(msg.phase_rotation) ? `R${Number(msg.phase_rotation)}` : "";
|
||||||
|
const fecText = msg.fec_state || "";
|
||||||
|
const srcText = Number.isFinite(msg.source_id) ? `SRC ${Number(msg.source_id)}` : "";
|
||||||
|
const dstText = Number.isFinite(msg.destination_id) ? `DST ${Number(msg.destination_id)}` : "";
|
||||||
|
const sessionText = Number.isFinite(msg.session_id) ? `S${Number(msg.session_id)}` : "";
|
||||||
|
const asmText = Number.isFinite(msg.asm_identifier) ? `ASM ${Number(msg.asm_identifier)}` : "";
|
||||||
|
const countText = Number.isFinite(msg.data_count) ? `${Number(msg.data_count)} data bits` : "";
|
||||||
|
const ackText = Number.isFinite(msg.ack_nack_mask) ? `ACK 0x${Number(msg.ack_nack_mask).toString(16).toUpperCase().padStart(4, "0")}` : "";
|
||||||
|
const cqiText = Number.isFinite(msg.channel_quality) ? `CQ ${Number(msg.channel_quality)}` : "";
|
||||||
|
const previewText = msg.payload_preview || "";
|
||||||
|
const rawHex = vdesHexPreview(msg.raw_bytes);
|
||||||
|
row.dataset.filterText = [
|
||||||
|
title,
|
||||||
|
label,
|
||||||
|
labelText,
|
||||||
|
info,
|
||||||
|
srcText,
|
||||||
|
dstText,
|
||||||
|
sessionText,
|
||||||
|
asmText,
|
||||||
|
countText,
|
||||||
|
ackText,
|
||||||
|
cqiText,
|
||||||
|
previewText,
|
||||||
|
linkText,
|
||||||
|
syncText,
|
||||||
|
phaseText,
|
||||||
|
fecText,
|
||||||
|
rawHex,
|
||||||
|
msg.message_type,
|
||||||
|
msg.bit_len
|
||||||
|
].filter(Boolean).join(" ").toUpperCase();
|
||||||
|
row.innerHTML = `<div class="vdes-row-head"><span class="vdes-time">${ts}</span><span class="vdes-call">${escapeVdesHtml(title)}</span><span class="vdes-badge">${escapeVdesHtml(label)}</span>` + (labelText ? `<span class="vdes-badge">${escapeVdesHtml(labelText)}</span>` : "") + (linkText ? `<span class="vdes-badge">${escapeVdesHtml(linkText)}</span>` : "") + (srcText ? `<span class="vdes-badge">${escapeVdesHtml(srcText)}</span>` : "") + (dstText ? `<span class="vdes-badge">${escapeVdesHtml(dstText)}</span>` : "") + (syncText ? `<span class="vdes-badge">${escapeVdesHtml(syncText)}</span>` : "") + (phaseText ? `<span class="vdes-badge">${escapeVdesHtml(phaseText)}</span>` : "") + `<span class="vdes-badge">T${escapeVdesHtml(String(msg.message_type ?? "--"))}</span></div><div class="vdes-row-meta"><span>${escapeVdesHtml(currentVdesCenterText())}</span><span>${escapeVdesHtml(`${msg.bit_len || 0} bits`)}</span>` + (sessionText ? `<span>${escapeVdesHtml(sessionText)}</span>` : "") + (asmText ? `<span>${escapeVdesHtml(asmText)}</span>` : "") + (countText ? `<span>${escapeVdesHtml(countText)}</span>` : "") + (ackText ? `<span>${escapeVdesHtml(ackText)}</span>` : "") + (cqiText ? `<span>${escapeVdesHtml(cqiText)}</span>` : "") + (info ? `<span>${escapeVdesHtml(info)}</span>` : "") + (fecText ? `<span>${escapeVdesHtml(fecText)}</span>` : "") + `<span>${escapeVdesHtml(vdesAgeText(msg._tsMs))}</span></div><div class="vdes-row-detail">` + (previewText ? `<span>${escapeVdesHtml(previewText)}</span>` : "") + (previewText ? `<span>·</span>` : "") + `<span class="vdes-raw">${escapeVdesHtml(rawHex)}</span></div>`;
|
||||||
|
applyVdesFilterToRow(row);
|
||||||
|
return row;
|
||||||
|
}
|
||||||
|
function updateVdesBar() {
|
||||||
|
if (!vdesBarOverlay) return;
|
||||||
|
updateVdesSummary();
|
||||||
|
const isVdes = (document.getElementById("mode")?.value || "").toUpperCase() === "VDES";
|
||||||
|
const cutoffMs = Date.now() - VDES_BAR_WINDOW_MS;
|
||||||
|
const messages = vdesMessageHistory.filter((msg) => (msg._tsMs ?? 0) >= cutoffMs).slice(0, 6);
|
||||||
|
if (!isVdes || messages.length === 0) {
|
||||||
|
vdesBarOverlay.style.display = "none";
|
||||||
|
vdesBarOverlay.innerHTML = "";
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
let html = `<div class="aprs-bar-header"><span class="aprs-bar-title"><span class="aprs-bar-title-word">VDES</span><span class="aprs-bar-title-word">Live</span></span><span class="aprs-bar-clear-wrap"><span class="aprs-bar-clear" role="button" tabindex="0" onclick="window.clearVdesBar()" onkeydown="if(event.key==='Enter'||event.key===' '){event.preventDefault();window.clearVdesBar();}" aria-label="Clear VDES overlay">Clear</span></span><span class="aprs-bar-window">Last 15 minutes</span></div>`;
|
||||||
|
for (const msg of messages) {
|
||||||
|
const ts = msg._ts ? `<span class="aprs-bar-time">${msg._ts}</span>` : "";
|
||||||
|
const label = escapeVdesHtml(msg.callsign || "VDES");
|
||||||
|
const title = escapeVdesHtml(msg.vessel_name || "Burst");
|
||||||
|
const detail = [
|
||||||
|
`${msg.bit_len || 0} bits`,
|
||||||
|
msg.message_label ? escapeVdesHtml(msg.message_label) : null,
|
||||||
|
Number.isFinite(msg.source_id) ? `src ${Number(msg.source_id)}` : null,
|
||||||
|
Number.isFinite(msg.destination_id) ? `dst ${Number(msg.destination_id)}` : null,
|
||||||
|
Number.isFinite(msg.link_id) ? `LID ${Number(msg.link_id)}` : null,
|
||||||
|
Number.isFinite(msg.asm_identifier) ? `ASM ${Number(msg.asm_identifier)}` : null,
|
||||||
|
Number.isFinite(msg.sync_score) ? `sync ${(Number(msg.sync_score) * 100).toFixed(0)}%` : null,
|
||||||
|
Number.isFinite(msg.phase_rotation) ? `rot ${Number(msg.phase_rotation)}` : null,
|
||||||
|
msg.destination ? escapeVdesHtml(msg.destination) : null,
|
||||||
|
escapeVdesHtml(vdesAgeText(msg._tsMs))
|
||||||
|
].filter(Boolean).join(" · ");
|
||||||
|
html += `<div class="aprs-bar-frame"><div class="aprs-bar-frame-main">${ts}<span class="vdes-call">${title}</span> <span class="vdes-badge">${label}</span>: ${detail}</div></div>`;
|
||||||
|
}
|
||||||
|
vdesBarOverlay.innerHTML = html;
|
||||||
|
vdesBarOverlay.style.display = "flex";
|
||||||
|
}
|
||||||
|
vdesWindow.updateVdesBar = updateVdesBar;
|
||||||
|
vdesWindow.clearVdesBar = function() {
|
||||||
|
resetVdesHistoryView();
|
||||||
|
};
|
||||||
|
function resetVdesHistoryView() {
|
||||||
|
if (vdesMessagesEl) vdesMessagesEl.innerHTML = "";
|
||||||
|
vdesMessageHistory = [];
|
||||||
|
updateVdesBar();
|
||||||
|
renderVdesHistory();
|
||||||
|
}
|
||||||
|
function renderVdesHistory() {
|
||||||
|
pruneVdesMessageHistory();
|
||||||
|
if (!vdesMessagesEl) {
|
||||||
|
updateVdesSummary();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const fragment = document.createDocumentFragment();
|
||||||
|
for (const message of vdesMessageHistory) {
|
||||||
|
fragment.appendChild(renderVdesRow(message));
|
||||||
|
}
|
||||||
|
vdesMessagesEl.replaceChildren(fragment);
|
||||||
|
updateVdesSummary();
|
||||||
|
}
|
||||||
|
function addVdesMessage(msg) {
|
||||||
|
const tsMs = Number.isFinite(msg.ts_ms) ? Number(msg.ts_ms) : Date.now();
|
||||||
|
msg._tsMs = tsMs;
|
||||||
|
msg._ts = new Date(tsMs).toLocaleTimeString([], {
|
||||||
|
hour: "2-digit",
|
||||||
|
minute: "2-digit",
|
||||||
|
second: "2-digit"
|
||||||
|
});
|
||||||
|
vdesMessageHistory.unshift(msg);
|
||||||
|
pruneVdesMessageHistory();
|
||||||
|
scheduleVdesBarUpdate();
|
||||||
|
scheduleVdesHistoryRender();
|
||||||
|
}
|
||||||
|
function normalizeServerVdesMessage(msg) {
|
||||||
|
return {
|
||||||
|
...msg,
|
||||||
|
rig_id: msg.rig_id || null
|
||||||
|
};
|
||||||
|
}
|
||||||
|
function onServerVdesBatch(messages) {
|
||||||
|
if (!Array.isArray(messages) || messages.length === 0) return;
|
||||||
|
if (vdesStatus) vdesStatus.textContent = "Receiving";
|
||||||
|
const normalized = [];
|
||||||
|
for (const msg of messages) {
|
||||||
|
const next = normalizeServerVdesMessage(msg);
|
||||||
|
const tsMs = Number.isFinite(next.ts_ms) ? Number(next.ts_ms) : Date.now();
|
||||||
|
next._tsMs = tsMs;
|
||||||
|
next._ts = new Date(tsMs).toLocaleTimeString([], {
|
||||||
|
hour: "2-digit",
|
||||||
|
minute: "2-digit",
|
||||||
|
second: "2-digit"
|
||||||
|
});
|
||||||
|
if (next.lat != null && next.lon != null && vdesWindow.vdesMapAddPoint) {
|
||||||
|
vdesWindow.vdesMapAddPoint(next);
|
||||||
|
}
|
||||||
|
normalized.push(next);
|
||||||
|
}
|
||||||
|
normalized.reverse();
|
||||||
|
vdesMessageHistory = normalized.concat(vdesMessageHistory);
|
||||||
|
pruneVdesMessageHistory();
|
||||||
|
scheduleVdesBarUpdate();
|
||||||
|
scheduleVdesHistoryRender();
|
||||||
|
}
|
||||||
|
document.getElementById("settings-clear-vdes-history")?.addEventListener("click", () => {
|
||||||
|
void (async () => {
|
||||||
|
if (!await vdesWindow.trxUi.confirm({ title: "Clear VDES history?", message: "All stored VDES decodes will be permanently removed.", confirmLabel: "Clear history" })) return;
|
||||||
|
try {
|
||||||
|
await vdesWindow.postPath?.("/clear_vdes_decode");
|
||||||
|
resetVdesHistoryView();
|
||||||
|
} catch (e) {
|
||||||
|
console.error("VDES history clear failed", e);
|
||||||
|
}
|
||||||
|
})();
|
||||||
|
});
|
||||||
|
if (vdesFilterInput) {
|
||||||
|
vdesFilterInput.addEventListener("input", () => {
|
||||||
|
vdesFilterText = vdesFilterInput.value.trim().toUpperCase();
|
||||||
|
renderVdesHistory();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
function onServerVdes(msg) {
|
||||||
|
if (vdesStatus) vdesStatus.textContent = "Receiving";
|
||||||
|
const next = normalizeServerVdesMessage(msg);
|
||||||
|
addVdesMessage(next);
|
||||||
|
if (next.lat != null && next.lon != null && vdesWindow.vdesMapAddPoint) {
|
||||||
|
vdesWindow.vdesMapAddPoint(next);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
function pruneVdesHistoryView() {
|
||||||
|
pruneVdesMessageHistory();
|
||||||
|
updateVdesBar();
|
||||||
|
renderVdesHistory();
|
||||||
|
}
|
||||||
|
updateVdesSummary();
|
||||||
|
window.trxPluginRuntime.registerDecoder({
|
||||||
|
id: "vdes",
|
||||||
|
onMessage: onServerVdes,
|
||||||
|
onBatch: onServerVdesBatch,
|
||||||
|
restore: onServerVdesBatch,
|
||||||
|
reset: resetVdesHistoryView,
|
||||||
|
prune: pruneVdesHistoryView
|
||||||
|
});
|
||||||
@@ -0,0 +1,498 @@
|
|||||||
|
"use strict";
|
||||||
|
(function initTrxWebGl(global) {
|
||||||
|
"use strict";
|
||||||
|
const cssColorCache = /* @__PURE__ */ new Map();
|
||||||
|
let cssColorProbe = null;
|
||||||
|
function clearCssColorCache() {
|
||||||
|
cssColorCache.clear();
|
||||||
|
}
|
||||||
|
function ensureCssColorProbe() {
|
||||||
|
if (cssColorProbe) return cssColorProbe;
|
||||||
|
const el = document.createElement("span");
|
||||||
|
el.style.position = "absolute";
|
||||||
|
el.style.left = "-9999px";
|
||||||
|
el.style.top = "-9999px";
|
||||||
|
el.style.pointerEvents = "none";
|
||||||
|
el.style.opacity = "0";
|
||||||
|
document.body.appendChild(el);
|
||||||
|
cssColorProbe = el;
|
||||||
|
return cssColorProbe;
|
||||||
|
}
|
||||||
|
function parseRgbString(value) {
|
||||||
|
const m = /^rgba?\(([^)]+)\)$/.exec(value.trim());
|
||||||
|
if (!m) return null;
|
||||||
|
const parts = m[1]?.split(",").map((p) => p.trim()) ?? [];
|
||||||
|
if (parts.length < 3) return null;
|
||||||
|
const r = Number(parts[0]);
|
||||||
|
const g = Number(parts[1]);
|
||||||
|
const b = Number(parts[2]);
|
||||||
|
const a = parts.length > 3 ? Number(parts[3]) : 1;
|
||||||
|
if (![r, g, b, a].every(Number.isFinite)) return null;
|
||||||
|
return [
|
||||||
|
Math.max(0, Math.min(1, r / 255)),
|
||||||
|
Math.max(0, Math.min(1, g / 255)),
|
||||||
|
Math.max(0, Math.min(1, b / 255)),
|
||||||
|
Math.max(0, Math.min(1, a))
|
||||||
|
];
|
||||||
|
}
|
||||||
|
function parseHexColor(value) {
|
||||||
|
const raw = value.trim();
|
||||||
|
if (!/^#([0-9a-f]{3,8})$/i.test(raw)) return null;
|
||||||
|
let hex = raw.slice(1);
|
||||||
|
if (hex.length === 3 || hex.length === 4) {
|
||||||
|
hex = hex.split("").map((ch) => ch + ch).join("");
|
||||||
|
}
|
||||||
|
if (!(hex.length === 6 || hex.length === 8)) return null;
|
||||||
|
const r = parseInt(hex.slice(0, 2), 16) / 255;
|
||||||
|
const g = parseInt(hex.slice(2, 4), 16) / 255;
|
||||||
|
const b = parseInt(hex.slice(4, 6), 16) / 255;
|
||||||
|
const a = hex.length === 8 ? parseInt(hex.slice(6, 8), 16) / 255 : 1;
|
||||||
|
return [r, g, b, a];
|
||||||
|
}
|
||||||
|
function parseCssColor(value) {
|
||||||
|
const key = value;
|
||||||
|
const cached = cssColorCache.get(key);
|
||||||
|
if (cached) return [...cached];
|
||||||
|
let parsed = parseHexColor(key) || parseRgbString(key);
|
||||||
|
if (!parsed) {
|
||||||
|
const probe = ensureCssColorProbe();
|
||||||
|
probe.style.color = "";
|
||||||
|
probe.style.color = key;
|
||||||
|
const computed = getComputedStyle(probe).color;
|
||||||
|
parsed = parseRgbString(computed) || [0, 0, 0, 1];
|
||||||
|
}
|
||||||
|
cssColorCache.set(key, [...parsed]);
|
||||||
|
return [...parsed];
|
||||||
|
}
|
||||||
|
function hslToRgba(h, s, l, a = 1) {
|
||||||
|
const hue = ((h || 0) % 360 + 360) % 360 / 360;
|
||||||
|
const sat = Math.max(0, Math.min(1, (s || 0) / 100));
|
||||||
|
const lig = Math.max(0, Math.min(1, (l || 0) / 100));
|
||||||
|
const q = lig < 0.5 ? lig * (1 + sat) : lig + sat - lig * sat;
|
||||||
|
const p = 2 * lig - q;
|
||||||
|
const hueToRgb = (t) => {
|
||||||
|
let tt = t;
|
||||||
|
if (tt < 0) tt += 1;
|
||||||
|
if (tt > 1) tt -= 1;
|
||||||
|
if (tt < 1 / 6) return p + (q - p) * 6 * tt;
|
||||||
|
if (tt < 1 / 2) return q;
|
||||||
|
if (tt < 2 / 3) return p + (q - p) * (2 / 3 - tt) * 6;
|
||||||
|
return p;
|
||||||
|
};
|
||||||
|
const r = sat === 0 ? lig : hueToRgb(hue + 1 / 3);
|
||||||
|
const g = sat === 0 ? lig : hueToRgb(hue);
|
||||||
|
const b = sat === 0 ? lig : hueToRgb(hue - 1 / 3);
|
||||||
|
return [r, g, b, Math.max(0, Math.min(1, a))];
|
||||||
|
}
|
||||||
|
function normalizeColor(input, alphaMul = 1) {
|
||||||
|
let rgba;
|
||||||
|
if (Array.isArray(input)) {
|
||||||
|
const arr = input;
|
||||||
|
if (arr.length >= 4) {
|
||||||
|
rgba = [arr[0] ?? 0, arr[1] ?? 0, arr[2] ?? 0, arr[3] ?? 1];
|
||||||
|
} else {
|
||||||
|
rgba = [0, 0, 0, 1];
|
||||||
|
}
|
||||||
|
} else if (typeof input === "string") {
|
||||||
|
rgba = parseCssColor(input);
|
||||||
|
} else {
|
||||||
|
rgba = [
|
||||||
|
input.r || 0,
|
||||||
|
input.g || 0,
|
||||||
|
input.b || 0,
|
||||||
|
input.a ?? 1
|
||||||
|
];
|
||||||
|
}
|
||||||
|
const out = [
|
||||||
|
Math.max(0, Math.min(1, rgba[0])),
|
||||||
|
Math.max(0, Math.min(1, rgba[1])),
|
||||||
|
Math.max(0, Math.min(1, rgba[2])),
|
||||||
|
Math.max(0, Math.min(1, rgba[3] * alphaMul))
|
||||||
|
];
|
||||||
|
return out;
|
||||||
|
}
|
||||||
|
function compileShader(gl, type, source) {
|
||||||
|
const shader = gl.createShader(type);
|
||||||
|
if (shader === null) throw new Error("Unable to create WebGL shader");
|
||||||
|
gl.shaderSource(shader, source);
|
||||||
|
gl.compileShader(shader);
|
||||||
|
if (!gl.getShaderParameter(shader, gl.COMPILE_STATUS)) {
|
||||||
|
const log = gl.getShaderInfoLog(shader) || "shader compile error";
|
||||||
|
gl.deleteShader(shader);
|
||||||
|
throw new Error(log);
|
||||||
|
}
|
||||||
|
return shader;
|
||||||
|
}
|
||||||
|
function createProgram(gl, vertexSrc, fragmentSrc) {
|
||||||
|
const vs = compileShader(gl, gl.VERTEX_SHADER, vertexSrc);
|
||||||
|
const fs = compileShader(gl, gl.FRAGMENT_SHADER, fragmentSrc);
|
||||||
|
const program = gl.createProgram();
|
||||||
|
gl.attachShader(program, vs);
|
||||||
|
gl.attachShader(program, fs);
|
||||||
|
gl.linkProgram(program);
|
||||||
|
gl.deleteShader(vs);
|
||||||
|
gl.deleteShader(fs);
|
||||||
|
if (!gl.getProgramParameter(program, gl.LINK_STATUS)) {
|
||||||
|
const log = gl.getProgramInfoLog(program) || "program link error";
|
||||||
|
gl.deleteProgram(program);
|
||||||
|
throw new Error(log);
|
||||||
|
}
|
||||||
|
return program;
|
||||||
|
}
|
||||||
|
function pushColoredVertex(target, x, y, rgba) {
|
||||||
|
target.push(x, y, rgba[0], rgba[1], rgba[2], rgba[3]);
|
||||||
|
}
|
||||||
|
function segmentToQuadVertices(out, x0, y0, x1, y1, halfW, rgba) {
|
||||||
|
const dx = x1 - x0;
|
||||||
|
const dy = y1 - y0;
|
||||||
|
const len = Math.hypot(dx, dy);
|
||||||
|
if (!(len > 1e-4)) return;
|
||||||
|
const nx = -dy / len * halfW;
|
||||||
|
const ny = dx / len * halfW;
|
||||||
|
const ax = x0 - nx, ay = y0 - ny;
|
||||||
|
const bx = x0 + nx, by = y0 + ny;
|
||||||
|
const cx = x1 + nx, cy = y1 + ny;
|
||||||
|
const dx2 = x1 - nx, dy2 = y1 - ny;
|
||||||
|
pushColoredVertex(out, ax, ay, rgba);
|
||||||
|
pushColoredVertex(out, bx, by, rgba);
|
||||||
|
pushColoredVertex(out, cx, cy, rgba);
|
||||||
|
pushColoredVertex(out, ax, ay, rgba);
|
||||||
|
pushColoredVertex(out, cx, cy, rgba);
|
||||||
|
pushColoredVertex(out, dx2, dy2, rgba);
|
||||||
|
}
|
||||||
|
class TrxWebGlRenderer {
|
||||||
|
canvas;
|
||||||
|
options;
|
||||||
|
gl;
|
||||||
|
ready;
|
||||||
|
textures = /* @__PURE__ */ new Map();
|
||||||
|
_colorScratch = new Float32Array(4096 * 6);
|
||||||
|
_colorGpuSize = 0;
|
||||||
|
_texScratch = new Float32Array(6 * 4);
|
||||||
|
colorProgram;
|
||||||
|
colorBuffer;
|
||||||
|
colorLoc;
|
||||||
|
textureProgram;
|
||||||
|
textureBuffer;
|
||||||
|
textureLoc;
|
||||||
|
constructor(canvas, options = {}) {
|
||||||
|
this.canvas = canvas;
|
||||||
|
this.options = { alpha: true, premultipliedAlpha: false, ...options };
|
||||||
|
this.gl = canvas.getContext("webgl", this.options) || canvas.getContext("experimental-webgl", this.options);
|
||||||
|
this.ready = !!this.gl;
|
||||||
|
if (!this.ready) return;
|
||||||
|
const gl = this.gl;
|
||||||
|
if (!gl) return;
|
||||||
|
gl.disable(gl.DEPTH_TEST);
|
||||||
|
gl.disable(gl.CULL_FACE);
|
||||||
|
gl.enable(gl.BLEND);
|
||||||
|
gl.blendFunc(gl.SRC_ALPHA, gl.ONE_MINUS_SRC_ALPHA);
|
||||||
|
const colorVertexSrc = "attribute vec2 a_pos;\nattribute vec4 a_color;\nuniform vec2 u_resolution;\nvarying vec4 v_color;\nvoid main() {\n vec2 zeroToOne = a_pos / u_resolution;\n vec2 clip = zeroToOne * 2.0 - 1.0;\n gl_Position = vec4(clip * vec2(1.0, -1.0), 0.0, 1.0);\n v_color = a_color;\n}\n";
|
||||||
|
const colorFragmentSrc = "precision mediump float;\nvarying vec4 v_color;\nvoid main() {\n gl_FragColor = v_color;\n}\n";
|
||||||
|
const textureVertexSrc = "attribute vec2 a_pos;\nattribute vec2 a_uv;\nuniform vec2 u_resolution;\nvarying vec2 v_uv;\nvoid main() {\n vec2 zeroToOne = a_pos / u_resolution;\n vec2 clip = zeroToOne * 2.0 - 1.0;\n gl_Position = vec4(clip * vec2(1.0, -1.0), 0.0, 1.0);\n v_uv = a_uv;\n}\n";
|
||||||
|
const textureFragmentSrc = "precision mediump float;\nvarying vec2 v_uv;\nuniform sampler2D u_tex;\nuniform float u_alpha;\nvoid main() {\n vec4 c = texture2D(u_tex, v_uv);\n gl_FragColor = vec4(c.rgb, c.a * u_alpha);\n}\n";
|
||||||
|
this.colorProgram = createProgram(gl, colorVertexSrc, colorFragmentSrc);
|
||||||
|
this.colorBuffer = gl.createBuffer();
|
||||||
|
gl.bindBuffer(gl.ARRAY_BUFFER, this.colorBuffer);
|
||||||
|
gl.bufferData(gl.ARRAY_BUFFER, this._colorScratch, gl.DYNAMIC_DRAW);
|
||||||
|
this._colorGpuSize = this._colorScratch.length;
|
||||||
|
this.colorLoc = {
|
||||||
|
pos: gl.getAttribLocation(this.colorProgram, "a_pos"),
|
||||||
|
color: gl.getAttribLocation(this.colorProgram, "a_color"),
|
||||||
|
resolution: gl.getUniformLocation(this.colorProgram, "u_resolution")
|
||||||
|
};
|
||||||
|
this.textureProgram = createProgram(gl, textureVertexSrc, textureFragmentSrc);
|
||||||
|
this.textureBuffer = gl.createBuffer();
|
||||||
|
gl.bindBuffer(gl.ARRAY_BUFFER, this.textureBuffer);
|
||||||
|
gl.bufferData(gl.ARRAY_BUFFER, this._texScratch, gl.DYNAMIC_DRAW);
|
||||||
|
this.textureLoc = {
|
||||||
|
pos: gl.getAttribLocation(this.textureProgram, "a_pos"),
|
||||||
|
uv: gl.getAttribLocation(this.textureProgram, "a_uv"),
|
||||||
|
resolution: gl.getUniformLocation(this.textureProgram, "u_resolution"),
|
||||||
|
alpha: gl.getUniformLocation(this.textureProgram, "u_alpha"),
|
||||||
|
tex: gl.getUniformLocation(this.textureProgram, "u_tex")
|
||||||
|
};
|
||||||
|
}
|
||||||
|
ensureSize(cssWidth, cssHeight, dpr = window.devicePixelRatio || 1) {
|
||||||
|
if (!this.gl) return false;
|
||||||
|
const nextW = Math.max(1, Math.round(cssWidth * dpr));
|
||||||
|
const nextH = Math.max(1, Math.round(cssHeight * dpr));
|
||||||
|
const changed = this.canvas.width !== nextW || this.canvas.height !== nextH;
|
||||||
|
if (changed) {
|
||||||
|
this.canvas.width = nextW;
|
||||||
|
this.canvas.height = nextH;
|
||||||
|
}
|
||||||
|
this.gl.viewport(0, 0, this.canvas.width, this.canvas.height);
|
||||||
|
return changed;
|
||||||
|
}
|
||||||
|
clear(color) {
|
||||||
|
if (!this.gl) return;
|
||||||
|
const gl = this.gl;
|
||||||
|
const rgba = normalizeColor(color);
|
||||||
|
gl.clearColor(rgba[0], rgba[1], rgba[2], rgba[3]);
|
||||||
|
gl.clear(gl.COLOR_BUFFER_BIT);
|
||||||
|
}
|
||||||
|
drawTriangles(vertices) {
|
||||||
|
if (!this.gl) return;
|
||||||
|
this._drawColorGeometry(vertices, this.gl.TRIANGLES);
|
||||||
|
}
|
||||||
|
drawTriangleStrip(vertices) {
|
||||||
|
if (!this.gl) return;
|
||||||
|
this._drawColorGeometry(vertices, this.gl.TRIANGLE_STRIP);
|
||||||
|
}
|
||||||
|
_drawColorGeometry(vertices, mode) {
|
||||||
|
if (!this.gl || vertices.length === 0) return;
|
||||||
|
const gl = this.gl;
|
||||||
|
const count = vertices.length;
|
||||||
|
if (count > this._colorScratch.length) {
|
||||||
|
let newLen = this._colorScratch.length;
|
||||||
|
while (newLen < count) newLen *= 2;
|
||||||
|
this._colorScratch = new Float32Array(newLen);
|
||||||
|
}
|
||||||
|
this._colorScratch.set(vertices);
|
||||||
|
const view = this._colorScratch.subarray(0, count);
|
||||||
|
gl.useProgram(this.colorProgram);
|
||||||
|
gl.bindBuffer(gl.ARRAY_BUFFER, this.colorBuffer);
|
||||||
|
if (count > this._colorGpuSize) {
|
||||||
|
gl.bufferData(gl.ARRAY_BUFFER, this._colorScratch, gl.DYNAMIC_DRAW);
|
||||||
|
this._colorGpuSize = this._colorScratch.length;
|
||||||
|
} else {
|
||||||
|
gl.bufferSubData(gl.ARRAY_BUFFER, 0, view);
|
||||||
|
}
|
||||||
|
gl.enableVertexAttribArray(this.colorLoc.pos);
|
||||||
|
gl.vertexAttribPointer(this.colorLoc.pos, 2, gl.FLOAT, false, 24, 0);
|
||||||
|
gl.enableVertexAttribArray(this.colorLoc.color);
|
||||||
|
gl.vertexAttribPointer(this.colorLoc.color, 4, gl.FLOAT, false, 24, 8);
|
||||||
|
gl.uniform2f(this.colorLoc.resolution, this.canvas.width, this.canvas.height);
|
||||||
|
gl.drawArrays(mode, 0, count / 6);
|
||||||
|
}
|
||||||
|
fillRect(x, y, w, h, color) {
|
||||||
|
if (w <= 0 || h <= 0) return;
|
||||||
|
const rgba = normalizeColor(color);
|
||||||
|
const v = [];
|
||||||
|
pushColoredVertex(v, x, y, rgba);
|
||||||
|
pushColoredVertex(v, x + w, y, rgba);
|
||||||
|
pushColoredVertex(v, x + w, y + h, rgba);
|
||||||
|
pushColoredVertex(v, x, y, rgba);
|
||||||
|
pushColoredVertex(v, x + w, y + h, rgba);
|
||||||
|
pushColoredVertex(v, x, y + h, rgba);
|
||||||
|
this.drawTriangles(v);
|
||||||
|
}
|
||||||
|
fillGradientRect(x, y, w, h, colorTL, colorTR, colorBR, colorBL) {
|
||||||
|
if (w <= 0 || h <= 0) return;
|
||||||
|
const tl = normalizeColor(colorTL);
|
||||||
|
const tr = normalizeColor(colorTR);
|
||||||
|
const br = normalizeColor(colorBR);
|
||||||
|
const bl = normalizeColor(colorBL);
|
||||||
|
const v = [];
|
||||||
|
pushColoredVertex(v, x, y, tl);
|
||||||
|
pushColoredVertex(v, x + w, y, tr);
|
||||||
|
pushColoredVertex(v, x + w, y + h, br);
|
||||||
|
pushColoredVertex(v, x, y, tl);
|
||||||
|
pushColoredVertex(v, x + w, y + h, br);
|
||||||
|
pushColoredVertex(v, x, y + h, bl);
|
||||||
|
this.drawTriangles(v);
|
||||||
|
}
|
||||||
|
drawPolyline(points, color, width = 1) {
|
||||||
|
if (!Array.isArray(points) || points.length < 4) return;
|
||||||
|
const rgba = normalizeColor(color);
|
||||||
|
const halfW = Math.max(0.5, width || 1) / 2;
|
||||||
|
const verts = [];
|
||||||
|
for (let i = 0; i < points.length - 2; i += 2) {
|
||||||
|
segmentToQuadVertices(
|
||||||
|
verts,
|
||||||
|
points[i] ?? 0,
|
||||||
|
points[i + 1] ?? 0,
|
||||||
|
points[i + 2] ?? 0,
|
||||||
|
points[i + 3] ?? 0,
|
||||||
|
halfW,
|
||||||
|
rgba
|
||||||
|
);
|
||||||
|
}
|
||||||
|
this.drawTriangles(verts);
|
||||||
|
}
|
||||||
|
drawSegments(segments, color, width = 1) {
|
||||||
|
if (!Array.isArray(segments) || segments.length < 4) return;
|
||||||
|
const rgba = normalizeColor(color);
|
||||||
|
const halfW = Math.max(0.5, width || 1) / 2;
|
||||||
|
const verts = [];
|
||||||
|
for (let i = 0; i < segments.length - 3; i += 4) {
|
||||||
|
segmentToQuadVertices(
|
||||||
|
verts,
|
||||||
|
segments[i] ?? 0,
|
||||||
|
segments[i + 1] ?? 0,
|
||||||
|
segments[i + 2] ?? 0,
|
||||||
|
segments[i + 3] ?? 0,
|
||||||
|
halfW,
|
||||||
|
rgba
|
||||||
|
);
|
||||||
|
}
|
||||||
|
this.drawTriangles(verts);
|
||||||
|
}
|
||||||
|
drawFilledArea(points, baselineY, color) {
|
||||||
|
if (!Array.isArray(points) || points.length < 4) return;
|
||||||
|
const rgba = normalizeColor(color);
|
||||||
|
const verts = [];
|
||||||
|
for (let i = 0; i < points.length; i += 2) {
|
||||||
|
pushColoredVertex(verts, points[i] ?? 0, baselineY, rgba);
|
||||||
|
pushColoredVertex(verts, points[i] ?? 0, points[i + 1] ?? 0, rgba);
|
||||||
|
}
|
||||||
|
this.drawTriangleStrip(verts);
|
||||||
|
}
|
||||||
|
drawPoints(points, size, color) {
|
||||||
|
if (!Array.isArray(points) || points.length < 2) return;
|
||||||
|
const radius = Math.max(1, size || 1);
|
||||||
|
const rgba = normalizeColor(color);
|
||||||
|
const verts = [];
|
||||||
|
for (let i = 0; i < points.length; i += 2) {
|
||||||
|
const x = (points[i] ?? 0) - radius;
|
||||||
|
const y = (points[i + 1] ?? 0) - radius;
|
||||||
|
const w = radius * 2;
|
||||||
|
const h = radius * 2;
|
||||||
|
pushColoredVertex(verts, x, y, rgba);
|
||||||
|
pushColoredVertex(verts, x + w, y, rgba);
|
||||||
|
pushColoredVertex(verts, x + w, y + h, rgba);
|
||||||
|
pushColoredVertex(verts, x, y, rgba);
|
||||||
|
pushColoredVertex(verts, x + w, y + h, rgba);
|
||||||
|
pushColoredVertex(verts, x, y + h, rgba);
|
||||||
|
}
|
||||||
|
this.drawTriangles(verts);
|
||||||
|
}
|
||||||
|
drawDashedVerticalLine(x, y0, y1, dashLen, gapLen, color, width = 1) {
|
||||||
|
const dash = Math.max(1, dashLen || 1);
|
||||||
|
const gap = Math.max(1, gapLen || 1);
|
||||||
|
const top = Math.min(y0, y1);
|
||||||
|
const bottom = Math.max(y0, y1);
|
||||||
|
const segments = [];
|
||||||
|
for (let y = top; y < bottom; y += dash + gap) {
|
||||||
|
const segEnd = Math.min(bottom, y + dash);
|
||||||
|
segments.push(x, y, x, segEnd);
|
||||||
|
}
|
||||||
|
this.drawSegments(segments, color, width);
|
||||||
|
}
|
||||||
|
uploadRgbaTexture(name, width, height, data, filter = "linear") {
|
||||||
|
if (!this.gl || !name) return null;
|
||||||
|
const gl = this.gl;
|
||||||
|
let entry = this.textures.get(name);
|
||||||
|
if (!entry) {
|
||||||
|
const texture = gl.createTexture();
|
||||||
|
entry = { texture, width: 0, height: 0 };
|
||||||
|
this.textures.set(name, entry);
|
||||||
|
}
|
||||||
|
gl.bindTexture(gl.TEXTURE_2D, entry.texture);
|
||||||
|
gl.pixelStorei(gl.UNPACK_ALIGNMENT, 1);
|
||||||
|
const mode = filter === "nearest" ? gl.NEAREST : gl.LINEAR;
|
||||||
|
gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MIN_FILTER, mode);
|
||||||
|
gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MAG_FILTER, mode);
|
||||||
|
gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_WRAP_S, gl.CLAMP_TO_EDGE);
|
||||||
|
gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_WRAP_T, gl.CLAMP_TO_EDGE);
|
||||||
|
if (entry.width !== width || entry.height !== height) {
|
||||||
|
gl.texImage2D(
|
||||||
|
gl.TEXTURE_2D,
|
||||||
|
0,
|
||||||
|
gl.RGBA,
|
||||||
|
width,
|
||||||
|
height,
|
||||||
|
0,
|
||||||
|
gl.RGBA,
|
||||||
|
gl.UNSIGNED_BYTE,
|
||||||
|
data
|
||||||
|
);
|
||||||
|
entry.width = width;
|
||||||
|
entry.height = height;
|
||||||
|
} else {
|
||||||
|
gl.texSubImage2D(
|
||||||
|
gl.TEXTURE_2D,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
width,
|
||||||
|
height,
|
||||||
|
gl.RGBA,
|
||||||
|
gl.UNSIGNED_BYTE,
|
||||||
|
data
|
||||||
|
);
|
||||||
|
}
|
||||||
|
return entry.texture;
|
||||||
|
}
|
||||||
|
drawTexture(name, x, y, w, h, alpha = 1, flipY = true) {
|
||||||
|
if (!this.gl || !name || w <= 0 || h <= 0) return;
|
||||||
|
const entry = this.textures.get(name);
|
||||||
|
if (!entry) return;
|
||||||
|
const gl = this.gl;
|
||||||
|
const s = this._texScratch;
|
||||||
|
const x2 = x + w, y2 = y + h;
|
||||||
|
if (flipY) {
|
||||||
|
s[0] = x;
|
||||||
|
s[1] = y;
|
||||||
|
s[2] = 0;
|
||||||
|
s[3] = 1;
|
||||||
|
s[4] = x2;
|
||||||
|
s[5] = y;
|
||||||
|
s[6] = 1;
|
||||||
|
s[7] = 1;
|
||||||
|
s[8] = x2;
|
||||||
|
s[9] = y2;
|
||||||
|
s[10] = 1;
|
||||||
|
s[11] = 0;
|
||||||
|
s[12] = x;
|
||||||
|
s[13] = y;
|
||||||
|
s[14] = 0;
|
||||||
|
s[15] = 1;
|
||||||
|
s[16] = x2;
|
||||||
|
s[17] = y2;
|
||||||
|
s[18] = 1;
|
||||||
|
s[19] = 0;
|
||||||
|
s[20] = x;
|
||||||
|
s[21] = y2;
|
||||||
|
s[22] = 0;
|
||||||
|
s[23] = 0;
|
||||||
|
} else {
|
||||||
|
s[0] = x;
|
||||||
|
s[1] = y;
|
||||||
|
s[2] = 0;
|
||||||
|
s[3] = 0;
|
||||||
|
s[4] = x2;
|
||||||
|
s[5] = y;
|
||||||
|
s[6] = 1;
|
||||||
|
s[7] = 0;
|
||||||
|
s[8] = x2;
|
||||||
|
s[9] = y2;
|
||||||
|
s[10] = 1;
|
||||||
|
s[11] = 1;
|
||||||
|
s[12] = x;
|
||||||
|
s[13] = y;
|
||||||
|
s[14] = 0;
|
||||||
|
s[15] = 0;
|
||||||
|
s[16] = x2;
|
||||||
|
s[17] = y2;
|
||||||
|
s[18] = 1;
|
||||||
|
s[19] = 1;
|
||||||
|
s[20] = x;
|
||||||
|
s[21] = y2;
|
||||||
|
s[22] = 0;
|
||||||
|
s[23] = 1;
|
||||||
|
}
|
||||||
|
gl.useProgram(this.textureProgram);
|
||||||
|
gl.bindBuffer(gl.ARRAY_BUFFER, this.textureBuffer);
|
||||||
|
gl.bufferSubData(gl.ARRAY_BUFFER, 0, s);
|
||||||
|
gl.enableVertexAttribArray(this.textureLoc.pos);
|
||||||
|
gl.vertexAttribPointer(this.textureLoc.pos, 2, gl.FLOAT, false, 16, 0);
|
||||||
|
gl.enableVertexAttribArray(this.textureLoc.uv);
|
||||||
|
gl.vertexAttribPointer(this.textureLoc.uv, 2, gl.FLOAT, false, 16, 8);
|
||||||
|
gl.uniform2f(this.textureLoc.resolution, this.canvas.width, this.canvas.height);
|
||||||
|
gl.uniform1f(this.textureLoc.alpha, Math.max(0, Math.min(1, alpha || 0)));
|
||||||
|
gl.activeTexture(gl.TEXTURE0);
|
||||||
|
gl.bindTexture(gl.TEXTURE_2D, entry.texture);
|
||||||
|
gl.uniform1i(this.textureLoc.tex, 0);
|
||||||
|
gl.drawArrays(gl.TRIANGLES, 0, 6);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
function createRenderer(canvas, options = {}) {
|
||||||
|
return new TrxWebGlRenderer(canvas, options);
|
||||||
|
}
|
||||||
|
global.trxParseCssColor = parseCssColor;
|
||||||
|
global.trxHslToRgba = hslToRgba;
|
||||||
|
global.createTrxWebGlRenderer = createRenderer;
|
||||||
|
global.trxClearCssColorCache = clearCssColorCache;
|
||||||
|
})(window);
|
||||||
@@ -0,0 +1,332 @@
|
|||||||
|
// src/plugins/wefax.ts
|
||||||
|
var wefaxWindow = window;
|
||||||
|
var wefaxDom = {
|
||||||
|
status: document.getElementById("wefax-status"),
|
||||||
|
liveView: document.getElementById("wefax-live-view"),
|
||||||
|
historyView: document.getElementById("wefax-history-view"),
|
||||||
|
liveContainer: document.getElementById("wefax-live-container"),
|
||||||
|
liveInfo: document.getElementById("wefax-live-info"),
|
||||||
|
liveCanvas: document.getElementById("wefax-live-canvas"),
|
||||||
|
liveLatest: document.getElementById("wefax-live-latest"),
|
||||||
|
historyList: document.getElementById("wefax-history-list"),
|
||||||
|
historyCount: document.getElementById("wefax-history-count"),
|
||||||
|
filterInput: document.getElementById("wefax-filter"),
|
||||||
|
sortSelect: document.getElementById("wefax-sort"),
|
||||||
|
toggleBtn: document.getElementById("wefax-decode-toggle-btn"),
|
||||||
|
clearBtn: document.getElementById("wefax-clear-btn"),
|
||||||
|
viewLiveBtn: document.getElementById("wefax-view-live"),
|
||||||
|
viewHistoryBtn: document.getElementById("wefax-view-history")
|
||||||
|
};
|
||||||
|
var wefaxImageHistory = [];
|
||||||
|
var WEFAX_MAX_IMAGES = 100;
|
||||||
|
var wefaxLiveCtx = null;
|
||||||
|
var wefaxLiveLineCount = 0;
|
||||||
|
var wefaxLivePixelsPerLine = 1809;
|
||||||
|
var wefaxActiveView = "live";
|
||||||
|
var wefaxFilterText = "";
|
||||||
|
function currentWefaxHistoryRetentionMs() {
|
||||||
|
return wefaxWindow.getDecodeHistoryRetentionMs?.() ?? 24 * 60 * 60 * 1e3;
|
||||||
|
}
|
||||||
|
function pruneWefaxHistory() {
|
||||||
|
const cutoff = Date.now() - currentWefaxHistoryRetentionMs();
|
||||||
|
wefaxImageHistory = wefaxImageHistory.filter(function(m) {
|
||||||
|
return (m._tsMs || 0) > cutoff;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
function escapeHtml(s) {
|
||||||
|
return String(s).replace(/&/g, "&").replace(/</g, "<").replace(/>/g, ">").replace(/"/g, """);
|
||||||
|
}
|
||||||
|
function scheduleWefaxUi(key, job) {
|
||||||
|
if (typeof wefaxWindow.trxScheduleUiFrameJob === "function") {
|
||||||
|
wefaxWindow.trxScheduleUiFrameJob(key, job);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
job();
|
||||||
|
}
|
||||||
|
function switchWefaxView(view) {
|
||||||
|
wefaxActiveView = view;
|
||||||
|
if (wefaxDom.liveView) wefaxDom.liveView.style.display = view === "live" ? "" : "none";
|
||||||
|
if (wefaxDom.historyView) wefaxDom.historyView.style.display = view === "history" ? "" : "none";
|
||||||
|
[wefaxDom.viewLiveBtn, wefaxDom.viewHistoryBtn].forEach(function(btn) {
|
||||||
|
if (btn) btn.classList.remove("sat-view-active");
|
||||||
|
});
|
||||||
|
if (view === "live" && wefaxDom.viewLiveBtn) wefaxDom.viewLiveBtn.classList.add("sat-view-active");
|
||||||
|
if (view === "history" && wefaxDom.viewHistoryBtn) wefaxDom.viewHistoryBtn.classList.add("sat-view-active");
|
||||||
|
if (view === "history") renderWefaxHistoryTable();
|
||||||
|
}
|
||||||
|
if (wefaxDom.viewLiveBtn) wefaxDom.viewLiveBtn.addEventListener("click", function() {
|
||||||
|
switchWefaxView("live");
|
||||||
|
});
|
||||||
|
if (wefaxDom.viewHistoryBtn) wefaxDom.viewHistoryBtn.addEventListener("click", function() {
|
||||||
|
switchWefaxView("history");
|
||||||
|
});
|
||||||
|
function resetLiveCanvas(pixelsPerLine) {
|
||||||
|
const canvas = wefaxDom.liveCanvas;
|
||||||
|
if (!canvas) return;
|
||||||
|
wefaxLivePixelsPerLine = pixelsPerLine;
|
||||||
|
wefaxLiveLineCount = 0;
|
||||||
|
canvas.width = pixelsPerLine;
|
||||||
|
canvas.height = 800;
|
||||||
|
wefaxLiveCtx = canvas.getContext("2d");
|
||||||
|
if (!wefaxLiveCtx) return;
|
||||||
|
wefaxLiveCtx.fillStyle = "#000";
|
||||||
|
wefaxLiveCtx.fillRect(0, 0, canvas.width, canvas.height);
|
||||||
|
if (wefaxDom.liveContainer) wefaxDom.liveContainer.style.display = "";
|
||||||
|
}
|
||||||
|
function paintLine(lineBytes) {
|
||||||
|
const canvas = wefaxDom.liveCanvas;
|
||||||
|
if (!wefaxLiveCtx || !canvas) return;
|
||||||
|
const y = wefaxLiveLineCount;
|
||||||
|
if (y >= canvas.height) {
|
||||||
|
const old = wefaxLiveCtx.getImageData(0, 0, canvas.width, canvas.height);
|
||||||
|
canvas.height *= 2;
|
||||||
|
wefaxLiveCtx = canvas.getContext("2d");
|
||||||
|
if (!wefaxLiveCtx) return;
|
||||||
|
wefaxLiveCtx.putImageData(old, 0, 0);
|
||||||
|
}
|
||||||
|
const w = wefaxLivePixelsPerLine;
|
||||||
|
const imgData = wefaxLiveCtx.createImageData(w, 1);
|
||||||
|
const d = imgData.data;
|
||||||
|
for (let x = 0; x < w; x++) {
|
||||||
|
const v = lineBytes[x] ?? 0;
|
||||||
|
const i = x * 4;
|
||||||
|
d[i] = v;
|
||||||
|
d[i + 1] = v;
|
||||||
|
d[i + 2] = v;
|
||||||
|
d[i + 3] = 255;
|
||||||
|
}
|
||||||
|
wefaxLiveCtx.putImageData(imgData, 0, y);
|
||||||
|
wefaxLiveLineCount++;
|
||||||
|
}
|
||||||
|
function renderWefaxLatestCard() {
|
||||||
|
if (!wefaxDom.liveLatest) return;
|
||||||
|
if (wefaxImageHistory.length === 0) {
|
||||||
|
wefaxDom.liveLatest.innerHTML = '<div style="color:var(--text-muted);font-size:0.82rem;">No images decoded yet. Enable the decoder and tune to a WEFAX station.</div>';
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const img = wefaxImageHistory[0];
|
||||||
|
if (!img) return;
|
||||||
|
const ts = img._ts || "--";
|
||||||
|
const date = img._tsMs ? new Date(img._tsMs).toLocaleDateString() : "";
|
||||||
|
const meta = [
|
||||||
|
`${String(img.ioc ?? "--")} IOC`,
|
||||||
|
`${String(img.lpm ?? "--")} LPM`,
|
||||||
|
`${String(img.line_count ?? 0)} lines`,
|
||||||
|
`${date} ${ts}`
|
||||||
|
].join(" · ");
|
||||||
|
const imgSrc = img._dataUrl ? img._dataUrl : img.path ? "/images/" + escapeHtml(img.path.split("/").pop()) : null;
|
||||||
|
let html = '<div class="sat-latest-card">';
|
||||||
|
html += '<div class="sat-latest-title">Latest decoded image</div>';
|
||||||
|
html += '<div class="sat-latest-meta">' + escapeHtml(meta) + "</div>";
|
||||||
|
if (imgSrc) {
|
||||||
|
html += '<a href="' + imgSrc + '" target="_blank" style="font-size:0.8rem;color:var(--accent);display:inline-block;margin-top:0.25rem;">View full image</a>';
|
||||||
|
}
|
||||||
|
html += "</div>";
|
||||||
|
wefaxDom.liveLatest.innerHTML = html;
|
||||||
|
}
|
||||||
|
function getWefaxFilteredHistory() {
|
||||||
|
let items = wefaxImageHistory;
|
||||||
|
if (wefaxFilterText) {
|
||||||
|
items = items.filter(function(i) {
|
||||||
|
const haystack = [
|
||||||
|
String(i.ioc || ""),
|
||||||
|
String(i.lpm || ""),
|
||||||
|
String(i.line_count || "")
|
||||||
|
].join(" ").toUpperCase();
|
||||||
|
return haystack.indexOf(wefaxFilterText) >= 0;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
const sortVal = wefaxDom.sortSelect ? wefaxDom.sortSelect.value : "newest";
|
||||||
|
if (sortVal === "oldest") items = items.slice().reverse();
|
||||||
|
return items;
|
||||||
|
}
|
||||||
|
function renderWefaxHistoryRow(img) {
|
||||||
|
const row = document.createElement("div");
|
||||||
|
row.className = "sat-history-row";
|
||||||
|
const ts = img._ts || "--";
|
||||||
|
const date = img._tsMs ? new Date(img._tsMs).toLocaleDateString([], { month: "short", day: "numeric" }) : "";
|
||||||
|
const ioc = img.ioc || "--";
|
||||||
|
const lpm = img.lpm || "--";
|
||||||
|
const lines = img.line_count || 0;
|
||||||
|
const imgSrc = img._dataUrl ? img._dataUrl : img.path ? "/images/" + escapeHtml(img.path.split("/").pop()) : null;
|
||||||
|
const link = imgSrc ? '<a href="' + imgSrc + '" target="_blank" style="color:var(--accent);">View</a>' : "--";
|
||||||
|
row.innerHTML = [
|
||||||
|
"<span>" + escapeHtml(date + " " + ts) + "</span>",
|
||||||
|
"<span>" + escapeHtml(String(ioc)) + "</span>",
|
||||||
|
"<span>" + escapeHtml(String(lpm)) + "</span>",
|
||||||
|
`<span>${String(lines)}</span>`,
|
||||||
|
"<span>" + link + "</span>"
|
||||||
|
].join("");
|
||||||
|
return row;
|
||||||
|
}
|
||||||
|
function renderWefaxHistoryTable() {
|
||||||
|
if (!wefaxDom.historyList) return;
|
||||||
|
pruneWefaxHistory();
|
||||||
|
const items = getWefaxFilteredHistory();
|
||||||
|
const fragment = document.createDocumentFragment();
|
||||||
|
for (const item of items) {
|
||||||
|
fragment.appendChild(renderWefaxHistoryRow(item));
|
||||||
|
}
|
||||||
|
wefaxDom.historyList.replaceChildren(fragment);
|
||||||
|
if (wefaxDom.historyCount) {
|
||||||
|
const total = wefaxImageHistory.length;
|
||||||
|
const shown = items.length;
|
||||||
|
wefaxDom.historyCount.textContent = total === 0 ? "No images yet" : shown === total ? `${String(total)} image${total === 1 ? "" : "s"}` : `${String(shown)} of ${String(total)} images`;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
function addWefaxImage(msg) {
|
||||||
|
const tsMs = Number.isFinite(msg.ts_ms) ? Number(msg.ts_ms) : Date.now();
|
||||||
|
msg._tsMs = tsMs;
|
||||||
|
msg._ts = new Date(tsMs).toLocaleTimeString([], {
|
||||||
|
hour: "2-digit",
|
||||||
|
minute: "2-digit",
|
||||||
|
second: "2-digit"
|
||||||
|
});
|
||||||
|
const canvas = wefaxDom.liveCanvas;
|
||||||
|
if (wefaxLiveCtx && canvas && wefaxLiveLineCount > 0) {
|
||||||
|
const trimmed = wefaxLiveCtx.getImageData(0, 0, canvas.width, wefaxLiveLineCount);
|
||||||
|
canvas.height = wefaxLiveLineCount;
|
||||||
|
wefaxLiveCtx = canvas.getContext("2d");
|
||||||
|
if (!wefaxLiveCtx) return;
|
||||||
|
wefaxLiveCtx.putImageData(trimmed, 0, 0);
|
||||||
|
try {
|
||||||
|
msg._dataUrl = canvas.toDataURL("image/png");
|
||||||
|
} catch {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
wefaxImageHistory.unshift(msg);
|
||||||
|
if (wefaxImageHistory.length > WEFAX_MAX_IMAGES) {
|
||||||
|
wefaxImageHistory = wefaxImageHistory.slice(0, WEFAX_MAX_IMAGES);
|
||||||
|
}
|
||||||
|
scheduleWefaxUi("wefax-latest", renderWefaxLatestCard);
|
||||||
|
if (wefaxActiveView === "history") {
|
||||||
|
scheduleWefaxUi("wefax-history", renderWefaxHistoryTable);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
function onServerWefaxProgress(msg) {
|
||||||
|
if (msg.state && !msg.line_data) {
|
||||||
|
if (wefaxDom.status) {
|
||||||
|
wefaxDom.status.textContent = msg.state;
|
||||||
|
wefaxDom.status.style.color = msg.state.indexOf("Idle") === 0 ? "" : "var(--text-accent)";
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if ((msg.line_count ?? 0) <= 1 || !wefaxLiveCtx) {
|
||||||
|
resetLiveCanvas(msg.pixels_per_line || 1809);
|
||||||
|
}
|
||||||
|
if (msg.line_data) {
|
||||||
|
const binary = atob(msg.line_data);
|
||||||
|
const bytes = new Uint8Array(binary.length);
|
||||||
|
for (let i = 0; i < binary.length; i++) bytes[i] = binary.charCodeAt(i);
|
||||||
|
paintLine(bytes);
|
||||||
|
}
|
||||||
|
if (wefaxDom.liveInfo) {
|
||||||
|
wefaxDom.liveInfo.textContent = `Line ${String(msg.line_count ?? 0)} · ${String(msg.ioc ?? "--")} IOC · ${String(msg.lpm ?? "--")} LPM`;
|
||||||
|
}
|
||||||
|
if (wefaxDom.status) {
|
||||||
|
wefaxDom.status.textContent = `Receiving — line ${String(msg.line_count ?? 0)}`;
|
||||||
|
wefaxDom.status.style.color = "var(--text-accent)";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
function onServerWefax(msg) {
|
||||||
|
addWefaxImage(msg);
|
||||||
|
if (wefaxDom.liveContainer) wefaxDom.liveContainer.style.display = "none";
|
||||||
|
if (wefaxDom.status) {
|
||||||
|
wefaxDom.status.textContent = `Complete — ${String(msg.line_count ?? 0)} lines`;
|
||||||
|
wefaxDom.status.style.color = "";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
function restoreWefaxHistory(messages) {
|
||||||
|
if (!messages.length) return;
|
||||||
|
for (const message of messages) {
|
||||||
|
const tsMs = Number.isFinite(message.ts_ms) ? Number(message.ts_ms) : Date.now();
|
||||||
|
message._tsMs = tsMs;
|
||||||
|
message._ts = new Date(tsMs).toLocaleTimeString([], {
|
||||||
|
hour: "2-digit",
|
||||||
|
minute: "2-digit",
|
||||||
|
second: "2-digit"
|
||||||
|
});
|
||||||
|
}
|
||||||
|
wefaxImageHistory = messages.concat(wefaxImageHistory);
|
||||||
|
pruneWefaxHistory();
|
||||||
|
scheduleWefaxUi("wefax-latest", renderWefaxLatestCard);
|
||||||
|
if (wefaxActiveView === "history") {
|
||||||
|
scheduleWefaxUi("wefax-history", renderWefaxHistoryTable);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
function pruneWefaxHistoryView() {
|
||||||
|
pruneWefaxHistory();
|
||||||
|
renderWefaxHistoryTable();
|
||||||
|
renderWefaxLatestCard();
|
||||||
|
}
|
||||||
|
function resetWefaxHistoryView() {
|
||||||
|
wefaxImageHistory = [];
|
||||||
|
if (wefaxDom.historyList) wefaxDom.historyList.innerHTML = "";
|
||||||
|
if (wefaxDom.liveContainer) wefaxDom.liveContainer.style.display = "none";
|
||||||
|
wefaxLiveCtx = null;
|
||||||
|
wefaxLiveLineCount = 0;
|
||||||
|
renderWefaxLatestCard();
|
||||||
|
renderWefaxHistoryTable();
|
||||||
|
if (wefaxDom.status) {
|
||||||
|
wefaxDom.status.textContent = "Idle";
|
||||||
|
wefaxDom.status.style.color = "";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (wefaxDom.filterInput) {
|
||||||
|
const filterInput = wefaxDom.filterInput;
|
||||||
|
wefaxDom.filterInput.addEventListener("input", function() {
|
||||||
|
wefaxFilterText = filterInput.value.trim().toUpperCase();
|
||||||
|
scheduleWefaxUi("wefax-history", renderWefaxHistoryTable);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
if (wefaxDom.sortSelect) {
|
||||||
|
wefaxDom.sortSelect.addEventListener("change", function() {
|
||||||
|
scheduleWefaxUi("wefax-history", renderWefaxHistoryTable);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
wefaxWindow.syncWefaxToggle = function(enabled) {
|
||||||
|
if (!wefaxDom.toggleBtn) return;
|
||||||
|
wefaxDom.toggleBtn.dataset.enabled = enabled ? "true" : "false";
|
||||||
|
wefaxDom.toggleBtn.textContent = enabled ? "Disable WEFAX" : "Enable WEFAX";
|
||||||
|
wefaxDom.toggleBtn.style.borderColor = enabled ? "#00d17f" : "";
|
||||||
|
wefaxDom.toggleBtn.style.color = enabled ? "#00d17f" : "";
|
||||||
|
};
|
||||||
|
if (wefaxDom.toggleBtn) {
|
||||||
|
const toggleButton = wefaxDom.toggleBtn;
|
||||||
|
wefaxDom.toggleBtn.addEventListener("click", () => {
|
||||||
|
void (async () => {
|
||||||
|
try {
|
||||||
|
if (wefaxWindow.takeSchedulerControlForDecoderDisable) {
|
||||||
|
await wefaxWindow.takeSchedulerControlForDecoderDisable(toggleButton);
|
||||||
|
}
|
||||||
|
await wefaxWindow.postPath?.("/toggle_wefax_decode");
|
||||||
|
} catch (e) {
|
||||||
|
console.error("WEFAX toggle failed", e);
|
||||||
|
}
|
||||||
|
})();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
if (wefaxDom.clearBtn) {
|
||||||
|
wefaxDom.clearBtn.addEventListener("click", () => {
|
||||||
|
void (async () => {
|
||||||
|
try {
|
||||||
|
await wefaxWindow.postPath?.("/clear_wefax_decode");
|
||||||
|
resetWefaxHistoryView();
|
||||||
|
} catch (e) {
|
||||||
|
console.error("WEFAX clear failed", e);
|
||||||
|
}
|
||||||
|
})();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
renderWefaxLatestCard();
|
||||||
|
wefaxWindow.trxPluginRuntime.registerDecoder({
|
||||||
|
id: "wefax",
|
||||||
|
onMessage: onServerWefax,
|
||||||
|
restore: restoreWefaxHistory,
|
||||||
|
prune: pruneWefaxHistoryView,
|
||||||
|
reset: resetWefaxHistoryView
|
||||||
|
});
|
||||||
|
wefaxWindow.trxPluginRuntime.registerDecoder({
|
||||||
|
id: "wefax_progress",
|
||||||
|
onMessage: onServerWefaxProgress
|
||||||
|
});
|
||||||
@@ -0,0 +1,267 @@
|
|||||||
|
// src/plugins/wspr.ts
|
||||||
|
var wsprWindow = window;
|
||||||
|
var wsprStatus = document.getElementById("wspr-status");
|
||||||
|
var wsprPeriodEl = document.getElementById("wspr-period");
|
||||||
|
var wsprMessagesEl = document.getElementById("wspr-messages");
|
||||||
|
var wsprFilterInput = document.getElementById("wspr-filter");
|
||||||
|
var WSPR_PERIOD_SECONDS = 120;
|
||||||
|
var wsprFilterText = "";
|
||||||
|
var wsprMessageHistory = [];
|
||||||
|
function finiteNumber(value) {
|
||||||
|
const number = typeof value === "number" ? value : Number(value);
|
||||||
|
return Number.isFinite(number) ? number : null;
|
||||||
|
}
|
||||||
|
function currentWsprHistoryRetentionMs() {
|
||||||
|
return typeof wsprWindow.getDecodeHistoryRetentionMs === "function" ? wsprWindow.getDecodeHistoryRetentionMs() : 24 * 60 * 60 * 1e3;
|
||||||
|
}
|
||||||
|
function pruneWsprMessageHistory() {
|
||||||
|
const cutoffMs = Date.now() - currentWsprHistoryRetentionMs();
|
||||||
|
wsprMessageHistory = wsprMessageHistory.filter((msg) => Number(msg._tsMs ?? msg.ts_ms) >= cutoffMs);
|
||||||
|
}
|
||||||
|
function scheduleWsprHistoryRender() {
|
||||||
|
if (typeof wsprWindow.trxScheduleUiFrameJob === "function") {
|
||||||
|
wsprWindow.trxScheduleUiFrameJob("wspr-history", () => {
|
||||||
|
renderWsprHistory();
|
||||||
|
});
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
renderWsprHistory();
|
||||||
|
}
|
||||||
|
function fmtWsprTime(tsMs) {
|
||||||
|
if (!tsMs) return "--:--:--";
|
||||||
|
return new Date(tsMs).toLocaleTimeString([], { hour: "2-digit", minute: "2-digit", second: "2-digit" });
|
||||||
|
}
|
||||||
|
function updateWsprPeriodTimer() {
|
||||||
|
if (!wsprPeriodEl) return;
|
||||||
|
const nowSec = Math.floor(Date.now() / 1e3);
|
||||||
|
const remaining = WSPR_PERIOD_SECONDS - nowSec % WSPR_PERIOD_SECONDS;
|
||||||
|
const mm = String(Math.floor(remaining / 60)).padStart(2, "0");
|
||||||
|
const ss = String(remaining % 60).padStart(2, "0");
|
||||||
|
wsprPeriodEl.textContent = `Next slot ${mm}:${ss}`;
|
||||||
|
}
|
||||||
|
updateWsprPeriodTimer();
|
||||||
|
setInterval(updateWsprPeriodTimer, 500);
|
||||||
|
function renderWsprRow(msg) {
|
||||||
|
const row = document.createElement("div");
|
||||||
|
row.className = "ft8-row";
|
||||||
|
row.dataset.decoder = "wspr";
|
||||||
|
const snr = finiteNumber(msg.snr_db);
|
||||||
|
const delta = finiteNumber(msg.dt_s);
|
||||||
|
const baseHz = finiteNumber(wsprWindow.ft8BaseHz);
|
||||||
|
const offsetHz = finiteNumber(msg.freq_hz);
|
||||||
|
const rfHz = offsetHz !== null && baseHz !== null ? baseHz + offsetHz : null;
|
||||||
|
const freq = rfHz?.toFixed(0) ?? "--";
|
||||||
|
const message = msg.message ?? "";
|
||||||
|
row.dataset.message = message.toUpperCase();
|
||||||
|
row.innerHTML = `<span class="ft8-time">${fmtWsprTime(msg.ts_ms)}</span><span class="ft8-snr">${snr?.toFixed(1) ?? "--"}</span><span class="ft8-dt">${delta?.toFixed(2) ?? "--"}</span><span class="ft8-freq">${freq}</span><span class="ft8-msg">${renderWsprMessage(message)}</span>`;
|
||||||
|
applyWsprFilterToRow(row);
|
||||||
|
return row;
|
||||||
|
}
|
||||||
|
function renderWsprHistory() {
|
||||||
|
pruneWsprMessageHistory();
|
||||||
|
if (!wsprMessagesEl) return;
|
||||||
|
const fragment = document.createDocumentFragment();
|
||||||
|
for (let i = 0; i < wsprMessageHistory.length; i += 1) {
|
||||||
|
const message = wsprMessageHistory[i];
|
||||||
|
if (message) fragment.appendChild(renderWsprRow(message));
|
||||||
|
}
|
||||||
|
wsprMessagesEl.replaceChildren(fragment);
|
||||||
|
}
|
||||||
|
function addWsprMessage(msg) {
|
||||||
|
msg._tsMs = Number.isFinite(msg.ts_ms) ? Number(msg.ts_ms) : Date.now();
|
||||||
|
wsprMessageHistory.unshift(msg);
|
||||||
|
pruneWsprMessageHistory();
|
||||||
|
scheduleWsprHistoryRender();
|
||||||
|
}
|
||||||
|
function normalizeServerWsprMessage(msg) {
|
||||||
|
const raw = msg.message ?? "";
|
||||||
|
const grids = extractAllGrids(raw);
|
||||||
|
const station = extractLikelyCallsign(raw);
|
||||||
|
const baseHz = finiteNumber(wsprWindow.ft8BaseHz);
|
||||||
|
const offsetHz = finiteNumber(msg.freq_hz);
|
||||||
|
const rfHz = offsetHz !== null && baseHz !== null ? baseHz + offsetHz : offsetHz;
|
||||||
|
return {
|
||||||
|
raw,
|
||||||
|
grids,
|
||||||
|
station,
|
||||||
|
rfHz,
|
||||||
|
history: {
|
||||||
|
receiver: wsprWindow.getDecodeRigMeta ? wsprWindow.getDecodeRigMeta() : null,
|
||||||
|
ts_ms: msg.ts_ms,
|
||||||
|
snr_db: msg.snr_db,
|
||||||
|
dt_s: msg.dt_s,
|
||||||
|
freq_hz: msg.freq_hz,
|
||||||
|
message: raw
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
function onServerWsprBatch(messages) {
|
||||||
|
if (!Array.isArray(messages) || messages.length === 0) return;
|
||||||
|
if (wsprStatus) wsprStatus.textContent = "Receiving";
|
||||||
|
const normalized = [];
|
||||||
|
for (const msg of messages) {
|
||||||
|
const next = normalizeServerWsprMessage(msg);
|
||||||
|
if (next.grids.length > 0 && wsprWindow.mapAddLocator) {
|
||||||
|
wsprWindow.mapAddLocator(next.raw, next.grids, "wspr", next.station, {
|
||||||
|
...msg,
|
||||||
|
...next.rfHz === null ? {} : { freq_hz: next.rfHz }
|
||||||
|
});
|
||||||
|
}
|
||||||
|
next.history._tsMs = Number.isFinite(next.history.ts_ms) ? Number(next.history.ts_ms) : Date.now();
|
||||||
|
normalized.push(next.history);
|
||||||
|
}
|
||||||
|
normalized.reverse();
|
||||||
|
wsprMessageHistory = normalized.concat(wsprMessageHistory);
|
||||||
|
pruneWsprMessageHistory();
|
||||||
|
scheduleWsprHistoryRender();
|
||||||
|
}
|
||||||
|
function pruneWsprHistoryView() {
|
||||||
|
pruneWsprMessageHistory();
|
||||||
|
renderWsprHistory();
|
||||||
|
}
|
||||||
|
function escapeWsprHtml(input) {
|
||||||
|
return input.replaceAll("&", "&").replaceAll("<", "<").replaceAll(">", ">").replaceAll('"', """);
|
||||||
|
}
|
||||||
|
function renderWsprMessage(message) {
|
||||||
|
let out = "";
|
||||||
|
let i = 0;
|
||||||
|
while (i < message.length) {
|
||||||
|
const ch = message[i];
|
||||||
|
if (isAlphaNum(ch)) {
|
||||||
|
let j = i + 1;
|
||||||
|
while (j < message.length && isAlphaNum(message[j])) j++;
|
||||||
|
const token = message.slice(i, j);
|
||||||
|
const grid = token.toUpperCase();
|
||||||
|
if (isMaidenheadGridToken(grid)) {
|
||||||
|
out += `<span class="ft8-locator" data-locator-grid="${grid}" role="button" tabindex="0" aria-label="Show locator ${grid} on map">${grid}</span>`;
|
||||||
|
} else {
|
||||||
|
out += escapeWsprHtml(token);
|
||||||
|
}
|
||||||
|
i = j;
|
||||||
|
} else {
|
||||||
|
out += escapeWsprHtml(ch ?? "");
|
||||||
|
i += 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return out;
|
||||||
|
}
|
||||||
|
function extractAllGrids(message) {
|
||||||
|
const out = [];
|
||||||
|
const seen = /* @__PURE__ */ new Set();
|
||||||
|
const parts = message.toUpperCase().split(/[^A-Z0-9]+/);
|
||||||
|
for (const token of parts) {
|
||||||
|
if (!token) continue;
|
||||||
|
if (isMaidenheadGridToken(token) && !seen.has(token)) {
|
||||||
|
seen.add(token);
|
||||||
|
out.push(token);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return out;
|
||||||
|
}
|
||||||
|
function extractLikelyCallsign(message) {
|
||||||
|
const parts = message.toUpperCase().split(/[^A-Z0-9/]+/);
|
||||||
|
for (const token of parts) {
|
||||||
|
if (!token) continue;
|
||||||
|
if (token.length < 3 || token.length > 12) continue;
|
||||||
|
if (token === "CQ" || token === "DE" || token === "QRZ" || token === "DX") continue;
|
||||||
|
if (isMaidenheadGridToken(token)) continue;
|
||||||
|
if (/^[A-Z0-9/]{1,5}\d[A-Z0-9/]{1,6}$/.test(token)) return token;
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
function isFtxFarewellToken(token) {
|
||||||
|
const normalized = token.trim().toUpperCase();
|
||||||
|
return normalized === "RR73" || normalized === "73" || normalized === "RR";
|
||||||
|
}
|
||||||
|
function isMaidenheadGridToken(token) {
|
||||||
|
const normalized = token.trim().toUpperCase();
|
||||||
|
return /^[A-R]{2}\d{2}(?:[A-X]{2})?$/.test(normalized) && !isFtxFarewellToken(normalized);
|
||||||
|
}
|
||||||
|
function isAlphaNum(ch) {
|
||||||
|
return ch !== void 0 && /[A-Za-z0-9]/.test(ch);
|
||||||
|
}
|
||||||
|
function activateWsprHistoryLocator(target) {
|
||||||
|
if (!(target instanceof Element)) return false;
|
||||||
|
const locatorEl = target.closest(".ft8-locator[data-locator-grid]");
|
||||||
|
if (!locatorEl) return false;
|
||||||
|
const grid = (locatorEl.dataset.locatorGrid || "").toUpperCase();
|
||||||
|
if (!grid) return false;
|
||||||
|
if (typeof wsprWindow.navigateToMapLocator === "function") {
|
||||||
|
wsprWindow.navigateToMapLocator(grid, "wspr");
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
function applyWsprFilterToRow(row) {
|
||||||
|
if (!wsprFilterText) {
|
||||||
|
row.style.display = "";
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const message = row.dataset.message || "";
|
||||||
|
row.style.display = message.includes(wsprFilterText) ? "" : "none";
|
||||||
|
}
|
||||||
|
function resetWsprHistoryView() {
|
||||||
|
if (wsprMessagesEl) wsprMessagesEl.innerHTML = "";
|
||||||
|
wsprMessageHistory = [];
|
||||||
|
renderWsprHistory();
|
||||||
|
if (wsprWindow.clearMapMarkersByType) wsprWindow.clearMapMarkersByType("wspr");
|
||||||
|
}
|
||||||
|
if (wsprFilterInput) {
|
||||||
|
wsprFilterInput.addEventListener("input", () => {
|
||||||
|
wsprFilterText = wsprFilterInput.value.trim().toUpperCase();
|
||||||
|
renderWsprHistory();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
if (wsprMessagesEl) {
|
||||||
|
wsprMessagesEl.addEventListener("click", (event) => {
|
||||||
|
if (!activateWsprHistoryLocator(event.target)) return;
|
||||||
|
event.preventDefault();
|
||||||
|
event.stopPropagation();
|
||||||
|
});
|
||||||
|
wsprMessagesEl.addEventListener("keydown", (event) => {
|
||||||
|
if (event.key !== "Enter" && event.key !== " ") return;
|
||||||
|
if (!activateWsprHistoryLocator(event.target)) return;
|
||||||
|
event.preventDefault();
|
||||||
|
event.stopPropagation();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
var wsprDecodeToggleBtn = document.getElementById("wspr-decode-toggle-btn");
|
||||||
|
wsprDecodeToggleBtn?.addEventListener("click", () => {
|
||||||
|
void (async () => {
|
||||||
|
try {
|
||||||
|
await wsprWindow.takeSchedulerControlForDecoderDisable?.(wsprDecodeToggleBtn);
|
||||||
|
await wsprWindow.postPath?.("/toggle_wspr_decode");
|
||||||
|
} catch (error) {
|
||||||
|
console.error("WSPR toggle failed", error);
|
||||||
|
}
|
||||||
|
})();
|
||||||
|
});
|
||||||
|
document.getElementById("settings-clear-wspr-history")?.addEventListener("click", () => {
|
||||||
|
void (async () => {
|
||||||
|
if (!await wsprWindow.trxUi.confirm({ title: "Clear WSPR history?", message: "All stored WSPR decodes will be permanently removed.", confirmLabel: "Clear history" })) return;
|
||||||
|
try {
|
||||||
|
await wsprWindow.postPath?.("/clear_wspr_decode");
|
||||||
|
resetWsprHistoryView();
|
||||||
|
} catch (error) {
|
||||||
|
console.error("WSPR history clear failed", error);
|
||||||
|
}
|
||||||
|
})();
|
||||||
|
});
|
||||||
|
function onServerWspr(msg) {
|
||||||
|
if (wsprStatus) wsprStatus.textContent = "Receiving";
|
||||||
|
const next = normalizeServerWsprMessage(msg);
|
||||||
|
if (next.grids.length > 0 && wsprWindow.mapAddLocator) {
|
||||||
|
wsprWindow.mapAddLocator(next.raw, next.grids, "wspr", next.station, {
|
||||||
|
...msg,
|
||||||
|
...next.rfHz === null ? {} : { freq_hz: next.rfHz }
|
||||||
|
});
|
||||||
|
}
|
||||||
|
addWsprMessage(next.history);
|
||||||
|
}
|
||||||
|
wsprWindow.trxPluginRuntime.registerDecoder({
|
||||||
|
id: "wspr",
|
||||||
|
onMessage: onServerWspr,
|
||||||
|
onBatch: onServerWsprBatch,
|
||||||
|
restore: onServerWsprBatch,
|
||||||
|
prune: pruneWsprHistoryView,
|
||||||
|
reset: resetWsprHistoryView
|
||||||
|
});
|
||||||
@@ -43,7 +43,7 @@ SPDX-License-Identifier: GPL-2.0-or-later
|
|||||||
<div class="subtitle" id="location-subtitle" style="display:none;"></div>
|
<div class="subtitle" id="location-subtitle" style="display:none;"></div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="tab-bar-nav">
|
<div class="tab-bar-nav" aria-label="Primary navigation">
|
||||||
<button class="tab active" data-tab="main">
|
<button class="tab active" data-tab="main">
|
||||||
<svg class="tab-icon" aria-hidden="true"><use href="#icon-home"/></svg>
|
<svg class="tab-icon" aria-hidden="true"><use href="#icon-home"/></svg>
|
||||||
<span class="tab-label">Main</span>
|
<span class="tab-label">Main</span>
|
||||||
@@ -85,6 +85,7 @@ SPDX-License-Identifier: GPL-2.0-or-later
|
|||||||
<button id="header-rec-btn" class="header-bar-btn header-rec-btn" type="button" aria-label="Toggle recording" title="Toggle recording">REC</button>
|
<button id="header-rec-btn" class="header-bar-btn header-rec-btn" type="button" aria-label="Toggle recording" title="Toggle recording">REC</button>
|
||||||
<div class="header-rig-switch">
|
<div class="header-rig-switch">
|
||||||
<select id="header-rig-switch-select" aria-label="Select active rig"></select>
|
<select id="header-rig-switch-select" aria-label="Select active rig"></select>
|
||||||
|
<span id="header-rig-summary" class="header-rig-summary" aria-live="polite"></span>
|
||||||
</div>
|
</div>
|
||||||
<div class="header-style-pick">
|
<div class="header-style-pick">
|
||||||
<select id="header-style-pick-select" aria-label="Select UI style">
|
<select id="header-style-pick-select" aria-label="Select UI style">
|
||||||
@@ -140,13 +141,14 @@ SPDX-License-Identifier: GPL-2.0-or-later
|
|||||||
<div class="spectrum-wrap">
|
<div class="spectrum-wrap">
|
||||||
<div id="spectrum-bookmark-axis"></div>
|
<div id="spectrum-bookmark-axis"></div>
|
||||||
<div id="spectrum-bookmark-side-left" class="spectrum-bookmark-side spectrum-bookmark-side-left" aria-hidden="true"></div>
|
<div id="spectrum-bookmark-side-left" class="spectrum-bookmark-side spectrum-bookmark-side-left" aria-hidden="true"></div>
|
||||||
<canvas id="spectrum-canvas" tabindex="0" role="img" aria-label="Spectrum display"></canvas>
|
<canvas id="spectrum-canvas" tabindex="0" role="img" aria-label="Spectrum display" aria-describedby="spectrum-text-summary"></canvas>
|
||||||
|
<p id="spectrum-text-summary" class="visually-hidden">Spectrum data is waiting for the receiver.</p>
|
||||||
<div id="spectrum-zoom-indicator" aria-hidden="true"></div>
|
<div id="spectrum-zoom-indicator" aria-hidden="true"></div>
|
||||||
<div id="spectrum-minimap" aria-hidden="true"><div class="minimap-view"></div></div>
|
<div id="spectrum-minimap" aria-hidden="true"><div class="minimap-view"></div></div>
|
||||||
<div id="spectrum-db-axis" aria-hidden="true"></div>
|
<div id="spectrum-db-axis" aria-hidden="true"></div>
|
||||||
<div id="spectrum-bookmark-side-right" class="spectrum-bookmark-side spectrum-bookmark-side-right" aria-hidden="true"></div>
|
<div id="spectrum-bookmark-side-right" class="spectrum-bookmark-side spectrum-bookmark-side-right" aria-hidden="true"></div>
|
||||||
<div id="spectrum-tooltip"></div>
|
<div id="spectrum-tooltip"></div>
|
||||||
<canvas id="spectrum-waterfall-canvas" tabindex="0" role="img" aria-label="Waterfall display" style="display:none;"></canvas>
|
<canvas id="spectrum-waterfall-canvas" tabindex="0" role="img" aria-label="Waterfall display" aria-describedby="spectrum-text-summary" style="display:none;"></canvas>
|
||||||
<div id="spectrum-freq-axis">
|
<div id="spectrum-freq-axis">
|
||||||
<button id="spectrum-center-left-btn" class="spectrum-edge-shift spectrum-edge-shift-left" type="button" aria-label="Shift spectrum center left">‹</button>
|
<button id="spectrum-center-left-btn" class="spectrum-edge-shift spectrum-edge-shift-left" type="button" aria-label="Shift spectrum center left">‹</button>
|
||||||
<button id="spectrum-center-right-btn" class="spectrum-edge-shift spectrum-edge-shift-right" type="button" aria-label="Shift spectrum center right">›</button>
|
<button id="spectrum-center-right-btn" class="spectrum-edge-shift spectrum-edge-shift-right" type="button" aria-label="Shift spectrum center right">›</button>
|
||||||
@@ -204,12 +206,12 @@ SPDX-License-Identifier: GPL-2.0-or-later
|
|||||||
<div class="label"><span>Signal strength</span></div>
|
<div class="label"><span>Signal strength</span></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="freq-field frequency-col">
|
<div class="freq-field frequency-col">
|
||||||
<input class="status-input" id="freq" type="text" value="--" />
|
<input class="status-input" id="freq" type="text" value="--" aria-describedby="freq-label" aria-label="Tuned frequency" />
|
||||||
<div class="label"><span>Frequency</span></div>
|
<div class="label" id="freq-label"><span>Frequency</span></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="freq-field frequency-col center-frequency-col" id="center-freq-field" style="display:none;">
|
<div class="freq-field frequency-col center-frequency-col" id="center-freq-field" style="display:none;">
|
||||||
<input class="status-input" id="center-freq" type="text" value="--" />
|
<input class="status-input" id="center-freq" type="text" value="--" aria-describedby="center-freq-label" aria-label="SDR center frequency" />
|
||||||
<div class="label"><span>Center Frequency</span></div>
|
<div class="label" id="center-freq-label"><span>Center Frequency</span></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="freq-field unit-col">
|
<div class="freq-field unit-col">
|
||||||
<div class="jog-step" id="jog-step">
|
<div class="jog-step" id="jog-step">
|
||||||
@@ -235,7 +237,7 @@ SPDX-License-Identifier: GPL-2.0-or-later
|
|||||||
<div class="controls-col label-below-col">
|
<div class="controls-col label-below-col">
|
||||||
<div class="label"><span>Mode</span></div>
|
<div class="label"><span>Mode</span></div>
|
||||||
<div class="inline">
|
<div class="inline">
|
||||||
<select class="status-input" id="mode"></select>
|
<select class="status-input" id="mode" aria-label="Demodulation mode"></select>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="controls-col controls-col-center">
|
<div class="controls-col controls-col-center">
|
||||||
@@ -307,9 +309,9 @@ SPDX-License-Identifier: GPL-2.0-or-later
|
|||||||
<div class="controls-col controls-col-power label-below-col" id="tx-power-col">
|
<div class="controls-col controls-col-power label-below-col" id="tx-power-col">
|
||||||
<div class="label"><span>Transmit / Power</span></div>
|
<div class="label"><span>Transmit / Power</span></div>
|
||||||
<div class="btn-grid">
|
<div class="btn-grid">
|
||||||
<button id="ptt-btn" type="button">Toggle PTT</button>
|
<button id="ptt-btn" type="button" aria-pressed="false">Start TX</button>
|
||||||
<button id="power-btn" type="button">Toggle Power</button>
|
<button id="power-btn" type="button" aria-pressed="false">Power On</button>
|
||||||
<button id="lock-btn" type="button">Lock</button>
|
<button id="lock-btn" type="button" aria-pressed="false">Lock Tuning</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -356,9 +358,14 @@ SPDX-License-Identifier: GPL-2.0-or-later
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="full-row label-below-row" id="vchan-row">
|
<div class="full-row label-below-row" id="vchan-row">
|
||||||
<div class="label"><span>Channels / Scheduler</span></div>
|
<div class="label"><span>Channels</span></div>
|
||||||
<div class="channel-scheduler-controls">
|
<div class="channel-scheduler-controls">
|
||||||
<div class="vchan-picker" id="vchan-picker"></div>
|
<div class="vchan-picker" id="vchan-picker"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<details id="scheduler-controls" class="advanced-radio-controls scheduler-controls-section">
|
||||||
|
<summary>Scheduler controls</summary>
|
||||||
|
<div class="advanced-radio-body">
|
||||||
<div class="scheduler-control-row" style="display:none">
|
<div class="scheduler-control-row" style="display:none">
|
||||||
<div class="scheduler-release-wrap">
|
<div class="scheduler-release-wrap">
|
||||||
<button id="scheduler-release-btn" type="button">Release to Scheduler</button>
|
<button id="scheduler-release-btn" type="button">Release to Scheduler</button>
|
||||||
@@ -381,7 +388,7 @@ SPDX-License-Identifier: GPL-2.0-or-later
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</details>
|
||||||
<div class="full-row label-below-row">
|
<div class="full-row label-below-row">
|
||||||
<div class="label"><span>Signal</span></div>
|
<div class="label"><span>Signal</span></div>
|
||||||
<div class="signal" style="gap: 1rem;">
|
<div class="signal" style="gap: 1rem;">
|
||||||
@@ -412,20 +419,24 @@ SPDX-License-Identifier: GPL-2.0-or-later
|
|||||||
<button id="tx-limit-btn" type="button">Set</button>
|
<button id="tx-limit-btn" type="button">Set</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="full-row label-below-row" id="audio-row">
|
<details id="audio-controls" class="advanced-radio-controls audio-controls-section">
|
||||||
<div class="label"><span>Audio</span></div>
|
<summary>Audio controls</summary>
|
||||||
<div class="inline" style="gap: 0.6rem; flex-wrap: wrap; align-items: center;">
|
<div class="advanced-radio-body">
|
||||||
<button id="rx-audio-btn" type="button">Play Audio</button>
|
<div class="full-row" id="audio-row">
|
||||||
<button id="tx-audio-btn" type="button">Transmit Audio</button>
|
<div class="inline" style="gap: 0.6rem; flex-wrap: wrap; align-items: center;">
|
||||||
<label class="vol-label">RX<input type="range" id="rx-vol" min="0" max="100" value="80" class="vol-slider" /><small class="vol-pct" id="rx-vol-pct">80%</small></label>
|
<button id="rx-audio-btn" type="button">Play Audio</button>
|
||||||
<label class="vol-label">TX<input type="range" id="tx-vol" min="0" max="100" value="80" class="vol-slider" /><small class="vol-pct" id="tx-vol-pct">80%</small></label>
|
<button id="tx-audio-btn" type="button">Transmit Audio</button>
|
||||||
<label class="vol-label" id="sdr-squelch-wrap" style="display:none;">SQL<input type="range" id="sdr-squelch" min="0" max="100" value="0" class="vol-slider" /><small class="vol-pct" id="sdr-squelch-pct">Open</small><button id="sdr-squelch-auto" type="button" class="sql-auto-btn" title="Set squelch to current noise level">Auto</button></label>
|
<label class="vol-label">RX<input type="range" id="rx-vol" min="0" max="100" value="80" class="vol-slider" /><small class="vol-pct" id="rx-vol-pct">80%</small></label>
|
||||||
<div id="audio-level">
|
<label class="vol-label">TX<input type="range" id="tx-vol" min="0" max="100" value="80" class="vol-slider" /><small class="vol-pct" id="tx-vol-pct">80%</small></label>
|
||||||
<div id="audio-level-fill"></div>
|
<label class="vol-label" id="sdr-squelch-wrap" style="display:none;">SQL<input type="range" id="sdr-squelch" min="0" max="100" value="0" class="vol-slider" /><small class="vol-pct" id="sdr-squelch-pct">Open</small><button id="sdr-squelch-auto" type="button" class="sql-auto-btn" title="Set squelch to current noise level">Auto</button></label>
|
||||||
|
<div id="audio-level">
|
||||||
|
<div id="audio-level-fill"></div>
|
||||||
|
</div>
|
||||||
|
<small id="audio-status" style="min-width: 60px;">Off</small>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<small id="audio-status" style="min-width: 60px;">Off</small>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</details>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -495,6 +506,7 @@ SPDX-License-Identifier: GPL-2.0-or-later
|
|||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="bm-form-actions">
|
<div class="bm-form-actions">
|
||||||
|
<div id="bm-form-error" class="form-error" role="alert" aria-live="polite"></div>
|
||||||
<button type="submit" class="bm-save-btn">Save</button>
|
<button type="submit" class="bm-save-btn">Save</button>
|
||||||
<button type="button" id="bm-form-cancel">Cancel</button>
|
<button type="button" id="bm-form-cancel">Cancel</button>
|
||||||
</div>
|
</div>
|
||||||
@@ -530,7 +542,7 @@ SPDX-License-Identifier: GPL-2.0-or-later
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div id="tab-digital-modes" class="tab-panel" style="display:none;">
|
<div id="tab-digital-modes" class="tab-panel" style="display:none;">
|
||||||
<div class="sub-tab-bar">
|
<div class="sub-tab-bar" aria-label="Decoder views">
|
||||||
<button class="sub-tab active" data-subtab="overview">Overview</button>
|
<button class="sub-tab active" data-subtab="overview">Overview</button>
|
||||||
<button class="sub-tab" data-subtab="ais">AIS</button>
|
<button class="sub-tab" data-subtab="ais">AIS</button>
|
||||||
<button class="sub-tab" data-subtab="vdes">VDES</button>
|
<button class="sub-tab" data-subtab="vdes">VDES</button>
|
||||||
@@ -1623,50 +1635,14 @@ SPDX-License-Identifier: GPL-2.0-or-later
|
|||||||
<div id="decode-history-overlay-sub" class="decode-history-overlay-sub">Preparing recent decodes for the UI</div>
|
<div id="decode-history-overlay-sub" class="decode-history-overlay-sub">Preparing recent decodes for the UI</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<script defer src="https://cdn.jsdelivr.net/npm/opus-decoder@0.7.11/dist/opus-decoder.min.js" charset="UTF-8"></script>
|
<script defer src="/vendor/opus-decoder-0.7.11.min.js" charset="UTF-8"></script>
|
||||||
<script defer src="/webgl-renderer.js"></script>
|
|
||||||
<script defer src="/app.js"></script>
|
|
||||||
<script>
|
|
||||||
// Lazy plugin loader: loads plugin scripts when their tab/feature is first activated
|
|
||||||
(function() {
|
|
||||||
var pluginScripts = {
|
|
||||||
'digital-modes': ['/ft8.js', '/ft4.js', '/ft2.js', '/wspr.js', '/cw.js', '/background-decode.js', '/sat.js', '/wefax.js'],
|
|
||||||
'map-data': ['/map-core.js', '/ais.js', '/vdes.js', '/aprs.js', '/hf-aprs.js'],
|
|
||||||
'map': ['/map-core.js', '/leaflet-ais-tracksymbol.js', '/ais.js', '/vdes.js', '/aprs.js', '/hf-aprs.js', '/sat.js', '/sat-scheduler.js'],
|
|
||||||
'statistics': ['/map-core.js'],
|
|
||||||
'bookmarks': ['/bookmarks.js'],
|
|
||||||
'recorder': [],
|
|
||||||
'settings': ['/vchan.js', '/scheduler.js']
|
|
||||||
};
|
|
||||||
var loaded = new Set();
|
|
||||||
function loadPlugins(tab) {
|
|
||||||
var scripts = pluginScripts[tab];
|
|
||||||
if (!scripts) return;
|
|
||||||
scripts.forEach(function(src) {
|
|
||||||
if (loaded.has(src)) return;
|
|
||||||
loaded.add(src);
|
|
||||||
var s = document.createElement('script');
|
|
||||||
s.src = src;
|
|
||||||
s.defer = true;
|
|
||||||
document.body.appendChild(s);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
// Eager plugin loading is triggered by app.js (after window.trx is set up)
|
|
||||||
// via window.loadEagerPlugins(). Dynamic scripts are effectively async, so
|
|
||||||
// loading them before app.js would cause map-core.js to crash when
|
|
||||||
// window.trx is not yet defined.
|
|
||||||
window.loadEagerPlugins = function() {
|
|
||||||
['digital-modes', 'map-data', 'bookmarks', 'settings'].forEach(loadPlugins);
|
|
||||||
};
|
|
||||||
// Load others on tab switch
|
|
||||||
document.addEventListener('click', function(e) {
|
|
||||||
var tab = e.target.closest('[data-tab]');
|
|
||||||
if (tab) loadPlugins(tab.dataset.tab);
|
|
||||||
});
|
|
||||||
window.loadPluginsForTab = loadPlugins;
|
|
||||||
})();
|
|
||||||
</script>
|
|
||||||
<!-- Template cloning is handled by navigateToTab() in app.js -->
|
|
||||||
<script defer src="/vendor/leaflet.js"></script>
|
<script defer src="/vendor/leaflet.js"></script>
|
||||||
|
<script defer src="/leaflet-ais-tracksymbol.js"></script>
|
||||||
|
<script defer src="/webgl-renderer.js"></script>
|
||||||
|
<script defer src="/ui-core.js"></script>
|
||||||
|
<script defer src="/plugin-runtime.js"></script>
|
||||||
|
<script defer src="/plugin-loader.js"></script>
|
||||||
|
<script defer src="/app.js"></script>
|
||||||
|
<!-- Template cloning is handled by navigateToTab() in app.js -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@@ -3,10 +3,10 @@
|
|||||||
// SPDX-License-Identifier: GPL-2.0-or-later
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
// Map, statistics, and geolocation module (lazy-loaded on map tab activation).
|
// Map, statistics, and geolocation module (lazy-loaded on map tab activation).
|
||||||
// Communicates with app.js core via window.trx namespace.
|
// Communicates with app.js through explicit state/core/module services.
|
||||||
(function () {
|
(function () {
|
||||||
"use strict";
|
"use strict";
|
||||||
const T = window.trx;
|
const { state: T, core: C, modules } = window.trx;
|
||||||
|
|
||||||
// Destructure shared utility functions for convenience
|
// Destructure shared utility functions for convenience
|
||||||
const { saveSetting, loadSetting, showHint, escapeMapHtml, formatFreq, formatFreqForHumans,
|
const { saveSetting, loadSetting, showHint, escapeMapHtml, formatFreq, formatFreqForHumans,
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
formatUptime, latLonToMaidenhead, locatorToLatLon, haversineKm,
|
formatUptime, latLonToMaidenhead, locatorToLatLon, haversineKm,
|
||||||
formatDistanceKm, formatTimeAgo, currentDecodeHistoryRetentionMs,
|
formatDistanceKm, formatTimeAgo, currentDecodeHistoryRetentionMs,
|
||||||
formatWavelength, bookmarkDistanceText, buildBookmarkTooltipText,
|
formatWavelength, bookmarkDistanceText, buildBookmarkTooltipText,
|
||||||
nearestBookmarkForHz } = T;
|
nearestBookmarkForHz } = C;
|
||||||
|
|
||||||
function updateMapRigFilter() {
|
function updateMapRigFilter() {
|
||||||
const el = document.getElementById("map-rig-filter");
|
const el = document.getElementById("map-rig-filter");
|
||||||
@@ -261,7 +261,7 @@
|
|||||||
if (canRenderMap) {
|
if (canRenderMap) {
|
||||||
refreshAprsTrack(call, entry);
|
refreshAprsTrack(call, entry);
|
||||||
} else {
|
} else {
|
||||||
T.markDecodeMapSyncPending();
|
C.markDecodeMapSyncPending();
|
||||||
}
|
}
|
||||||
if (!visible) {
|
if (!visible) {
|
||||||
if (canRenderMap && selectedAprsTrackCall && String(selectedAprsTrackCall) === String(call)) {
|
if (canRenderMap && selectedAprsTrackCall && String(selectedAprsTrackCall) === String(call)) {
|
||||||
@@ -294,7 +294,7 @@
|
|||||||
if (canRenderMap) {
|
if (canRenderMap) {
|
||||||
refreshAisTrack(key, entry);
|
refreshAisTrack(key, entry);
|
||||||
} else {
|
} else {
|
||||||
T.markDecodeMapSyncPending();
|
C.markDecodeMapSyncPending();
|
||||||
}
|
}
|
||||||
if (!visible) {
|
if (!visible) {
|
||||||
if (canRenderMap && selectedAisTrackMmsi && String(selectedAisTrackMmsi) === String(key)) {
|
if (canRenderMap && selectedAisTrackMmsi && String(selectedAisTrackMmsi) === String(key)) {
|
||||||
@@ -337,7 +337,7 @@
|
|||||||
entry.stations = new Set();
|
entry.stations = new Set();
|
||||||
entry.bandMeta = new Map();
|
entry.bandMeta = new Map();
|
||||||
if (canRenderMap) setRetainedMapMarkerVisible(entry.marker, false);
|
if (canRenderMap) setRetainedMapMarkerVisible(entry.marker, false);
|
||||||
else T.markDecodeMapSyncPending();
|
else C.markDecodeMapSyncPending();
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
const nextStations = new Set();
|
const nextStations = new Set();
|
||||||
@@ -352,7 +352,7 @@
|
|||||||
);
|
);
|
||||||
const count = Math.max(nextDetails.size, nextStations.size || 0, 1);
|
const count = Math.max(nextDetails.size, nextStations.size || 0, 1);
|
||||||
if (!canRenderMap) {
|
if (!canRenderMap) {
|
||||||
T.markDecodeMapSyncPending();
|
C.markDecodeMapSyncPending();
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
ensureDecodeLocatorMarker(entry);
|
ensureDecodeLocatorMarker(entry);
|
||||||
@@ -392,7 +392,7 @@
|
|||||||
pruneLocatorEntry(key, entry, cutoffMs);
|
pruneLocatorEntry(key, entry, cutoffMs);
|
||||||
}
|
}
|
||||||
if (!aprsMap || T.decodeHistoryReplayActive) {
|
if (!aprsMap || T.decodeHistoryReplayActive) {
|
||||||
T.markDecodeMapSyncPending();
|
C.markDecodeMapSyncPending();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
rebuildDecodeContactPaths();
|
rebuildDecodeContactPaths();
|
||||||
@@ -415,7 +415,7 @@
|
|||||||
|
|
||||||
function locatorFilterColor(type) {
|
function locatorFilterColor(type) {
|
||||||
const hues = locatorThemeHues();
|
const hues = locatorThemeHues();
|
||||||
const lightTheme = T.currentTheme() === "light";
|
const lightTheme = C.currentTheme() === "light";
|
||||||
const sat = lightTheme ? 66 : 76;
|
const sat = lightTheme ? 66 : 76;
|
||||||
const light = lightTheme ? 42 : 56;
|
const light = lightTheme ? 42 : 56;
|
||||||
const hue = type === "bookmark"
|
const hue = type === "bookmark"
|
||||||
@@ -539,7 +539,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
function locatorThemeHues() {
|
function locatorThemeHues() {
|
||||||
const pal = T.canvasPalette();
|
const pal = C.canvasPalette();
|
||||||
const baseHue = paletteHue(pal?.spectrumLine, 145);
|
const baseHue = paletteHue(pal?.spectrumLine, 145);
|
||||||
const waveHue = paletteHue(pal?.waveformLine, baseHue + 34);
|
const waveHue = paletteHue(pal?.waveformLine, baseHue + 34);
|
||||||
const peakHue = paletteHue(pal?.waveformPeak, baseHue - 42);
|
const peakHue = paletteHue(pal?.waveformPeak, baseHue - 42);
|
||||||
@@ -560,7 +560,7 @@
|
|||||||
|
|
||||||
function locatorBandChipColor(label) {
|
function locatorBandChipColor(label) {
|
||||||
const hues = locatorThemeHues();
|
const hues = locatorThemeHues();
|
||||||
const lightTheme = T.currentTheme() === "light";
|
const lightTheme = C.currentTheme() === "light";
|
||||||
const hue = wrapHue(hues.bandBase + locatorBandIndex(label) * 137.508);
|
const hue = wrapHue(hues.bandBase + locatorBandIndex(label) * 137.508);
|
||||||
const sat = lightTheme ? 68 : 78;
|
const sat = lightTheme ? 68 : 78;
|
||||||
const light = lightTheme ? 44 : 58;
|
const light = lightTheme ? 44 : 58;
|
||||||
@@ -606,7 +606,7 @@
|
|||||||
const safeCount = Math.max(1, Number.isFinite(count) ? count : 1);
|
const safeCount = Math.max(1, Number.isFinite(count) ? count : 1);
|
||||||
const intensity = Math.min(1, Math.log2(safeCount + 1) / 5);
|
const intensity = Math.min(1, Math.log2(safeCount + 1) / 5);
|
||||||
const hue = locatorHueForEntry(entry);
|
const hue = locatorHueForEntry(entry);
|
||||||
const lightTheme = T.currentTheme() === "light";
|
const lightTheme = C.currentTheme() === "light";
|
||||||
const strokeSat = lightTheme ? 62 : 74;
|
const strokeSat = lightTheme ? 62 : 74;
|
||||||
const fillSat = lightTheme ? 68 : 78;
|
const fillSat = lightTheme ? 68 : 78;
|
||||||
const strokeLight = lightTheme ? 40 : 56;
|
const strokeLight = lightTheme ? 40 : 56;
|
||||||
@@ -1573,7 +1573,7 @@
|
|||||||
stageResizeObserver = new ResizeObserver(() => sizeAprsMapToViewport());
|
stageResizeObserver = new ResizeObserver(() => sizeAprsMapToViewport());
|
||||||
stageResizeObserver.observe(stage);
|
stageResizeObserver.observe(stage);
|
||||||
}
|
}
|
||||||
updateMapBaseLayerForTheme(T.currentTheme());
|
updateMapBaseLayerForTheme(C.currentTheme());
|
||||||
syncAprsReceiverMarker();
|
syncAprsReceiverMarker();
|
||||||
|
|
||||||
// Rebuild popup content on open (keeps age/distance/rig list fresh)
|
// Rebuild popup content on open (keeps age/distance/rig list fresh)
|
||||||
@@ -2307,18 +2307,18 @@
|
|||||||
existing.rigIds.add(msgRigId);
|
existing.rigIds.add(msgRigId);
|
||||||
}
|
}
|
||||||
if (!visible) {
|
if (!visible) {
|
||||||
if (!T.decodeHistoryMapRenderingDeferred()) {
|
if (!C.decodeHistoryMapRenderingDeferred()) {
|
||||||
setRetainedMapMarkerVisible(existing.marker, false);
|
setRetainedMapMarkerVisible(existing.marker, false);
|
||||||
} else {
|
} else {
|
||||||
T.markDecodeMapSyncPending();
|
C.markDecodeMapSyncPending();
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (!T.decodeHistoryMapRenderingDeferred()) {
|
if (!C.decodeHistoryMapRenderingDeferred()) {
|
||||||
ensureVdesMarker(key, existing);
|
ensureVdesMarker(key, existing);
|
||||||
setRetainedMapMarkerVisible(existing.marker, true);
|
setRetainedMapMarkerVisible(existing.marker, true);
|
||||||
} else {
|
} else {
|
||||||
T.markDecodeMapSyncPending();
|
C.markDecodeMapSyncPending();
|
||||||
}
|
}
|
||||||
if (aprsMap && existing.marker && !T.decodeHistoryReplayActive) {
|
if (aprsMap && existing.marker && !T.decodeHistoryReplayActive) {
|
||||||
existing.marker.setLatLng([msg.lat, msg.lon]);
|
existing.marker.setLatLng([msg.lat, msg.lon]);
|
||||||
@@ -2334,11 +2334,11 @@
|
|||||||
};
|
};
|
||||||
vdesMarkers.set(key, entry);
|
vdesMarkers.set(key, entry);
|
||||||
if (!visible) return;
|
if (!visible) return;
|
||||||
if (!T.decodeHistoryMapRenderingDeferred()) {
|
if (!C.decodeHistoryMapRenderingDeferred()) {
|
||||||
ensureVdesMarker(key, entry);
|
ensureVdesMarker(key, entry);
|
||||||
setRetainedMapMarkerVisible(entry.marker, true);
|
setRetainedMapMarkerVisible(entry.marker, true);
|
||||||
} else {
|
} else {
|
||||||
T.markDecodeMapSyncPending();
|
C.markDecodeMapSyncPending();
|
||||||
}
|
}
|
||||||
if (aprsMap && entry.marker && !T.decodeHistoryReplayActive) {
|
if (aprsMap && entry.marker && !T.decodeHistoryReplayActive) {
|
||||||
entry.marker.setPopupContent(popupHtml);
|
entry.marker.setPopupContent(popupHtml);
|
||||||
@@ -2365,7 +2365,7 @@
|
|||||||
if (T.locationSubtitle) {
|
if (T.locationSubtitle) {
|
||||||
T.locationSubtitle.textContent = `Location: ${grid} · ${label}`;
|
T.locationSubtitle.textContent = `Location: ${grid} · ${label}`;
|
||||||
}
|
}
|
||||||
T.updateDocumentTitle(T.activeChannelRds());
|
C.updateDocumentTitle(C.activeChannelRds());
|
||||||
})
|
})
|
||||||
.catch(() => {});
|
.catch(() => {});
|
||||||
}
|
}
|
||||||
@@ -2443,8 +2443,8 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
function scheduleDecodeMapMaintenance() {
|
function scheduleDecodeMapMaintenance() {
|
||||||
if (T.decodeHistoryMapRenderingDeferred()) {
|
if (C.decodeHistoryMapRenderingDeferred()) {
|
||||||
T.markDecodeMapSyncPending();
|
C.markDecodeMapSyncPending();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
scheduleUiFrameJob("decode-map-maintenance", () => {
|
scheduleUiFrameJob("decode-map-maintenance", () => {
|
||||||
@@ -3461,7 +3461,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Register module API for core to call
|
// Register module API for core to call
|
||||||
window.trx.map = {
|
modules.map = {
|
||||||
initAprsMap,
|
initAprsMap,
|
||||||
sizeAprsMapToViewport,
|
sizeAprsMapToViewport,
|
||||||
syncAprsReceiverMarker,
|
syncAprsReceiverMarker,
|
||||||
|
|||||||
@@ -382,7 +382,7 @@ window.pruneAisHistoryView = function() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
document.getElementById("settings-clear-ais-history")?.addEventListener("click", async () => {
|
document.getElementById("settings-clear-ais-history")?.addEventListener("click", async () => {
|
||||||
if (!confirm("Clear all AIS decode history? This cannot be undone.")) return;
|
if (!await window.trxUi.confirm({ title: "Clear AIS history?", message: "All stored AIS messages will be permanently removed.", confirmLabel: "Clear history" })) return;
|
||||||
try {
|
try {
|
||||||
await postPath("/clear_ais_decode");
|
await postPath("/clear_ais_decode");
|
||||||
window.resetAisHistoryView();
|
window.resetAisHistoryView();
|
||||||
|
|||||||
@@ -442,7 +442,7 @@ window.restoreAprsHistory = function(packets) {
|
|||||||
};
|
};
|
||||||
|
|
||||||
document.getElementById("settings-clear-aprs-history")?.addEventListener("click", async () => {
|
document.getElementById("settings-clear-aprs-history")?.addEventListener("click", async () => {
|
||||||
if (!confirm("Clear all APRS decode history? This cannot be undone.")) return;
|
if (!await window.trxUi.confirm({ title: "Clear APRS history?", message: "All stored APRS packets will be permanently removed.", confirmLabel: "Clear history" })) return;
|
||||||
try {
|
try {
|
||||||
await postPath("/clear_aprs_decode");
|
await postPath("/clear_aprs_decode");
|
||||||
window.resetAprsHistoryView();
|
window.resetAprsHistoryView();
|
||||||
|
|||||||
+2
-2
@@ -215,10 +215,10 @@
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
function resetBackgroundDecode() {
|
async function resetBackgroundDecode() {
|
||||||
const rigId = currentRigId;
|
const rigId = currentRigId;
|
||||||
if (!rigId) return;
|
if (!rigId) return;
|
||||||
if (!confirm("Reset background decode configuration? This cannot be undone.")) return;
|
if (!await window.trxUi.confirm({ title: "Reset background decoding?", message: "The current background decode configuration will be permanently reset.", confirmLabel: "Reset" })) return;
|
||||||
apiResetConfig(rigId)
|
apiResetConfig(rigId)
|
||||||
.then(function (saved) {
|
.then(function (saved) {
|
||||||
currentConfig = saved;
|
currentConfig = saved;
|
||||||
|
|||||||
@@ -331,8 +331,13 @@ async function bmSave(e) {
|
|||||||
const comment = document.getElementById("bm-comment").value.trim();
|
const comment = document.getElementById("bm-comment").value.trim();
|
||||||
const decoders = bmReadDecoders();
|
const decoders = bmReadDecoders();
|
||||||
|
|
||||||
|
const formError = document.getElementById("bm-form-error");
|
||||||
|
if (formError) formError.textContent = "";
|
||||||
if (!name || !Number.isFinite(freq_hz) || !mode) {
|
if (!name || !Number.isFinite(freq_hz) || !mode) {
|
||||||
alert("Name, Frequency, and Mode are required.");
|
if (formError) formError.textContent = "Enter a name, a valid frequency, and a mode.";
|
||||||
|
const invalid = !name ? document.getElementById("bm-name")
|
||||||
|
: !Number.isFinite(freq_hz) ? document.getElementById("bm-freq") : document.getElementById("bm-mode");
|
||||||
|
invalid?.focus();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -373,12 +378,13 @@ async function bmSave(e) {
|
|||||||
await bmFetch(document.getElementById("bm-category-filter").value);
|
await bmFetch(document.getElementById("bm-category-filter").value);
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
console.error("Failed to save bookmark:", err);
|
console.error("Failed to save bookmark:", err);
|
||||||
alert("Failed to save bookmark: " + err.message);
|
if (formError) formError.textContent = "Failed to save bookmark: " + err.message;
|
||||||
|
window.trxUi?.notify("Bookmark could not be saved", { kind: "error" });
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
async function bmDelete(id) {
|
async function bmDelete(id) {
|
||||||
if (!confirm("Delete this bookmark?")) return;
|
if (!await window.trxUi.confirm({ title: "Delete bookmark?", message: "This bookmark will be permanently removed.", confirmLabel: "Delete" })) return;
|
||||||
const bm = bmList.find((b) => b.id === id);
|
const bm = bmList.find((b) => b.id === id);
|
||||||
const scope = bm ? bm.scope : undefined;
|
const scope = bm ? bm.scope : undefined;
|
||||||
try {
|
try {
|
||||||
@@ -389,7 +395,7 @@ async function bmDelete(id) {
|
|||||||
await bmFetch(document.getElementById("bm-category-filter").value);
|
await bmFetch(document.getElementById("bm-category-filter").value);
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
console.error("Failed to delete bookmark:", err);
|
console.error("Failed to delete bookmark:", err);
|
||||||
alert("Failed to delete bookmark: " + err.message);
|
window.trxUi?.notify("Failed to delete bookmark: " + err.message, { kind: "error" });
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -555,7 +561,12 @@ async function bmMoveSelected() {
|
|||||||
const target = document.getElementById("bm-move-target")?.value;
|
const target = document.getElementById("bm-move-target")?.value;
|
||||||
if (!target) return;
|
if (!target) return;
|
||||||
const targetLabel = document.getElementById("bm-move-target")?.selectedOptions[0]?.textContent || target;
|
const targetLabel = document.getElementById("bm-move-target")?.selectedOptions[0]?.textContent || target;
|
||||||
if (!confirm(`Move ${ids.length} bookmark${ids.length > 1 ? "s" : ""} to "${targetLabel}"?`)) return;
|
if (!await window.trxUi.confirm({
|
||||||
|
title: "Move selected bookmarks?",
|
||||||
|
message: `${ids.length} bookmark${ids.length > 1 ? "s" : ""} will move to “${targetLabel}”.`,
|
||||||
|
confirmLabel: "Move",
|
||||||
|
danger: false,
|
||||||
|
})) return;
|
||||||
try {
|
try {
|
||||||
// Group selected IDs by their owning scope (skip if already in target).
|
// Group selected IDs by their owning scope (skip if already in target).
|
||||||
const byScope = {};
|
const byScope = {};
|
||||||
@@ -577,7 +588,7 @@ async function bmMoveSelected() {
|
|||||||
await bmFetch(document.getElementById("bm-category-filter").value);
|
await bmFetch(document.getElementById("bm-category-filter").value);
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
console.error("Failed to move bookmarks:", err);
|
console.error("Failed to move bookmarks:", err);
|
||||||
alert("Failed to move bookmarks: " + err.message);
|
window.trxUi?.notify("Failed to move bookmarks: " + err.message, { kind: "error" });
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -598,7 +609,11 @@ function bmSyncSelectAllCheckbox() {
|
|||||||
async function bmDeleteSelected() {
|
async function bmDeleteSelected() {
|
||||||
const ids = Array.from(bmSelected);
|
const ids = Array.from(bmSelected);
|
||||||
if (ids.length === 0) return;
|
if (ids.length === 0) return;
|
||||||
if (!confirm(`Delete ${ids.length} selected bookmark${ids.length > 1 ? "s" : ""}?`)) return;
|
if (!await window.trxUi.confirm({
|
||||||
|
title: "Delete selected bookmarks?",
|
||||||
|
message: `${ids.length} bookmark${ids.length > 1 ? "s" : ""} will be permanently removed.`,
|
||||||
|
confirmLabel: "Delete",
|
||||||
|
})) return;
|
||||||
try {
|
try {
|
||||||
// Group selected IDs by their owning scope.
|
// Group selected IDs by their owning scope.
|
||||||
const byScope = {};
|
const byScope = {};
|
||||||
@@ -619,7 +634,7 @@ async function bmDeleteSelected() {
|
|||||||
await bmFetch(document.getElementById("bm-category-filter").value);
|
await bmFetch(document.getElementById("bm-category-filter").value);
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
console.error("Failed to delete bookmarks:", err);
|
console.error("Failed to delete bookmarks:", err);
|
||||||
alert("Failed to delete bookmarks: " + err.message);
|
window.trxUi?.notify("Failed to delete bookmarks: " + err.message, { kind: "error" });
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -364,7 +364,7 @@ window.resetCwHistoryView = function() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
document.getElementById("settings-clear-cw-history")?.addEventListener("click", async () => {
|
document.getElementById("settings-clear-cw-history")?.addEventListener("click", async () => {
|
||||||
if (!confirm("Clear all CW decode history? This cannot be undone.")) return;
|
if (!await window.trxUi.confirm({ title: "Clear CW history?", message: "All stored CW decodes will be permanently removed.", confirmLabel: "Clear history" })) return;
|
||||||
try {
|
try {
|
||||||
await postPath("/clear_cw_decode");
|
await postPath("/clear_cw_decode");
|
||||||
window.resetCwHistoryView();
|
window.resetCwHistoryView();
|
||||||
|
|||||||
@@ -190,7 +190,7 @@ ft2DecodeToggleBtn?.addEventListener("click", async () => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
document.getElementById("settings-clear-ft2-history")?.addEventListener("click", async () => {
|
document.getElementById("settings-clear-ft2-history")?.addEventListener("click", async () => {
|
||||||
if (!confirm("Clear all FT2 decode history? This cannot be undone.")) return;
|
if (!await window.trxUi.confirm({ title: "Clear FT2 history?", message: "All stored FT2 decodes will be permanently removed.", confirmLabel: "Clear history" })) return;
|
||||||
try {
|
try {
|
||||||
await postPath("/clear_ft2_decode");
|
await postPath("/clear_ft2_decode");
|
||||||
window.resetFt2HistoryView();
|
window.resetFt2HistoryView();
|
||||||
|
|||||||
@@ -190,7 +190,7 @@ ft4DecodeToggleBtn?.addEventListener("click", async () => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
document.getElementById("settings-clear-ft4-history")?.addEventListener("click", async () => {
|
document.getElementById("settings-clear-ft4-history")?.addEventListener("click", async () => {
|
||||||
if (!confirm("Clear all FT4 decode history? This cannot be undone.")) return;
|
if (!await window.trxUi.confirm({ title: "Clear FT4 history?", message: "All stored FT4 decodes will be permanently removed.", confirmLabel: "Clear history" })) return;
|
||||||
try {
|
try {
|
||||||
await postPath("/clear_ft4_decode");
|
await postPath("/clear_ft4_decode");
|
||||||
window.resetFt4HistoryView();
|
window.resetFt4HistoryView();
|
||||||
|
|||||||
@@ -462,7 +462,7 @@ ft8DecodeToggleBtn?.addEventListener("click", async () => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
document.getElementById("settings-clear-ft8-history")?.addEventListener("click", async () => {
|
document.getElementById("settings-clear-ft8-history")?.addEventListener("click", async () => {
|
||||||
if (!confirm("Clear all FT8 decode history? This cannot be undone.")) return;
|
if (!await window.trxUi.confirm({ title: "Clear FT8 history?", message: "All stored FT8 decodes will be permanently removed.", confirmLabel: "Clear history" })) return;
|
||||||
try {
|
try {
|
||||||
await postPath("/clear_ft8_decode");
|
await postPath("/clear_ft8_decode");
|
||||||
window.resetFt8HistoryView();
|
window.resetFt8HistoryView();
|
||||||
|
|||||||
@@ -388,7 +388,7 @@ hfAprsDecodeToggleBtn?.addEventListener("click", async () => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
document.getElementById("settings-clear-hf-aprs-history")?.addEventListener("click", async () => {
|
document.getElementById("settings-clear-hf-aprs-history")?.addEventListener("click", async () => {
|
||||||
if (!confirm("Clear all HF APRS decode history? This cannot be undone.")) return;
|
if (!await window.trxUi.confirm({ title: "Clear HF APRS history?", message: "All stored HF APRS packets will be permanently removed.", confirmLabel: "Clear history" })) return;
|
||||||
try {
|
try {
|
||||||
await postPath("/clear_hf_aprs_decode");
|
await postPath("/clear_hf_aprs_decode");
|
||||||
window.resetHfAprsHistoryView();
|
window.resetHfAprsHistoryView();
|
||||||
|
|||||||
@@ -250,9 +250,9 @@
|
|||||||
var noradId = dom.norad ? parseInt(dom.norad.value, 10) : NaN;
|
var noradId = dom.norad ? parseInt(dom.norad.value, 10) : NaN;
|
||||||
var bmId = dom.bookmark ? dom.bookmark.value : "";
|
var bmId = dom.bookmark ? dom.bookmark.value : "";
|
||||||
|
|
||||||
if (!satellite) { alert("Please enter a satellite name."); return; }
|
if (!satellite) { window.trxUi?.notify("Enter a satellite name.", { kind: "error" }); document.getElementById("scheduler-sat-name")?.focus(); return; }
|
||||||
if (isNaN(noradId) || noradId <= 0) { alert("Please enter a valid NORAD catalog number."); return; }
|
if (isNaN(noradId) || noradId <= 0) { window.trxUi?.notify("Enter a valid NORAD catalog number.", { kind: "error" }); document.getElementById("scheduler-sat-norad")?.focus(); return; }
|
||||||
if (!bmId) { alert("Please select a bookmark."); return; }
|
if (!bmId) { window.trxUi?.notify("Select a bookmark.", { kind: "error" }); document.getElementById("scheduler-sat-bookmark")?.focus(); return; }
|
||||||
|
|
||||||
var minEl = dom.minEl ? parseFloat(dom.minEl.value) : 5;
|
var minEl = dom.minEl ? parseFloat(dom.minEl.value) : 5;
|
||||||
var prio = dom.priority ? parseInt(dom.priority.value, 10) : 0;
|
var prio = dom.priority ? parseInt(dom.priority.value, 10) : 0;
|
||||||
|
|||||||
@@ -295,7 +295,7 @@ satDom.typeFilter?.addEventListener("change", () => renderSatHistoryTable());
|
|||||||
document
|
document
|
||||||
.getElementById("settings-clear-sat-history")
|
.getElementById("settings-clear-sat-history")
|
||||||
?.addEventListener("click", async () => {
|
?.addEventListener("click", async () => {
|
||||||
if (!confirm("Clear all satellite decode history? This cannot be undone.")) return;
|
if (!await window.trxUi.confirm({ title: "Clear satellite history?", message: "All stored satellite decodes will be permanently removed.", confirmLabel: "Clear history" })) return;
|
||||||
try {
|
try {
|
||||||
await postPath("/clear_lrpt_decode");
|
await postPath("/clear_lrpt_decode");
|
||||||
window.resetSatHistoryView();
|
window.resetSatHistoryView();
|
||||||
|
|||||||
@@ -599,7 +599,7 @@
|
|||||||
|
|
||||||
const bmId = bmEl.value;
|
const bmId = bmEl.value;
|
||||||
if (!bmId) {
|
if (!bmId) {
|
||||||
alert("Please select a primary bookmark.");
|
window.trxUi?.notify("Select a primary bookmark before saving.", { kind: "error" });
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -887,7 +887,7 @@
|
|||||||
var recEl = tr.querySelector('[data-field="record"]');
|
var recEl = tr.querySelector('[data-field="record"]');
|
||||||
var exEl = tr.querySelector('[data-field="exclusive"]');
|
var exEl = tr.querySelector('[data-field="exclusive"]');
|
||||||
|
|
||||||
if (bmEl && !bmEl.value) { alert('Please select a bookmark.'); return; }
|
if (bmEl && !bmEl.value) { window.trxUi?.notify("Select a bookmark before saving.", { kind: "error" }); bmEl.focus(); return; }
|
||||||
|
|
||||||
entry.start_min = hhmmToMin(startEl.value);
|
entry.start_min = hhmmToMin(startEl.value);
|
||||||
entry.end_min = hhmmToMin(endEl.value);
|
entry.end_min = hhmmToMin(endEl.value);
|
||||||
@@ -1236,10 +1236,10 @@
|
|||||||
return el ? el.value : "";
|
return el ? el.value : "";
|
||||||
}
|
}
|
||||||
|
|
||||||
function resetScheduler() {
|
async function resetScheduler() {
|
||||||
const rig = currentRigId;
|
const rig = currentRigId;
|
||||||
if (!rig) return;
|
if (!rig) return;
|
||||||
if (!confirm("Reset scheduler for this rig to Disabled?")) return;
|
if (!await window.trxUi.confirm({ title: "Reset scheduler?", message: "This rig's scheduler configuration will be reset to Disabled.", confirmLabel: "Reset" })) return;
|
||||||
|
|
||||||
apiDeleteScheduler(rig)
|
apiDeleteScheduler(rig)
|
||||||
.then(function () {
|
.then(function () {
|
||||||
|
|||||||
@@ -317,7 +317,7 @@ window.restoreVdesHistory = function(messages) {
|
|||||||
};
|
};
|
||||||
|
|
||||||
document.getElementById("settings-clear-vdes-history")?.addEventListener("click", async () => {
|
document.getElementById("settings-clear-vdes-history")?.addEventListener("click", async () => {
|
||||||
if (!confirm("Clear all VDES decode history? This cannot be undone.")) return;
|
if (!await window.trxUi.confirm({ title: "Clear VDES history?", message: "All stored VDES decodes will be permanently removed.", confirmLabel: "Clear history" })) return;
|
||||||
try {
|
try {
|
||||||
await postPath("/clear_vdes_decode");
|
await postPath("/clear_vdes_decode");
|
||||||
window.resetVdesHistoryView();
|
window.resetVdesHistoryView();
|
||||||
|
|||||||
@@ -270,7 +270,7 @@ wsprDecodeToggleBtn?.addEventListener("click", async () => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
document.getElementById("settings-clear-wspr-history")?.addEventListener("click", async () => {
|
document.getElementById("settings-clear-wspr-history")?.addEventListener("click", async () => {
|
||||||
if (!confirm("Clear all WSPR decode history? This cannot be undone.")) return;
|
if (!await window.trxUi.confirm({ title: "Clear WSPR history?", message: "All stored WSPR decodes will be permanently removed.", confirmLabel: "Clear history" })) return;
|
||||||
try {
|
try {
|
||||||
await postPath("/clear_wspr_decode");
|
await postPath("/clear_wspr_decode");
|
||||||
window.resetWsprHistoryView();
|
window.resetWsprHistoryView();
|
||||||
|
|||||||
@@ -257,7 +257,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Register module API
|
// Register module API
|
||||||
window.trx.screenshot = {
|
window.trx.modules.screenshot = {
|
||||||
captureSpectrumScreenshot,
|
captureSpectrumScreenshot,
|
||||||
buildSpectrumSnapshotCanvas,
|
buildSpectrumSnapshotCanvas,
|
||||||
saveCanvasAsPng,
|
saveCanvasAsPng,
|
||||||
|
|||||||
@@ -1231,7 +1231,7 @@ small { color: var(--text-muted); }
|
|||||||
}
|
}
|
||||||
.top-bar-actions {
|
.top-bar-actions {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: flex-start;
|
||||||
gap: 0.45rem 0.6rem;
|
gap: 0.45rem 0.6rem;
|
||||||
min-width: 0;
|
min-width: 0;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
@@ -1404,10 +1404,21 @@ small { color: var(--text-muted); }
|
|||||||
padding: 0.9rem 0.2rem 0;
|
padding: 0.9rem 0.2rem 0;
|
||||||
}
|
}
|
||||||
.header-rig-switch {
|
.header-rig-switch {
|
||||||
display: flex;
|
display: grid;
|
||||||
align-items: center;
|
grid-template-columns: minmax(0, 1fr);
|
||||||
|
align-items: start;
|
||||||
gap: 0.35rem;
|
gap: 0.35rem;
|
||||||
}
|
}
|
||||||
|
.header-rig-summary {
|
||||||
|
display: block;
|
||||||
|
max-width: 20rem;
|
||||||
|
color: var(--text-muted);
|
||||||
|
font-size: var(--fs-xs);
|
||||||
|
line-height: 1.35;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
.header-rig-switch select {
|
.header-rig-switch select {
|
||||||
min-width: 8rem;
|
min-width: 8rem;
|
||||||
height: 2rem;
|
height: 2rem;
|
||||||
@@ -1417,6 +1428,7 @@ small { color: var(--text-muted); }
|
|||||||
background: var(--input-bg);
|
background: var(--input-bg);
|
||||||
color: var(--text);
|
color: var(--text);
|
||||||
font-size: 0.85rem;
|
font-size: 0.85rem;
|
||||||
|
align-self: start;
|
||||||
}
|
}
|
||||||
.header-rig-switch button {
|
.header-rig-switch button {
|
||||||
height: 2rem;
|
height: 2rem;
|
||||||
@@ -2509,6 +2521,7 @@ body.map-fake-fullscreen-active {
|
|||||||
word-break: break-all;
|
word-break: break-all;
|
||||||
}
|
}
|
||||||
.aprs-symbol { display: inline-block; width: 24px; height: 24px; background-size: 384px 192px; vertical-align: middle; margin-right: 0.3rem; }
|
.aprs-symbol { display: inline-block; width: 24px; height: 24px; background-size: 384px 192px; vertical-align: middle; margin-right: 0.3rem; }
|
||||||
|
.aprs-symbol-local { border: 1px solid var(--border); border-radius: 4px; background: var(--surface-raised); color: var(--text); font: 700 0.8rem/22px ui-monospace, monospace; text-align: center; }
|
||||||
.aprs-pos { color: var(--accent-green); text-decoration: none; margin-left: 0.3rem; font-size: 0.8rem; }
|
.aprs-pos { color: var(--accent-green); text-decoration: none; margin-left: 0.3rem; font-size: 0.8rem; }
|
||||||
.aprs-pos:hover { text-decoration: underline; }
|
.aprs-pos:hover { text-decoration: underline; }
|
||||||
.leaflet-popup-content-wrapper, .leaflet-popup-tip { background: color-mix(in srgb, var(--card-bg) 84%, transparent) !important; color: var(--text) !important; box-shadow: 0 3px 14px rgba(0,0,0,0.45) !important; }
|
.leaflet-popup-content-wrapper, .leaflet-popup-tip { background: color-mix(in srgb, var(--card-bg) 84%, transparent) !important; color: var(--text) !important; box-shadow: 0 3px 14px rgba(0,0,0,0.45) !important; }
|
||||||
@@ -2839,6 +2852,256 @@ canvas:focus-visible, [tabindex]:focus-visible {
|
|||||||
outline-offset: 2px;
|
outline-offset: 2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* ── Shared interaction primitives ───────────────────────────────────── */
|
||||||
|
.visually-hidden {
|
||||||
|
position: absolute !important;
|
||||||
|
width: 1px; height: 1px; padding: 0; margin: -1px;
|
||||||
|
overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
|
||||||
|
}
|
||||||
|
.toast-region {
|
||||||
|
position: fixed;
|
||||||
|
z-index: 120;
|
||||||
|
right: var(--space-4);
|
||||||
|
bottom: var(--space-4);
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: var(--space-2);
|
||||||
|
width: min(28rem, calc(100vw - 2rem));
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
|
.toast {
|
||||||
|
--toast-accent: var(--accent-yellow);
|
||||||
|
position: relative;
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: 1.25rem minmax(0, 1fr) auto;
|
||||||
|
align-items: center;
|
||||||
|
gap: var(--space-3);
|
||||||
|
min-height: 3rem;
|
||||||
|
padding: 0.7rem 0.75rem;
|
||||||
|
border: 1px solid color-mix(in srgb, var(--toast-accent) 35%, var(--border-light));
|
||||||
|
border-radius: var(--radius-md);
|
||||||
|
background: color-mix(in srgb, var(--card-bg) 96%, var(--toast-accent) 4%);
|
||||||
|
color: var(--text);
|
||||||
|
box-shadow: 0 14px 38px color-mix(in srgb, #000 38%, transparent), inset 3px 0 0 var(--toast-accent);
|
||||||
|
opacity: 0;
|
||||||
|
transform: translateY(0.65rem) scale(0.98);
|
||||||
|
transition: opacity var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
|
||||||
|
pointer-events: auto;
|
||||||
|
}
|
||||||
|
.toast::before {
|
||||||
|
display: grid;
|
||||||
|
place-items: center;
|
||||||
|
width: 1.25rem;
|
||||||
|
height: 1.25rem;
|
||||||
|
border-radius: var(--radius-pill);
|
||||||
|
background: color-mix(in srgb, var(--toast-accent) 18%, transparent);
|
||||||
|
color: var(--toast-accent);
|
||||||
|
content: "i";
|
||||||
|
font-size: var(--fs-xs);
|
||||||
|
font-weight: 800;
|
||||||
|
}
|
||||||
|
.toast > span { min-width: 0; line-height: 1.35; }
|
||||||
|
.toast-visible { opacity: 1; transform: translateY(0); }
|
||||||
|
.toast-success { --toast-accent: var(--accent-green); }
|
||||||
|
.toast-success::before { content: "✓"; }
|
||||||
|
.toast-error { --toast-accent: var(--accent-red); }
|
||||||
|
.toast-error::before { content: "!"; }
|
||||||
|
.toast button {
|
||||||
|
width: auto;
|
||||||
|
min-height: 2rem;
|
||||||
|
height: 2rem;
|
||||||
|
padding: 0 var(--space-3);
|
||||||
|
border-color: color-mix(in srgb, var(--toast-accent) 55%, var(--btn-border));
|
||||||
|
color: var(--toast-accent);
|
||||||
|
font-size: var(--fs-sm);
|
||||||
|
font-weight: 700;
|
||||||
|
}
|
||||||
|
.ui-dialog {
|
||||||
|
max-width: none;
|
||||||
|
border: 0;
|
||||||
|
padding: 0;
|
||||||
|
border-radius: var(--radius-lg);
|
||||||
|
color: var(--text);
|
||||||
|
background: transparent;
|
||||||
|
box-shadow: 0 24px 70px color-mix(in srgb, #000 55%, transparent);
|
||||||
|
}
|
||||||
|
.ui-dialog::backdrop { background: rgba(3, 8, 18, 0.72); backdrop-filter: blur(5px); }
|
||||||
|
.ui-dialog-card {
|
||||||
|
width: min(29rem, calc(100vw - 2rem));
|
||||||
|
margin: 0;
|
||||||
|
padding: var(--space-6);
|
||||||
|
border: 1px solid var(--border-light);
|
||||||
|
border-radius: var(--radius-lg);
|
||||||
|
background: linear-gradient(145deg, color-mix(in srgb, var(--card-bg) 94%, var(--text) 6%), var(--card-bg));
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
.ui-dialog-card h2 { margin: 0 0 var(--space-2); color: var(--text-heading); font-size: var(--fs-md); line-height: 1.3; }
|
||||||
|
.ui-dialog-card p { margin: 0; color: var(--text-muted); line-height: 1.55; }
|
||||||
|
.ui-dialog-actions { display: flex; justify-content: flex-end; gap: var(--space-2); margin-top: var(--space-6); }
|
||||||
|
.ui-dialog-actions button { min-width: 6rem; }
|
||||||
|
.ui-dialog-actions .danger { background: var(--accent-red); border-color: var(--accent-red); color: #fff; font-weight: 700; }
|
||||||
|
.ui-dialog-actions .danger:hover:not(:disabled) { background: color-mix(in srgb, var(--accent-red) 82%, #fff); border-color: color-mix(in srgb, var(--accent-red) 82%, #fff); }
|
||||||
|
.form-error { flex: 1 1 100%; min-height: 1.2em; color: var(--accent-red); font-size: var(--fs-sm); font-weight: 600; }
|
||||||
|
button.is-active {
|
||||||
|
border-color: var(--accent-green);
|
||||||
|
background: color-mix(in srgb, var(--btn-bg) 82%, var(--accent-green) 18%);
|
||||||
|
box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--accent-green) 32%, transparent), 0 0 0 1px color-mix(in srgb, var(--accent-green) 12%, transparent);
|
||||||
|
}
|
||||||
|
#ptt-btn.is-active { background: var(--accent-red) !important; border-color: var(--accent-red) !important; color: white !important; }
|
||||||
|
.is-busy { cursor: progress !important; opacity: 0.68; }
|
||||||
|
.operator-layout-picker {
|
||||||
|
display: inline-flex;
|
||||||
|
align-items: center;
|
||||||
|
min-height: 2rem;
|
||||||
|
padding-left: 0.6rem;
|
||||||
|
border: 1px solid var(--border-light);
|
||||||
|
border-radius: var(--radius-md);
|
||||||
|
background: color-mix(in srgb, var(--input-bg) 88%, transparent);
|
||||||
|
color: var(--text-muted);
|
||||||
|
font-size: var(--fs-xs);
|
||||||
|
font-weight: 700;
|
||||||
|
letter-spacing: 0.04em;
|
||||||
|
text-transform: uppercase;
|
||||||
|
overflow: visible;
|
||||||
|
}
|
||||||
|
.operator-layout-picker::before { content: "Layout"; }
|
||||||
|
.operator-layout-picker select {
|
||||||
|
width: auto;
|
||||||
|
min-height: 2rem;
|
||||||
|
max-width: 9rem;
|
||||||
|
padding: 0 1.75rem 0 0.45rem;
|
||||||
|
border: 0;
|
||||||
|
background-color: transparent;
|
||||||
|
color: var(--text);
|
||||||
|
font-size: var(--fs-sm);
|
||||||
|
font-weight: 600;
|
||||||
|
text-transform: none;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
.operator-layout-picker:focus-within { border-color: var(--accent-green); box-shadow: 0 0 0 2px color-mix(in srgb, var(--accent-green) 20%, transparent); }
|
||||||
|
.operator-layout-picker select:focus-visible { outline: 0; }
|
||||||
|
.advanced-radio-controls {
|
||||||
|
margin-top: var(--space-3);
|
||||||
|
border: 1px solid color-mix(in srgb, var(--border-light) 75%, transparent);
|
||||||
|
border-radius: var(--radius-md);
|
||||||
|
background: color-mix(in srgb, var(--input-bg) 68%, transparent);
|
||||||
|
overflow: clip;
|
||||||
|
transition: border-color var(--dur-fast) var(--ease-standard), background-color var(--dur-fast) var(--ease-standard);
|
||||||
|
}
|
||||||
|
.advanced-radio-controls:hover { border-color: var(--border-light); }
|
||||||
|
.advanced-radio-controls[open] { background: color-mix(in srgb, var(--surface) 86%, transparent); }
|
||||||
|
.advanced-radio-controls summary {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: var(--space-2);
|
||||||
|
padding: 0.65rem 0.75rem;
|
||||||
|
color: var(--text-heading);
|
||||||
|
font-size: var(--fs-sm);
|
||||||
|
font-weight: 700;
|
||||||
|
cursor: pointer;
|
||||||
|
list-style: none;
|
||||||
|
user-select: none;
|
||||||
|
}
|
||||||
|
.advanced-radio-controls summary::-webkit-details-marker { display: none; }
|
||||||
|
.advanced-radio-controls summary::before {
|
||||||
|
content: "›";
|
||||||
|
color: var(--accent-text);
|
||||||
|
font-size: 1.2rem;
|
||||||
|
line-height: 1;
|
||||||
|
transform: rotate(0deg);
|
||||||
|
transition: transform var(--dur-base) var(--ease-standard);
|
||||||
|
}
|
||||||
|
.advanced-radio-controls[open] summary::before { transform: rotate(90deg); }
|
||||||
|
.advanced-radio-controls[open] summary { border-bottom: 1px solid color-mix(in srgb, var(--border) 70%, transparent); }
|
||||||
|
.advanced-radio-body { display: grid; gap: var(--space-3); padding: var(--space-3); }
|
||||||
|
.advanced-radio-body > * { margin: 0; }
|
||||||
|
body[data-operator-layout="digital"] .controls-col-wfm { display: none !important; }
|
||||||
|
body[data-operator-layout="broadcast"] #tx-power-col,
|
||||||
|
body[data-operator-layout="broadcast"] #tx-meters,
|
||||||
|
body[data-operator-layout="broadcast"] #tx-limit-row,
|
||||||
|
body[data-operator-layout="broadcast"] #vfo-row,
|
||||||
|
body[data-operator-layout="broadcast"] #sam-controls-col,
|
||||||
|
body[data-operator-layout="broadcast"] #advanced-radio-controls {
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
body[data-operator-layout="broadcast"] .controls-row {
|
||||||
|
grid-template-columns: minmax(8rem, 0.65fr) auto minmax(20rem, 2fr);
|
||||||
|
}
|
||||||
|
body[data-operator-layout="broadcast"] #wfm-controls-col,
|
||||||
|
body[data-operator-layout="broadcast"] #audio-row,
|
||||||
|
body[data-operator-layout="broadcast"] #spectrum-bw-row {
|
||||||
|
border-color: color-mix(in srgb, var(--accent-green) 42%, var(--border-light));
|
||||||
|
background: color-mix(in srgb, var(--accent-green) 7%, transparent);
|
||||||
|
}
|
||||||
|
body[data-operator-layout="broadcast"] #wfm-controls-col {
|
||||||
|
padding: var(--space-2) var(--space-3);
|
||||||
|
border: 1px solid color-mix(in srgb, var(--accent-green) 42%, var(--border-light));
|
||||||
|
border-radius: var(--radius-md);
|
||||||
|
}
|
||||||
|
body[data-operator-layout="broadcast"] #audio-row {
|
||||||
|
padding: var(--space-3);
|
||||||
|
border: 1px solid color-mix(in srgb, var(--accent-green) 42%, var(--border-light));
|
||||||
|
border-radius: var(--radius-md);
|
||||||
|
}
|
||||||
|
body[data-operator-layout="broadcast"] #spectrum-bw-row {
|
||||||
|
padding: var(--space-2);
|
||||||
|
border: 1px solid color-mix(in srgb, var(--accent-green) 42%, var(--border-light));
|
||||||
|
border-radius: var(--radius-sm);
|
||||||
|
}
|
||||||
|
body[data-operator-layout="broadcast"] #ais-bar-overlay,
|
||||||
|
body[data-operator-layout="broadcast"] #vdes-bar-overlay,
|
||||||
|
body[data-operator-layout="broadcast"] #ft8-bar-overlay,
|
||||||
|
body[data-operator-layout="broadcast"] #aprs-bar-overlay,
|
||||||
|
body[data-operator-layout="broadcast"] #hf-aprs-bar-overlay,
|
||||||
|
body[data-operator-layout="broadcast"] #cw-bar-overlay {
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
@media (max-width: 760px) {
|
||||||
|
body[data-operator-layout="broadcast"] .controls-row { grid-template-columns: 1fr auto; }
|
||||||
|
body[data-operator-layout="broadcast"] #wfm-controls-col { grid-column: 1 / -1; }
|
||||||
|
}
|
||||||
|
.mobile-more-btn, .mobile-more-menu, .decoder-tab-select { display: none; }
|
||||||
|
.mobile-more-menu {
|
||||||
|
position: fixed;
|
||||||
|
right: max(0.75rem, env(safe-area-inset-right));
|
||||||
|
bottom: calc(5.4rem + env(safe-area-inset-bottom));
|
||||||
|
z-index: 80;
|
||||||
|
min-width: 12rem;
|
||||||
|
padding: var(--space-2);
|
||||||
|
border: 1px solid var(--border-light);
|
||||||
|
border-radius: var(--radius-md);
|
||||||
|
background: color-mix(in srgb, var(--card-bg) 97%, transparent);
|
||||||
|
box-shadow: 0 18px 45px color-mix(in srgb, #000 42%, transparent);
|
||||||
|
}
|
||||||
|
.mobile-more-menu.is-open { display: grid; gap: 0.2rem; animation: trx-menu-in var(--dur-base) var(--ease-out); }
|
||||||
|
.mobile-more-menu button {
|
||||||
|
justify-content: flex-start;
|
||||||
|
width: 100%;
|
||||||
|
height: 2.65rem;
|
||||||
|
padding: 0 var(--space-3);
|
||||||
|
border-color: transparent;
|
||||||
|
background: transparent;
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
.mobile-more-menu button:hover { background: var(--btn-hover-bg); border-color: transparent; }
|
||||||
|
.decoder-state-dot {
|
||||||
|
display: inline-block;
|
||||||
|
width: 0.45rem;
|
||||||
|
height: 0.45rem;
|
||||||
|
margin-left: 0.4rem;
|
||||||
|
border: 1px solid color-mix(in srgb, var(--text-muted) 70%, transparent);
|
||||||
|
border-radius: 50%;
|
||||||
|
background: color-mix(in srgb, var(--text-muted) 60%, transparent);
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
||||||
|
.decoder-state-dot[data-state="active"] { background: var(--accent-green); box-shadow: 0 0 0.35rem color-mix(in srgb, var(--accent-green) 65%, transparent); }
|
||||||
|
.decoder-state-dot[data-state="error"] { background: var(--accent-red); }
|
||||||
|
@keyframes trx-menu-in { from { opacity: 0; transform: translateY(0.4rem) scale(0.98); } to { opacity: 1; transform: none; } }
|
||||||
|
|
||||||
|
@media (prefers-reduced-motion: reduce) {
|
||||||
|
*, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
|
||||||
|
}
|
||||||
|
|
||||||
/* ── Scrollbars ───────────────────────────────────────────────────────── */
|
/* ── Scrollbars ───────────────────────────────────────────────────────── */
|
||||||
::-webkit-scrollbar { width: 6px; height: 6px; }
|
::-webkit-scrollbar { width: 6px; height: 6px; }
|
||||||
::-webkit-scrollbar-track { background: transparent; }
|
::-webkit-scrollbar-track { background: transparent; }
|
||||||
@@ -2953,7 +3216,7 @@ canvas:focus-visible, [tabindex]:focus-visible {
|
|||||||
bottom: calc(0.55rem + env(safe-area-inset-bottom));
|
bottom: calc(0.55rem + env(safe-area-inset-bottom));
|
||||||
z-index: 30;
|
z-index: 30;
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(6, minmax(0, 1fr));
|
grid-template-columns: repeat(5, minmax(0, 1fr));
|
||||||
gap: 0.25rem;
|
gap: 0.25rem;
|
||||||
padding: 0.38rem;
|
padding: 0.38rem;
|
||||||
border: 1px solid color-mix(in srgb, var(--border-light) 82%, transparent);
|
border: 1px solid color-mix(in srgb, var(--border-light) 82%, transparent);
|
||||||
@@ -2993,12 +3256,38 @@ canvas:focus-visible, [tabindex]:focus-visible {
|
|||||||
.tab[data-tab="bookmarks"] .tab-label { font-size: 0.6rem; }
|
.tab[data-tab="bookmarks"] .tab-label { font-size: 0.6rem; }
|
||||||
.tab[data-tab="digital-modes"] .tab-label { font-size: 0.6rem; }
|
.tab[data-tab="digital-modes"] .tab-label { font-size: 0.6rem; }
|
||||||
.tab[data-tab="statistics"] .tab-label { font-size: 0.6rem; }
|
.tab[data-tab="statistics"] .tab-label { font-size: 0.6rem; }
|
||||||
|
.tab[data-tab="statistics"], .tab[data-tab="recorder"],
|
||||||
|
.tab[data-tab="settings"], .tab[data-tab="about"] { display: none; }
|
||||||
|
.mobile-more-btn { display: flex; }
|
||||||
|
.mobile-more-btn[aria-expanded="true"] {
|
||||||
|
color: var(--accent-text);
|
||||||
|
background: color-mix(in srgb, var(--accent-green) 10%, transparent);
|
||||||
|
}
|
||||||
|
.tab .tab-label, .tab[data-tab] .tab-label { font-size: 0.75rem; }
|
||||||
|
.decoder-tab-select {
|
||||||
|
display: block;
|
||||||
|
width: 100%;
|
||||||
|
min-height: 2.8rem;
|
||||||
|
margin-bottom: var(--space-3);
|
||||||
|
padding: 0 var(--space-3);
|
||||||
|
border: 1px solid var(--border-light);
|
||||||
|
border-radius: var(--radius-md);
|
||||||
|
background: color-mix(in srgb, var(--input-bg) 90%, var(--card-bg));
|
||||||
|
color: var(--text);
|
||||||
|
font-size: 1rem;
|
||||||
|
font-weight: 600;
|
||||||
|
box-shadow: inset 0 1px 0 color-mix(in srgb, #fff 5%, transparent);
|
||||||
|
}
|
||||||
|
#tab-digital-modes > .sub-tab-bar { display: none; }
|
||||||
|
.toast-region { bottom: calc(5.7rem + env(safe-area-inset-bottom)); }
|
||||||
.top-bar-actions {
|
.top-bar-actions {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
justify-content: flex-start;
|
justify-content: flex-start;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
gap: 0.45rem;
|
gap: 0.45rem;
|
||||||
}
|
}
|
||||||
|
.operator-layout-picker { max-width: 100%; }
|
||||||
|
.operator-layout-picker select { max-width: 10rem; }
|
||||||
.header-rig-switch,
|
.header-rig-switch,
|
||||||
.header-style-pick {
|
.header-style-pick {
|
||||||
flex: 1 1 12rem;
|
flex: 1 1 12rem;
|
||||||
@@ -3910,6 +4199,27 @@ canvas:focus-visible, [tabindex]:focus-visible {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 480px) {
|
||||||
|
.toast-region {
|
||||||
|
right: max(0.65rem, env(safe-area-inset-right));
|
||||||
|
width: calc(100vw - max(1.3rem, env(safe-area-inset-left) + env(safe-area-inset-right)));
|
||||||
|
}
|
||||||
|
.toast { grid-template-columns: 1.25rem minmax(0, 1fr); }
|
||||||
|
.toast button { grid-column: 2; justify-self: start; }
|
||||||
|
.ui-dialog-card { padding: var(--space-5); }
|
||||||
|
.ui-dialog-actions { flex-direction: column-reverse; }
|
||||||
|
.ui-dialog-actions button { width: 100%; }
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Preserve legibility after the component-specific compact-mobile rules. */
|
||||||
|
@media (max-width: 640px) {
|
||||||
|
button, input, select, textarea, .tab-label, .sub-tab,
|
||||||
|
.label, .hint, .subtitle, .wfm-control-label, .wfm-intf-val,
|
||||||
|
.ft8-header, .ft8-message, .aprs-packet, .ais-message, .vdes-message {
|
||||||
|
font-size: max(0.75rem, 12px);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/* Theme styles have been moved to themes.css */
|
/* Theme styles have been moved to themes.css */
|
||||||
|
|
||||||
|
|
||||||
@@ -5061,3 +5371,11 @@ canvas:focus-visible, [tabindex]:focus-visible {
|
|||||||
from { opacity: 0; }
|
from { opacity: 0; }
|
||||||
to { opacity: 1; }
|
to { opacity: 1; }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 640px) {
|
||||||
|
button, input, select, textarea, .tab-label, .sub-tab,
|
||||||
|
.label, .hint, .subtitle, .wfm-control-label, .wfm-intf-val,
|
||||||
|
.ft8-header, .ft8-message, .aprs-packet, .ais-message, .vdes-message {
|
||||||
|
font-size: max(0.75rem, 12px);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
@@ -0,0 +1,144 @@
|
|||||||
|
// SPDX-FileCopyrightText: 2026 Stan Grams <sjg@haxx.space>
|
||||||
|
//
|
||||||
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
|
import assert from "node:assert/strict";
|
||||||
|
import { readFile } from "node:fs/promises";
|
||||||
|
import vm from "node:vm";
|
||||||
|
|
||||||
|
class ClassList {
|
||||||
|
constructor() { this.values = new Set(); }
|
||||||
|
add(...names) { names.forEach(name => this.values.add(name)); }
|
||||||
|
remove(...names) { names.forEach(name => this.values.delete(name)); }
|
||||||
|
contains(name) { return this.values.has(name); }
|
||||||
|
toggle(name, force) {
|
||||||
|
const enabled = force === undefined ? !this.contains(name) : force;
|
||||||
|
if (enabled) this.add(name); else this.remove(name);
|
||||||
|
return enabled;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class Element {
|
||||||
|
constructor(tagName, document) {
|
||||||
|
this.tagName = tagName.toUpperCase();
|
||||||
|
this.ownerDocument = document;
|
||||||
|
this.children = [];
|
||||||
|
this.dataset = {};
|
||||||
|
this.attributes = new Map();
|
||||||
|
this.classList = new ClassList();
|
||||||
|
this.listeners = new Map();
|
||||||
|
this.style = {};
|
||||||
|
this.options = [];
|
||||||
|
this.value = "";
|
||||||
|
this.textContent = "";
|
||||||
|
}
|
||||||
|
set id(value) { this._id = value; if (value) this.ownerDocument.elements.set(value, this); }
|
||||||
|
get id() { return this._id || ""; }
|
||||||
|
set className(value) { this.classList = new ClassList(); value.split(/\s+/).filter(Boolean).forEach(name => this.classList.add(name)); }
|
||||||
|
set innerHTML(value) {
|
||||||
|
this._innerHTML = value;
|
||||||
|
if (value.includes('value="confirm"')) {
|
||||||
|
const title = new Element("h2", this.ownerDocument); title.id = "ui-confirm-title";
|
||||||
|
const message = new Element("p", this.ownerDocument); message.id = "ui-confirm-message";
|
||||||
|
const confirm = new Element("button", this.ownerDocument); confirm.value = "confirm";
|
||||||
|
this.append(title, message, confirm);
|
||||||
|
this._confirmButton = confirm;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
get innerHTML() { return this._innerHTML || ""; }
|
||||||
|
appendChild(child) { this.children.push(child); child.parentElement = this; return child; }
|
||||||
|
append(...children) { children.forEach(child => this.appendChild(child)); }
|
||||||
|
insertBefore(child) { return this.appendChild(child); }
|
||||||
|
remove() { if (this.parentElement) this.parentElement.children = this.parentElement.children.filter(child => child !== this); }
|
||||||
|
replaceChildren(...children) { this.children = []; this.options = []; this.append(...children); }
|
||||||
|
setAttribute(name, value) { this.attributes.set(name, String(value)); }
|
||||||
|
getAttribute(name) { return this.attributes.get(name); }
|
||||||
|
addEventListener(type, listener) { this.listeners.set(type, listener); }
|
||||||
|
dispatch(type, event = {}) { this.listeners.get(type)?.({ target: this, preventDefault() {}, ...event }); }
|
||||||
|
querySelector(selector) {
|
||||||
|
if (selector === '[value="confirm"]') return this._confirmButton || null;
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
querySelectorAll(selector) {
|
||||||
|
if (selector === ".tab[data-tab]") return this.children.filter(child => child.dataset.tab);
|
||||||
|
if (selector === ".sub-tab[data-subtab]") return this.children.filter(child => child.dataset.subtab);
|
||||||
|
if (selector === '[role="tab"]') return this.children.filter(child => child.getAttribute("role") === "tab");
|
||||||
|
return [];
|
||||||
|
}
|
||||||
|
add(option) { this.options.push(option); if (!this.value) this.value = option.value; }
|
||||||
|
showModal() { this.open = true; }
|
||||||
|
close(value) { this.returnValue = value; this.open = false; this.dispatch("close"); }
|
||||||
|
focus() { this.focused = true; }
|
||||||
|
click() { this.clicked = true; }
|
||||||
|
}
|
||||||
|
|
||||||
|
class DocumentFixture {
|
||||||
|
constructor() {
|
||||||
|
this.readyState = "loading";
|
||||||
|
this.elements = new Map();
|
||||||
|
this.body = new Element("body", this);
|
||||||
|
}
|
||||||
|
createElement(tagName) { return new Element(tagName, this); }
|
||||||
|
getElementById(id) { return this.elements.get(id) || null; }
|
||||||
|
querySelector() { return null; }
|
||||||
|
querySelectorAll() { return []; }
|
||||||
|
addEventListener() {}
|
||||||
|
}
|
||||||
|
|
||||||
|
const document = new DocumentFixture();
|
||||||
|
const storage = new Map();
|
||||||
|
const localStorage = {
|
||||||
|
getItem(key) { return storage.has(key) ? storage.get(key) : null; },
|
||||||
|
setItem(key, value) { storage.set(key, String(value)); },
|
||||||
|
};
|
||||||
|
const window = { document, localStorage, addEventListener() {} };
|
||||||
|
const context = vm.createContext({
|
||||||
|
window, document, localStorage,
|
||||||
|
Option: class Option { constructor(label, value) { this.label = label; this.value = value; } },
|
||||||
|
MutationObserver: class MutationObserver { observe() {} },
|
||||||
|
requestAnimationFrame(callback) { callback(); },
|
||||||
|
setTimeout() { return 1; },
|
||||||
|
clearTimeout() {},
|
||||||
|
console,
|
||||||
|
});
|
||||||
|
|
||||||
|
const source = await readFile(new URL("../ui-core.js", import.meta.url), "utf8");
|
||||||
|
new vm.Script(source, { filename: "ui-core.js" }).runInContext(context);
|
||||||
|
const ui = window.trxUi;
|
||||||
|
|
||||||
|
const toast = ui.notify("Saved", { kind: "success" });
|
||||||
|
assert.equal(toast.getAttribute("role"), "status");
|
||||||
|
assert.equal(toast.classList.contains("toast-success"), true);
|
||||||
|
assert.equal(document.getElementById("toast-region").children.length, 1);
|
||||||
|
|
||||||
|
const confirmation = ui.confirm({ title: "Delete?", message: "Permanent", confirmLabel: "Delete" });
|
||||||
|
const dialog = document.getElementById("ui-confirm-dialog");
|
||||||
|
assert.equal(dialog.open, true);
|
||||||
|
assert.equal(document.getElementById("ui-confirm-title").textContent, "Delete?");
|
||||||
|
dialog.close("confirm");
|
||||||
|
assert.equal(await confirmation, true);
|
||||||
|
|
||||||
|
const tabBar = new Element("div", document);
|
||||||
|
const firstTab = new Element("button", document); firstTab.dataset.tab = "main"; firstTab.classList.add("active");
|
||||||
|
const secondTab = new Element("button", document); secondTab.dataset.tab = "map";
|
||||||
|
tabBar.append(firstTab, secondTab);
|
||||||
|
const mainPanel = new Element("section", document); mainPanel.id = "tab-main";
|
||||||
|
const mapPanel = new Element("section", document); mapPanel.id = "tab-map";
|
||||||
|
ui.prepareTabList(tabBar, "primary");
|
||||||
|
assert.equal(firstTab.getAttribute("aria-selected"), "true");
|
||||||
|
tabBar.dispatch("keydown", { target: firstTab, key: "ArrowRight" });
|
||||||
|
assert.equal(secondTab.focused, true);
|
||||||
|
assert.equal(secondTab.clicked, true);
|
||||||
|
|
||||||
|
localStorage.setItem("trxOperatorLayout:rig-a", "broadcast");
|
||||||
|
ui.setActiveRig("rig-a");
|
||||||
|
assert.equal(document.body.dataset.operatorLayout, "compact");
|
||||||
|
ui.setLayoutCapabilities({ broadcast: true });
|
||||||
|
ui.setActiveRig("rig-a");
|
||||||
|
assert.equal(document.body.dataset.operatorLayout, "broadcast");
|
||||||
|
ui.setActiveRig("rig-b");
|
||||||
|
ui.applyLayout("digital");
|
||||||
|
assert.equal(document.body.dataset.operatorLayout, "compact");
|
||||||
|
assert.equal(localStorage.getItem("trxOperatorLayout:rig-b"), "compact");
|
||||||
|
|
||||||
|
console.log("ui-core component tests passed");
|
||||||
@@ -0,0 +1,355 @@
|
|||||||
|
// SPDX-FileCopyrightText: 2026 Stan Grams <sjg@haxx.space>
|
||||||
|
//
|
||||||
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
// Shared UI primitives. Keeping these outside app.js prevents navigation,
|
||||||
|
// feedback, dialogs, and layout preferences from growing separate state models.
|
||||||
|
(function initUiCore() {
|
||||||
|
const api = window.trxUi = window.trxUi || {};
|
||||||
|
|
||||||
|
function ensureLiveRegions() {
|
||||||
|
if (!document.getElementById("toast-region")) {
|
||||||
|
const region = document.createElement("div");
|
||||||
|
region.id = "toast-region";
|
||||||
|
region.className = "toast-region";
|
||||||
|
region.setAttribute("aria-live", "polite");
|
||||||
|
region.setAttribute("aria-atomic", "false");
|
||||||
|
document.body.appendChild(region);
|
||||||
|
}
|
||||||
|
if (!document.getElementById("ui-confirm-dialog")) {
|
||||||
|
const dialog = document.createElement("dialog");
|
||||||
|
dialog.id = "ui-confirm-dialog";
|
||||||
|
dialog.className = "ui-dialog";
|
||||||
|
dialog.innerHTML = `
|
||||||
|
<form method="dialog" class="ui-dialog-card">
|
||||||
|
<h2 id="ui-confirm-title">Confirm action</h2>
|
||||||
|
<p id="ui-confirm-message"></p>
|
||||||
|
<div class="ui-dialog-actions">
|
||||||
|
<button value="cancel" type="submit">Cancel</button>
|
||||||
|
<button value="confirm" type="submit" class="danger">Confirm</button>
|
||||||
|
</div>
|
||||||
|
</form>`;
|
||||||
|
document.body.appendChild(dialog);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
api.notify = function notify(message, options = {}) {
|
||||||
|
ensureLiveRegions();
|
||||||
|
const { kind = "info", duration = kind === "error" ? 7000 : 3200, action = null } = options;
|
||||||
|
const toast = document.createElement("div");
|
||||||
|
toast.className = `toast toast-${kind}`;
|
||||||
|
toast.setAttribute("role", kind === "error" ? "alert" : "status");
|
||||||
|
const text = document.createElement("span");
|
||||||
|
text.textContent = message;
|
||||||
|
toast.appendChild(text);
|
||||||
|
if (action && typeof action.run === "function") {
|
||||||
|
const button = document.createElement("button");
|
||||||
|
button.type = "button";
|
||||||
|
button.textContent = action.label || "Retry";
|
||||||
|
button.addEventListener("click", () => { action.run(); toast.remove(); });
|
||||||
|
toast.appendChild(button);
|
||||||
|
}
|
||||||
|
document.getElementById("toast-region").appendChild(toast);
|
||||||
|
requestAnimationFrame(() => toast.classList.add("toast-visible"));
|
||||||
|
if (duration > 0) setTimeout(() => toast.remove(), duration);
|
||||||
|
return toast;
|
||||||
|
};
|
||||||
|
|
||||||
|
api.confirm = function confirmAction(options = {}) {
|
||||||
|
ensureLiveRegions();
|
||||||
|
const dialog = document.getElementById("ui-confirm-dialog");
|
||||||
|
document.getElementById("ui-confirm-title").textContent = options.title || "Confirm action";
|
||||||
|
document.getElementById("ui-confirm-message").textContent = options.message || "Continue?";
|
||||||
|
const confirmButton = dialog.querySelector('[value="confirm"]');
|
||||||
|
confirmButton.textContent = options.confirmLabel || "Confirm";
|
||||||
|
confirmButton.classList.toggle("danger", options.danger !== false);
|
||||||
|
return new Promise((resolve) => {
|
||||||
|
const finish = () => resolve(dialog.returnValue === "confirm");
|
||||||
|
dialog.addEventListener("close", finish, { once: true });
|
||||||
|
dialog.showModal();
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
api.setButtonState = function setButtonState(button, options = {}) {
|
||||||
|
if (!button) return;
|
||||||
|
const { active = false, activeLabel, inactiveLabel, busy = false, disabled = false } = options;
|
||||||
|
button.classList.toggle("is-active", active);
|
||||||
|
button.classList.toggle("is-busy", busy);
|
||||||
|
button.setAttribute("aria-pressed", String(active));
|
||||||
|
button.setAttribute("aria-busy", String(busy));
|
||||||
|
button.disabled = disabled || busy;
|
||||||
|
const label = active ? activeLabel : inactiveLabel;
|
||||||
|
if (label) button.textContent = label;
|
||||||
|
};
|
||||||
|
|
||||||
|
api.prepareTabList = function prepareTabList(bar, kind = "primary") {
|
||||||
|
if (!bar) return;
|
||||||
|
if (bar._accessibleTabsPrepared) return;
|
||||||
|
bar._accessibleTabsPrepared = true;
|
||||||
|
const selector = kind === "primary" ? ".tab[data-tab]" : ".sub-tab[data-subtab]";
|
||||||
|
const buttons = Array.from(bar.querySelectorAll(selector));
|
||||||
|
bar.setAttribute("role", "tablist");
|
||||||
|
buttons.forEach((button, index) => {
|
||||||
|
button.setAttribute("role", "tab");
|
||||||
|
button.setAttribute("aria-selected", String(button.classList.contains("active")));
|
||||||
|
button.tabIndex = button.classList.contains("active") || (!buttons.some(b => b.classList.contains("active")) && index === 0) ? 0 : -1;
|
||||||
|
const key = button.dataset.tab || button.dataset.subtab;
|
||||||
|
button.setAttribute("aria-controls", `${kind === "primary" ? "tab-" : "subtab-"}${key}`);
|
||||||
|
const panel = document.getElementById(`${kind === "primary" ? "tab-" : "subtab-"}${key}`);
|
||||||
|
if (panel) {
|
||||||
|
if (!button.id) button.id = `${kind}-tab-${key}`;
|
||||||
|
panel.setAttribute("role", "tabpanel");
|
||||||
|
panel.setAttribute("aria-labelledby", button.id);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
bar.addEventListener("keydown", (event) => {
|
||||||
|
if (!buttons.includes(event.target)) return;
|
||||||
|
const direction = event.key === "ArrowRight" || event.key === "ArrowDown" ? 1
|
||||||
|
: event.key === "ArrowLeft" || event.key === "ArrowUp" ? -1 : 0;
|
||||||
|
if (!direction) return;
|
||||||
|
event.preventDefault();
|
||||||
|
const next = buttons[(buttons.indexOf(event.target) + direction + buttons.length) % buttons.length];
|
||||||
|
next.focus();
|
||||||
|
next.click();
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
api.syncSelectedTab = function syncSelectedTab(bar, selected) {
|
||||||
|
if (!bar) return;
|
||||||
|
bar.querySelectorAll('[role="tab"]').forEach((tab) => {
|
||||||
|
const active = tab === selected;
|
||||||
|
tab.setAttribute("aria-selected", String(active));
|
||||||
|
tab.tabIndex = active ? 0 : -1;
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
const layouts = {
|
||||||
|
compact: { label: "Compact", advanced: false, audio: false, scheduler: false, preferredTab: "main" },
|
||||||
|
broadcast: { label: "Broadcast", unavailable: "Broadcast requires an enumerated WFM-capable receiver", advanced: false, audio: true, scheduler: false, preferredTab: "main", capability: "broadcast" },
|
||||||
|
digital: { label: "Digital", unavailable: "Digital requires a compatible rig mode and an available decoder", advanced: false, audio: false, scheduler: false, preferredTab: "digital-modes", capability: "digital" },
|
||||||
|
full: { label: "Full controls", advanced: true, audio: true, scheduler: true, preferredTab: "main" },
|
||||||
|
};
|
||||||
|
const layoutCapabilities = { broadcast: false, digital: false };
|
||||||
|
let activeRigId = null;
|
||||||
|
|
||||||
|
function layoutStorageKey() {
|
||||||
|
return activeRigId ? `trxOperatorLayout:${activeRigId}` : "trxOperatorLayout";
|
||||||
|
}
|
||||||
|
|
||||||
|
function savedLayoutName() {
|
||||||
|
return localStorage.getItem(layoutStorageKey()) || localStorage.getItem("trxOperatorLayout") || "compact";
|
||||||
|
}
|
||||||
|
|
||||||
|
function layoutAvailable(layout) {
|
||||||
|
return !layout.capability || layoutCapabilities[layout.capability] === true;
|
||||||
|
}
|
||||||
|
|
||||||
|
function unavailableLayoutMessage() {
|
||||||
|
const unavailable = Object.values(layouts).filter(layout => !layoutAvailable(layout) && layout.unavailable);
|
||||||
|
return unavailable.length ? `Unavailable: ${unavailable.map(layout => layout.unavailable).join("; ")}.` : "";
|
||||||
|
}
|
||||||
|
|
||||||
|
function refreshLayoutOptions() {
|
||||||
|
const select = document.getElementById("operator-layout-select");
|
||||||
|
if (!select) return;
|
||||||
|
const previous = select.value || document.body.dataset.operatorLayout || "compact";
|
||||||
|
select.replaceChildren();
|
||||||
|
Object.entries(layouts).forEach(([value, layout]) => {
|
||||||
|
if (!layoutAvailable(layout)) return;
|
||||||
|
select.add(new Option(layout.label, value));
|
||||||
|
});
|
||||||
|
const available = Array.from(select.options).some(option => option.value === previous);
|
||||||
|
select.value = available ? previous : "compact";
|
||||||
|
if (!available && previous !== "compact") api.applyLayout("compact", { persist: false });
|
||||||
|
select.title = unavailableLayoutMessage();
|
||||||
|
}
|
||||||
|
|
||||||
|
api.setLayoutCapabilities = function setLayoutCapabilities(capabilities = {}) {
|
||||||
|
Object.keys(layoutCapabilities).forEach((name) => {
|
||||||
|
if (name in capabilities) layoutCapabilities[name] = Boolean(capabilities[name]);
|
||||||
|
});
|
||||||
|
refreshLayoutOptions();
|
||||||
|
const select = document.getElementById("operator-layout-select");
|
||||||
|
const saved = savedLayoutName();
|
||||||
|
if (select && Array.from(select.options).some(option => option.value === saved)) {
|
||||||
|
select.value = saved;
|
||||||
|
api.applyLayout(saved, { persist: false });
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
api.setActiveRig = function setActiveRig(rigId) {
|
||||||
|
activeRigId = typeof rigId === "string" && rigId ? rigId : null;
|
||||||
|
const saved = savedLayoutName();
|
||||||
|
const select = document.getElementById("operator-layout-select");
|
||||||
|
if (select) select.value = Array.from(select.options).some(option => option.value === saved) ? saved : "compact";
|
||||||
|
api.applyLayout(select?.value || saved, { persist: false });
|
||||||
|
};
|
||||||
|
|
||||||
|
api.applyLayout = function applyLayout(name, options = {}) {
|
||||||
|
const requestedLayout = layouts[name];
|
||||||
|
const permittedName = requestedLayout && layoutAvailable(requestedLayout) ? name : "compact";
|
||||||
|
const layout = layouts[permittedName];
|
||||||
|
document.body.dataset.operatorLayout = permittedName in layouts ? permittedName : "compact";
|
||||||
|
if (options.persist !== false) localStorage.setItem(layoutStorageKey(), document.body.dataset.operatorLayout);
|
||||||
|
const details = document.getElementById("advanced-radio-controls");
|
||||||
|
if (details) details.open = layout.advanced;
|
||||||
|
const audioDetails = document.getElementById("audio-controls");
|
||||||
|
if (audioDetails) audioDetails.open = layout.audio;
|
||||||
|
const schedulerDetails = document.getElementById("scheduler-controls");
|
||||||
|
if (schedulerDetails) schedulerDetails.open = layout.scheduler;
|
||||||
|
if (options.navigate && typeof window.navigateToTab === "function") {
|
||||||
|
window.navigateToTab(layout.preferredTab);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
function installLayoutControls() {
|
||||||
|
const actions = document.querySelector(".top-bar-actions");
|
||||||
|
if (actions && !document.getElementById("operator-layout-select")) {
|
||||||
|
const label = document.createElement("label");
|
||||||
|
label.className = "operator-layout-picker";
|
||||||
|
label.innerHTML = '<span class="visually-hidden">Operator layout</span><select id="operator-layout-select" aria-label="Operator layout"></select>';
|
||||||
|
const select = label.querySelector("select");
|
||||||
|
const savedLayout = savedLayoutName();
|
||||||
|
actions.insertBefore(label, actions.firstChild);
|
||||||
|
select.value = savedLayout;
|
||||||
|
refreshLayoutOptions();
|
||||||
|
if (savedLayout !== "broadcast" && layouts[savedLayout]) select.value = savedLayout;
|
||||||
|
select.addEventListener("change", () => api.applyLayout(select.value, { navigate: true }));
|
||||||
|
api.applyLayout(select.value);
|
||||||
|
}
|
||||||
|
|
||||||
|
const tray = document.querySelector(".controls-tray");
|
||||||
|
if (tray && !document.getElementById("advanced-radio-controls")) {
|
||||||
|
const details = document.createElement("details");
|
||||||
|
details.id = "advanced-radio-controls";
|
||||||
|
details.className = "advanced-radio-controls";
|
||||||
|
details.innerHTML = '<summary>Advanced radio controls</summary><div class="advanced-radio-body"></div>';
|
||||||
|
const body = details.querySelector(".advanced-radio-body");
|
||||||
|
["sdr-settings-row", "vchan-row", "tx-limit-row"].forEach((id) => {
|
||||||
|
const element = document.getElementById(id);
|
||||||
|
if (element) body.appendChild(element);
|
||||||
|
});
|
||||||
|
tray.appendChild(details);
|
||||||
|
api.applyLayout(savedLayoutName(), { persist: false });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function installMobileMore() {
|
||||||
|
const nav = document.querySelector(".tab-bar-nav");
|
||||||
|
if (!nav || document.getElementById("mobile-more-btn")) return;
|
||||||
|
const more = document.createElement("button");
|
||||||
|
more.id = "mobile-more-btn";
|
||||||
|
more.className = "tab mobile-more-btn";
|
||||||
|
more.type = "button";
|
||||||
|
more.innerHTML = '<span class="tab-more-icon" aria-hidden="true">•••</span><span class="tab-label">More</span>';
|
||||||
|
more.setAttribute("aria-haspopup", "menu");
|
||||||
|
more.setAttribute("aria-expanded", "false");
|
||||||
|
const menu = document.createElement("div");
|
||||||
|
menu.id = "mobile-more-menu";
|
||||||
|
menu.className = "mobile-more-menu";
|
||||||
|
menu.setAttribute("role", "menu");
|
||||||
|
more.setAttribute("aria-controls", menu.id);
|
||||||
|
const closeMore = (restoreFocus = false) => {
|
||||||
|
if (!menu.classList.contains("is-open")) return;
|
||||||
|
menu.classList.remove("is-open");
|
||||||
|
more.setAttribute("aria-expanded", "false");
|
||||||
|
if (restoreFocus) more.focus();
|
||||||
|
};
|
||||||
|
api.closeMobileOverlays = closeMore;
|
||||||
|
["statistics", "recorder", "settings", "about"].forEach((tabName) => {
|
||||||
|
const source = nav.querySelector(`[data-tab="${tabName}"]`);
|
||||||
|
if (!source) return;
|
||||||
|
const item = document.createElement("button");
|
||||||
|
item.type = "button";
|
||||||
|
item.setAttribute("role", "menuitem");
|
||||||
|
item.dataset.navigateTab = tabName;
|
||||||
|
item.textContent = source.textContent.trim();
|
||||||
|
item.addEventListener("click", () => {
|
||||||
|
if (typeof window.navigateToTab === "function") window.navigateToTab(tabName);
|
||||||
|
closeMore();
|
||||||
|
});
|
||||||
|
menu.appendChild(item);
|
||||||
|
});
|
||||||
|
more.addEventListener("click", () => {
|
||||||
|
const open = menu.classList.toggle("is-open");
|
||||||
|
more.setAttribute("aria-expanded", String(open));
|
||||||
|
if (open) menu.querySelector('[role="menuitem"]')?.focus();
|
||||||
|
});
|
||||||
|
document.addEventListener("click", (event) => {
|
||||||
|
if (!menu.contains(event.target) && !more.contains(event.target)) closeMore();
|
||||||
|
});
|
||||||
|
document.addEventListener("keydown", (event) => {
|
||||||
|
if (event.key === "Escape") closeMore(true);
|
||||||
|
});
|
||||||
|
window.addEventListener("resize", () => closeMore());
|
||||||
|
window.addEventListener("popstate", () => closeMore());
|
||||||
|
nav.append(more, menu);
|
||||||
|
}
|
||||||
|
|
||||||
|
function installDecoderPicker() {
|
||||||
|
const bar = document.querySelector("#tab-digital-modes > .sub-tab-bar");
|
||||||
|
if (!bar || document.getElementById("decoder-tab-select")) return;
|
||||||
|
const select = document.createElement("select");
|
||||||
|
select.id = "decoder-tab-select";
|
||||||
|
select.className = "decoder-tab-select";
|
||||||
|
select.setAttribute("aria-label", "Decoder view");
|
||||||
|
const groups = [
|
||||||
|
["Overview", ["overview"]], ["Marine & packet", ["ais", "vdes", "aprs", "hf-aprs"]],
|
||||||
|
["Weak signal", ["cw", "ft8", "ft4", "ft2", "wspr"]], ["Broadcast & images", ["rds", "sat", "wefax"]],
|
||||||
|
];
|
||||||
|
groups.forEach(([label, ids]) => {
|
||||||
|
const group = document.createElement("optgroup");
|
||||||
|
group.label = label;
|
||||||
|
ids.forEach((id) => {
|
||||||
|
const button = bar.querySelector(`[data-subtab="${id}"]`);
|
||||||
|
if (button) group.appendChild(new Option(button.textContent.trim(), id));
|
||||||
|
});
|
||||||
|
select.appendChild(group);
|
||||||
|
});
|
||||||
|
select.addEventListener("change", () => bar.querySelector(`[data-subtab="${select.value}"]`)?.click());
|
||||||
|
bar.insertAdjacentElement("afterend", select);
|
||||||
|
}
|
||||||
|
|
||||||
|
function installDecoderBadges() {
|
||||||
|
const bar = document.querySelector("#tab-digital-modes > .sub-tab-bar");
|
||||||
|
if (!bar) return;
|
||||||
|
bar.querySelectorAll(".sub-tab[data-subtab]").forEach((button) => {
|
||||||
|
const id = button.dataset.subtab;
|
||||||
|
if (id === "overview" || button.querySelector(".decoder-state-dot")) return;
|
||||||
|
const dot = document.createElement("span");
|
||||||
|
dot.className = "decoder-state-dot";
|
||||||
|
dot.setAttribute("aria-hidden", "true");
|
||||||
|
button.appendChild(dot);
|
||||||
|
const status = document.getElementById(`${id}-status`);
|
||||||
|
if (!status) return;
|
||||||
|
const sync = () => {
|
||||||
|
const value = status.textContent.toLowerCase();
|
||||||
|
const state = /receiv|decod|connected|listening/.test(value) ? "active"
|
||||||
|
: /error|fail|disconnected/.test(value) ? "error" : "idle";
|
||||||
|
dot.dataset.state = state;
|
||||||
|
button.title = `${button.childNodes[0]?.textContent?.trim() || id}: ${status.textContent.trim()}`;
|
||||||
|
};
|
||||||
|
new MutationObserver(sync).observe(status, { childList: true, characterData: true, subtree: true });
|
||||||
|
sync();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
api.init = function init() {
|
||||||
|
ensureLiveRegions();
|
||||||
|
installLayoutControls();
|
||||||
|
installMobileMore();
|
||||||
|
installDecoderPicker();
|
||||||
|
installDecoderBadges();
|
||||||
|
api.prepareTabList(document.querySelector(".tab-bar-nav"), "primary");
|
||||||
|
document.querySelectorAll(".sub-tab-bar").forEach(bar => api.prepareTabList(bar, "secondary"));
|
||||||
|
window.addEventListener("unhandledrejection", (event) => {
|
||||||
|
const message = event.reason?.message || "An operation failed unexpectedly";
|
||||||
|
api.notify(message, { kind: "error" });
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
if (document.readyState === "loading") document.addEventListener("DOMContentLoaded", api.init, { once: true });
|
||||||
|
else api.init();
|
||||||
|
})();
|
||||||
+232
File diff suppressed because one or more lines are too long
@@ -2,8 +2,53 @@
|
|||||||
//
|
//
|
||||||
// SPDX-License-Identifier: GPL-2.0-or-later
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
|
use std::fmt::Write as _;
|
||||||
|
use std::fs;
|
||||||
|
use std::path::PathBuf;
|
||||||
use std::time::{SystemTime, UNIX_EPOCH};
|
use std::time::{SystemTime, UNIX_EPOCH};
|
||||||
|
|
||||||
|
fn generate_asset_manifest() {
|
||||||
|
let manifest_dir = PathBuf::from(std::env::var_os("CARGO_MANIFEST_DIR").expect("manifest dir"));
|
||||||
|
let generated_dir = manifest_dir.join("assets/web/generated");
|
||||||
|
println!("cargo:rerun-if-changed={}", generated_dir.display());
|
||||||
|
|
||||||
|
let mut filenames = fs::read_dir(&generated_dir)
|
||||||
|
.expect("read generated frontend assets")
|
||||||
|
.map(|entry| entry.expect("read generated asset entry"))
|
||||||
|
.filter(|entry| entry.file_type().is_ok_and(|kind| kind.is_file()))
|
||||||
|
.map(|entry| {
|
||||||
|
entry
|
||||||
|
.file_name()
|
||||||
|
.into_string()
|
||||||
|
.expect("UTF-8 asset filename")
|
||||||
|
})
|
||||||
|
.collect::<Vec<_>>();
|
||||||
|
filenames.sort();
|
||||||
|
|
||||||
|
let mut output = String::from(
|
||||||
|
"// Generated by build.rs from committed frontend output.\n\
|
||||||
|
pub const GENERATED_ASSETS: &[(&str, &[u8])] = &[\n",
|
||||||
|
);
|
||||||
|
for filename in filenames {
|
||||||
|
assert!(
|
||||||
|
filename
|
||||||
|
.bytes()
|
||||||
|
.all(|byte| byte.is_ascii_alphanumeric() || b"._-".contains(&byte)),
|
||||||
|
"unsupported generated asset filename: {filename}"
|
||||||
|
);
|
||||||
|
writeln!(
|
||||||
|
output,
|
||||||
|
" ({filename:?}, include_bytes!(concat!(env!(\"CARGO_MANIFEST_DIR\"), \"/assets/web/generated/\", {filename:?}))),"
|
||||||
|
)
|
||||||
|
.expect("write asset manifest");
|
||||||
|
}
|
||||||
|
output.push_str("];\n");
|
||||||
|
|
||||||
|
let output_path =
|
||||||
|
PathBuf::from(std::env::var_os("OUT_DIR").expect("out dir")).join("generated_assets.rs");
|
||||||
|
fs::write(output_path, output).expect("write generated asset manifest");
|
||||||
|
}
|
||||||
|
|
||||||
fn utc_ymd_from_unix_secs(secs: i64) -> (i32, u32, u32) {
|
fn utc_ymd_from_unix_secs(secs: i64) -> (i32, u32, u32) {
|
||||||
let days = secs.div_euclid(86_400);
|
let days = secs.div_euclid(86_400);
|
||||||
let z = days + 719_468;
|
let z = days + 719_468;
|
||||||
@@ -20,6 +65,7 @@ fn utc_ymd_from_unix_secs(secs: i64) -> (i32, u32, u32) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
|
generate_asset_manifest();
|
||||||
let secs = match SystemTime::now().duration_since(UNIX_EPOCH) {
|
let secs = match SystemTime::now().duration_since(UNIX_EPOCH) {
|
||||||
Ok(d) => d.as_secs() as i64,
|
Ok(d) => d.as_secs() as i64,
|
||||||
Err(_) => 0,
|
Err(_) => 0,
|
||||||
|
|||||||
@@ -0,0 +1,64 @@
|
|||||||
|
// SPDX-FileCopyrightText: 2026 Stan Grams <sjg@haxx.space>
|
||||||
|
//
|
||||||
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
|
use std::fmt::Write as _;
|
||||||
|
use std::fs;
|
||||||
|
use std::path::PathBuf;
|
||||||
|
|
||||||
|
use trx_core::radio::freq::{Band, Freq};
|
||||||
|
use trx_core::rig::state::{SpectrumData, VchanRdsEntry};
|
||||||
|
use trx_core::rig::{
|
||||||
|
RigAccessMethod, RigCapabilities, RigInfo, RigRxStatus, RigStatus, RigTxStatus, RigVfo,
|
||||||
|
RigVfoEntry,
|
||||||
|
};
|
||||||
|
use trx_core::{DecoderConfig, RdsData, RigFilterState, RigMode, RigSnapshot, WfmDenoiseLevel};
|
||||||
|
use trx_frontend_http::server::api::rig::{RigListItem, RigListResponse};
|
||||||
|
use trx_protocol::{DecoderActivation, DecoderDescriptor};
|
||||||
|
use ts_rs::{Config, TS};
|
||||||
|
|
||||||
|
fn main() -> Result<(), Box<dyn std::error::Error>> {
|
||||||
|
let mut output = String::from(
|
||||||
|
"// SPDX-FileCopyrightText: 2026 Stan Grams <sjg@haxx.space>\n\
|
||||||
|
//\n\
|
||||||
|
// SPDX-License-Identifier: GPL-2.0-or-later\n\n\
|
||||||
|
// Generated by `cargo run -p trx-frontend-http --example generate_typescript`.\n\
|
||||||
|
// Do not edit manually.\n\n",
|
||||||
|
);
|
||||||
|
let config = Config::default();
|
||||||
|
|
||||||
|
macro_rules! export {
|
||||||
|
($type:ty) => {
|
||||||
|
writeln!(output, "export {}\n", <$type as TS>::decl(&config))?;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
export!(Band);
|
||||||
|
export!(Freq);
|
||||||
|
export!(RigMode);
|
||||||
|
export!(RigAccessMethod);
|
||||||
|
export!(RigCapabilities);
|
||||||
|
export!(RigInfo);
|
||||||
|
export!(RigVfoEntry);
|
||||||
|
export!(RigVfo);
|
||||||
|
export!(RigTxStatus);
|
||||||
|
export!(RigRxStatus);
|
||||||
|
export!(RigStatus);
|
||||||
|
export!(DecoderConfig);
|
||||||
|
export!(WfmDenoiseLevel);
|
||||||
|
export!(RigFilterState);
|
||||||
|
export!(RdsData);
|
||||||
|
export!(SpectrumData);
|
||||||
|
export!(VchanRdsEntry);
|
||||||
|
export!(RigSnapshot);
|
||||||
|
export!(RigListItem);
|
||||||
|
export!(RigListResponse);
|
||||||
|
export!(DecoderActivation);
|
||||||
|
export!(DecoderDescriptor);
|
||||||
|
|
||||||
|
let output_path =
|
||||||
|
PathBuf::from(env!("CARGO_MANIFEST_DIR")).join("frontend/src/api/generated.ts");
|
||||||
|
fs::create_dir_all(output_path.parent().expect("generated file has a parent"))?;
|
||||||
|
fs::write(output_path, output)?;
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
@@ -0,0 +1,93 @@
|
|||||||
|
// SPDX-FileCopyrightText: 2026 Stan Grams <sjg@haxx.space>
|
||||||
|
//
|
||||||
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
|
import { build } from "esbuild";
|
||||||
|
import { rm } from "node:fs/promises";
|
||||||
|
import { fileURLToPath } from "node:url";
|
||||||
|
import path from "node:path";
|
||||||
|
|
||||||
|
const frontendDir = path.dirname(fileURLToPath(import.meta.url));
|
||||||
|
const sourceDir = path.join(frontendDir, "src");
|
||||||
|
const outputDir = path.join(frontendDir, "..", "assets", "web", "generated");
|
||||||
|
|
||||||
|
await rm(outputDir, { recursive: true, force: true });
|
||||||
|
|
||||||
|
await build({
|
||||||
|
entryPoints: {
|
||||||
|
"api-client": path.join(sourceDir, "api", "client.ts"),
|
||||||
|
"ui-core": path.join(sourceDir, "ui-core.ts"),
|
||||||
|
"plugin-loader": path.join(sourceDir, "plugin-loader.ts"),
|
||||||
|
"plugin-runtime": path.join(sourceDir, "plugin-runtime.ts"),
|
||||||
|
screenshot: path.join(sourceDir, "screenshot.ts"),
|
||||||
|
"webgl-renderer": path.join(sourceDir, "webgl-renderer.ts"),
|
||||||
|
},
|
||||||
|
outdir: outputDir,
|
||||||
|
bundle: false,
|
||||||
|
target: "es2022",
|
||||||
|
sourcemap: false,
|
||||||
|
legalComments: "inline",
|
||||||
|
charset: "utf8",
|
||||||
|
logLevel: "info",
|
||||||
|
});
|
||||||
|
|
||||||
|
await build({
|
||||||
|
entryPoints: { app: path.join(sourceDir, "bootstrap.ts") },
|
||||||
|
outdir: outputDir,
|
||||||
|
bundle: true,
|
||||||
|
format: "iife",
|
||||||
|
platform: "browser",
|
||||||
|
target: "es2022",
|
||||||
|
sourcemap: false,
|
||||||
|
legalComments: "inline",
|
||||||
|
charset: "utf8",
|
||||||
|
logLevel: "info",
|
||||||
|
});
|
||||||
|
|
||||||
|
await build({
|
||||||
|
entryPoints: {
|
||||||
|
ft2: path.join(sourceDir, "plugins", "ft2.ts"),
|
||||||
|
ft4: path.join(sourceDir, "plugins", "ft4.ts"),
|
||||||
|
wspr: path.join(sourceDir, "plugins", "wspr.ts"),
|
||||||
|
cw: path.join(sourceDir, "plugins", "cw.ts"),
|
||||||
|
ft8: path.join(sourceDir, "plugins", "ft8.ts"),
|
||||||
|
"leaflet-ais-tracksymbol": path.join(sourceDir, "leaflet-ais-tracksymbol.ts"),
|
||||||
|
vdes: path.join(sourceDir, "plugins", "vdes.ts"),
|
||||||
|
wefax: path.join(sourceDir, "plugins", "wefax.ts"),
|
||||||
|
"background-decode": path.join(sourceDir, "plugins", "background-decode.ts"),
|
||||||
|
ais: path.join(sourceDir, "plugins", "ais.ts"),
|
||||||
|
aprs: path.join(sourceDir, "plugins", "aprs.ts"),
|
||||||
|
"hf-aprs": path.join(sourceDir, "plugins", "hf-aprs.ts"),
|
||||||
|
sat: path.join(sourceDir, "plugins", "sat.ts"),
|
||||||
|
"sat-scheduler": path.join(sourceDir, "plugins", "sat-scheduler.ts"),
|
||||||
|
vchan: path.join(sourceDir, "plugins", "vchan.ts"),
|
||||||
|
bookmarks: path.join(sourceDir, "plugins", "bookmarks.ts"),
|
||||||
|
scheduler: path.join(sourceDir, "plugins", "scheduler.ts"),
|
||||||
|
"map-core": path.join(sourceDir, "map-core.ts"),
|
||||||
|
},
|
||||||
|
outdir: outputDir,
|
||||||
|
bundle: true,
|
||||||
|
format: "esm",
|
||||||
|
splitting: true,
|
||||||
|
entryNames: "[name]",
|
||||||
|
chunkNames: "chunk-[hash]",
|
||||||
|
platform: "browser",
|
||||||
|
target: "es2022",
|
||||||
|
sourcemap: false,
|
||||||
|
legalComments: "inline",
|
||||||
|
charset: "utf8",
|
||||||
|
logLevel: "info",
|
||||||
|
});
|
||||||
|
|
||||||
|
await build({
|
||||||
|
entryPoints: [path.join(sourceDir, "decode-history-worker.ts")],
|
||||||
|
outfile: path.join(outputDir, "decode-history-worker.js"),
|
||||||
|
bundle: true,
|
||||||
|
format: "iife",
|
||||||
|
platform: "browser",
|
||||||
|
target: "es2022",
|
||||||
|
sourcemap: false,
|
||||||
|
legalComments: "inline",
|
||||||
|
charset: "utf8",
|
||||||
|
logLevel: "info",
|
||||||
|
});
|
||||||
@@ -0,0 +1,59 @@
|
|||||||
|
// SPDX-FileCopyrightText: 2026 Stan Grams <sjg@haxx.space>
|
||||||
|
//
|
||||||
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
|
import eslint from "@eslint/js";
|
||||||
|
import globals from "globals";
|
||||||
|
import tseslint from "typescript-eslint";
|
||||||
|
|
||||||
|
export default tseslint.config(
|
||||||
|
{
|
||||||
|
ignores: [
|
||||||
|
"../assets/web/generated/**",
|
||||||
|
// Removed file-by-file as the legacy sources are converted to TypeScript.
|
||||||
|
"src/**/*.js",
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
files: ["**/*.mjs"],
|
||||||
|
...eslint.configs.recommended,
|
||||||
|
languageOptions: {
|
||||||
|
globals: globals.node,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
...tseslint.configs.strictTypeChecked.map((config) => ({
|
||||||
|
...config,
|
||||||
|
files: ["src/**/*.ts", "tests/**/*.ts"],
|
||||||
|
})),
|
||||||
|
{
|
||||||
|
files: ["src/**/*.ts", "tests/**/*.ts"],
|
||||||
|
ignores: ["src/decode-history-worker.ts"],
|
||||||
|
languageOptions: {
|
||||||
|
globals: globals.browser,
|
||||||
|
parserOptions: {
|
||||||
|
projectService: true,
|
||||||
|
tsconfigRootDir: import.meta.dirname,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
rules: {
|
||||||
|
"no-undef": "off",
|
||||||
|
"@typescript-eslint/no-explicit-any": "error",
|
||||||
|
"@typescript-eslint/restrict-template-expressions": ["error", { allowNumber: true }],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
files: ["src/decode-history-worker.ts"],
|
||||||
|
languageOptions: {
|
||||||
|
globals: globals.worker,
|
||||||
|
parserOptions: {
|
||||||
|
project: "./tsconfig.worker.json",
|
||||||
|
tsconfigRootDir: import.meta.dirname,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
rules: {
|
||||||
|
"no-undef": "off",
|
||||||
|
"@typescript-eslint/no-explicit-any": "error",
|
||||||
|
"@typescript-eslint/restrict-template-expressions": ["error", { allowNumber: true }],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
);
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,26 @@
|
|||||||
|
{
|
||||||
|
"name": "trx-frontend-http-web",
|
||||||
|
"version": "0.1.0",
|
||||||
|
"private": true,
|
||||||
|
"type": "module",
|
||||||
|
"engines": {
|
||||||
|
"node": ">=20"
|
||||||
|
},
|
||||||
|
"scripts": {
|
||||||
|
"build": "node build.mjs",
|
||||||
|
"generate-types": "cargo run -p trx-frontend-http --example generate_typescript",
|
||||||
|
"typecheck": "tsc --project tsconfig.json && tsc --project tsconfig.worker.json",
|
||||||
|
"lint": "eslint \"src/**/*.ts\" \"tests/**/*.mjs\" build.mjs --no-error-on-unmatched-pattern",
|
||||||
|
"test": "node --test tests/*.test.mjs",
|
||||||
|
"verify-generated": "npm run generate-types && npm run build && git diff --exit-code -- ../assets/web/generated src/api/generated.ts"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"@eslint/js": "9.39.2",
|
||||||
|
"@types/leaflet": "1.9.22",
|
||||||
|
"esbuild": "0.25.12",
|
||||||
|
"eslint": "9.39.2",
|
||||||
|
"globals": "16.5.0",
|
||||||
|
"typescript": "5.9.3",
|
||||||
|
"typescript-eslint": "8.51.0"
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
<!--
|
||||||
|
SPDX-FileCopyrightText: 2026 Stan Grams <sjg@haxx.space>
|
||||||
|
|
||||||
|
SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
-->
|
||||||
|
|
||||||
|
# Frontend source
|
||||||
|
|
||||||
|
This directory is the source of the browser assets embedded by
|
||||||
|
`trx-frontend-http`. Run `npm run build` from the parent `frontend` directory
|
||||||
|
after changing a source file. Cargo consumes the committed output under
|
||||||
|
`../assets/web/generated` and does not invoke Node.js.
|
||||||
@@ -0,0 +1,68 @@
|
|||||||
|
// SPDX-FileCopyrightText: 2026 Stan Grams <sjg@haxx.space>
|
||||||
|
//
|
||||||
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
|
export type AuthRole = "rx" | "control";
|
||||||
|
|
||||||
|
export interface AuthSession {
|
||||||
|
authenticated: boolean;
|
||||||
|
role?: AuthRole;
|
||||||
|
auth_disabled?: boolean;
|
||||||
|
}
|
||||||
|
|
||||||
|
function decodeAuthSession(value: unknown): AuthSession {
|
||||||
|
if (typeof value !== "object" || value === null) {
|
||||||
|
throw new TypeError("The authentication response is malformed");
|
||||||
|
}
|
||||||
|
const session = value as Record<string, unknown>;
|
||||||
|
if (typeof session.authenticated !== "boolean") {
|
||||||
|
throw new TypeError("The authentication response has no authenticated flag");
|
||||||
|
}
|
||||||
|
if (session.role !== undefined && session.role !== "rx" && session.role !== "control") {
|
||||||
|
throw new TypeError("The authentication response has an invalid role");
|
||||||
|
}
|
||||||
|
if (session.auth_disabled !== undefined && typeof session.auth_disabled !== "boolean") {
|
||||||
|
throw new TypeError("The authentication response has an invalid auth_disabled flag");
|
||||||
|
}
|
||||||
|
const decoded: AuthSession = { authenticated: session.authenticated };
|
||||||
|
if (session.role !== undefined) decoded.role = session.role;
|
||||||
|
if (session.auth_disabled !== undefined) decoded.auth_disabled = session.auth_disabled;
|
||||||
|
return decoded;
|
||||||
|
}
|
||||||
|
|
||||||
|
const authDisabledSession: AuthSession = {
|
||||||
|
authenticated: true,
|
||||||
|
role: "control",
|
||||||
|
auth_disabled: true,
|
||||||
|
};
|
||||||
|
|
||||||
|
export async function fetchAuthSession(): Promise<AuthSession> {
|
||||||
|
try {
|
||||||
|
const response = await fetch("/auth/session");
|
||||||
|
if (response.status === 404) return authDisabledSession;
|
||||||
|
if (!response.ok) return { authenticated: false };
|
||||||
|
return decodeAuthSession(await response.json());
|
||||||
|
} catch (error: unknown) {
|
||||||
|
console.error("Auth check failed:", error);
|
||||||
|
return { authenticated: false };
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export async function login(passphrase: string): Promise<AuthSession> {
|
||||||
|
const response = await fetch("/auth/login", {
|
||||||
|
method: "POST",
|
||||||
|
headers: { "Content-Type": "application/json" },
|
||||||
|
body: JSON.stringify({ passphrase }),
|
||||||
|
});
|
||||||
|
if (response.status === 404) return authDisabledSession;
|
||||||
|
if (!response.ok) {
|
||||||
|
const message = await response.text();
|
||||||
|
throw new Error(message || "Login failed");
|
||||||
|
}
|
||||||
|
return decodeAuthSession(await response.json());
|
||||||
|
}
|
||||||
|
|
||||||
|
export async function logout(): Promise<void> {
|
||||||
|
const response = await fetch("/auth/logout", { method: "POST" });
|
||||||
|
if (response.status !== 404 && !response.ok) throw new Error("Logout failed");
|
||||||
|
}
|
||||||
@@ -0,0 +1,134 @@
|
|||||||
|
// SPDX-FileCopyrightText: 2026 Stan Grams <sjg@haxx.space>
|
||||||
|
//
|
||||||
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
|
import type {
|
||||||
|
DecoderDescriptor,
|
||||||
|
RigListResponse,
|
||||||
|
RigSnapshot,
|
||||||
|
} from "./generated";
|
||||||
|
|
||||||
|
export class ApiError extends Error {
|
||||||
|
public constructor(
|
||||||
|
public readonly status: number,
|
||||||
|
message: string,
|
||||||
|
) {
|
||||||
|
super(message);
|
||||||
|
this.name = "ApiError";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
type Validator<T> = (value: unknown) => value is T;
|
||||||
|
|
||||||
|
function isRecord(value: unknown): value is Record<string, unknown> {
|
||||||
|
return typeof value === "object" && value !== null && !Array.isArray(value);
|
||||||
|
}
|
||||||
|
|
||||||
|
export function isRigSnapshot(value: unknown): value is RigSnapshot {
|
||||||
|
if (!isRecord(value) || !isRecord(value.info) || !isRecord(value.status)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
const { info, status } = value;
|
||||||
|
return (
|
||||||
|
typeof value.initialized === "boolean" &&
|
||||||
|
typeof info.manufacturer === "string" &&
|
||||||
|
typeof info.model === "string" &&
|
||||||
|
isRecord(status.freq) &&
|
||||||
|
typeof status.freq.hz === "number" &&
|
||||||
|
(typeof status.mode === "string" || isRecord(status.mode)) &&
|
||||||
|
typeof status.tx_en === "boolean"
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export function isRigListResponse(value: unknown): value is RigListResponse {
|
||||||
|
return (
|
||||||
|
isRecord(value) &&
|
||||||
|
(value.active_remote === null || typeof value.active_remote === "string") &&
|
||||||
|
Array.isArray(value.rigs) &&
|
||||||
|
value.rigs.every(
|
||||||
|
(rig) =>
|
||||||
|
isRecord(rig) &&
|
||||||
|
typeof rig.remote === "string" &&
|
||||||
|
typeof rig.manufacturer === "string" &&
|
||||||
|
typeof rig.model === "string" &&
|
||||||
|
Array.isArray(rig.supported_modes) &&
|
||||||
|
typeof rig.tx === "boolean" &&
|
||||||
|
typeof rig.filter_controls === "boolean" &&
|
||||||
|
typeof rig.initialized === "boolean",
|
||||||
|
)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export function isDecoderRegistry(value: unknown): value is DecoderDescriptor[] {
|
||||||
|
return (
|
||||||
|
Array.isArray(value) &&
|
||||||
|
value.every(
|
||||||
|
(decoder) =>
|
||||||
|
isRecord(decoder) &&
|
||||||
|
typeof decoder.id === "string" &&
|
||||||
|
typeof decoder.label === "string" &&
|
||||||
|
(decoder.activation === "mode_bound" || decoder.activation === "toggle") &&
|
||||||
|
Array.isArray(decoder.active_modes) &&
|
||||||
|
decoder.active_modes.every((mode) => typeof mode === "string") &&
|
||||||
|
typeof decoder.background_decode === "boolean" &&
|
||||||
|
typeof decoder.bookmark_selectable === "boolean",
|
||||||
|
)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export class TrxApi {
|
||||||
|
public constructor(private readonly baseUrl = "") {}
|
||||||
|
|
||||||
|
public async get<T>(path: string, validate: Validator<T>): Promise<T> {
|
||||||
|
return this.request(path, { cache: "no-store" }, validate);
|
||||||
|
}
|
||||||
|
|
||||||
|
public async post<T>(
|
||||||
|
path: string,
|
||||||
|
body: unknown,
|
||||||
|
validate: Validator<T>,
|
||||||
|
): Promise<T> {
|
||||||
|
return this.request(
|
||||||
|
path,
|
||||||
|
{
|
||||||
|
method: "POST",
|
||||||
|
headers: { "Content-Type": "application/json" },
|
||||||
|
body: JSON.stringify(body),
|
||||||
|
},
|
||||||
|
validate,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
private async request<T>(
|
||||||
|
path: string,
|
||||||
|
init: RequestInit,
|
||||||
|
validate: Validator<T>,
|
||||||
|
): Promise<T> {
|
||||||
|
const response = await fetch(`${this.baseUrl}${path}`, init);
|
||||||
|
if (!response.ok) {
|
||||||
|
const detail = await response.text();
|
||||||
|
throw new ApiError(response.status, detail || response.statusText);
|
||||||
|
}
|
||||||
|
const value: unknown = await response.json();
|
||||||
|
if (!validate(value)) {
|
||||||
|
throw new ApiError(response.status, `Malformed response from ${path}`);
|
||||||
|
}
|
||||||
|
return value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export function decodeServerEvent<T>(
|
||||||
|
event: MessageEvent<string>,
|
||||||
|
validate: Validator<T>,
|
||||||
|
): T {
|
||||||
|
let value: unknown;
|
||||||
|
try {
|
||||||
|
value = JSON.parse(event.data) as unknown;
|
||||||
|
} catch (error: unknown) {
|
||||||
|
throw new TypeError("Server event is not valid JSON", { cause: error });
|
||||||
|
}
|
||||||
|
if (!validate(value)) {
|
||||||
|
throw new TypeError("Server event has an unexpected shape");
|
||||||
|
}
|
||||||
|
return value;
|
||||||
|
}
|
||||||
@@ -0,0 +1,148 @@
|
|||||||
|
// SPDX-FileCopyrightText: 2026 Stan Grams <sjg@haxx.space>
|
||||||
|
//
|
||||||
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
|
// Generated by `cargo run -p trx-frontend-http --example generate_typescript`.
|
||||||
|
// Do not edit manually.
|
||||||
|
|
||||||
|
export type Band = { low_hz: number, high_hz: number, tx_allowed: boolean, };
|
||||||
|
|
||||||
|
export type Freq = { hz: number, };
|
||||||
|
|
||||||
|
export type RigMode = "LSB" | "USB" | "CW" | "CWR" | "AM" | "SAM" | "WFM" | "FM" | "AIS" | "VDES" | "DIG" | "PKT" | { "Other": string };
|
||||||
|
|
||||||
|
export type RigAccessMethod = { "Serial": { path: string, baud: number, } } | { "Tcp": { addr: string, } };
|
||||||
|
|
||||||
|
export type RigCapabilities = { min_freq_step_hz: number, supported_bands: Array<Band>, supported_modes: Array<RigMode>, num_vfos: number, lock: boolean, lockable: boolean, attenuator: boolean, preamp: boolean, rit: boolean, rpt: boolean, split: boolean,
|
||||||
|
/**
|
||||||
|
* Backend supports transmit: PTT, power on/off, TX meters, TX audio.
|
||||||
|
*/
|
||||||
|
tx: boolean,
|
||||||
|
/**
|
||||||
|
* Backend supports get_tx_limit / set_tx_limit.
|
||||||
|
*/
|
||||||
|
tx_limit: boolean,
|
||||||
|
/**
|
||||||
|
* Backend supports toggle_vfo.
|
||||||
|
*/
|
||||||
|
vfo_switch: boolean,
|
||||||
|
/**
|
||||||
|
* Backend supports runtime filter adjustment (bandwidth).
|
||||||
|
*/
|
||||||
|
filter_controls: boolean,
|
||||||
|
/**
|
||||||
|
* Backend returns a meaningful RX signal strength value.
|
||||||
|
*/
|
||||||
|
signal_meter: boolean, };
|
||||||
|
|
||||||
|
export type RigInfo = { manufacturer: string, model: string, revision: string, capabilities: RigCapabilities, access: RigAccessMethod, };
|
||||||
|
|
||||||
|
export type RigVfoEntry = { name: string, freq: Freq, mode: RigMode | null, };
|
||||||
|
|
||||||
|
export type RigVfo = { entries: Array<RigVfoEntry>,
|
||||||
|
/**
|
||||||
|
* Index into `entries` for the active VFO, if known.
|
||||||
|
*/
|
||||||
|
active: number | null, };
|
||||||
|
|
||||||
|
export type RigTxStatus = { power: number | null, limit: number | null, swr: number | null, alc: number | null, };
|
||||||
|
|
||||||
|
export type RigRxStatus = { sig: number | null, };
|
||||||
|
|
||||||
|
export type RigStatus = { freq: Freq, mode: RigMode, tx_en: boolean, vfo: RigVfo | null, tx: RigTxStatus | null, rx: RigRxStatus | null, lock: boolean | null, };
|
||||||
|
|
||||||
|
export type DecoderConfig = { aprs_decode_enabled: boolean, hf_aprs_decode_enabled: boolean, cw_decode_enabled: boolean, ft8_decode_enabled: boolean, ft4_decode_enabled: boolean, ft2_decode_enabled: boolean, wspr_decode_enabled: boolean, lrpt_decode_enabled: boolean, wefax_decode_enabled: boolean, recorder_enabled: boolean, };
|
||||||
|
|
||||||
|
export type WfmDenoiseLevel = "off" | "auto" | "low" | "medium" | "high";
|
||||||
|
|
||||||
|
export type RigFilterState = { bandwidth_hz: number, cw_center_hz: number, sdr_gain_db?: number | null, sdr_lna_gain_db?: number | null, sdr_agc_enabled?: boolean | null, sdr_squelch_enabled?: boolean | null, sdr_squelch_threshold_db?: number | null, sdr_nb_enabled?: boolean | null, sdr_nb_threshold?: number | null, wfm_deemphasis_us: number, wfm_stereo: boolean, wfm_stereo_detected: boolean, wfm_denoise: WfmDenoiseLevel,
|
||||||
|
/**
|
||||||
|
* Co-Channel Interference level (0–100 scale).
|
||||||
|
*/
|
||||||
|
wfm_cci: number,
|
||||||
|
/**
|
||||||
|
* Adjacent Channel Interference level (0–100 scale).
|
||||||
|
*/
|
||||||
|
wfm_aci: number,
|
||||||
|
/**
|
||||||
|
* SAM stereo width (0.0 = mono, 1.0 = full stereo).
|
||||||
|
*/
|
||||||
|
sam_stereo_width: number,
|
||||||
|
/**
|
||||||
|
* SAM carrier synchronization enabled.
|
||||||
|
*/
|
||||||
|
sam_carrier_sync: boolean, };
|
||||||
|
|
||||||
|
export type RdsData = { pi?: number | null, program_service?: string | null, radio_text?: string | null, program_type_name_long?: string | null, pty?: number | null, pty_name?: string | null, traffic_program?: boolean | null, traffic_announcement?: boolean | null, music?: boolean | null, stereo?: boolean | null, artificial_head?: boolean | null, compressed?: boolean | null, dynamic_pty?: boolean | null, alternative_frequencies_hz?: Array<number> | null, };
|
||||||
|
|
||||||
|
export type SpectrumData = {
|
||||||
|
/**
|
||||||
|
* FFT magnitude bins in dBFS, FFT-shifted so DC (centre frequency) is at index N/2.
|
||||||
|
*/
|
||||||
|
bins: Array<number>,
|
||||||
|
/**
|
||||||
|
* Centre frequency of the SDR capture in Hz.
|
||||||
|
*/
|
||||||
|
center_hz: number,
|
||||||
|
/**
|
||||||
|
* SDR capture sample rate in Hz; the displayed span is ±sample_rate/2.
|
||||||
|
*/
|
||||||
|
sample_rate: number,
|
||||||
|
/**
|
||||||
|
* Decoded Radio Data System state, when available for WFM.
|
||||||
|
*/
|
||||||
|
rds?: RdsData | null, };
|
||||||
|
|
||||||
|
export type VchanRdsEntry = {
|
||||||
|
/**
|
||||||
|
* Virtual channel UUID.
|
||||||
|
*/
|
||||||
|
id: string,
|
||||||
|
/**
|
||||||
|
* Latest RDS data, if decoded.
|
||||||
|
*/
|
||||||
|
rds?: RdsData | null,
|
||||||
|
/**
|
||||||
|
* Channel signal level in dBFS.
|
||||||
|
*/
|
||||||
|
signal_db?: number | null, };
|
||||||
|
|
||||||
|
export type RigSnapshot = { info: RigInfo, status: RigStatus, band: string | null, enabled: boolean | null, initialized: boolean, server_callsign?: string | null, server_version?: string | null, server_build_date?: string | null, server_latitude?: number | null, server_longitude?: number | null, pskreporter_status?: string | null, aprs_is_status?: string | null, cw_auto: boolean, cw_wpm: number, cw_tone_hz: number, filter?: RigFilterState | null, spectrum?: SpectrumData | null,
|
||||||
|
/**
|
||||||
|
* Per-virtual-channel RDS snapshots, when available.
|
||||||
|
*/
|
||||||
|
vchan_rds?: Array<VchanRdsEntry> | null, aprs_decode_enabled: boolean, hf_aprs_decode_enabled: boolean, cw_decode_enabled: boolean, ft8_decode_enabled: boolean, ft4_decode_enabled: boolean, ft2_decode_enabled: boolean, wspr_decode_enabled: boolean, lrpt_decode_enabled: boolean, wefax_decode_enabled: boolean, recorder_enabled: boolean, };
|
||||||
|
|
||||||
|
export type RigListItem = { remote: string, display_name: string | null, manufacturer: string, model: string, supported_modes: Array<RigMode>, tx: boolean, filter_controls: boolean, initialized: boolean, latitude: number | null, longitude: number | null, };
|
||||||
|
|
||||||
|
export type RigListResponse = { active_remote: string | null, rigs: Array<RigListItem>, };
|
||||||
|
|
||||||
|
export type DecoderActivation = "mode_bound" | "toggle";
|
||||||
|
|
||||||
|
export type DecoderDescriptor = {
|
||||||
|
/**
|
||||||
|
* Machine identifier, e.g. `"ft8"`, `"aprs"`.
|
||||||
|
*/
|
||||||
|
id: string,
|
||||||
|
/**
|
||||||
|
* Human-readable label, e.g. `"FT8"`, `"APRS"`.
|
||||||
|
*/
|
||||||
|
label: string,
|
||||||
|
/**
|
||||||
|
* How the decoder is activated.
|
||||||
|
*/
|
||||||
|
activation: DecoderActivation,
|
||||||
|
/**
|
||||||
|
* Rig modes where this decoder operates (upper-case).
|
||||||
|
*/
|
||||||
|
active_modes: Array<string>,
|
||||||
|
/**
|
||||||
|
* Whether the decoder can run on SDR virtual channels
|
||||||
|
* (background-decode / scheduler).
|
||||||
|
*/
|
||||||
|
background_decode: boolean,
|
||||||
|
/**
|
||||||
|
* Whether this decoder should appear in bookmark forms.
|
||||||
|
*/
|
||||||
|
bookmark_selectable: boolean, };
|
||||||
|
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,5 @@
|
|||||||
|
// SPDX-FileCopyrightText: 2026 Stan Grams <sjg@haxx.space>
|
||||||
|
//
|
||||||
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
|
import "./app.js";
|
||||||
@@ -0,0 +1,104 @@
|
|||||||
|
// SPDX-FileCopyrightText: 2026 Stan Grams <sjg@haxx.space>
|
||||||
|
//
|
||||||
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
|
export type CborValue = number | string | boolean | null | undefined
|
||||||
|
| CborValue[] | { [key: string]: CborValue };
|
||||||
|
|
||||||
|
interface DecodeState { offset: number }
|
||||||
|
|
||||||
|
const textDecoder = typeof TextDecoder === "function" ? new TextDecoder() : null;
|
||||||
|
|
||||||
|
function decodeUint(
|
||||||
|
view: DataView,
|
||||||
|
bytes: Uint8Array,
|
||||||
|
state: DecodeState,
|
||||||
|
additional: number,
|
||||||
|
): number {
|
||||||
|
const offset = state.offset;
|
||||||
|
if (additional < 24) return additional;
|
||||||
|
const widths: Partial<Record<number, number>> = { 24: 1, 25: 2, 26: 4, 27: 8 };
|
||||||
|
const width = widths[additional];
|
||||||
|
if (width === undefined) throw new Error("Unsupported CBOR additional info");
|
||||||
|
if (offset + width > bytes.length) throw new Error("CBOR payload truncated");
|
||||||
|
state.offset += width;
|
||||||
|
if (additional === 24) return bytes[offset] ?? 0;
|
||||||
|
if (additional === 25) return view.getUint16(offset);
|
||||||
|
if (additional === 26) return view.getUint32(offset);
|
||||||
|
const numeric = Number(view.getBigUint64(offset));
|
||||||
|
if (!Number.isSafeInteger(numeric)) throw new Error("CBOR integer exceeds JS safe range");
|
||||||
|
return numeric;
|
||||||
|
}
|
||||||
|
|
||||||
|
function decodeFloat16(bits: number): number {
|
||||||
|
const sign = (bits & 0x8000) ? -1 : 1;
|
||||||
|
const exponent = (bits >> 10) & 0x1f;
|
||||||
|
const fraction = bits & 0x03ff;
|
||||||
|
if (exponent === 0) return fraction === 0 ? sign * 0 : sign * 2 ** -14 * (fraction / 1024);
|
||||||
|
if (exponent === 0x1f) return fraction === 0 ? sign * Infinity : Number.NaN;
|
||||||
|
return sign * 2 ** (exponent - 15) * (1 + fraction / 1024);
|
||||||
|
}
|
||||||
|
|
||||||
|
function decodeItem(view: DataView, bytes: Uint8Array, state: DecodeState): CborValue {
|
||||||
|
if (state.offset >= bytes.length) throw new Error("CBOR payload truncated");
|
||||||
|
const initial = bytes[state.offset++];
|
||||||
|
if (initial === undefined) throw new Error("CBOR payload truncated");
|
||||||
|
const major = initial >> 5;
|
||||||
|
const additional = initial & 0x1f;
|
||||||
|
if (major === 0) return decodeUint(view, bytes, state, additional);
|
||||||
|
if (major === 1) return -1 - decodeUint(view, bytes, state, additional);
|
||||||
|
if (major === 2 || major === 3) {
|
||||||
|
const length = decodeUint(view, bytes, state, additional);
|
||||||
|
if (state.offset + length > bytes.length) throw new Error("CBOR payload truncated");
|
||||||
|
const chunk = bytes.subarray(state.offset, state.offset + length);
|
||||||
|
state.offset += length;
|
||||||
|
if (major === 2) return Array.from(chunk);
|
||||||
|
return textDecoder ? textDecoder.decode(chunk) : String.fromCharCode(...chunk);
|
||||||
|
}
|
||||||
|
if (major === 4) {
|
||||||
|
const length = decodeUint(view, bytes, state, additional);
|
||||||
|
return Array.from({ length }, () => decodeItem(view, bytes, state));
|
||||||
|
}
|
||||||
|
if (major === 5) {
|
||||||
|
const length = decodeUint(view, bytes, state, additional);
|
||||||
|
const value: Record<string, CborValue> = {};
|
||||||
|
for (let index = 0; index < length; index += 1) {
|
||||||
|
const key = decodeItem(view, bytes, state);
|
||||||
|
if (typeof key !== "string" && typeof key !== "number" && typeof key !== "boolean"
|
||||||
|
&& key !== null) {
|
||||||
|
throw new Error("Unsupported composite CBOR map key");
|
||||||
|
}
|
||||||
|
value[String(key)] = decodeItem(view, bytes, state);
|
||||||
|
}
|
||||||
|
return value;
|
||||||
|
}
|
||||||
|
if (major === 6) {
|
||||||
|
decodeUint(view, bytes, state, additional);
|
||||||
|
return decodeItem(view, bytes, state);
|
||||||
|
}
|
||||||
|
if (major === 7) {
|
||||||
|
if (additional === 20) return false;
|
||||||
|
if (additional === 21) return true;
|
||||||
|
if (additional === 22) return null;
|
||||||
|
if (additional === 23) return undefined;
|
||||||
|
const widths: Partial<Record<number, number>> = { 25: 2, 26: 4, 27: 8 };
|
||||||
|
const width = widths[additional];
|
||||||
|
if (width === undefined) throw new Error("Unsupported CBOR major type");
|
||||||
|
if (state.offset + width > bytes.length) throw new Error("CBOR payload truncated");
|
||||||
|
const offset = state.offset;
|
||||||
|
state.offset += width;
|
||||||
|
if (additional === 25) return decodeFloat16(view.getUint16(offset));
|
||||||
|
if (additional === 26) return view.getFloat32(offset);
|
||||||
|
return view.getFloat64(offset);
|
||||||
|
}
|
||||||
|
throw new Error("Unsupported CBOR major type");
|
||||||
|
}
|
||||||
|
|
||||||
|
export function decodeCbor(buffer: ArrayBuffer | Uint8Array): CborValue {
|
||||||
|
const bytes = buffer instanceof Uint8Array ? buffer : new Uint8Array(buffer);
|
||||||
|
const view = new DataView(bytes.buffer, bytes.byteOffset, bytes.byteLength);
|
||||||
|
const state = { offset: 0 };
|
||||||
|
const value = decodeItem(view, bytes, state);
|
||||||
|
if (state.offset !== bytes.length) throw new Error("Unexpected trailing bytes in CBOR payload");
|
||||||
|
return value;
|
||||||
|
}
|
||||||
@@ -0,0 +1,100 @@
|
|||||||
|
// SPDX-FileCopyrightText: 2026 Stan Grams <sjg@haxx.space>
|
||||||
|
//
|
||||||
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
|
export interface DecoderDescriptor {
|
||||||
|
id: string;
|
||||||
|
label: string;
|
||||||
|
activation: string;
|
||||||
|
active_modes: string[];
|
||||||
|
background_decode: boolean;
|
||||||
|
bookmark_selectable: boolean;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface DecoderRegistryBridge extends Window {
|
||||||
|
decoderRegistry?: DecoderDescriptor[];
|
||||||
|
onDecoderRegistryReady?: (callback: () => void) => void;
|
||||||
|
}
|
||||||
|
|
||||||
|
const bridge = window as DecoderRegistryBridge;
|
||||||
|
const readyCallbacks: Array<() => void> = [];
|
||||||
|
|
||||||
|
export let decoderRegistry: DecoderDescriptor[] = [];
|
||||||
|
|
||||||
|
export function onDecoderRegistryReady(callback: () => void): void {
|
||||||
|
if (decoderRegistry.length > 0) callback();
|
||||||
|
else readyCallbacks.push(callback);
|
||||||
|
}
|
||||||
|
|
||||||
|
export function applyDecoderRegistryVisibility(): void {
|
||||||
|
const knownIds = new Set(decoderRegistry.map(({ id }) => id));
|
||||||
|
const alwaysShow = new Set(["overview", "rds", "sat"]);
|
||||||
|
|
||||||
|
document.querySelectorAll<HTMLElement>(
|
||||||
|
"#tab-digital-modes > .sub-tab-bar > .sub-tab[data-subtab]",
|
||||||
|
).forEach((button) => {
|
||||||
|
const id = button.dataset.subtab;
|
||||||
|
if (!id || alwaysShow.has(id) || knownIds.has(id)) return;
|
||||||
|
button.style.display = "none";
|
||||||
|
const panel = document.getElementById(`subtab-${id}`);
|
||||||
|
if (panel) panel.style.display = "none";
|
||||||
|
});
|
||||||
|
|
||||||
|
document.querySelectorAll<HTMLElement>('[id^="about-dec-"]').forEach((element) => {
|
||||||
|
const id = element.id.replace("about-dec-", "");
|
||||||
|
if (alwaysShow.has(id) || knownIds.has(id)) return;
|
||||||
|
const row = element.closest<HTMLElement>("tr");
|
||||||
|
if (row) row.style.display = "none";
|
||||||
|
});
|
||||||
|
|
||||||
|
document.querySelectorAll<HTMLElement>('[id^="settings-clear-"][id$="-history"]')
|
||||||
|
.forEach((element) => {
|
||||||
|
const match = /^settings-clear-(.+)-history$/.exec(element.id);
|
||||||
|
const id = match?.[1];
|
||||||
|
if (id && !alwaysShow.has(id) && !knownIds.has(id)) element.style.display = "none";
|
||||||
|
});
|
||||||
|
|
||||||
|
document.querySelectorAll<HTMLElement>("#subtab-overview .plugin-item[data-decoder]")
|
||||||
|
.forEach((element) => {
|
||||||
|
const id = element.dataset.decoder;
|
||||||
|
if (id && !alwaysShow.has(id) && !knownIds.has(id)) element.style.display = "none";
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function isDecoderDescriptor(value: unknown): value is DecoderDescriptor {
|
||||||
|
if (typeof value !== "object" || value === null) return false;
|
||||||
|
const item = value as Partial<DecoderDescriptor>;
|
||||||
|
return typeof item.id === "string"
|
||||||
|
&& typeof item.label === "string"
|
||||||
|
&& typeof item.activation === "string"
|
||||||
|
&& Array.isArray(item.active_modes)
|
||||||
|
&& item.active_modes.every((mode) => typeof mode === "string")
|
||||||
|
&& typeof item.background_decode === "boolean"
|
||||||
|
&& typeof item.bookmark_selectable === "boolean";
|
||||||
|
}
|
||||||
|
|
||||||
|
function decodeRegistry(value: unknown): DecoderDescriptor[] {
|
||||||
|
if (!Array.isArray(value) || !value.every(isDecoderDescriptor)) {
|
||||||
|
throw new TypeError("The decoder registry response is malformed");
|
||||||
|
}
|
||||||
|
return value;
|
||||||
|
}
|
||||||
|
|
||||||
|
export async function loadDecoderRegistry(onLoaded: () => void): Promise<void> {
|
||||||
|
try {
|
||||||
|
const response = await fetch("/decoders");
|
||||||
|
if (!response.ok) return;
|
||||||
|
decoderRegistry = decodeRegistry(await response.json());
|
||||||
|
bridge.decoderRegistry = decoderRegistry;
|
||||||
|
readyCallbacks.splice(0).forEach((callback) => { callback(); });
|
||||||
|
applyDecoderRegistryVisibility();
|
||||||
|
onLoaded();
|
||||||
|
} catch (error: unknown) {
|
||||||
|
console.error("Failed to fetch decoder registry:", error);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Temporary compatibility boundary for lazy modules that have not yet been
|
||||||
|
// changed to receive the registry service through their plugin context.
|
||||||
|
bridge.decoderRegistry = decoderRegistry;
|
||||||
|
bridge.onDecoderRegistryReady = onDecoderRegistryReady;
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
// SPDX-FileCopyrightText: 2026 Stan Grams <sjg@haxx.space>
|
||||||
|
//
|
||||||
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
|
export function escapeHtml(input: unknown): string {
|
||||||
|
return String(input)
|
||||||
|
.replaceAll("&", "&")
|
||||||
|
.replaceAll("<", "<")
|
||||||
|
.replaceAll(">", ">")
|
||||||
|
.replaceAll("\"", """);
|
||||||
|
}
|
||||||
@@ -0,0 +1,88 @@
|
|||||||
|
// SPDX-FileCopyrightText: 2026 Stan Grams <sjg@haxx.space>
|
||||||
|
//
|
||||||
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
|
export function formatDuration(milliseconds: number): string {
|
||||||
|
const seconds = Math.floor(milliseconds / 1000);
|
||||||
|
const days = Math.floor(seconds / 86400);
|
||||||
|
const hours = Math.floor((seconds % 86400) / 3600);
|
||||||
|
const minutes = Math.floor((seconds % 3600) / 60);
|
||||||
|
const remainder = seconds % 60;
|
||||||
|
const parts: string[] = [];
|
||||||
|
if (days > 0) parts.push(`${days}d`);
|
||||||
|
if (hours > 0 || days > 0) parts.push(`${hours}h`);
|
||||||
|
parts.push(`${minutes}m`, `${remainder}s`);
|
||||||
|
return parts.join(" ");
|
||||||
|
}
|
||||||
|
|
||||||
|
export function formatFrequency(frequencyHz: number): string {
|
||||||
|
if (!Number.isFinite(frequencyHz)) return "--";
|
||||||
|
if (frequencyHz >= 1_000_000_000) return `${(frequencyHz / 1_000_000_000).toFixed(3)} GHz`;
|
||||||
|
if (frequencyHz >= 10_000_000) return `${(frequencyHz / 1_000_000).toFixed(3)} MHz`;
|
||||||
|
return `${(frequencyHz / 1_000).toFixed(1)} kHz`;
|
||||||
|
}
|
||||||
|
|
||||||
|
export function formatFrequencyForStep(frequencyHz: number, stepHz: number): string {
|
||||||
|
if (!Number.isFinite(frequencyHz)) return "--";
|
||||||
|
if (stepHz >= 1_000_000) return (frequencyHz / 1_000_000).toFixed(6);
|
||||||
|
if (stepHz >= 1_000) return (frequencyHz / 1_000).toFixed(3);
|
||||||
|
if (stepHz >= 1) return String(Math.round(frequencyHz));
|
||||||
|
return formatFrequency(frequencyHz);
|
||||||
|
}
|
||||||
|
|
||||||
|
export function formatFrequencyForHumans(frequencyHz: number): string {
|
||||||
|
if (!Number.isFinite(frequencyHz)) return "--";
|
||||||
|
if (frequencyHz >= 1_000_000_000) return `${(frequencyHz / 1_000_000_000).toFixed(3)} GHz`;
|
||||||
|
if (frequencyHz >= 1_000_000) return `${(frequencyHz / 1_000_000).toFixed(3)} MHz`;
|
||||||
|
if (frequencyHz >= 1_000) return `${(frequencyHz / 1_000).toFixed(3)} kHz`;
|
||||||
|
return `${Math.round(frequencyHz)} Hz`;
|
||||||
|
}
|
||||||
|
|
||||||
|
export function formatWavelength(frequencyHz: number): string {
|
||||||
|
if (!Number.isFinite(frequencyHz) || frequencyHz <= 0) return "--";
|
||||||
|
const meters = 299_792_458 / frequencyHz;
|
||||||
|
return meters >= 1 ? `${Math.round(meters)} m` : `${Math.round(meters * 100)} cm`;
|
||||||
|
}
|
||||||
|
|
||||||
|
export function parseFrequencyInput(
|
||||||
|
value: string,
|
||||||
|
defaultStepHz: number,
|
||||||
|
mode: string,
|
||||||
|
): number | null {
|
||||||
|
if (!value) return null;
|
||||||
|
const match = /^([0-9]+(?:[.,][0-9]+)?)\s*([kmg]hz|[kmg]|hz)?$/
|
||||||
|
.exec(value.trim().toLowerCase());
|
||||||
|
if (!match?.[1]) return null;
|
||||||
|
const rawNumber = match[1];
|
||||||
|
let frequency = Number.parseFloat(rawNumber.replace(",", "."));
|
||||||
|
const unit = match[2] ?? "";
|
||||||
|
if (Number.isNaN(frequency)) return null;
|
||||||
|
|
||||||
|
if (unit.startsWith("gh") || unit === "g") frequency *= 1_000_000_000;
|
||||||
|
else if (unit.startsWith("mh") || unit === "m") frequency *= 1_000_000;
|
||||||
|
else if (unit.startsWith("kh") || unit === "k") frequency *= 1_000;
|
||||||
|
else if (!unit) {
|
||||||
|
const hasDecimalSeparator = rawNumber.includes(".") || rawNumber.includes(",");
|
||||||
|
if (mode.toUpperCase() === "WFM") {
|
||||||
|
if (hasDecimalSeparator && frequency >= 50 && frequency < 200) {
|
||||||
|
return Math.round(frequency * 1_000_000);
|
||||||
|
}
|
||||||
|
if (!hasDecimalSeparator && frequency >= 875 && frequency <= 1080) {
|
||||||
|
return Math.round((frequency / 10) * 1_000_000);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (defaultStepHz >= 1_000_000) frequency *= 1_000_000;
|
||||||
|
else if (defaultStepHz >= 1_000) frequency *= 1_000;
|
||||||
|
else if (defaultStepHz < 1) {
|
||||||
|
if (frequency < 1_000) frequency *= 1_000_000;
|
||||||
|
else if (frequency < 1_000_000) frequency *= 1_000;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return Math.round(frequency);
|
||||||
|
}
|
||||||
|
|
||||||
|
export function formatByteSize(bytes: number): string {
|
||||||
|
if (bytes < 1024) return `${bytes} B`;
|
||||||
|
if (bytes < 1_048_576) return `${(bytes / 1024).toFixed(1)} KB`;
|
||||||
|
return `${(bytes / 1_048_576).toFixed(1)} MB`;
|
||||||
|
}
|
||||||
@@ -0,0 +1,62 @@
|
|||||||
|
// SPDX-FileCopyrightText: 2026 Stan Grams <sjg@haxx.space>
|
||||||
|
//
|
||||||
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
|
export interface LatLon {
|
||||||
|
readonly lat: number;
|
||||||
|
readonly lon: number;
|
||||||
|
}
|
||||||
|
|
||||||
|
export function haversineKm(lat1: number, lon1: number, lat2: number, lon2: number): number {
|
||||||
|
const radiusKm = 6371;
|
||||||
|
const dLat = (lat2 - lat1) * Math.PI / 180;
|
||||||
|
const dLon = (lon2 - lon1) * Math.PI / 180;
|
||||||
|
const a = Math.sin(dLat / 2) ** 2
|
||||||
|
+ Math.cos(lat1 * Math.PI / 180) * Math.cos(lat2 * Math.PI / 180) * Math.sin(dLon / 2) ** 2;
|
||||||
|
return radiusKm * 2 * Math.atan2(Math.sqrt(a), Math.sqrt(1 - a));
|
||||||
|
}
|
||||||
|
|
||||||
|
export function locatorToLatLon(locator: unknown): LatLon | null {
|
||||||
|
const raw = typeof locator === "string" ? locator.trim().toUpperCase() : "";
|
||||||
|
if (!/^[A-R]{2}\d{2}(?:[A-X]{2})?$/.test(raw)) return null;
|
||||||
|
let lon = -180 + (raw.charCodeAt(0) - 65) * 20 + Number(raw.slice(2, 3)) * 2;
|
||||||
|
let lat = -90 + (raw.charCodeAt(1) - 65) * 10 + Number(raw.slice(3, 4));
|
||||||
|
if (raw.length >= 6) {
|
||||||
|
lon += (raw.charCodeAt(4) - 65) * (5 / 60) + 2.5 / 60;
|
||||||
|
lat += (raw.charCodeAt(5) - 65) * (2.5 / 60) + 1.25 / 60;
|
||||||
|
} else {
|
||||||
|
lon += 1;
|
||||||
|
lat += 0.5;
|
||||||
|
}
|
||||||
|
return { lat, lon };
|
||||||
|
}
|
||||||
|
|
||||||
|
export function formatDistanceKm(distanceKm: number): string | null {
|
||||||
|
if (!Number.isFinite(distanceKm)) return null;
|
||||||
|
return distanceKm < 1 ? `${Math.round(distanceKm * 1000)} m` : `${distanceKm.toFixed(1)} km`;
|
||||||
|
}
|
||||||
|
|
||||||
|
export function formatTimeAgo(timestampMs: number): string | null {
|
||||||
|
if (!timestampMs) return null;
|
||||||
|
const seconds = Math.round((Date.now() - timestampMs) / 1000);
|
||||||
|
if (seconds < 60) return `${seconds}s ago`;
|
||||||
|
const minutes = Math.round(seconds / 60);
|
||||||
|
if (minutes < 60) return `${minutes} min ago`;
|
||||||
|
const hours = Math.floor(minutes / 60);
|
||||||
|
const remainingMinutes = minutes % 60;
|
||||||
|
return remainingMinutes > 0 ? `${hours}h ${remainingMinutes}min ago` : `${hours}h ago`;
|
||||||
|
}
|
||||||
|
|
||||||
|
export function latLonToMaidenhead(lat: number, lon: number): string {
|
||||||
|
const adjustedLon = lon + 180;
|
||||||
|
const adjustedLat = lat + 90;
|
||||||
|
const upperA = "A".charCodeAt(0);
|
||||||
|
const lowerA = "a".charCodeAt(0);
|
||||||
|
const field1 = String.fromCharCode(upperA + Math.floor(adjustedLon / 20));
|
||||||
|
const field2 = String.fromCharCode(upperA + Math.floor(adjustedLat / 10));
|
||||||
|
const square1 = Math.floor((adjustedLon % 20) / 2);
|
||||||
|
const square2 = Math.floor(adjustedLat % 10);
|
||||||
|
const sub1 = String.fromCharCode(lowerA + Math.floor((adjustedLon % 2) * 12));
|
||||||
|
const sub2 = String.fromCharCode(lowerA + Math.floor((adjustedLat % 1) * 24));
|
||||||
|
return `${field1}${field2}${square1}${square2}${sub1}${sub2}`;
|
||||||
|
}
|
||||||
@@ -0,0 +1,22 @@
|
|||||||
|
// SPDX-FileCopyrightText: 2026 Stan Grams <sjg@haxx.space>
|
||||||
|
//
|
||||||
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
|
const STORAGE_PREFIX = "trx_";
|
||||||
|
|
||||||
|
export function saveSetting(key: string, value: unknown): void {
|
||||||
|
try {
|
||||||
|
localStorage.setItem(`${STORAGE_PREFIX}${key}`, JSON.stringify(value));
|
||||||
|
} catch {
|
||||||
|
// Storage can be unavailable in private browsing or under a strict policy.
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export function loadSetting<T>(key: string, fallback: T): T {
|
||||||
|
try {
|
||||||
|
const value = localStorage.getItem(`${STORAGE_PREFIX}${key}`);
|
||||||
|
return value === null ? fallback : JSON.parse(value) as T;
|
||||||
|
} catch {
|
||||||
|
return fallback;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,204 @@
|
|||||||
|
// SPDX-FileCopyrightText: 2026 Stan Grams <sjg@haxx.space>
|
||||||
|
//
|
||||||
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
|
export {};
|
||||||
|
|
||||||
|
const textDecoder = typeof TextDecoder === "function" ? new TextDecoder() : null;
|
||||||
|
const HISTORY_GROUP_KEYS = ["ais", "vdes", "aprs", "hf_aprs", "cw", "ft8", "ft4", "ft2", "wspr", "wefax"] as const;
|
||||||
|
type HistoryGroup = (typeof HISTORY_GROUP_KEYS)[number];
|
||||||
|
type CborValue = number | string | boolean | null | undefined | CborValue[] | { [key: string]: CborValue };
|
||||||
|
interface DecodeState { offset: number }
|
||||||
|
interface FetchHistoryRequest { type: "fetch-history"; url?: string; batchLimit?: number }
|
||||||
|
interface WorkerScope {
|
||||||
|
postMessage(message: unknown): void;
|
||||||
|
onmessage: ((event: MessageEvent<unknown>) => void) | null;
|
||||||
|
}
|
||||||
|
const workerScope = self as unknown as WorkerScope;
|
||||||
|
|
||||||
|
function decodeCborUint(view: DataView, bytes: Uint8Array, state: DecodeState, additional: number): number {
|
||||||
|
const offset = state.offset;
|
||||||
|
if (additional < 24) return additional;
|
||||||
|
if (additional === 24) {
|
||||||
|
if (offset + 1 > bytes.length) throw new Error("CBOR payload truncated");
|
||||||
|
state.offset += 1;
|
||||||
|
return bytes[offset] ?? 0;
|
||||||
|
}
|
||||||
|
if (additional === 25) {
|
||||||
|
if (offset + 2 > bytes.length) throw new Error("CBOR payload truncated");
|
||||||
|
state.offset += 2;
|
||||||
|
return view.getUint16(offset);
|
||||||
|
}
|
||||||
|
if (additional === 26) {
|
||||||
|
if (offset + 4 > bytes.length) throw new Error("CBOR payload truncated");
|
||||||
|
state.offset += 4;
|
||||||
|
return view.getUint32(offset);
|
||||||
|
}
|
||||||
|
if (additional === 27) {
|
||||||
|
if (offset + 8 > bytes.length) throw new Error("CBOR payload truncated");
|
||||||
|
const value = view.getBigUint64(offset);
|
||||||
|
state.offset += 8;
|
||||||
|
const numeric = Number(value);
|
||||||
|
if (!Number.isSafeInteger(numeric)) throw new Error("CBOR integer exceeds JS safe range");
|
||||||
|
return numeric;
|
||||||
|
}
|
||||||
|
throw new Error("Unsupported CBOR additional info");
|
||||||
|
}
|
||||||
|
|
||||||
|
function decodeCborFloat16(bits: number): number {
|
||||||
|
const sign = (bits & 0x8000) ? -1 : 1;
|
||||||
|
const exponent = (bits >> 10) & 0x1f;
|
||||||
|
const fraction = bits & 0x03ff;
|
||||||
|
if (exponent === 0) {
|
||||||
|
return fraction === 0 ? sign * 0 : sign * Math.pow(2, -14) * (fraction / 1024);
|
||||||
|
}
|
||||||
|
if (exponent === 0x1f) {
|
||||||
|
return fraction === 0 ? sign * Infinity : Number.NaN;
|
||||||
|
}
|
||||||
|
return sign * Math.pow(2, exponent - 15) * (1 + (fraction / 1024));
|
||||||
|
}
|
||||||
|
|
||||||
|
function decodeCborItem(view: DataView, bytes: Uint8Array, state: DecodeState): CborValue {
|
||||||
|
if (state.offset >= bytes.length) throw new Error("CBOR payload truncated");
|
||||||
|
const initial = bytes[state.offset++];
|
||||||
|
if (initial === undefined) throw new Error("CBOR payload truncated");
|
||||||
|
const major = initial >> 5;
|
||||||
|
const additional = initial & 0x1f;
|
||||||
|
if (major === 0) return decodeCborUint(view, bytes, state, additional);
|
||||||
|
if (major === 1) return -1 - decodeCborUint(view, bytes, state, additional);
|
||||||
|
if (major === 2) {
|
||||||
|
const length = decodeCborUint(view, bytes, state, additional);
|
||||||
|
if (state.offset + length > bytes.length) throw new Error("CBOR payload truncated");
|
||||||
|
const chunk = bytes.slice(state.offset, state.offset + length);
|
||||||
|
state.offset += length;
|
||||||
|
return Array.from(chunk);
|
||||||
|
}
|
||||||
|
if (major === 3) {
|
||||||
|
const length = decodeCborUint(view, bytes, state, additional);
|
||||||
|
if (state.offset + length > bytes.length) throw new Error("CBOR payload truncated");
|
||||||
|
const chunk = bytes.subarray(state.offset, state.offset + length);
|
||||||
|
state.offset += length;
|
||||||
|
return textDecoder ? textDecoder.decode(chunk) : String.fromCharCode(...chunk);
|
||||||
|
}
|
||||||
|
if (major === 4) {
|
||||||
|
const length = decodeCborUint(view, bytes, state, additional);
|
||||||
|
const items: CborValue[] = new Array<CborValue>(length);
|
||||||
|
for (let i = 0; i < length; i += 1) {
|
||||||
|
items[i] = decodeCborItem(view, bytes, state);
|
||||||
|
}
|
||||||
|
return items;
|
||||||
|
}
|
||||||
|
if (major === 5) {
|
||||||
|
const length = decodeCborUint(view, bytes, state, additional);
|
||||||
|
const value: Record<string, CborValue> = {};
|
||||||
|
for (let i = 0; i < length; i += 1) {
|
||||||
|
const key = decodeCborItem(view, bytes, state);
|
||||||
|
const property = typeof key === "string" || typeof key === "number" || typeof key === "boolean"
|
||||||
|
? String(key)
|
||||||
|
: JSON.stringify(key);
|
||||||
|
value[property] = decodeCborItem(view, bytes, state);
|
||||||
|
}
|
||||||
|
return value;
|
||||||
|
}
|
||||||
|
if (major === 6) {
|
||||||
|
decodeCborUint(view, bytes, state, additional);
|
||||||
|
return decodeCborItem(view, bytes, state);
|
||||||
|
}
|
||||||
|
if (major === 7) {
|
||||||
|
if (additional === 20) return false;
|
||||||
|
if (additional === 21) return true;
|
||||||
|
if (additional === 22) return null;
|
||||||
|
if (additional === 23) return undefined;
|
||||||
|
if (additional === 25) {
|
||||||
|
if (state.offset + 2 > bytes.length) throw new Error("CBOR payload truncated");
|
||||||
|
const bits = view.getUint16(state.offset);
|
||||||
|
state.offset += 2;
|
||||||
|
return decodeCborFloat16(bits);
|
||||||
|
}
|
||||||
|
if (additional === 26) {
|
||||||
|
if (state.offset + 4 > bytes.length) throw new Error("CBOR payload truncated");
|
||||||
|
const value = view.getFloat32(state.offset);
|
||||||
|
state.offset += 4;
|
||||||
|
return value;
|
||||||
|
}
|
||||||
|
if (additional === 27) {
|
||||||
|
if (state.offset + 8 > bytes.length) throw new Error("CBOR payload truncated");
|
||||||
|
const value = view.getFloat64(state.offset);
|
||||||
|
state.offset += 8;
|
||||||
|
return value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
throw new Error("Unsupported CBOR major type");
|
||||||
|
}
|
||||||
|
|
||||||
|
function decodeCborPayload(buffer: ArrayBuffer | Uint8Array): CborValue {
|
||||||
|
const bytes = buffer instanceof Uint8Array ? buffer : new Uint8Array(buffer);
|
||||||
|
const view = new DataView(bytes.buffer, bytes.byteOffset, bytes.byteLength);
|
||||||
|
const state = { offset: 0 };
|
||||||
|
const value = decodeCborItem(view, bytes, state);
|
||||||
|
if (state.offset !== bytes.length) {
|
||||||
|
throw new Error("Unexpected trailing bytes in decode history payload");
|
||||||
|
}
|
||||||
|
return value;
|
||||||
|
}
|
||||||
|
|
||||||
|
function isHistory(value: CborValue): value is Partial<Record<HistoryGroup, CborValue[]>> {
|
||||||
|
return typeof value === "object" && value !== null && !Array.isArray(value);
|
||||||
|
}
|
||||||
|
|
||||||
|
async function fetchAndDecodeHistory(url: string, batchLimit?: number) {
|
||||||
|
workerScope.postMessage({ type: "status", phase: "fetching" });
|
||||||
|
const resp = await fetch(url, { credentials: "same-origin" });
|
||||||
|
if (!resp.ok) throw new Error(`History fetch failed: ${String(resp.status)}`);
|
||||||
|
const payload = await resp.arrayBuffer();
|
||||||
|
if (payload.byteLength === 0) {
|
||||||
|
workerScope.postMessage({ type: "start", total: 0 });
|
||||||
|
workerScope.postMessage({ type: "done", total: 0 });
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
workerScope.postMessage({ type: "status", phase: "decoding" });
|
||||||
|
const history = decodeCborPayload(payload);
|
||||||
|
const total = HISTORY_GROUP_KEYS.reduce((sum, key) => {
|
||||||
|
const items = isHistory(history) && Array.isArray(history[key]) ? history[key] : [];
|
||||||
|
return sum + items.length;
|
||||||
|
}, 0);
|
||||||
|
workerScope.postMessage({ type: "start", total });
|
||||||
|
|
||||||
|
let processed = 0;
|
||||||
|
const safeLimit = Math.max(1, Math.min(2048, Number(batchLimit) || 512));
|
||||||
|
|
||||||
|
for (const kind of HISTORY_GROUP_KEYS) {
|
||||||
|
const items = isHistory(history) && Array.isArray(history[kind]) ? history[kind] : [];
|
||||||
|
if (items.length === 0) continue;
|
||||||
|
for (let index = 0; index < items.length; index += safeLimit) {
|
||||||
|
const messages = items.slice(index, index + safeLimit);
|
||||||
|
processed += messages.length;
|
||||||
|
workerScope.postMessage({
|
||||||
|
type: "group",
|
||||||
|
kind,
|
||||||
|
messages,
|
||||||
|
processed,
|
||||||
|
total,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
workerScope.postMessage({ type: "done", total });
|
||||||
|
}
|
||||||
|
|
||||||
|
function isFetchHistoryRequest(value: unknown): value is FetchHistoryRequest {
|
||||||
|
return typeof value === "object" && value !== null && "type" in value && value.type === "fetch-history";
|
||||||
|
}
|
||||||
|
|
||||||
|
workerScope.onmessage = (event) => {
|
||||||
|
const data = event.data;
|
||||||
|
if (!isFetchHistoryRequest(data)) return;
|
||||||
|
fetchAndDecodeHistory(data.url || "/decode/history", data.batchLimit)
|
||||||
|
.catch((error: unknown) => {
|
||||||
|
workerScope.postMessage({
|
||||||
|
type: "error",
|
||||||
|
message: error instanceof Error ? error.message
|
||||||
|
: typeof error === "string" ? error : "unknown worker failure",
|
||||||
|
});
|
||||||
|
});
|
||||||
|
};
|
||||||
+39
@@ -0,0 +1,39 @@
|
|||||||
|
// SPDX-FileCopyrightText: 2026 Stan Grams <sjg@haxx.space>
|
||||||
|
//
|
||||||
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
|
export const TAB_ORDER = [
|
||||||
|
"main", "bookmarks", "digital-modes", "map", "statistics", "recorder", "settings", "about",
|
||||||
|
] as const;
|
||||||
|
|
||||||
|
export type TabName = typeof TAB_ORDER[number];
|
||||||
|
|
||||||
|
export const TAB_PATHS: Readonly<Record<TabName, string>> = {
|
||||||
|
main: "/",
|
||||||
|
bookmarks: "/bookmarks",
|
||||||
|
"digital-modes": "/digital-modes",
|
||||||
|
map: "/map",
|
||||||
|
statistics: "/statistics",
|
||||||
|
recorder: "/recorder",
|
||||||
|
settings: "/settings",
|
||||||
|
about: "/about",
|
||||||
|
};
|
||||||
|
|
||||||
|
export function normalizeTabPath(pathname: string): string {
|
||||||
|
const raw = pathname.length > 0 ? pathname : "/";
|
||||||
|
return raw === "/" ? "/" : raw.replace(/\/+$/, "") || "/";
|
||||||
|
}
|
||||||
|
|
||||||
|
export function tabFromPath(pathname: string): TabName {
|
||||||
|
const normalized = normalizeTabPath(pathname);
|
||||||
|
const match = Object.entries(TAB_PATHS).find(([, path]) => path === normalized);
|
||||||
|
return match ? match[0] as TabName : "main";
|
||||||
|
}
|
||||||
|
|
||||||
|
export function updateTabHistory(name: TabName, replace = false): void {
|
||||||
|
const targetPath = TAB_PATHS[name];
|
||||||
|
if (normalizeTabPath(window.location.pathname) === targetPath) return;
|
||||||
|
const nextUrl = `${targetPath}${window.location.search}${window.location.hash}`;
|
||||||
|
if (replace) window.history.replaceState({}, "", nextUrl);
|
||||||
|
else window.history.pushState({}, "", nextUrl);
|
||||||
|
}
|
||||||
+97
@@ -0,0 +1,97 @@
|
|||||||
|
// SPDX-FileCopyrightText: 2026 Stan Grams <sjg@haxx.space>
|
||||||
|
//
|
||||||
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
|
export interface SpectrumFrame {
|
||||||
|
bins: readonly number[] | ArrayBufferView;
|
||||||
|
center_hz: number;
|
||||||
|
sample_rate: number;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface InterferenceLevels { aci?: number; cci?: number }
|
||||||
|
export type BandwidthLimits = readonly [defaultHz: number, minHz: number, maxHz: number, stepHz: number];
|
||||||
|
|
||||||
|
function clampPercent(value: unknown): number {
|
||||||
|
const numeric = Number(value) || 0;
|
||||||
|
return Math.max(0, Math.min(100, numeric)) / 100;
|
||||||
|
}
|
||||||
|
|
||||||
|
export function estimateOccupiedBandwidth(
|
||||||
|
data: SpectrumFrame | null,
|
||||||
|
centerHz: number,
|
||||||
|
mode: string,
|
||||||
|
limits: BandwidthLimits,
|
||||||
|
interference: InterferenceLevels = {},
|
||||||
|
): number | null {
|
||||||
|
if (!data || !Array.isArray(data.bins) && !ArrayBuffer.isView(data.bins)
|
||||||
|
|| !Number.isFinite(centerHz)) return null;
|
||||||
|
|
||||||
|
const bins = Array.from(data.bins as ArrayLike<number>);
|
||||||
|
if (bins.length < 3) return null;
|
||||||
|
const maxIdx = bins.length - 1;
|
||||||
|
const hzPerBin = data.sample_rate / maxIdx;
|
||||||
|
const fullLoHz = data.center_hz - data.sample_rate / 2;
|
||||||
|
const centerIdx = Math.max(
|
||||||
|
1,
|
||||||
|
Math.min(maxIdx - 1, Math.round(((centerHz - fullLoHz) / data.sample_rate) * maxIdx)),
|
||||||
|
);
|
||||||
|
const normalizedMode = mode.toUpperCase();
|
||||||
|
const [defaultBw, minBw, maxBw, stepBw] = limits;
|
||||||
|
const oneSided = ["USB", "DIG", "CW"].includes(normalizedMode)
|
||||||
|
? 1 : ["LSB", "CWR"].includes(normalizedMode) ? -1 : 0;
|
||||||
|
const isWfm = normalizedMode === "WFM";
|
||||||
|
const smoothRadius = isWfm ? 3 : 1;
|
||||||
|
const smoothed = bins.map((_, index) => {
|
||||||
|
let sum = 0;
|
||||||
|
let count = 0;
|
||||||
|
for (let adjacent = Math.max(0, index - smoothRadius);
|
||||||
|
adjacent <= Math.min(maxIdx, index + smoothRadius); adjacent += 1) {
|
||||||
|
sum += bins[adjacent] ?? 0;
|
||||||
|
count += 1;
|
||||||
|
}
|
||||||
|
return sum / count;
|
||||||
|
});
|
||||||
|
const sorted = [...bins].sort((left, right) => left - right);
|
||||||
|
const noise = sorted[Math.floor(sorted.length * 0.2)] ?? -Infinity;
|
||||||
|
const maxSpanBins = Math.max(2, Math.ceil(maxBw / hzPerBin));
|
||||||
|
const searchHalfBins = oneSided === 0 ? Math.ceil(maxSpanBins / 2) : maxSpanBins;
|
||||||
|
const searchLo = Math.max(1, centerIdx - (oneSided > 0 ? 2 : searchHalfBins));
|
||||||
|
const searchHi = Math.min(maxIdx - 1, centerIdx + (oneSided < 0 ? 2 : searchHalfBins));
|
||||||
|
let peak = -Infinity;
|
||||||
|
for (let index = searchLo; index <= searchHi; index += 1) {
|
||||||
|
peak = Math.max(peak, smoothed[index] ?? -Infinity);
|
||||||
|
}
|
||||||
|
const snr = peak - noise;
|
||||||
|
if (!Number.isFinite(snr) || snr < (isWfm ? 5 : 4)) return isWfm ? minBw : defaultBw;
|
||||||
|
|
||||||
|
const threshold = noise + Math.max(3, Math.min(isWfm ? 6 : 10, snr * (isWfm ? 0.18 : 0.28)));
|
||||||
|
const allowedGap = Math.max(isWfm ? 4 : 2, Math.ceil((isWfm ? 12_000 : stepBw) / hzPerBin));
|
||||||
|
const occupiedExtent = (direction: -1 | 1, limitBins: number): number => {
|
||||||
|
let lastOccupied = centerIdx;
|
||||||
|
let gap = 0;
|
||||||
|
for (let offset = 0; offset <= limitBins; offset += 1) {
|
||||||
|
const index = centerIdx + direction * offset;
|
||||||
|
if (index <= 0 || index >= maxIdx) break;
|
||||||
|
if ((smoothed[index] ?? -Infinity) >= threshold) {
|
||||||
|
lastOccupied = index;
|
||||||
|
gap = 0;
|
||||||
|
} else if (++gap > allowedGap) break;
|
||||||
|
}
|
||||||
|
return Math.abs(lastOccupied - centerIdx) * hzPerBin;
|
||||||
|
};
|
||||||
|
|
||||||
|
let rawBw = oneSided !== 0
|
||||||
|
? occupiedExtent(oneSided, maxSpanBins)
|
||||||
|
: 2 * Math.max(occupiedExtent(-1, searchHalfBins), occupiedExtent(1, searchHalfBins));
|
||||||
|
rawBw *= isWfm ? 1.08 : 1.12;
|
||||||
|
if (isWfm) {
|
||||||
|
const aci = clampPercent(interference.aci);
|
||||||
|
const cci = clampPercent(interference.cci);
|
||||||
|
const aciCap = maxBw - (maxBw - minBw) * aci;
|
||||||
|
const cciFloor = minBw + (defaultBw - minBw) * 0.65;
|
||||||
|
const cciCap = maxBw - (maxBw - cciFloor) * cci;
|
||||||
|
rawBw = Math.min(rawBw, aciCap, cciCap);
|
||||||
|
}
|
||||||
|
const clamped = Math.max(minBw, Math.min(maxBw, rawBw));
|
||||||
|
return Math.max(stepBw, Math.round(clamped / stepBw) * stepBw);
|
||||||
|
}
|
||||||
+163
@@ -0,0 +1,163 @@
|
|||||||
|
// SPDX-FileCopyrightText: 2026 Stan Grams <sjg@haxx.space>
|
||||||
|
//
|
||||||
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
|
export {};
|
||||||
|
|
||||||
|
interface AisSymbolOptions {
|
||||||
|
heading: number | null;
|
||||||
|
course: number | null;
|
||||||
|
speed: number | null;
|
||||||
|
color: string;
|
||||||
|
outline: string;
|
||||||
|
size: number;
|
||||||
|
interactive: boolean;
|
||||||
|
keyboard: boolean;
|
||||||
|
riseOnHover: boolean;
|
||||||
|
icon?: unknown;
|
||||||
|
}
|
||||||
|
interface LeafletMapAdapter { on(event: string, listener: () => void): void; off(event: string, listener: () => void): void; getZoom(): number }
|
||||||
|
interface TrackSymbolInstance {
|
||||||
|
options: AisSymbolOptions;
|
||||||
|
_icon?: HTMLElement;
|
||||||
|
_map?: LeafletMapAdapter;
|
||||||
|
_boundZoomRefresh?: (() => void) | null;
|
||||||
|
_refreshIcon(): void;
|
||||||
|
}
|
||||||
|
interface TrackSymbolConstructor { new(latlng: unknown, options?: Partial<AisSymbolOptions>): TrackSymbolInstance }
|
||||||
|
interface LeafletAdapter {
|
||||||
|
Marker: {
|
||||||
|
extend(definition: object & ThisType<TrackSymbolInstance>): TrackSymbolConstructor;
|
||||||
|
prototype: {
|
||||||
|
initialize(this: TrackSymbolInstance, latlng: unknown, options: AisSymbolOptions): void;
|
||||||
|
onAdd(this: TrackSymbolInstance, map: LeafletMapAdapter): void;
|
||||||
|
onRemove(this: TrackSymbolInstance, map: LeafletMapAdapter): void;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
Util: { extend<T extends object>(target: T, ...sources: object[]): T };
|
||||||
|
divIcon(options: object): unknown;
|
||||||
|
TrxAisTrackSymbol?: TrackSymbolConstructor;
|
||||||
|
trxAisTrackSymbol?: (latlng: unknown, options?: Partial<AisSymbolOptions>) => TrackSymbolInstance;
|
||||||
|
}
|
||||||
|
|
||||||
|
(function() {
|
||||||
|
const leaflet = (globalThis as unknown as { L?: LeafletAdapter }).L;
|
||||||
|
if (!leaflet) return;
|
||||||
|
|
||||||
|
function clamp(value: number, min: number, max: number): number {
|
||||||
|
return Math.max(min, Math.min(max, value));
|
||||||
|
}
|
||||||
|
|
||||||
|
function finiteAngle(value: number | null): number | null {
|
||||||
|
if (value === null || !Number.isFinite(value)) return null;
|
||||||
|
const normalized = ((value % 360) + 360) % 360;
|
||||||
|
return normalized;
|
||||||
|
}
|
||||||
|
|
||||||
|
function svgColor(value: string, fallback: string): string {
|
||||||
|
const text = value || fallback || "";
|
||||||
|
return text.replace(/"/g, """);
|
||||||
|
}
|
||||||
|
|
||||||
|
function buildSymbolHtml(options: AisSymbolOptions, zoom: number): string {
|
||||||
|
const heading = finiteAngle(options.heading);
|
||||||
|
const course = finiteAngle(options.course);
|
||||||
|
const angle = heading != null ? heading : course;
|
||||||
|
const speed = Number.isFinite(options.speed) ? Math.max(0, Number(options.speed)) : 0;
|
||||||
|
const sizeBase = Number.isFinite(options.size) ? options.size : 22;
|
||||||
|
const zoomBoost = zoom >= 12 ? 4 : zoom >= 9 ? 2 : 0;
|
||||||
|
const size = clamp(sizeBase + zoomBoost, 16, 32);
|
||||||
|
const courseLen = course != null ? clamp(size * (0.55 + Math.min(speed, 30) / 30), size * 0.55, size * 1.2) : 0;
|
||||||
|
const color = svgColor(options.color, "#ff7559");
|
||||||
|
const outline = svgColor(options.outline, "#6b2118");
|
||||||
|
|
||||||
|
const body = angle != null
|
||||||
|
? `<g transform="translate(${size / 2} ${size / 2}) rotate(${angle}) translate(${-size / 2} ${-size / 2})">` +
|
||||||
|
`<path d="M ${size * 0.5} ${size * 0.06} L ${size * 0.82} ${size * 0.78} L ${size * 0.5} ${size * 0.62} L ${size * 0.18} ${size * 0.78} Z" fill="${color}" stroke="${outline}" stroke-width="1.2" stroke-linejoin="round" />` +
|
||||||
|
`</g>`
|
||||||
|
: `<path d="M ${size * 0.5} ${size * 0.12} L ${size * 0.88} ${size * 0.5} L ${size * 0.5} ${size * 0.88} L ${size * 0.12} ${size * 0.5} Z" fill="${color}" stroke="${outline}" stroke-width="1.2" stroke-linejoin="round" />`;
|
||||||
|
|
||||||
|
const courseLine = course != null
|
||||||
|
? `<g transform="translate(${size / 2} ${size / 2}) rotate(${course})">` +
|
||||||
|
`<line x1="0" y1="${-size * 0.22}" x2="0" y2="${-(size * 0.22 + courseLen)}" stroke="${color}" stroke-width="1.4" stroke-linecap="round" opacity="0.75" />` +
|
||||||
|
`</g>`
|
||||||
|
: "";
|
||||||
|
|
||||||
|
return (
|
||||||
|
`<svg xmlns="http://www.w3.org/2000/svg" width="${size}" height="${size}" viewBox="0 0 ${size} ${size}" aria-hidden="true">` +
|
||||||
|
courseLine +
|
||||||
|
body +
|
||||||
|
`</svg>`
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
leaflet.TrxAisTrackSymbol = leaflet.Marker.extend({
|
||||||
|
options: {
|
||||||
|
heading: null,
|
||||||
|
course: null,
|
||||||
|
speed: null,
|
||||||
|
color: "#ff7559",
|
||||||
|
outline: "#6b2118",
|
||||||
|
size: 22,
|
||||||
|
interactive: true,
|
||||||
|
keyboard: true,
|
||||||
|
riseOnHover: true,
|
||||||
|
},
|
||||||
|
|
||||||
|
initialize: function(latlng: unknown, options?: Partial<AisSymbolOptions>) {
|
||||||
|
const merged = leaflet.Util.extend({} as AisSymbolOptions, this.options, options || {});
|
||||||
|
merged.icon = leaflet.divIcon({
|
||||||
|
className: "trx-ais-track-symbol-icon",
|
||||||
|
html: "",
|
||||||
|
iconSize: [merged.size, merged.size],
|
||||||
|
iconAnchor: [merged.size / 2, merged.size / 2],
|
||||||
|
});
|
||||||
|
leaflet.Marker.prototype.initialize.call(this, latlng, merged);
|
||||||
|
},
|
||||||
|
|
||||||
|
onAdd: function(map: LeafletMapAdapter) {
|
||||||
|
leaflet.Marker.prototype.onAdd.call(this, map);
|
||||||
|
this._refreshIcon();
|
||||||
|
this._boundZoomRefresh = this._refreshIcon.bind(this);
|
||||||
|
map.on("zoomend", this._boundZoomRefresh);
|
||||||
|
},
|
||||||
|
|
||||||
|
onRemove: function(map: LeafletMapAdapter) {
|
||||||
|
if (this._boundZoomRefresh) {
|
||||||
|
map.off("zoomend", this._boundZoomRefresh);
|
||||||
|
this._boundZoomRefresh = null;
|
||||||
|
}
|
||||||
|
leaflet.Marker.prototype.onRemove.call(this, map);
|
||||||
|
},
|
||||||
|
|
||||||
|
setAisState: function(next: Partial<AisSymbolOptions>) {
|
||||||
|
if ("heading" in next) this.options.heading = next.heading;
|
||||||
|
if ("course" in next) this.options.course = next.course;
|
||||||
|
if ("speed" in next) this.options.speed = next.speed;
|
||||||
|
if ("color" in next) this.options.color = next.color;
|
||||||
|
if ("outline" in next) this.options.outline = next.outline;
|
||||||
|
this._refreshIcon();
|
||||||
|
return this;
|
||||||
|
},
|
||||||
|
|
||||||
|
_refreshIcon: function() {
|
||||||
|
if (!this._icon) return;
|
||||||
|
const zoom = this._map && typeof this._map.getZoom === "function" ? this._map.getZoom() : 0;
|
||||||
|
const html = buildSymbolHtml(this.options, zoom);
|
||||||
|
this._icon.innerHTML = html;
|
||||||
|
const sizeBase = Number.isFinite(this.options.size) ? this.options.size : 22;
|
||||||
|
const zoomBoost = zoom >= 12 ? 4 : zoom >= 9 ? 2 : 0;
|
||||||
|
const size = clamp(sizeBase + zoomBoost, 16, 32);
|
||||||
|
this._icon.style.width = `${size}px`;
|
||||||
|
this._icon.style.height = `${size}px`;
|
||||||
|
this._icon.style.marginLeft = `${-size / 2}px`;
|
||||||
|
this._icon.style.marginTop = `${-size / 2}px`;
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
leaflet.trxAisTrackSymbol = function(latlng: unknown, options?: Partial<AisSymbolOptions>) {
|
||||||
|
const Constructor = leaflet.TrxAisTrackSymbol;
|
||||||
|
if (!Constructor) throw new Error("AIS track symbol constructor is unavailable");
|
||||||
|
return new Constructor(latlng, options);
|
||||||
|
};
|
||||||
|
})();
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,56 @@
|
|||||||
|
// SPDX-FileCopyrightText: 2026 Stan Grams <sjg@haxx.space>
|
||||||
|
//
|
||||||
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
|
type PluginGroup = "digital-modes" | "map-data" | "map" | "statistics" | "bookmarks" | "recorder" | "settings";
|
||||||
|
|
||||||
|
const pluginGroups: Readonly<Record<PluginGroup, readonly string[]>> = {
|
||||||
|
"digital-modes": ["/ft8.js", "/ft4.js", "/ft2.js", "/wspr.js", "/cw.js", "/background-decode.js", "/sat.js", "/wefax.js"],
|
||||||
|
"map-data": ["/map-core.js", "/ais.js", "/vdes.js", "/aprs.js", "/hf-aprs.js"],
|
||||||
|
map: ["/map-core.js", "/ais.js", "/vdes.js", "/aprs.js", "/hf-aprs.js", "/sat.js", "/sat-scheduler.js"],
|
||||||
|
statistics: ["/map-core.js"],
|
||||||
|
bookmarks: ["/bookmarks.js"],
|
||||||
|
recorder: [],
|
||||||
|
settings: ["/vchan.js", "/scheduler.js"],
|
||||||
|
};
|
||||||
|
|
||||||
|
const loaded = new Set<string>();
|
||||||
|
const loading = new Map<string, Promise<void>>();
|
||||||
|
async function loadPlugin(path: string): Promise<void> {
|
||||||
|
if (loaded.has(path)) return;
|
||||||
|
const pending = loading.get(path);
|
||||||
|
if (pending) return pending;
|
||||||
|
const request = import(path).then(() => {
|
||||||
|
loaded.add(path);
|
||||||
|
loading.delete(path);
|
||||||
|
}).catch((error: unknown) => {
|
||||||
|
loading.delete(path);
|
||||||
|
throw new Error(`Failed to load plugin module: ${path}`, { cause: error });
|
||||||
|
});
|
||||||
|
loading.set(path, request);
|
||||||
|
return request;
|
||||||
|
}
|
||||||
|
|
||||||
|
async function loadPlugins(group: string): Promise<void> {
|
||||||
|
if (!(group in pluginGroups)) return;
|
||||||
|
for (const path of pluginGroups[group as PluginGroup]) await loadPlugin(path);
|
||||||
|
}
|
||||||
|
|
||||||
|
function requestPlugins(group: string): void {
|
||||||
|
void loadPlugins(group).catch((error: unknown) => { console.error(error); });
|
||||||
|
}
|
||||||
|
|
||||||
|
const loaderWindow = window as typeof window & {
|
||||||
|
loadEagerPlugins?: () => Promise<void>;
|
||||||
|
loadPluginsForTab?: (tab: string) => Promise<void>;
|
||||||
|
};
|
||||||
|
loaderWindow.loadEagerPlugins = async () => {
|
||||||
|
await Promise.all(["digital-modes", "map-data", "bookmarks", "settings"].map(loadPlugins));
|
||||||
|
};
|
||||||
|
loaderWindow.loadPluginsForTab = loadPlugins;
|
||||||
|
|
||||||
|
document.addEventListener("click", (event) => {
|
||||||
|
if (!(event.target instanceof Element)) return;
|
||||||
|
const tab = event.target.closest<HTMLElement>("[data-tab]")?.dataset.tab;
|
||||||
|
if (tab) requestPlugins(tab);
|
||||||
|
});
|
||||||
@@ -0,0 +1,88 @@
|
|||||||
|
// SPDX-FileCopyrightText: 2026 Stan Grams <sjg@haxx.space>
|
||||||
|
//
|
||||||
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
|
import type { DecoderPlugin, PluginRuntimeWindow, TrxPluginRuntime } from "./plugins/runtime-contract";
|
||||||
|
|
||||||
|
type QueuedAction =
|
||||||
|
| { kind: "message"; payload: unknown }
|
||||||
|
| { kind: "batch" | "restore"; payload: unknown[] };
|
||||||
|
|
||||||
|
const decoders = new Map<string, DecoderPlugin>();
|
||||||
|
const queued = new Map<string, QueuedAction[]>();
|
||||||
|
const MAX_QUEUED_ACTIONS_PER_DECODER = 512;
|
||||||
|
|
||||||
|
function enqueue(id: string, action: QueuedAction): void {
|
||||||
|
const actions = queued.get(id) ?? [];
|
||||||
|
actions.push(action);
|
||||||
|
if (actions.length > MAX_QUEUED_ACTIONS_PER_DECODER) actions.splice(0, actions.length - MAX_QUEUED_ACTIONS_PER_DECODER);
|
||||||
|
queued.set(id, actions);
|
||||||
|
}
|
||||||
|
|
||||||
|
function deliver(plugin: DecoderPlugin, action: QueuedAction): boolean {
|
||||||
|
if (action.kind === "message" && plugin.onMessage) {
|
||||||
|
plugin.onMessage(action.payload);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
if (action.kind === "batch" && plugin.onBatch) {
|
||||||
|
plugin.onBatch(action.payload);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
if (action.kind === "restore" && plugin.restore) {
|
||||||
|
plugin.restore(action.payload);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
function dispatchOrQueue(id: string, action: QueuedAction): boolean {
|
||||||
|
const plugin = decoders.get(id);
|
||||||
|
if (!plugin) {
|
||||||
|
enqueue(id, action);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if (!deliver(plugin, action)) {
|
||||||
|
if (action.kind === "batch" && plugin.onMessage) {
|
||||||
|
for (const message of action.payload) plugin.onMessage(message);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
if (action.kind === "restore" && plugin.onBatch) {
|
||||||
|
plugin.onBatch(action.payload);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
const runtime: TrxPluginRuntime = {
|
||||||
|
registerDecoder<TMessage>(plugin: DecoderPlugin<TMessage>): () => void {
|
||||||
|
if (decoders.has(plugin.id)) throw new Error(`Decoder plugin already registered: ${plugin.id}`);
|
||||||
|
const erased = plugin as DecoderPlugin;
|
||||||
|
decoders.set(plugin.id, erased);
|
||||||
|
const pending = queued.get(plugin.id) ?? [];
|
||||||
|
queued.delete(plugin.id);
|
||||||
|
for (const action of pending) deliver(erased, action);
|
||||||
|
return () => { if (decoders.get(plugin.id) === erased) decoders.delete(plugin.id); };
|
||||||
|
},
|
||||||
|
dispatch: (id, message) => dispatchOrQueue(id, { kind: "message", payload: message }),
|
||||||
|
dispatchBatch: (id, messages) => dispatchOrQueue(id, { kind: "batch", payload: messages }),
|
||||||
|
restore: (id, messages) => dispatchOrQueue(id, { kind: "restore", payload: messages }),
|
||||||
|
reset(id) {
|
||||||
|
const plugin = decoders.get(id);
|
||||||
|
if (!plugin?.reset) return false;
|
||||||
|
plugin.reset();
|
||||||
|
return true;
|
||||||
|
},
|
||||||
|
resetAll() { for (const plugin of decoders.values()) plugin.reset?.(); },
|
||||||
|
prune(id) {
|
||||||
|
const plugin = decoders.get(id);
|
||||||
|
if (!plugin?.prune) return false;
|
||||||
|
plugin.prune();
|
||||||
|
return true;
|
||||||
|
},
|
||||||
|
clearQueued() { queued.clear(); },
|
||||||
|
hasDecoder: (id) => decoders.has(id),
|
||||||
|
};
|
||||||
|
|
||||||
|
(window as unknown as PluginRuntimeWindow).trxPluginRuntime = runtime;
|
||||||
@@ -0,0 +1,435 @@
|
|||||||
|
// SPDX-FileCopyrightText: 2026 Stan Grams <sjg@haxx.space>
|
||||||
|
//
|
||||||
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
|
export {};
|
||||||
|
|
||||||
|
import type { PluginRuntimeWindow } from "./runtime-contract";
|
||||||
|
|
||||||
|
interface AisMessage {
|
||||||
|
rig_id?: string | null;
|
||||||
|
channel?: string | null;
|
||||||
|
message_type?: number | null;
|
||||||
|
mmsi?: number | null;
|
||||||
|
lat?: number | null;
|
||||||
|
lon?: number | null;
|
||||||
|
sog_knots?: number | null;
|
||||||
|
cog_deg?: number | null;
|
||||||
|
heading_deg?: number | null;
|
||||||
|
vessel_name?: string | null;
|
||||||
|
callsign?: string | null;
|
||||||
|
destination?: string | null;
|
||||||
|
ts_ms?: number | null;
|
||||||
|
_tsMs?: number;
|
||||||
|
_ts?: string;
|
||||||
|
}
|
||||||
|
interface AisChannelInfo { label: string; badgeClass: string; freqText: string }
|
||||||
|
interface AisBridge {
|
||||||
|
getDecodeHistoryRetentionMs?: () => number;
|
||||||
|
trxScheduleUiFrameJob?: (key: string, job: () => void) => void;
|
||||||
|
escapeMapHtml?: (input: string) => string;
|
||||||
|
buildAisVesselUrl?: (mmsi: number | null | undefined) => string | null;
|
||||||
|
serverLat?: number | null;
|
||||||
|
serverLon?: number | null;
|
||||||
|
haversineKm?: (lat1: number, lon1: number, lat2: number, lon2: number) => number;
|
||||||
|
aisMapAddVessel?: (message: AisMessage) => void;
|
||||||
|
clearMapMarkersByType?: (type: string) => void;
|
||||||
|
postPath?: (path: string) => Promise<unknown>;
|
||||||
|
trxUi: { confirm(options: { title: string; message: string; confirmLabel: string }): Promise<boolean> };
|
||||||
|
updateAisBar?: () => void;
|
||||||
|
clearAisBar?: () => void;
|
||||||
|
}
|
||||||
|
const aisWindow = window as unknown as AisBridge;
|
||||||
|
const escapeAisHtml = (input: string): string => aisWindow.escapeMapHtml?.(input) ?? input
|
||||||
|
.replaceAll("&", "&").replaceAll("<", "<")
|
||||||
|
.replaceAll(">", ">").replaceAll('"', """);
|
||||||
|
|
||||||
|
// --- AIS Decoder Plugin (server-side decode) ---
|
||||||
|
const aisStatus = document.getElementById("ais-status");
|
||||||
|
const aisMessagesEl = document.getElementById("ais-messages");
|
||||||
|
const aisFilterInput = document.getElementById("ais-filter") as HTMLInputElement | null;
|
||||||
|
const aisBarOverlay = document.getElementById("ais-bar-overlay");
|
||||||
|
const aisChannelSummaryEl = document.getElementById("ais-channel-summary");
|
||||||
|
const aisVesselCountEl = document.getElementById("ais-vessel-count");
|
||||||
|
const aisLatestSeenEl = document.getElementById("ais-latest-seen");
|
||||||
|
const AIS_BAR_WINDOW_MS = 15 * 60 * 1000;
|
||||||
|
const AIS_DEFAULT_A_HZ = 161_975_000;
|
||||||
|
const AIS_CHANNEL_SPACING_HZ = 50_000;
|
||||||
|
let aisFilterText = "";
|
||||||
|
let aisMessageHistory: AisMessage[] = [];
|
||||||
|
|
||||||
|
function currentAisHistoryRetentionMs(): number {
|
||||||
|
return typeof aisWindow.getDecodeHistoryRetentionMs === "function"
|
||||||
|
? aisWindow.getDecodeHistoryRetentionMs()
|
||||||
|
: 24 * 60 * 60 * 1000;
|
||||||
|
}
|
||||||
|
|
||||||
|
function pruneAisMessageHistory() {
|
||||||
|
const cutoffMs = Date.now() - currentAisHistoryRetentionMs();
|
||||||
|
aisMessageHistory = aisMessageHistory.filter((msg) => (msg._tsMs ?? 0) >= cutoffMs);
|
||||||
|
}
|
||||||
|
|
||||||
|
function scheduleAisUi(key: string, job: () => void): void {
|
||||||
|
if (typeof aisWindow.trxScheduleUiFrameJob === "function") {
|
||||||
|
aisWindow.trxScheduleUiFrameJob(key, job);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
job();
|
||||||
|
}
|
||||||
|
|
||||||
|
function scheduleAisHistoryRender() {
|
||||||
|
scheduleAisUi("ais-history", () => { renderAisHistory(); });
|
||||||
|
}
|
||||||
|
|
||||||
|
function scheduleAisBarUpdate() {
|
||||||
|
scheduleAisUi("ais-bar", () => { updateAisBar(); });
|
||||||
|
}
|
||||||
|
|
||||||
|
function formatAisMhz(freqHz: number): string {
|
||||||
|
return `${(freqHz / 1_000_000).toFixed(3)} MHz`;
|
||||||
|
}
|
||||||
|
|
||||||
|
function currentAisChannelPlan(): { aHz: number; bHz: number } {
|
||||||
|
const raw = ((document.getElementById("freq") as HTMLInputElement | null)?.value || "").replace(/[^\d]/g, "");
|
||||||
|
const aHz = raw ? Number(raw) : AIS_DEFAULT_A_HZ;
|
||||||
|
const safeAHz = Number.isFinite(aHz) && aHz > 0 ? aHz : AIS_DEFAULT_A_HZ;
|
||||||
|
return {
|
||||||
|
aHz: safeAHz,
|
||||||
|
bHz: safeAHz + AIS_CHANNEL_SPACING_HZ,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
function aisChannelInfo(channel: string | null | undefined): AisChannelInfo {
|
||||||
|
const plan = currentAisChannelPlan();
|
||||||
|
const ch = (channel ?? "").trim().toUpperCase();
|
||||||
|
if (ch === "B") {
|
||||||
|
return {
|
||||||
|
label: "AIS-B",
|
||||||
|
badgeClass: "ais-badge ais-badge-channel-b",
|
||||||
|
freqText: formatAisMhz(plan.bHz),
|
||||||
|
};
|
||||||
|
}
|
||||||
|
return {
|
||||||
|
label: "AIS-A",
|
||||||
|
badgeClass: "ais-badge ais-badge-channel-a",
|
||||||
|
freqText: formatAisMhz(plan.aHz),
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
function aisDisplayName(msg: AisMessage): string {
|
||||||
|
return msg.vessel_name || msg.callsign || `MMSI ${msg.mmsi}`;
|
||||||
|
}
|
||||||
|
|
||||||
|
function aisDisplayNameHtml(msg: AisMessage): string {
|
||||||
|
const label = escapeAisHtml(aisDisplayName(msg));
|
||||||
|
const url = aisWindow.buildAisVesselUrl?.(msg.mmsi) ?? null;
|
||||||
|
if (!url) return label;
|
||||||
|
return `<a class="title-link" href="${escapeAisHtml(url)}" target="_blank" rel="noopener">${label}</a>`;
|
||||||
|
}
|
||||||
|
|
||||||
|
function aisTypeLabel(type: number | null | undefined): string {
|
||||||
|
switch (Number(type)) {
|
||||||
|
case 1:
|
||||||
|
case 2:
|
||||||
|
case 3:
|
||||||
|
return "Class A Position";
|
||||||
|
case 4:
|
||||||
|
return "Base Station";
|
||||||
|
case 5:
|
||||||
|
return "Static/Voyage";
|
||||||
|
case 18:
|
||||||
|
return "Class B Position";
|
||||||
|
case 19:
|
||||||
|
return "Class B Extended";
|
||||||
|
case 21:
|
||||||
|
return "Aid to Nav";
|
||||||
|
case 24:
|
||||||
|
return "Class B Static";
|
||||||
|
default:
|
||||||
|
return `Type ${type ?? "--"}`;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function aisAgeText(tsMs: number | undefined): string {
|
||||||
|
if (typeof tsMs !== "number" || !Number.isFinite(tsMs)) return "just now";
|
||||||
|
const deltaMs = Math.max(0, Date.now() - tsMs);
|
||||||
|
const seconds = Math.round(deltaMs / 1000);
|
||||||
|
if (seconds < 5) return "just now";
|
||||||
|
if (seconds < 60) return `${seconds}s ago`;
|
||||||
|
const minutes = Math.round(seconds / 60);
|
||||||
|
if (minutes < 60) return `${minutes}m ago`;
|
||||||
|
const hours = Math.round(minutes / 60);
|
||||||
|
return `${hours}h ago`;
|
||||||
|
}
|
||||||
|
|
||||||
|
function aisMotionText(msg: AisMessage): string {
|
||||||
|
const parts = [
|
||||||
|
msg.sog_knots != null ? `${msg.sog_knots.toFixed(1)} kn` : null,
|
||||||
|
msg.cog_deg != null ? `${msg.cog_deg.toFixed(1)}° COG` : null,
|
||||||
|
msg.heading_deg != null ? `${msg.heading_deg.toFixed(0)}° HDG` : null,
|
||||||
|
].filter(Boolean);
|
||||||
|
return parts.join(" · ");
|
||||||
|
}
|
||||||
|
|
||||||
|
function aisRouteText(msg: AisMessage): string {
|
||||||
|
return [msg.callsign, msg.destination].filter(Boolean).join(" -> ");
|
||||||
|
}
|
||||||
|
|
||||||
|
function aisDistanceText(msg: AisMessage): string {
|
||||||
|
if (aisWindow.serverLat == null || aisWindow.serverLon == null || msg.lat == null || msg.lon == null || !aisWindow.haversineKm) {
|
||||||
|
return "";
|
||||||
|
}
|
||||||
|
const distKm = aisWindow.haversineKm(aisWindow.serverLat, aisWindow.serverLon, msg.lat, msg.lon);
|
||||||
|
if (!Number.isFinite(distKm)) return "";
|
||||||
|
if (distKm < 1) return `${Math.round(distKm * 1000)} m from TRX`;
|
||||||
|
return `${distKm.toFixed(1)} km from TRX`;
|
||||||
|
}
|
||||||
|
|
||||||
|
function aisLatestByVessel(messages: AisMessage[]): AisMessage[] {
|
||||||
|
const byMmsi = new Map<string, AisMessage>();
|
||||||
|
for (const msg of messages) {
|
||||||
|
const key = Number.isFinite(msg.mmsi) ? String(msg.mmsi) : `${msg.channel || "?"}:${msg._tsMs || 0}`;
|
||||||
|
if (!byMmsi.has(key)) byMmsi.set(key, msg);
|
||||||
|
}
|
||||||
|
return Array.from(byMmsi.values());
|
||||||
|
}
|
||||||
|
|
||||||
|
function updateAisSummary() {
|
||||||
|
const plan = currentAisChannelPlan();
|
||||||
|
if (aisChannelSummaryEl) {
|
||||||
|
aisChannelSummaryEl.textContent = `A ${formatAisMhz(plan.aHz)} · B ${formatAisMhz(plan.bHz)}`;
|
||||||
|
}
|
||||||
|
|
||||||
|
const vessels = aisLatestByVessel(aisMessageHistory);
|
||||||
|
if (aisVesselCountEl) {
|
||||||
|
const count = vessels.length;
|
||||||
|
aisVesselCountEl.textContent = `${count} vessel${count === 1 ? "" : "s"}`;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (aisLatestSeenEl) {
|
||||||
|
const latest = aisMessageHistory[0];
|
||||||
|
if (!latest) {
|
||||||
|
aisLatestSeenEl.textContent = "No traffic yet";
|
||||||
|
} else {
|
||||||
|
const channel = aisChannelInfo(latest.channel);
|
||||||
|
aisLatestSeenEl.textContent = `${channel.label} ${aisAgeText(latest._tsMs)}`;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function renderAisRow(msg: AisMessage): HTMLElement {
|
||||||
|
const row = document.createElement("div");
|
||||||
|
row.className = "ais-message";
|
||||||
|
const ts = msg._ts || new Date().toLocaleTimeString([], {
|
||||||
|
hour: "2-digit",
|
||||||
|
minute: "2-digit",
|
||||||
|
second: "2-digit",
|
||||||
|
});
|
||||||
|
const name = aisDisplayName(msg);
|
||||||
|
const nameHtml = aisDisplayNameHtml(msg);
|
||||||
|
const channel = aisChannelInfo(msg.channel);
|
||||||
|
const motion = aisMotionText(msg);
|
||||||
|
const route = aisRouteText(msg);
|
||||||
|
const distance = aisDistanceText(msg);
|
||||||
|
const pos = msg.lat != null && msg.lon != null
|
||||||
|
? `<a class="ais-pos-link" href="javascript:void(0)" onclick="window.navigateToAprsMap(${msg.lat},${msg.lon})">${msg.lat.toFixed(4)}, ${msg.lon.toFixed(4)}</a>`
|
||||||
|
: "";
|
||||||
|
row.dataset.filterText = [
|
||||||
|
name,
|
||||||
|
msg.mmsi,
|
||||||
|
msg.channel,
|
||||||
|
channel.label,
|
||||||
|
msg.vessel_name,
|
||||||
|
msg.callsign,
|
||||||
|
msg.destination,
|
||||||
|
aisTypeLabel(msg.message_type),
|
||||||
|
]
|
||||||
|
.filter(Boolean)
|
||||||
|
.join(" ")
|
||||||
|
.toUpperCase();
|
||||||
|
row.innerHTML =
|
||||||
|
`<div class="ais-row-head">` +
|
||||||
|
`<span class="ais-time">${ts}</span>` +
|
||||||
|
`<span class="ais-call">${nameHtml}</span>` +
|
||||||
|
`<span class="${channel.badgeClass}">${escapeAisHtml(channel.label)}</span>` +
|
||||||
|
`<span class="ais-badge ais-badge-type">${escapeAisHtml(aisTypeLabel(msg.message_type))}</span>` +
|
||||||
|
`</div>` +
|
||||||
|
`<div class="ais-row-meta">` +
|
||||||
|
`<span>MMSI ${escapeAisHtml(String(msg.mmsi))}</span>` +
|
||||||
|
(route ? `<span class="ais-meta-text">${escapeAisHtml(route)}</span>` : "") +
|
||||||
|
`<span class="ais-meta-text">${escapeAisHtml(channel.freqText)}</span>` +
|
||||||
|
`</div>` +
|
||||||
|
`<div class="ais-row-detail">` +
|
||||||
|
(motion ? `<span>${escapeAisHtml(motion)}</span>` : `<span>No motion data</span>`) +
|
||||||
|
(distance ? `<span>${escapeAisHtml(distance)}</span>` : "") +
|
||||||
|
(pos ? `<span>${pos}</span>` : "") +
|
||||||
|
`<span>${escapeAisHtml(aisAgeText(msg._tsMs))}</span>` +
|
||||||
|
`</div>`;
|
||||||
|
applyAisFilterToRow(row);
|
||||||
|
return row;
|
||||||
|
}
|
||||||
|
|
||||||
|
function applyAisFilterToRow(row: HTMLElement): void {
|
||||||
|
if (!aisFilterText) {
|
||||||
|
row.style.display = "";
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const message = row.dataset.filterText || "";
|
||||||
|
row.style.display = message.includes(aisFilterText) ? "" : "none";
|
||||||
|
}
|
||||||
|
|
||||||
|
function updateAisBar() {
|
||||||
|
if (!aisBarOverlay) return;
|
||||||
|
updateAisSummary();
|
||||||
|
|
||||||
|
const isAis = ((document.getElementById("mode") as HTMLSelectElement | null)?.value || "").toUpperCase() === "AIS";
|
||||||
|
const cutoffMs = Date.now() - AIS_BAR_WINDOW_MS;
|
||||||
|
const recent = aisMessageHistory.filter((msg) => (msg._tsMs ?? 0) >= cutoffMs);
|
||||||
|
const messages = aisLatestByVessel(recent).slice(0, 8);
|
||||||
|
if (!isAis || messages.length === 0) {
|
||||||
|
aisBarOverlay.style.display = "none";
|
||||||
|
aisBarOverlay.innerHTML = "";
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
let html = '<div class="aprs-bar-header"><span class="aprs-bar-title"><span class="aprs-bar-title-word">AIS</span><span class="aprs-bar-title-word">Live</span></span><span class="aprs-bar-clear-wrap"><span class="aprs-bar-clear" role="button" tabindex="0" onclick="window.clearAisBar()" onkeydown="if(event.key===\'Enter\'||event.key===\' \'){event.preventDefault();window.clearAisBar();}" aria-label="Clear AIS overlay">Clear</span></span><span class="aprs-bar-window">Last 15 minutes</span></div>';
|
||||||
|
for (const msg of messages) {
|
||||||
|
const ts = msg._ts ? `<span class="aprs-bar-time">${msg._ts}</span>` : "";
|
||||||
|
const pin = msg.lat != null && msg.lon != null
|
||||||
|
? `<button class="aprs-bar-pin" title="${msg.lat.toFixed(4)}, ${msg.lon.toFixed(4)}" onclick="window.navigateToAprsMap(${msg.lat},${msg.lon})">📍</button>`
|
||||||
|
: "";
|
||||||
|
const name = `<span class="ais-call">${aisDisplayNameHtml(msg)}</span>`;
|
||||||
|
const channel = aisChannelInfo(msg.channel);
|
||||||
|
const distance = aisDistanceText(msg);
|
||||||
|
const details = [
|
||||||
|
`MMSI ${escapeAisHtml(String(msg.mmsi))}`,
|
||||||
|
escapeAisHtml(channel.label),
|
||||||
|
msg.sog_knots != null ? `${msg.sog_knots.toFixed(1)} kn` : null,
|
||||||
|
msg.cog_deg != null ? `${msg.cog_deg.toFixed(1)}°` : null,
|
||||||
|
distance ? escapeAisHtml(distance) : null,
|
||||||
|
escapeAisHtml(aisAgeText(msg._tsMs)),
|
||||||
|
]
|
||||||
|
.filter(Boolean)
|
||||||
|
.join(" · ");
|
||||||
|
html += `<div class="aprs-bar-frame">` +
|
||||||
|
`<div class="aprs-bar-frame-main">${ts}${pin}${name}: ${details}</div>` +
|
||||||
|
`</div>`;
|
||||||
|
}
|
||||||
|
aisBarOverlay.innerHTML = html;
|
||||||
|
aisBarOverlay.style.display = "flex";
|
||||||
|
}
|
||||||
|
aisWindow.updateAisBar = updateAisBar;
|
||||||
|
aisWindow.clearAisBar = function() {
|
||||||
|
resetAisHistoryView();
|
||||||
|
};
|
||||||
|
|
||||||
|
function resetAisHistoryView(): void {
|
||||||
|
if (aisMessagesEl) aisMessagesEl.innerHTML = "";
|
||||||
|
aisMessageHistory = [];
|
||||||
|
updateAisBar();
|
||||||
|
renderAisHistory();
|
||||||
|
aisWindow.clearMapMarkersByType?.("ais");
|
||||||
|
}
|
||||||
|
|
||||||
|
function renderAisHistory() {
|
||||||
|
pruneAisMessageHistory();
|
||||||
|
if (!aisMessagesEl) {
|
||||||
|
updateAisSummary();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const fragment = document.createDocumentFragment();
|
||||||
|
for (const message of aisMessageHistory) {
|
||||||
|
fragment.appendChild(renderAisRow(message));
|
||||||
|
}
|
||||||
|
aisMessagesEl.replaceChildren(fragment);
|
||||||
|
updateAisSummary();
|
||||||
|
}
|
||||||
|
|
||||||
|
function addAisMessage(msg: AisMessage): void {
|
||||||
|
const tsMs = Number.isFinite(msg.ts_ms) ? Number(msg.ts_ms) : Date.now();
|
||||||
|
msg._tsMs = tsMs;
|
||||||
|
msg._ts = new Date(tsMs).toLocaleTimeString([], {
|
||||||
|
hour: "2-digit",
|
||||||
|
minute: "2-digit",
|
||||||
|
second: "2-digit",
|
||||||
|
});
|
||||||
|
|
||||||
|
aisMessageHistory.unshift(msg);
|
||||||
|
pruneAisMessageHistory();
|
||||||
|
scheduleAisBarUpdate();
|
||||||
|
scheduleAisHistoryRender();
|
||||||
|
|
||||||
|
if (msg.lat != null && msg.lon != null && aisWindow.aisMapAddVessel) {
|
||||||
|
aisWindow.aisMapAddVessel(msg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function normalizeServerAisMessage(msg: AisMessage): AisMessage {
|
||||||
|
return {
|
||||||
|
...msg,
|
||||||
|
rig_id: msg.rig_id || null,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
function onServerAisBatch(messages: AisMessage[]): void {
|
||||||
|
if (!Array.isArray(messages) || messages.length === 0) return;
|
||||||
|
if (aisStatus) aisStatus.textContent = "Receiving";
|
||||||
|
const normalized: AisMessage[] = [];
|
||||||
|
for (const msg of messages) {
|
||||||
|
const next = normalizeServerAisMessage(msg);
|
||||||
|
const tsMs = Number.isFinite(next.ts_ms) ? Number(next.ts_ms) : Date.now();
|
||||||
|
next._tsMs = tsMs;
|
||||||
|
next._ts = new Date(tsMs).toLocaleTimeString([], {
|
||||||
|
hour: "2-digit",
|
||||||
|
minute: "2-digit",
|
||||||
|
second: "2-digit",
|
||||||
|
});
|
||||||
|
if (next.lat != null && next.lon != null && aisWindow.aisMapAddVessel) {
|
||||||
|
aisWindow.aisMapAddVessel(next);
|
||||||
|
}
|
||||||
|
normalized.push(next);
|
||||||
|
}
|
||||||
|
normalized.reverse();
|
||||||
|
aisMessageHistory = normalized.concat(aisMessageHistory);
|
||||||
|
pruneAisMessageHistory();
|
||||||
|
scheduleAisBarUpdate();
|
||||||
|
scheduleAisHistoryRender();
|
||||||
|
}
|
||||||
|
|
||||||
|
function pruneAisHistoryView(): void {
|
||||||
|
pruneAisMessageHistory();
|
||||||
|
updateAisBar();
|
||||||
|
renderAisHistory();
|
||||||
|
}
|
||||||
|
|
||||||
|
document.getElementById("settings-clear-ais-history")?.addEventListener("click", () => { void (async () => {
|
||||||
|
if (!await aisWindow.trxUi.confirm({ title: "Clear AIS history?", message: "All stored AIS messages will be permanently removed.", confirmLabel: "Clear history" })) return;
|
||||||
|
try {
|
||||||
|
await aisWindow.postPath?.("/clear_ais_decode");
|
||||||
|
resetAisHistoryView();
|
||||||
|
} catch (e) {
|
||||||
|
console.error("AIS history clear failed", e);
|
||||||
|
}
|
||||||
|
})(); });
|
||||||
|
|
||||||
|
if (aisFilterInput) {
|
||||||
|
aisFilterInput.addEventListener("input", () => {
|
||||||
|
aisFilterText = aisFilterInput.value.trim().toUpperCase();
|
||||||
|
renderAisHistory();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function onServerAis(msg: AisMessage): void {
|
||||||
|
if (aisStatus) aisStatus.textContent = "Receiving";
|
||||||
|
addAisMessage(normalizeServerAisMessage(msg));
|
||||||
|
}
|
||||||
|
|
||||||
|
updateAisSummary();
|
||||||
|
(window as unknown as PluginRuntimeWindow).trxPluginRuntime.registerDecoder<AisMessage>({
|
||||||
|
id: "ais",
|
||||||
|
onMessage: onServerAis,
|
||||||
|
onBatch: onServerAisBatch,
|
||||||
|
restore: onServerAisBatch,
|
||||||
|
reset: resetAisHistoryView,
|
||||||
|
prune: pruneAisHistoryView,
|
||||||
|
});
|
||||||
@@ -0,0 +1,135 @@
|
|||||||
|
// SPDX-FileCopyrightText: 2026 Stan Grams <sjg@haxx.space>
|
||||||
|
//
|
||||||
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
|
export type AprsCategory = "position" | "message" | "weather" | "telemetry" | "other";
|
||||||
|
export type AprsTypeFilter = "all" | AprsCategory;
|
||||||
|
|
||||||
|
export interface AprsPacket {
|
||||||
|
rig_id?: string | null;
|
||||||
|
receiver?: unknown;
|
||||||
|
srcCall?: string;
|
||||||
|
destCall?: string;
|
||||||
|
path?: string;
|
||||||
|
info?: string;
|
||||||
|
info_bytes?: number[];
|
||||||
|
type?: string;
|
||||||
|
crcOk?: boolean;
|
||||||
|
ts_ms?: number | null;
|
||||||
|
lat?: number | null;
|
||||||
|
lon?: number | null;
|
||||||
|
symbolTable?: string | null;
|
||||||
|
symbolCode?: string | null;
|
||||||
|
_tsMs?: number;
|
||||||
|
_ts?: string;
|
||||||
|
src_call?: string;
|
||||||
|
dest_call?: string;
|
||||||
|
packet_type?: string;
|
||||||
|
crc_ok?: boolean;
|
||||||
|
symbol_table?: string | null;
|
||||||
|
symbol_code?: string | null;
|
||||||
|
}
|
||||||
|
|
||||||
|
export function aprsPacketCategory(packet: AprsPacket): AprsCategory {
|
||||||
|
const type = (packet.type ?? "").toLowerCase();
|
||||||
|
const info = (packet.info ?? "").toLowerCase();
|
||||||
|
if ((packet.lat != null && packet.lon != null) || type.includes("position")) return "position";
|
||||||
|
if (type.includes("message") || info.startsWith(":")) return "message";
|
||||||
|
if (type.includes("weather") || info.startsWith("_")) return "weather";
|
||||||
|
if (type.includes("telemetry") || info.startsWith("t#")) return "telemetry";
|
||||||
|
return "other";
|
||||||
|
}
|
||||||
|
|
||||||
|
export function aprsCategoryLabel(category: AprsCategory): string {
|
||||||
|
switch (category) {
|
||||||
|
case "position": return "Position";
|
||||||
|
case "message": return "Message";
|
||||||
|
case "weather": return "Weather";
|
||||||
|
case "telemetry": return "Telemetry";
|
||||||
|
default: return "Other";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export function aprsAgeText(timestampMs: number | undefined): string {
|
||||||
|
if (typeof timestampMs !== "number" || !Number.isFinite(timestampMs)) return "just now";
|
||||||
|
const seconds = Math.round(Math.max(0, Date.now() - timestampMs) / 1000);
|
||||||
|
if (seconds < 5) return "just now";
|
||||||
|
if (seconds < 60) return `${String(seconds)}s ago`;
|
||||||
|
const minutes = Math.round(seconds / 60);
|
||||||
|
if (minutes < 60) return `${String(minutes)}m ago`;
|
||||||
|
return `${String(Math.round(minutes / 60))}h ago`;
|
||||||
|
}
|
||||||
|
|
||||||
|
export function aprsPacketSignature(packet: AprsPacket): string {
|
||||||
|
return [packet.srcCall ?? "", packet.destCall ?? "", packet.path ?? "", packet.info ?? "", packet.type ?? "",
|
||||||
|
packet.lat?.toFixed(4) ?? "", packet.lon?.toFixed(4) ?? ""].join("|");
|
||||||
|
}
|
||||||
|
|
||||||
|
export function collapseAprsDuplicates(packets: AprsPacket[]): AprsPacket[] {
|
||||||
|
const seen = new Set<string>();
|
||||||
|
return packets.filter((packet) => {
|
||||||
|
const signature = aprsPacketSignature(packet);
|
||||||
|
if (seen.has(signature)) return false;
|
||||||
|
seen.add(signature);
|
||||||
|
return true;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
export function aprsHexBytes(bytes: number[] | undefined): string {
|
||||||
|
if (!bytes?.length) return "--";
|
||||||
|
return bytes.map((byte) => byte.toString(16).toUpperCase().padStart(2, "0")).join(" ");
|
||||||
|
}
|
||||||
|
|
||||||
|
export function renderAprsInfo(packet: AprsPacket): string {
|
||||||
|
if (packet.info_bytes?.length) {
|
||||||
|
return packet.info_bytes.map((byte) => renderAprsByte(byte)).join("");
|
||||||
|
}
|
||||||
|
return Array.from(packet.info ?? "", (character) => renderAprsCharacter(character)).join("");
|
||||||
|
}
|
||||||
|
|
||||||
|
function renderAprsByte(byte: number): string {
|
||||||
|
return byte >= 0x20 && byte <= 0x7e
|
||||||
|
? escapeAprsCharacter(String.fromCharCode(byte))
|
||||||
|
: `<span class="aprs-byte">0x${byte.toString(16).toUpperCase().padStart(2, "0")}</span>`;
|
||||||
|
}
|
||||||
|
|
||||||
|
function renderAprsCharacter(character: string): string {
|
||||||
|
const code = character.charCodeAt(0);
|
||||||
|
return code >= 0x20 && code <= 0x7e
|
||||||
|
? escapeAprsCharacter(character)
|
||||||
|
: `<span class="aprs-byte">0x${code.toString(16).toUpperCase().padStart(2, "0")}</span>`;
|
||||||
|
}
|
||||||
|
|
||||||
|
function escapeAprsCharacter(character: string): string {
|
||||||
|
if (character === "<") return "<";
|
||||||
|
if (character === ">") return ">";
|
||||||
|
if (character === "&") return "&";
|
||||||
|
if (character === '"') return """;
|
||||||
|
return character;
|
||||||
|
}
|
||||||
|
|
||||||
|
export function renderLocalAprsSymbol(packet: AprsPacket, escapeHtml: (value: string) => string): string {
|
||||||
|
if (!packet.symbolTable || !packet.symbolCode) return "";
|
||||||
|
const symbol = escapeHtml(packet.symbolCode);
|
||||||
|
const table = packet.symbolTable === "/" ? "Primary" : "Alternate";
|
||||||
|
return `<span class="aprs-symbol aprs-symbol-local" title="${table} APRS symbol ${symbol}">${symbol}</span>`;
|
||||||
|
}
|
||||||
|
|
||||||
|
export function normalizeAprsPacket(packet: AprsPacket, receiver: unknown): AprsPacket {
|
||||||
|
return {
|
||||||
|
rig_id: packet.rig_id || null,
|
||||||
|
receiver,
|
||||||
|
srcCall: packet.src_call ?? "",
|
||||||
|
destCall: packet.dest_call ?? "",
|
||||||
|
path: packet.path ?? "",
|
||||||
|
info: packet.info ?? "",
|
||||||
|
info_bytes: packet.info_bytes ?? [],
|
||||||
|
type: packet.packet_type ?? "",
|
||||||
|
crcOk: packet.crc_ok ?? false,
|
||||||
|
ts_ms: packet.ts_ms ?? null,
|
||||||
|
lat: packet.lat ?? null,
|
||||||
|
lon: packet.lon ?? null,
|
||||||
|
symbolTable: packet.symbol_table ?? null,
|
||||||
|
symbolCode: packet.symbol_code ?? null,
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -0,0 +1,415 @@
|
|||||||
|
// SPDX-FileCopyrightText: 2026 Stan Grams <sjg@haxx.space>
|
||||||
|
//
|
||||||
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
|
import {
|
||||||
|
aprsAgeText,
|
||||||
|
aprsCategoryLabel,
|
||||||
|
aprsHexBytes,
|
||||||
|
aprsPacketCategory,
|
||||||
|
collapseAprsDuplicates,
|
||||||
|
normalizeAprsPacket,
|
||||||
|
renderAprsInfo,
|
||||||
|
renderLocalAprsSymbol,
|
||||||
|
type AprsPacket,
|
||||||
|
type AprsTypeFilter,
|
||||||
|
} from "./aprs-shared";
|
||||||
|
import type { PluginRuntimeWindow } from "./runtime-contract";
|
||||||
|
interface AprsBridge {
|
||||||
|
getDecodeHistoryRetentionMs?: () => number;
|
||||||
|
trxScheduleUiFrameJob?: (key: string, job: () => void) => void;
|
||||||
|
serverLat?: number | null;
|
||||||
|
serverLon?: number | null;
|
||||||
|
haversineKm?: (lat1: number, lon1: number, lat2: number, lon2: number) => number;
|
||||||
|
escapeMapHtml?: (input: string) => string;
|
||||||
|
navigateToAprsMap?: (lat: number, lon: number) => void;
|
||||||
|
showHint?: (message: string, durationMs: number) => void;
|
||||||
|
clearMapMarkersByType?: (type: string) => void;
|
||||||
|
aprsMapAddStation?: (call: string, lat: number, lon: number, info: string, symbolTable: string | null | undefined, symbolCode: string | null | undefined, packet: AprsPacket) => void;
|
||||||
|
getDecodeRigMeta?: () => unknown;
|
||||||
|
postPath?: (path: string) => Promise<unknown>;
|
||||||
|
trxUi: { confirm(options: { title: string; message: string; confirmLabel: string }): Promise<boolean> };
|
||||||
|
updateAprsBar?: () => void;
|
||||||
|
clearAprsBar?: () => void;
|
||||||
|
closeAprsBar?: () => void;
|
||||||
|
}
|
||||||
|
const aprsWindow = window as unknown as AprsBridge;
|
||||||
|
const escapeAprsHtml = (input: string): string => aprsWindow.escapeMapHtml?.(input) ?? input
|
||||||
|
.replaceAll("&", "&").replaceAll("<", "<")
|
||||||
|
.replaceAll(">", ">").replaceAll('"', """);
|
||||||
|
const showAprsHint = (message: string, durationMs: number): void => { aprsWindow.showHint?.(message, durationMs); };
|
||||||
|
|
||||||
|
// --- APRS Decoder Plugin (server-side decode) ---
|
||||||
|
const aprsStatus = document.getElementById("aprs-status");
|
||||||
|
const aprsPacketsEl = document.getElementById("aprs-packets");
|
||||||
|
const aprsFilterInput = document.getElementById("aprs-filter") as HTMLInputElement | null;
|
||||||
|
const aprsBarOverlay = document.getElementById("aprs-bar-overlay");
|
||||||
|
const aprsOnlyPosBtn = document.getElementById("aprs-only-pos-btn");
|
||||||
|
const aprsHideCrcBtn = document.getElementById("aprs-hide-crc-btn");
|
||||||
|
const aprsCollapseDupBtn = document.getElementById("aprs-collapse-dup-btn");
|
||||||
|
const aprsTotalCountEl = document.getElementById("aprs-total-count");
|
||||||
|
const aprsVisibleCountEl = document.getElementById("aprs-visible-count");
|
||||||
|
const aprsLatestSeenEl = document.getElementById("aprs-latest-seen");
|
||||||
|
const APRS_BAR_WINDOW_MS = 15 * 60 * 1000;
|
||||||
|
let aprsFilterText = "";
|
||||||
|
let aprsPacketHistory: AprsPacket[] = [];
|
||||||
|
let aprsBarDismissedAtMs = 0;
|
||||||
|
let aprsOnlyPos = false;
|
||||||
|
let aprsHideCrc = false;
|
||||||
|
let aprsCollapseDup = false;
|
||||||
|
let aprsTypeFilter: AprsTypeFilter = "all";
|
||||||
|
|
||||||
|
function currentAprsHistoryRetentionMs(): number {
|
||||||
|
return typeof aprsWindow.getDecodeHistoryRetentionMs === "function"
|
||||||
|
? aprsWindow.getDecodeHistoryRetentionMs()
|
||||||
|
: 24 * 60 * 60 * 1000;
|
||||||
|
}
|
||||||
|
|
||||||
|
function pruneAprsPacketHistory() {
|
||||||
|
const cutoffMs = Date.now() - currentAprsHistoryRetentionMs();
|
||||||
|
aprsPacketHistory = aprsPacketHistory.filter((pkt) => (pkt._tsMs ?? 0) >= cutoffMs);
|
||||||
|
}
|
||||||
|
|
||||||
|
function scheduleAprsUi(key: string, job: () => void): void {
|
||||||
|
if (typeof aprsWindow.trxScheduleUiFrameJob === "function") {
|
||||||
|
aprsWindow.trxScheduleUiFrameJob(key, job);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
job();
|
||||||
|
}
|
||||||
|
|
||||||
|
function scheduleAprsHistoryRender() {
|
||||||
|
scheduleAprsUi("aprs-history", () => { renderAprsHistory(); });
|
||||||
|
}
|
||||||
|
|
||||||
|
function scheduleAprsBarUpdate() {
|
||||||
|
scheduleAprsUi("aprs-bar", () => { updateAprsBar(); });
|
||||||
|
}
|
||||||
|
|
||||||
|
function aprsDistanceText(pkt: AprsPacket): string {
|
||||||
|
if (aprsWindow.serverLat == null || aprsWindow.serverLon == null || pkt.lat == null || pkt.lon == null || !aprsWindow.haversineKm) return "";
|
||||||
|
const distKm = aprsWindow.haversineKm(aprsWindow.serverLat, aprsWindow.serverLon, pkt.lat, pkt.lon);
|
||||||
|
if (!Number.isFinite(distKm)) return "";
|
||||||
|
if (distKm < 1) return `${Math.round(distKm * 1000)} m from TRX`;
|
||||||
|
return `${distKm.toFixed(1)} km from TRX`;
|
||||||
|
}
|
||||||
|
|
||||||
|
function aprsFilterMatch(pkt: AprsPacket): boolean {
|
||||||
|
if (aprsOnlyPos && (pkt.lat == null || pkt.lon == null)) return false;
|
||||||
|
if (aprsHideCrc && !pkt.crcOk) return false;
|
||||||
|
if (aprsTypeFilter !== "all" && aprsPacketCategory(pkt) !== aprsTypeFilter) return false;
|
||||||
|
if (!aprsFilterText) return true;
|
||||||
|
const haystack = [
|
||||||
|
pkt.srcCall,
|
||||||
|
pkt.destCall,
|
||||||
|
pkt.path,
|
||||||
|
pkt.info,
|
||||||
|
pkt.type,
|
||||||
|
pkt.lat != null ? pkt.lat.toFixed(4) : "",
|
||||||
|
pkt.lon != null ? pkt.lon.toFixed(4) : "",
|
||||||
|
aprsPacketCategory(pkt),
|
||||||
|
]
|
||||||
|
.filter(Boolean)
|
||||||
|
.join(" ")
|
||||||
|
.toUpperCase();
|
||||||
|
return haystack.includes(aprsFilterText);
|
||||||
|
}
|
||||||
|
|
||||||
|
function aprsVisiblePackets(): AprsPacket[] {
|
||||||
|
const packets = aprsCollapseDup ? collapseAprsDuplicates(aprsPacketHistory) : aprsPacketHistory;
|
||||||
|
return packets.filter(aprsFilterMatch);
|
||||||
|
}
|
||||||
|
|
||||||
|
function updateAprsSummary() {
|
||||||
|
const visible = aprsVisiblePackets();
|
||||||
|
if (aprsTotalCountEl) {
|
||||||
|
aprsTotalCountEl.textContent = `${aprsPacketHistory.length} total`;
|
||||||
|
}
|
||||||
|
if (aprsVisibleCountEl) {
|
||||||
|
aprsVisibleCountEl.textContent = `${visible.length} shown`;
|
||||||
|
}
|
||||||
|
if (aprsLatestSeenEl) {
|
||||||
|
const latest = aprsPacketHistory[0];
|
||||||
|
if (!latest) {
|
||||||
|
aprsLatestSeenEl.textContent = "No packets yet";
|
||||||
|
} else {
|
||||||
|
aprsLatestSeenEl.textContent = `${latest.srcCall} ${aprsAgeText(latest._tsMs)}`;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function updateAprsChipState() {
|
||||||
|
document.querySelectorAll("[id^='aprs-type-']").forEach((btn) => {
|
||||||
|
btn.classList.toggle("active", btn.id === `aprs-type-${aprsTypeFilter}`);
|
||||||
|
});
|
||||||
|
aprsOnlyPosBtn?.classList.toggle("active", aprsOnlyPos);
|
||||||
|
aprsHideCrcBtn?.classList.toggle("active", aprsHideCrc);
|
||||||
|
aprsCollapseDupBtn?.classList.toggle("active", aprsCollapseDup);
|
||||||
|
}
|
||||||
|
|
||||||
|
function renderAprsRow(pkt: AprsPacket, isFresh: boolean): HTMLElement {
|
||||||
|
const row = document.createElement("div");
|
||||||
|
row.className = "aprs-packet";
|
||||||
|
if (!pkt.crcOk) row.classList.add("aprs-packet-crc");
|
||||||
|
if (isFresh) row.classList.add("aprs-packet-new");
|
||||||
|
|
||||||
|
const ts = pkt._ts || new Date().toLocaleTimeString([], { hour: "2-digit", minute: "2-digit", second: "2-digit" });
|
||||||
|
const age = aprsAgeText(pkt._tsMs);
|
||||||
|
const category = aprsPacketCategory(pkt);
|
||||||
|
const categoryLabel = aprsCategoryLabel(category);
|
||||||
|
const categoryClass = `aprs-badge aprs-badge-type aprs-badge-type-${category}`;
|
||||||
|
const pathBadge = pkt.path ? `<span class="aprs-badge">${escapeAprsHtml(pkt.path)}</span>` : "";
|
||||||
|
const crcBadge = pkt.crcOk ? "" : '<span class="aprs-badge aprs-badge-crc">CRC Fail</span>';
|
||||||
|
const symbolHtml = renderLocalAprsSymbol(pkt, escapeAprsHtml);
|
||||||
|
const posLink = pkt.lat != null && pkt.lon != null
|
||||||
|
? `<a class="aprs-pos" href="javascript:void(0)" data-aprs-map="${pkt.lat},${pkt.lon}">${pkt.lat.toFixed(4)}, ${pkt.lon.toFixed(4)}</a>`
|
||||||
|
: "";
|
||||||
|
const distance = aprsDistanceText(pkt);
|
||||||
|
const qrzHref = `https://qrzcq.com/call/${encodeURIComponent(pkt.srcCall || "")}`;
|
||||||
|
|
||||||
|
row.innerHTML =
|
||||||
|
`<div class="aprs-row-head">` +
|
||||||
|
`<span class="aprs-time">${ts}</span>` +
|
||||||
|
symbolHtml +
|
||||||
|
`<span class="aprs-call">${escapeAprsHtml(pkt.srcCall ?? "")}</span>` +
|
||||||
|
`<span>>${escapeAprsHtml(pkt.destCall || "")}</span>` +
|
||||||
|
`<span class="${categoryClass}">${escapeAprsHtml(categoryLabel)}</span>` +
|
||||||
|
pathBadge +
|
||||||
|
crcBadge +
|
||||||
|
`</div>` +
|
||||||
|
`<div class="aprs-row-meta">` +
|
||||||
|
`<span class="aprs-meta-text">${escapeAprsHtml(age)}</span>` +
|
||||||
|
(distance ? `<span class="aprs-meta-text">${escapeAprsHtml(distance)}</span>` : "") +
|
||||||
|
`<span class="aprs-meta-text">${escapeAprsHtml(pkt.type || "--")}</span>` +
|
||||||
|
`</div>` +
|
||||||
|
`<div class="aprs-row-detail">` +
|
||||||
|
`<span title="${escapeAprsHtml(pkt.type || "")}">${renderAprsInfo(pkt)}</span>` +
|
||||||
|
(posLink ? `<span>${posLink}</span>` : "") +
|
||||||
|
`</div>` +
|
||||||
|
`<div class="aprs-row-actions">` +
|
||||||
|
(pkt.lat != null && pkt.lon != null ? `<button class="aprs-inline-btn" type="button" data-aprs-map="${pkt.lat},${pkt.lon}">Map</button>` : "") +
|
||||||
|
(pkt.lat != null && pkt.lon != null ? `<button class="aprs-inline-btn" type="button" data-aprs-copy="${pkt.lat},${pkt.lon}">Copy Coords</button>` : "") +
|
||||||
|
`<a class="aprs-inline-btn" href="${qrzHref}" target="_blank" rel="noopener">QRZ</a>` +
|
||||||
|
`</div>` +
|
||||||
|
`<details class="aprs-details">` +
|
||||||
|
`<summary>Details</summary>` +
|
||||||
|
`<div class="aprs-details-grid">` +
|
||||||
|
`<span class="aprs-detail-label">Source</span><span class="aprs-detail-value">${escapeAprsHtml(pkt.srcCall || "--")}</span>` +
|
||||||
|
`<span class="aprs-detail-label">Destination</span><span class="aprs-detail-value">${escapeAprsHtml(pkt.destCall || "--")}</span>` +
|
||||||
|
`<span class="aprs-detail-label">Type</span><span class="aprs-detail-value">${escapeAprsHtml(pkt.type || "--")}</span>` +
|
||||||
|
`<span class="aprs-detail-label">Path</span><span class="aprs-detail-value">${escapeAprsHtml(pkt.path || "--")}</span>` +
|
||||||
|
`<span class="aprs-detail-label">Age</span><span class="aprs-detail-value">${escapeAprsHtml(age)}</span>` +
|
||||||
|
`<span class="aprs-detail-label">CRC</span><span class="aprs-detail-value">${pkt.crcOk ? "OK" : "Failed"}</span>` +
|
||||||
|
`<span class="aprs-detail-label">Position</span><span class="aprs-detail-value">${pkt.lat != null && pkt.lon != null ? `${pkt.lat.toFixed(5)}, ${pkt.lon.toFixed(5)}` : "--"}</span>` +
|
||||||
|
`<span class="aprs-detail-label">Info</span><span class="aprs-detail-value">${escapeAprsHtml(pkt.info || "--")}</span>` +
|
||||||
|
`<span class="aprs-detail-label">Info Bytes</span><span class="aprs-detail-value">${escapeAprsHtml(aprsHexBytes(pkt.info_bytes))}</span>` +
|
||||||
|
`</div>` +
|
||||||
|
`</details>`;
|
||||||
|
|
||||||
|
row.querySelectorAll<HTMLElement>("[data-aprs-map]").forEach((el) => {
|
||||||
|
el.addEventListener("click", (evt) => {
|
||||||
|
evt.preventDefault();
|
||||||
|
const raw = el.dataset.aprsMap ?? "";
|
||||||
|
const [lat, lon] = raw.split(",").map(Number);
|
||||||
|
if (aprsWindow.navigateToAprsMap && typeof lat === "number" && typeof lon === "number" && Number.isFinite(lat) && Number.isFinite(lon)) {
|
||||||
|
aprsWindow.navigateToAprsMap(lat, lon);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
const copyBtn = row.querySelector<HTMLElement>("[data-aprs-copy]");
|
||||||
|
if (copyBtn) {
|
||||||
|
copyBtn.addEventListener("click", () => { void (async () => {
|
||||||
|
const raw = copyBtn.dataset.aprsCopy ?? "";
|
||||||
|
try {
|
||||||
|
const clipboard = Reflect.get(navigator, "clipboard") as Clipboard | undefined;
|
||||||
|
if (clipboard) {
|
||||||
|
await clipboard.writeText(raw);
|
||||||
|
showAprsHint("Coordinates copied", 1200);
|
||||||
|
}
|
||||||
|
} catch {
|
||||||
|
showAprsHint("Copy failed", 1500);
|
||||||
|
}
|
||||||
|
})(); });
|
||||||
|
}
|
||||||
|
|
||||||
|
return row;
|
||||||
|
}
|
||||||
|
|
||||||
|
function renderAprsHistory() {
|
||||||
|
pruneAprsPacketHistory();
|
||||||
|
if (!aprsPacketsEl) {
|
||||||
|
updateAprsSummary();
|
||||||
|
updateAprsChipState();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const visible = aprsVisiblePackets();
|
||||||
|
const fragment = document.createDocumentFragment();
|
||||||
|
for (const [index, packet] of visible.entries()) {
|
||||||
|
fragment.appendChild(renderAprsRow(packet, index === 0));
|
||||||
|
}
|
||||||
|
aprsPacketsEl.replaceChildren(fragment);
|
||||||
|
updateAprsSummary();
|
||||||
|
updateAprsChipState();
|
||||||
|
}
|
||||||
|
|
||||||
|
function updateAprsBar() {
|
||||||
|
if (!aprsBarOverlay) return;
|
||||||
|
const isPkt = ((document.getElementById("mode") as HTMLSelectElement | null)?.value || "").toUpperCase() === "PKT";
|
||||||
|
const cutoffMs = Date.now() - APRS_BAR_WINDOW_MS;
|
||||||
|
const okFrames = aprsPacketHistory.filter((p) => p.crcOk && (p._tsMs ?? 0) >= cutoffMs);
|
||||||
|
const frames = collapseAprsDuplicates(okFrames).slice(0, 8);
|
||||||
|
const newestTsMs = frames.reduce((latest, pkt) => Math.max(latest, Number(pkt._tsMs) || 0), 0);
|
||||||
|
if (!isPkt || frames.length === 0 || newestTsMs <= aprsBarDismissedAtMs) {
|
||||||
|
aprsBarOverlay.style.display = "none";
|
||||||
|
aprsBarOverlay.innerHTML = "";
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
let html = '<div class="aprs-bar-header"><span class="aprs-bar-title"><span class="aprs-bar-title-word">APRS</span><span class="aprs-bar-title-word">Live</span></span><span class="aprs-bar-actions"><span class="aprs-bar-window">Last 15 minutes</span><span class="aprs-bar-clear-wrap"><span class="aprs-bar-clear" role="button" tabindex="0" onclick="window.clearAprsBar()" onkeydown="if(event.key===\'Enter\'||event.key===\' \'){event.preventDefault();window.clearAprsBar();}" aria-label="Clear APRS overlay">Clear</span></span><button class="aprs-bar-close" type="button" onclick="window.closeAprsBar()" aria-label="Close APRS overlay">×</button></span></div>';
|
||||||
|
for (const pkt of frames) {
|
||||||
|
const ts = pkt._ts ? `<span class="aprs-bar-time">${pkt._ts}</span>` : "";
|
||||||
|
const call = `<span class="aprs-bar-call">${escapeAprsHtml(pkt.srcCall ?? "")}</span>`;
|
||||||
|
const dest = escapeAprsHtml(pkt.destCall || "");
|
||||||
|
const info = escapeAprsHtml(pkt.info || "");
|
||||||
|
const pin = pkt.lat != null && pkt.lon != null
|
||||||
|
? `<button class="aprs-bar-pin" title="${pkt.lat.toFixed(4)}, ${pkt.lon.toFixed(4)}" onclick="window.navigateToAprsMap(${pkt.lat},${pkt.lon})">📍</button>`
|
||||||
|
: "";
|
||||||
|
html += `<div class="aprs-bar-frame">` +
|
||||||
|
`<div class="aprs-bar-frame-main">${ts}${pin}${call}>${dest}: ${info}</div>` +
|
||||||
|
`</div>`;
|
||||||
|
}
|
||||||
|
aprsBarOverlay.innerHTML = html;
|
||||||
|
aprsBarOverlay.style.display = "flex";
|
||||||
|
}
|
||||||
|
aprsWindow.updateAprsBar = updateAprsBar;
|
||||||
|
aprsWindow.clearAprsBar = function() {
|
||||||
|
resetAprsHistoryView();
|
||||||
|
};
|
||||||
|
aprsWindow.closeAprsBar = function() {
|
||||||
|
aprsBarDismissedAtMs = Date.now();
|
||||||
|
if (aprsBarOverlay) {
|
||||||
|
aprsBarOverlay.style.display = "none";
|
||||||
|
aprsBarOverlay.innerHTML = "";
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
function resetAprsHistoryView(): void {
|
||||||
|
if (aprsPacketsEl) aprsPacketsEl.innerHTML = "";
|
||||||
|
aprsPacketHistory = [];
|
||||||
|
updateAprsBar();
|
||||||
|
renderAprsHistory();
|
||||||
|
aprsWindow.clearMapMarkersByType?.("aprs");
|
||||||
|
}
|
||||||
|
|
||||||
|
function pruneAprsHistoryView(): void {
|
||||||
|
pruneAprsPacketHistory();
|
||||||
|
updateAprsBar();
|
||||||
|
renderAprsHistory();
|
||||||
|
}
|
||||||
|
|
||||||
|
function addAprsPacket(pkt: AprsPacket): void {
|
||||||
|
const tsMs = Number.isFinite(pkt.ts_ms) ? Number(pkt.ts_ms) : Date.now();
|
||||||
|
pkt._tsMs = tsMs;
|
||||||
|
pkt._ts = new Date(tsMs).toLocaleTimeString([], { hour: "2-digit", minute: "2-digit", second: "2-digit" });
|
||||||
|
|
||||||
|
aprsPacketHistory.unshift(pkt);
|
||||||
|
pruneAprsPacketHistory();
|
||||||
|
|
||||||
|
if (pkt.lat != null && pkt.lon != null && aprsWindow.aprsMapAddStation) {
|
||||||
|
aprsWindow.aprsMapAddStation(pkt.srcCall ?? "", pkt.lat, pkt.lon, pkt.info ?? "", pkt.symbolTable, pkt.symbolCode, pkt);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (pkt.crcOk) scheduleAprsBarUpdate();
|
||||||
|
|
||||||
|
scheduleAprsHistoryRender();
|
||||||
|
}
|
||||||
|
|
||||||
|
function normalizeServerAprsPacket(pkt: AprsPacket): AprsPacket {
|
||||||
|
return normalizeAprsPacket(pkt, aprsWindow.getDecodeRigMeta?.() ?? null);
|
||||||
|
}
|
||||||
|
|
||||||
|
function onServerAprsBatch(packets: AprsPacket[]): void {
|
||||||
|
if (!Array.isArray(packets) || packets.length === 0) return;
|
||||||
|
if (aprsStatus) aprsStatus.textContent = "Receiving";
|
||||||
|
const normalized: AprsPacket[] = [];
|
||||||
|
let hasCrcOk = false;
|
||||||
|
for (const pkt of packets) {
|
||||||
|
const next = normalizeServerAprsPacket(pkt);
|
||||||
|
const tsMs = Number.isFinite(next.ts_ms) ? Number(next.ts_ms) : Date.now();
|
||||||
|
next._tsMs = tsMs;
|
||||||
|
next._ts = new Date(tsMs).toLocaleTimeString([], { hour: "2-digit", minute: "2-digit", second: "2-digit" });
|
||||||
|
if (next.lat != null && next.lon != null && aprsWindow.aprsMapAddStation) {
|
||||||
|
aprsWindow.aprsMapAddStation(next.srcCall ?? "", next.lat, next.lon, next.info ?? "", next.symbolTable, next.symbolCode, next);
|
||||||
|
}
|
||||||
|
if (next.crcOk) hasCrcOk = true;
|
||||||
|
normalized.push(next);
|
||||||
|
}
|
||||||
|
normalized.reverse();
|
||||||
|
aprsPacketHistory = normalized.concat(aprsPacketHistory);
|
||||||
|
pruneAprsPacketHistory();
|
||||||
|
if (hasCrcOk) scheduleAprsBarUpdate();
|
||||||
|
scheduleAprsHistoryRender();
|
||||||
|
}
|
||||||
|
|
||||||
|
document.getElementById("settings-clear-aprs-history")?.addEventListener("click", () => { void (async () => {
|
||||||
|
if (!await aprsWindow.trxUi.confirm({ title: "Clear APRS history?", message: "All stored APRS packets will be permanently removed.", confirmLabel: "Clear history" })) return;
|
||||||
|
try {
|
||||||
|
await aprsWindow.postPath?.("/clear_aprs_decode");
|
||||||
|
resetAprsHistoryView();
|
||||||
|
} catch (e) {
|
||||||
|
console.error("APRS history clear failed", e);
|
||||||
|
}
|
||||||
|
})(); });
|
||||||
|
|
||||||
|
if (aprsOnlyPosBtn) {
|
||||||
|
aprsOnlyPosBtn.addEventListener("click", () => {
|
||||||
|
aprsOnlyPos = !aprsOnlyPos;
|
||||||
|
renderAprsHistory();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
if (aprsHideCrcBtn) {
|
||||||
|
aprsHideCrcBtn.addEventListener("click", () => {
|
||||||
|
aprsHideCrc = !aprsHideCrc;
|
||||||
|
renderAprsHistory();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
if (aprsCollapseDupBtn) {
|
||||||
|
aprsCollapseDupBtn.addEventListener("click", () => {
|
||||||
|
aprsCollapseDup = !aprsCollapseDup;
|
||||||
|
renderAprsHistory();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
(["all", "position", "message", "weather", "telemetry", "other"] as const).forEach((type) => {
|
||||||
|
const btn = document.getElementById(`aprs-type-${type}`);
|
||||||
|
if (!btn) return;
|
||||||
|
btn.addEventListener("click", () => {
|
||||||
|
aprsTypeFilter = type;
|
||||||
|
renderAprsHistory();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
if (aprsFilterInput) {
|
||||||
|
aprsFilterInput.addEventListener("input", () => {
|
||||||
|
aprsFilterText = aprsFilterInput.value.trim().toUpperCase();
|
||||||
|
renderAprsHistory();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// --- Server-side APRS decode handler ---
|
||||||
|
function onServerAprs(pkt: AprsPacket): void {
|
||||||
|
if (aprsStatus) aprsStatus.textContent = "Receiving";
|
||||||
|
addAprsPacket(normalizeServerAprsPacket(pkt));
|
||||||
|
}
|
||||||
|
|
||||||
|
renderAprsHistory();
|
||||||
|
(window as unknown as PluginRuntimeWindow).trxPluginRuntime.registerDecoder<AprsPacket>({
|
||||||
|
id: "aprs",
|
||||||
|
onMessage: onServerAprs,
|
||||||
|
onBatch: onServerAprsBatch,
|
||||||
|
restore: onServerAprsBatch,
|
||||||
|
reset: resetAprsHistoryView,
|
||||||
|
prune: pruneAprsHistoryView,
|
||||||
|
});
|
||||||
+469
@@ -0,0 +1,469 @@
|
|||||||
|
// SPDX-FileCopyrightText: 2026 Stan Grams <sjg@haxx.space>
|
||||||
|
//
|
||||||
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
|
export {};
|
||||||
|
|
||||||
|
interface DecoderDescriptor {
|
||||||
|
id: string;
|
||||||
|
background_decode?: boolean;
|
||||||
|
activation?: string;
|
||||||
|
active_modes: string[];
|
||||||
|
}
|
||||||
|
interface Bookmark {
|
||||||
|
id: string;
|
||||||
|
name: string;
|
||||||
|
freq_hz: number;
|
||||||
|
mode: string;
|
||||||
|
decoders?: string[];
|
||||||
|
}
|
||||||
|
interface BackgroundDecodeConfig {
|
||||||
|
remote: string | null;
|
||||||
|
enabled: boolean;
|
||||||
|
bookmark_ids: string[];
|
||||||
|
}
|
||||||
|
interface BackgroundStatusEntry {
|
||||||
|
bookmark_name?: string;
|
||||||
|
bookmark_id?: string;
|
||||||
|
freq_hz?: number;
|
||||||
|
mode?: string;
|
||||||
|
decoder_kinds?: string[];
|
||||||
|
state?: string;
|
||||||
|
}
|
||||||
|
interface BackgroundDecodeStatus {
|
||||||
|
entries?: BackgroundStatusEntry[];
|
||||||
|
active_rig?: boolean;
|
||||||
|
center_hz?: number;
|
||||||
|
sample_rate?: number;
|
||||||
|
}
|
||||||
|
interface BackgroundBridge {
|
||||||
|
decoderRegistry?: DecoderDescriptor[];
|
||||||
|
authEnabled?: boolean;
|
||||||
|
trxUi: { confirm(options: { title: string; message: string; confirmLabel: string }): Promise<boolean> };
|
||||||
|
trx?: { modules?: { backgroundDecode?: BackgroundDecodeService } };
|
||||||
|
}
|
||||||
|
interface BackgroundDecodeService {
|
||||||
|
initialize(rigId: string | null, role: string | null): void;
|
||||||
|
wireEvents(): void;
|
||||||
|
setRig(rigId: string | null): void;
|
||||||
|
}
|
||||||
|
interface WiredElement extends HTMLElement { _wired?: boolean }
|
||||||
|
const bgdWindow = window as unknown as BackgroundBridge;
|
||||||
|
|
||||||
|
(function () {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
function bgdSupportedIds(): string[] {
|
||||||
|
return (bgdWindow.decoderRegistry || [])
|
||||||
|
.filter(function (d) { return d.background_decode; })
|
||||||
|
.map(function (d) { return d.id; });
|
||||||
|
}
|
||||||
|
|
||||||
|
let backgroundDecodeRole: string | null = null;
|
||||||
|
let currentRigId: string | null = null;
|
||||||
|
let currentConfig: BackgroundDecodeConfig | null = null;
|
||||||
|
let bookmarkList: Bookmark[] = [];
|
||||||
|
let statusInterval: ReturnType<typeof setInterval> | null = null;
|
||||||
|
let bgdDirty = false;
|
||||||
|
|
||||||
|
function initBackgroundDecode(rigId: string | null, role: string | null): void {
|
||||||
|
backgroundDecodeRole = role;
|
||||||
|
currentRigId = rigId || null;
|
||||||
|
if (currentRigId) loadBackgroundDecode();
|
||||||
|
startStatusPolling();
|
||||||
|
}
|
||||||
|
|
||||||
|
function setBackgroundDecodeRig(rigId: string | null): void {
|
||||||
|
const nextRigId = rigId || null;
|
||||||
|
if (nextRigId === currentRigId) return;
|
||||||
|
currentRigId = nextRigId;
|
||||||
|
if (!currentRigId) return;
|
||||||
|
loadBackgroundDecode();
|
||||||
|
}
|
||||||
|
|
||||||
|
function apiGetConfig(rigId: string): Promise<BackgroundDecodeConfig> {
|
||||||
|
return fetch("/background-decode/" + encodeURIComponent(rigId)).then(function (r) {
|
||||||
|
if (!r.ok) throw new Error(`HTTP ${String(r.status)}`);
|
||||||
|
return r.json() as Promise<BackgroundDecodeConfig>;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function apiPutConfig(rigId: string, config: BackgroundDecodeConfig): Promise<BackgroundDecodeConfig> {
|
||||||
|
return fetch("/background-decode/" + encodeURIComponent(rigId), {
|
||||||
|
method: "PUT",
|
||||||
|
headers: { "Content-Type": "application/json" },
|
||||||
|
body: JSON.stringify(config),
|
||||||
|
}).then(function (r) {
|
||||||
|
if (!r.ok) throw new Error(`HTTP ${String(r.status)}`);
|
||||||
|
return r.json() as Promise<BackgroundDecodeConfig>;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function apiResetConfig(rigId: string): Promise<BackgroundDecodeConfig> {
|
||||||
|
return fetch("/background-decode/" + encodeURIComponent(rigId), {
|
||||||
|
method: "DELETE",
|
||||||
|
}).then(function (r) {
|
||||||
|
if (!r.ok) throw new Error(`HTTP ${String(r.status)}`);
|
||||||
|
return r.json() as Promise<BackgroundDecodeConfig>;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function apiGetStatus(rigId: string): Promise<BackgroundDecodeStatus> {
|
||||||
|
return fetch("/background-decode/" + encodeURIComponent(rigId) + "/status").then(function (r) {
|
||||||
|
if (!r.ok) throw new Error(`HTTP ${String(r.status)}`);
|
||||||
|
return r.json() as Promise<BackgroundDecodeStatus>;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function apiGetBookmarks(): Promise<Bookmark[]> {
|
||||||
|
return fetch("/bookmarks").then(function (r) {
|
||||||
|
if (!r.ok) throw new Error(`HTTP ${String(r.status)}`);
|
||||||
|
return r.json() as Promise<Bookmark[]>;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function loadBackgroundDecode() {
|
||||||
|
const rigId = currentRigId;
|
||||||
|
if (!rigId) return;
|
||||||
|
Promise.all([apiGetConfig(rigId), apiGetBookmarks()])
|
||||||
|
.then(function ([config, bookmarks]) {
|
||||||
|
currentConfig = config;
|
||||||
|
bookmarkList = Array.isArray(bookmarks) ? bookmarks : [];
|
||||||
|
renderBackgroundDecode();
|
||||||
|
clearBgdDirty();
|
||||||
|
pollBackgroundDecodeStatus();
|
||||||
|
})
|
||||||
|
.catch(function (err: unknown) {
|
||||||
|
console.error("background decode load failed", err);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function supportedBookmarks(): Bookmark[] {
|
||||||
|
return bookmarkList.filter(function (bookmark) {
|
||||||
|
return bookmarkDecoderKinds(bookmark).length > 0;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function bookmarkDecoderKinds(bookmark: Bookmark): string[] {
|
||||||
|
const ids = bgdSupportedIds();
|
||||||
|
const decoders = bookmark.decoders ?? [];
|
||||||
|
const explicit = decoders
|
||||||
|
.map(function (item) { return item.trim().toLowerCase(); })
|
||||||
|
.filter(function (item, index, arr) {
|
||||||
|
return ids.indexOf(item) >= 0 && arr.indexOf(item) === index;
|
||||||
|
});
|
||||||
|
if (explicit.length > 0) return explicit;
|
||||||
|
// Fall back: infer from mode via mode-bound entries in the registry.
|
||||||
|
const mode = bookmark.mode.trim().toUpperCase();
|
||||||
|
return (bgdWindow.decoderRegistry || [])
|
||||||
|
.filter(function (d) {
|
||||||
|
return d.activation === "mode_bound" && d.background_decode
|
||||||
|
&& d.active_modes.indexOf(mode) >= 0;
|
||||||
|
})
|
||||||
|
.map(function (d) { return d.id; });
|
||||||
|
}
|
||||||
|
|
||||||
|
function renderBackgroundDecode() {
|
||||||
|
if (!currentConfig) {
|
||||||
|
currentConfig = { remote: currentRigId, enabled: false, bookmark_ids: [] };
|
||||||
|
}
|
||||||
|
setCheckbox("background-decode-enabled", currentConfig.enabled);
|
||||||
|
renderBookmarkChecklist();
|
||||||
|
|
||||||
|
const isControl = backgroundDecodeRole === "control" || bgdWindow.authEnabled === false;
|
||||||
|
const panel = document.getElementById("background-decode-panel");
|
||||||
|
if (panel) {
|
||||||
|
panel.querySelectorAll<HTMLInputElement | HTMLSelectElement | HTMLButtonElement>("input, select, button.sch-write").forEach(function (el) {
|
||||||
|
el.disabled = !isControl;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
const saveBtn = document.getElementById("background-decode-save-btn");
|
||||||
|
const resetBtn = document.getElementById("background-decode-reset-btn");
|
||||||
|
if (saveBtn) saveBtn.style.display = isControl ? "" : "none";
|
||||||
|
if (resetBtn) resetBtn.style.display = isControl ? "" : "none";
|
||||||
|
}
|
||||||
|
|
||||||
|
function renderBookmarkChecklist(filterText = ""): void {
|
||||||
|
const container = document.getElementById("bgd-bookmark-checklist");
|
||||||
|
if (!container) return;
|
||||||
|
container.innerHTML = "";
|
||||||
|
|
||||||
|
const selectedIds = new Set(
|
||||||
|
currentConfig && Array.isArray(currentConfig.bookmark_ids) ? currentConfig.bookmark_ids : []
|
||||||
|
);
|
||||||
|
const all = supportedBookmarks();
|
||||||
|
const filter = (filterText || "").trim().toLowerCase();
|
||||||
|
|
||||||
|
const filtered = filter
|
||||||
|
? all.filter(function (bm) {
|
||||||
|
const text = (bm.name + " " + formatFreq(bm.freq_hz) + " " + bm.mode).toLowerCase();
|
||||||
|
return text.indexOf(filter) >= 0;
|
||||||
|
})
|
||||||
|
: all;
|
||||||
|
|
||||||
|
if (filtered.length === 0) {
|
||||||
|
container.innerHTML = '<div class="bgd-checklist-empty">' +
|
||||||
|
(all.length === 0 ? "No supported bookmarks available." : "No bookmarks match filter.") +
|
||||||
|
'</div>';
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
filtered.forEach(function (bookmark) {
|
||||||
|
const row = document.createElement("label");
|
||||||
|
row.className = "bgd-checklist-row";
|
||||||
|
const decoders = bookmarkDecoderKinds(bookmark);
|
||||||
|
const checked = selectedIds.has(bookmark.id) ? " checked" : "";
|
||||||
|
row.innerHTML =
|
||||||
|
'<input type="checkbox"' + checked + ' data-bm-id="' + escHtml(bookmark.id) + '" />' +
|
||||||
|
'<span class="bgd-checklist-name">' + escHtml(bookmark.name) + '</span>' +
|
||||||
|
'<span class="bgd-checklist-meta">' + escHtml(formatFreq(bookmark.freq_hz) + " " + bookmark.mode + " · " + decoders.join("/").toUpperCase()) + '</span>';
|
||||||
|
row.querySelector<HTMLInputElement>("input")?.addEventListener("change", function (e) {
|
||||||
|
onChecklistToggle(bookmark.id, (e.currentTarget as HTMLInputElement).checked);
|
||||||
|
});
|
||||||
|
container.appendChild(row);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function onChecklistToggle(bookmarkId: string, checked: boolean): void {
|
||||||
|
if (!currentConfig) {
|
||||||
|
currentConfig = { remote: currentRigId, enabled: false, bookmark_ids: [] };
|
||||||
|
}
|
||||||
|
if (!Array.isArray(currentConfig.bookmark_ids)) currentConfig.bookmark_ids = [];
|
||||||
|
if (checked && !currentConfig.bookmark_ids.includes(bookmarkId)) {
|
||||||
|
currentConfig.bookmark_ids.push(bookmarkId);
|
||||||
|
} else if (!checked) {
|
||||||
|
currentConfig.bookmark_ids = currentConfig.bookmark_ids.filter(function (id) { return id !== bookmarkId; });
|
||||||
|
}
|
||||||
|
markBgdDirty();
|
||||||
|
}
|
||||||
|
|
||||||
|
function saveBackgroundDecode() {
|
||||||
|
const rigId = currentRigId;
|
||||||
|
if (!rigId) return;
|
||||||
|
const payload: BackgroundDecodeConfig = {
|
||||||
|
remote: rigId,
|
||||||
|
enabled: (document.getElementById("background-decode-enabled") as HTMLInputElement | null)?.checked ?? false,
|
||||||
|
bookmark_ids: currentConfig?.bookmark_ids.slice() ?? [],
|
||||||
|
};
|
||||||
|
const btn = document.getElementById("background-decode-save-btn") as HTMLButtonElement | null;
|
||||||
|
if (btn) btn.disabled = true;
|
||||||
|
apiPutConfig(rigId, payload)
|
||||||
|
.then(function (saved) {
|
||||||
|
currentConfig = saved;
|
||||||
|
renderBackgroundDecode();
|
||||||
|
clearBgdDirty();
|
||||||
|
pollBackgroundDecodeStatus();
|
||||||
|
showToast("Background decode saved.", false);
|
||||||
|
})
|
||||||
|
.catch(function (err: unknown) {
|
||||||
|
showToast(`Save failed: ${errorMessage(err)}`, true);
|
||||||
|
})
|
||||||
|
.finally(function () {
|
||||||
|
if (btn) btn.disabled = false;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
async function resetBackgroundDecode() {
|
||||||
|
const rigId = currentRigId;
|
||||||
|
if (!rigId) return;
|
||||||
|
if (!await bgdWindow.trxUi.confirm({ title: "Reset background decoding?", message: "The current background decode configuration will be permanently reset.", confirmLabel: "Reset" })) return;
|
||||||
|
apiResetConfig(rigId)
|
||||||
|
.then(function (saved) {
|
||||||
|
currentConfig = saved;
|
||||||
|
renderBackgroundDecode();
|
||||||
|
clearBgdDirty();
|
||||||
|
pollBackgroundDecodeStatus();
|
||||||
|
showToast("Background decode reset.", false);
|
||||||
|
})
|
||||||
|
.catch(function (err: unknown) {
|
||||||
|
showToast(`Reset failed: ${errorMessage(err)}`, true);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function startStatusPolling() {
|
||||||
|
if (statusInterval) clearInterval(statusInterval);
|
||||||
|
statusInterval = setInterval(pollBackgroundDecodeStatus, 15000);
|
||||||
|
}
|
||||||
|
|
||||||
|
function pollBackgroundDecodeStatus() {
|
||||||
|
const rigId = currentRigId;
|
||||||
|
if (!rigId) return;
|
||||||
|
apiGetStatus(rigId)
|
||||||
|
.then(renderStatus)
|
||||||
|
.catch(function () {});
|
||||||
|
}
|
||||||
|
|
||||||
|
function renderStatus(status: BackgroundDecodeStatus): void {
|
||||||
|
const card = document.getElementById("background-decode-status-card");
|
||||||
|
if (!card) return;
|
||||||
|
const entries = status.entries ?? [];
|
||||||
|
if (!entries.length) {
|
||||||
|
card.textContent = "No background decode bookmarks configured.";
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const summary = [];
|
||||||
|
if (status.active_rig) {
|
||||||
|
if (typeof status.center_hz === "number" && Number.isFinite(status.center_hz)) summary.push("Center " + formatFreq(status.center_hz));
|
||||||
|
if (typeof status.sample_rate === "number" && Number.isFinite(status.sample_rate) && status.sample_rate > 0) summary.push("Span ±" + formatFreq(status.sample_rate / 2));
|
||||||
|
} else {
|
||||||
|
summary.push("This rig is not currently selected for audio.");
|
||||||
|
}
|
||||||
|
let html = summary.length ? '<div style="margin-bottom:0.8rem;color:var(--text-muted);">' + escHtml(summary.join(" · ")) + "</div>" : "";
|
||||||
|
html += '<div class="bgd-status-list">';
|
||||||
|
entries.forEach(function (entry) {
|
||||||
|
const name = entry.bookmark_name || entry.bookmark_id || "Unknown bookmark";
|
||||||
|
const parts = [];
|
||||||
|
if (typeof entry.freq_hz === "number" && Number.isFinite(entry.freq_hz)) parts.push(formatFreq(entry.freq_hz));
|
||||||
|
if (entry.mode) parts.push(entry.mode);
|
||||||
|
if (Array.isArray(entry.decoder_kinds) && entry.decoder_kinds.length) {
|
||||||
|
parts.push(entry.decoder_kinds.join("/").toUpperCase());
|
||||||
|
}
|
||||||
|
html +=
|
||||||
|
'<div class="bgd-status-row">' +
|
||||||
|
'<div>' +
|
||||||
|
'<div class="bgd-status-name">' + escHtml(name) + '</div>' +
|
||||||
|
'<div class="bgd-status-meta">' + escHtml(parts.join(" · ")) + '</div>' +
|
||||||
|
'</div>' +
|
||||||
|
'<div class="bgd-status-state" data-state="' + escHtml(entry.state || "inactive") + '">' +
|
||||||
|
'<svg class="bgd-state-dot" viewBox="0 0 8 8"><circle cx="4" cy="4" r="3.5"/></svg>' +
|
||||||
|
escHtml(prettyState(entry.state)) + '</div>' +
|
||||||
|
'</div>';
|
||||||
|
});
|
||||||
|
html += "</div>";
|
||||||
|
card.innerHTML = html;
|
||||||
|
}
|
||||||
|
|
||||||
|
function prettyState(state: string | undefined): string {
|
||||||
|
switch (state) {
|
||||||
|
case "active": return "\u2713 Active";
|
||||||
|
case "out_of_span": return "\u25B3 Out of span";
|
||||||
|
case "waiting_for_spectrum": return "\u25B3 Waiting";
|
||||||
|
case "waiting_for_user": return "\u25B3 No user";
|
||||||
|
case "missing_bookmark": return "\u2717 Missing";
|
||||||
|
case "no_supported_decoders": return "\u2717 Unsupported";
|
||||||
|
case "disabled": return "\u25B3 Disabled";
|
||||||
|
case "handled_by_scheduler": return "\u25B3 Scheduler";
|
||||||
|
case "scheduler_has_control": return "\u25B3 Scheduler";
|
||||||
|
case "handled_by_virtual_channel": return "\u25B3 VChan";
|
||||||
|
default: return "\u25B3 Inactive";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function setCheckbox(id: string, value: boolean): void {
|
||||||
|
const el = document.getElementById(id) as HTMLInputElement | null;
|
||||||
|
if (el) el.checked = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
function formatFreq(hz: number): string {
|
||||||
|
if (!Number.isFinite(hz) || hz <= 0) return "--";
|
||||||
|
if (hz >= 1e6) return (hz / 1e6).toFixed(3).replace(/\.?0+$/, "") + " MHz";
|
||||||
|
if (hz >= 1e3) return (hz / 1e3).toFixed(1).replace(/\.?0+$/, "") + " kHz";
|
||||||
|
return `${String(hz)} Hz`;
|
||||||
|
}
|
||||||
|
|
||||||
|
function escHtml(value: unknown): string {
|
||||||
|
const text = typeof value === "string" || typeof value === "number" || typeof value === "boolean"
|
||||||
|
? String(value)
|
||||||
|
: "";
|
||||||
|
return text
|
||||||
|
.replace(/&/g, "&")
|
||||||
|
.replace(/</g, "<")
|
||||||
|
.replace(/>/g, ">")
|
||||||
|
.replace(/"/g, """);
|
||||||
|
}
|
||||||
|
|
||||||
|
function errorMessage(error: unknown): string {
|
||||||
|
return error instanceof Error ? error.message : String(error);
|
||||||
|
}
|
||||||
|
|
||||||
|
function markBgdDirty() {
|
||||||
|
if (bgdDirty) return;
|
||||||
|
bgdDirty = true;
|
||||||
|
const btn = document.getElementById("background-decode-save-btn");
|
||||||
|
if (btn) btn.classList.add("sch-dirty");
|
||||||
|
}
|
||||||
|
|
||||||
|
function clearBgdDirty() {
|
||||||
|
bgdDirty = false;
|
||||||
|
const btn = document.getElementById("background-decode-save-btn");
|
||||||
|
if (btn) btn.classList.remove("sch-dirty");
|
||||||
|
}
|
||||||
|
|
||||||
|
function showToast(msg: string, isError: boolean): void {
|
||||||
|
const el = document.getElementById("background-decode-toast");
|
||||||
|
if (!el) return;
|
||||||
|
el.textContent = msg;
|
||||||
|
el.style.background = isError ? "var(--color-error, #c00)" : "var(--accent-green)";
|
||||||
|
el.style.display = "block";
|
||||||
|
setTimeout(function () {
|
||||||
|
el.style.display = "none";
|
||||||
|
}, 3000);
|
||||||
|
}
|
||||||
|
|
||||||
|
function selectAllBookmarks() {
|
||||||
|
if (!currentConfig) {
|
||||||
|
currentConfig = { remote: currentRigId, enabled: false, bookmark_ids: [] };
|
||||||
|
}
|
||||||
|
const ids = supportedBookmarks().map(function (bm) { return bm.id; });
|
||||||
|
currentConfig.bookmark_ids = ids;
|
||||||
|
renderBookmarkChecklist((document.getElementById("bgd-bookmark-filter") as HTMLInputElement | null)?.value);
|
||||||
|
markBgdDirty();
|
||||||
|
}
|
||||||
|
|
||||||
|
function deselectAllBookmarks() {
|
||||||
|
if (!currentConfig) {
|
||||||
|
currentConfig = { remote: currentRigId, enabled: false, bookmark_ids: [] };
|
||||||
|
}
|
||||||
|
currentConfig.bookmark_ids = [];
|
||||||
|
renderBookmarkChecklist((document.getElementById("bgd-bookmark-filter") as HTMLInputElement | null)?.value);
|
||||||
|
markBgdDirty();
|
||||||
|
}
|
||||||
|
|
||||||
|
function wireBackgroundDecodeEvents() {
|
||||||
|
const filterInput = document.getElementById("bgd-bookmark-filter") as (HTMLInputElement & WiredElement) | null;
|
||||||
|
if (filterInput && !filterInput._wired) {
|
||||||
|
filterInput._wired = true;
|
||||||
|
filterInput.addEventListener("input", function () {
|
||||||
|
renderBookmarkChecklist(filterInput.value);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
const enabledCb = document.getElementById("background-decode-enabled") as (HTMLInputElement & WiredElement) | null;
|
||||||
|
if (enabledCb && !enabledCb._wired) {
|
||||||
|
enabledCb._wired = true;
|
||||||
|
enabledCb.addEventListener("change", function () { markBgdDirty(); });
|
||||||
|
}
|
||||||
|
|
||||||
|
const selectAllBtn = document.getElementById("bgd-select-all-btn") as WiredElement | null;
|
||||||
|
if (selectAllBtn && !selectAllBtn._wired) {
|
||||||
|
selectAllBtn._wired = true;
|
||||||
|
selectAllBtn.addEventListener("click", selectAllBookmarks);
|
||||||
|
}
|
||||||
|
|
||||||
|
const deselectAllBtn = document.getElementById("bgd-deselect-all-btn") as WiredElement | null;
|
||||||
|
if (deselectAllBtn && !deselectAllBtn._wired) {
|
||||||
|
deselectAllBtn._wired = true;
|
||||||
|
deselectAllBtn.addEventListener("click", deselectAllBookmarks);
|
||||||
|
}
|
||||||
|
|
||||||
|
const saveBtn = document.getElementById("background-decode-save-btn") as WiredElement | null;
|
||||||
|
if (saveBtn && !saveBtn._wired) {
|
||||||
|
saveBtn._wired = true;
|
||||||
|
saveBtn.addEventListener("click", saveBackgroundDecode);
|
||||||
|
}
|
||||||
|
|
||||||
|
const resetBtn = document.getElementById("background-decode-reset-btn") as WiredElement | null;
|
||||||
|
if (resetBtn && !resetBtn._wired) {
|
||||||
|
resetBtn._wired = true;
|
||||||
|
resetBtn.addEventListener("click", () => { void resetBackgroundDecode(); });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
bgdWindow.trx ??= {};
|
||||||
|
bgdWindow.trx.modules ??= {};
|
||||||
|
bgdWindow.trx.modules.backgroundDecode = {
|
||||||
|
initialize: initBackgroundDecode,
|
||||||
|
wireEvents: wireBackgroundDecodeEvents,
|
||||||
|
setRig: setBackgroundDecodeRig,
|
||||||
|
};
|
||||||
|
})();
|
||||||
@@ -0,0 +1,901 @@
|
|||||||
|
// SPDX-FileCopyrightText: 2026 Stan Grams <sjg@haxx.space>
|
||||||
|
//
|
||||||
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
|
export {};
|
||||||
|
|
||||||
|
/* DOM IDs in the server-owned page are required by this feature; bmEl throws
|
||||||
|
* during initialization if that contract is broken. */
|
||||||
|
/* eslint-disable @typescript-eslint/no-unnecessary-condition */
|
||||||
|
|
||||||
|
interface Bookmark {
|
||||||
|
id: string;
|
||||||
|
name: string;
|
||||||
|
freq_hz: number;
|
||||||
|
mode: string;
|
||||||
|
bandwidth_hz?: number | null;
|
||||||
|
locator?: string | null;
|
||||||
|
category?: string | null;
|
||||||
|
comment?: string | null;
|
||||||
|
decoders?: string[];
|
||||||
|
scope?: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface DecoderDescriptor {
|
||||||
|
id: string;
|
||||||
|
label: string;
|
||||||
|
activation?: string;
|
||||||
|
active_modes?: string[];
|
||||||
|
bookmark_selectable?: boolean;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface BookmarkService {
|
||||||
|
readonly overlayList: readonly Bookmark[];
|
||||||
|
readonly overlayRevision: number;
|
||||||
|
refreshOverlay(): Promise<void>;
|
||||||
|
invalidateColors(): void;
|
||||||
|
apply(bookmark: Bookmark): void;
|
||||||
|
formatFrequency(frequencyHz: number): string;
|
||||||
|
fetch(categoryFilter: string): Promise<void>;
|
||||||
|
populateScopePicker(): void;
|
||||||
|
}
|
||||||
|
interface VirtualChannelService {
|
||||||
|
interceptMode(mode: string): Promise<boolean>;
|
||||||
|
interceptBandwidth(bandwidthHz: number): Promise<boolean>;
|
||||||
|
takeSchedulerControl(): Promise<void>;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface BookmarkBridge extends Window {
|
||||||
|
authEnabled?: boolean;
|
||||||
|
authRole?: string | null;
|
||||||
|
lastActiveRigId?: string | null;
|
||||||
|
lastRigIds?: string[];
|
||||||
|
lastRigDisplayNames?: Record<string, string>;
|
||||||
|
lastFreqHz?: number;
|
||||||
|
lastModeName?: string;
|
||||||
|
lastSpectrumData?: unknown;
|
||||||
|
currentBandwidthHz?: number;
|
||||||
|
modeEl?: HTMLSelectElement | null;
|
||||||
|
decoderRegistry?: DecoderDescriptor[];
|
||||||
|
trx?: { modules?: { bookmarks?: BookmarkService; vchan?: VirtualChannelService } };
|
||||||
|
trxUi: {
|
||||||
|
confirm(options: { title: string; message: string; confirmLabel: string; danger?: boolean }): Promise<boolean>;
|
||||||
|
notify?(message: string, options: { kind: "error" }): void;
|
||||||
|
};
|
||||||
|
syncBookmarkMapLocators?(bookmarks: readonly Bookmark[]): void;
|
||||||
|
scheduleSpectrumDraw?(): void;
|
||||||
|
syncBandwidthInput?(bandwidthHz: number): void;
|
||||||
|
applyLocalTunedFrequency?(frequencyHz: number, force?: boolean): void;
|
||||||
|
setRigFrequency?(frequencyHz: number): Promise<unknown>;
|
||||||
|
postPath(path: string): Promise<unknown>;
|
||||||
|
onDecoderRegistryReady?(callback: () => void): void;
|
||||||
|
_freqOptimisticSeq?: number;
|
||||||
|
_freqOptimisticHz?: number;
|
||||||
|
}
|
||||||
|
|
||||||
|
type BookmarkElement = HTMLElement & HTMLInputElement & HTMLSelectElement;
|
||||||
|
const bridge = window as unknown as BookmarkBridge;
|
||||||
|
function bmEl(id: string): BookmarkElement {
|
||||||
|
const element = document.getElementById(id);
|
||||||
|
if (!element) throw new Error(`Missing bookmark element #${id}`);
|
||||||
|
return element as BookmarkElement;
|
||||||
|
}
|
||||||
|
|
||||||
|
function errorMessage(error: unknown): string {
|
||||||
|
return error instanceof Error ? error.message : String(error);
|
||||||
|
}
|
||||||
|
|
||||||
|
// --- Bookmarks Tab ---
|
||||||
|
|
||||||
|
/** Current bookmark scope: "general" or a rig remote name. */
|
||||||
|
let bmScope = "general";
|
||||||
|
|
||||||
|
/** Build the ?scope= query string for a given or current bookmark scope. */
|
||||||
|
function bmScopeParam(prefix: boolean, scope?: string | null): string {
|
||||||
|
const sep = prefix ? "&" : "?";
|
||||||
|
return sep + "scope=" + encodeURIComponent(scope != null ? scope : bmScope);
|
||||||
|
}
|
||||||
|
|
||||||
|
let bmList: Bookmark[] = [];
|
||||||
|
/** Overlay list: always merged general + active rig bookmarks (for spectrum/map). */
|
||||||
|
let bmOverlayList: Bookmark[] = [];
|
||||||
|
let bmOverlayRevision = 0;
|
||||||
|
let bmFilteredList: Bookmark[] = [];
|
||||||
|
let bmEditScope: string | null = null;
|
||||||
|
let bmCurrentPage = 1;
|
||||||
|
const BM_PAGE_SIZE = 25;
|
||||||
|
const bmSelected = new Set<string>();
|
||||||
|
|
||||||
|
function bmFmtFreq(hz: number): string {
|
||||||
|
if (!Number.isFinite(hz) || hz <= 0) return "--";
|
||||||
|
if (hz >= 1e9) return (hz / 1e9).toFixed(6).replace(/\.?0+$/, "") + "\u202fGHz";
|
||||||
|
if (hz >= 1e6) return (hz / 1e6).toFixed(6).replace(/\.?0+$/, "") + "\u202fMHz";
|
||||||
|
if (hz >= 1e3) return (hz / 1e3).toFixed(3).replace(/\.?0+$/, "") + "\u202fkHz";
|
||||||
|
return `${hz}\u202fHz`;
|
||||||
|
}
|
||||||
|
|
||||||
|
function bmEsc(str: unknown): string {
|
||||||
|
const d = document.createElement("div");
|
||||||
|
d.appendChild(document.createTextNode(String(str)));
|
||||||
|
return d.innerHTML;
|
||||||
|
}
|
||||||
|
|
||||||
|
function bmCanControl() {
|
||||||
|
return (
|
||||||
|
(typeof bridge.authEnabled !== "undefined" && !bridge.authEnabled) ||
|
||||||
|
(typeof bridge.authRole !== "undefined" && bridge.authRole === "control")
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Show/hide the Add Bookmark / Select All buttons based on the current auth role.
|
||||||
|
function bmSyncAccess() {
|
||||||
|
const canCtrl = bmCanControl();
|
||||||
|
const addBtn = bmEl("bm-add-btn");
|
||||||
|
const selectAllBtn = bmEl("bm-select-all-btn");
|
||||||
|
if (addBtn) addBtn.style.display = canCtrl ? "" : "none";
|
||||||
|
if (selectAllBtn) selectAllBtn.style.display = canCtrl ? "" : "none";
|
||||||
|
}
|
||||||
|
|
||||||
|
/** The listing scope: always the active rig (to merge general + rig bookmarks). */
|
||||||
|
function bmListScope() {
|
||||||
|
const rig = (typeof bridge.lastActiveRigId !== "undefined") ? bridge.lastActiveRigId : null;
|
||||||
|
return rig || "general";
|
||||||
|
}
|
||||||
|
|
||||||
|
async function bmFetchOverlay() {
|
||||||
|
const overlayScope = bmListScope();
|
||||||
|
try {
|
||||||
|
const resp = await fetch("/bookmarks" + bmScopeParam(false, overlayScope));
|
||||||
|
if (!resp.ok) throw new Error(`HTTP ${resp.status}`);
|
||||||
|
bmOverlayList = await resp.json() as Bookmark[];
|
||||||
|
} catch (e) {
|
||||||
|
console.error("Failed to fetch overlay bookmarks:", e);
|
||||||
|
bmOverlayList = [];
|
||||||
|
}
|
||||||
|
bmOverlayRevision++;
|
||||||
|
if (typeof bridge.syncBookmarkMapLocators === "function") {
|
||||||
|
bridge.syncBookmarkMapLocators(bmOverlayList);
|
||||||
|
}
|
||||||
|
if (typeof bridge.scheduleSpectrumDraw === "function") bridge.scheduleSpectrumDraw();
|
||||||
|
}
|
||||||
|
|
||||||
|
async function bmFetch(categoryFilter: string): Promise<void> {
|
||||||
|
let url = "/bookmarks";
|
||||||
|
let hasQuery = false;
|
||||||
|
if (categoryFilter && categoryFilter !== "") {
|
||||||
|
url += "?category=" + encodeURIComponent(categoryFilter);
|
||||||
|
hasQuery = true;
|
||||||
|
}
|
||||||
|
url += bmScopeParam(hasQuery);
|
||||||
|
const overlayPromise = bmFetchOverlay();
|
||||||
|
try {
|
||||||
|
const resp = await fetch(url);
|
||||||
|
if (!resp.ok) throw new Error(`HTTP ${resp.status}`);
|
||||||
|
bmList = await resp.json() as Bookmark[];
|
||||||
|
} catch (e) {
|
||||||
|
console.error("Failed to fetch bookmarks:", e);
|
||||||
|
bmList = [];
|
||||||
|
}
|
||||||
|
bmSelected.clear();
|
||||||
|
bmUpdateSelectionUi();
|
||||||
|
bmSyncAccess();
|
||||||
|
bmApplyFilters();
|
||||||
|
void bmRefreshCategoryFilter(categoryFilter);
|
||||||
|
await overlayPromise;
|
||||||
|
}
|
||||||
|
|
||||||
|
function bmApplyFilters() {
|
||||||
|
const text = (bmEl("bm-text-filter")?.value || "").trim().toLowerCase();
|
||||||
|
const modeFilter = (bmEl("bm-mode-filter")?.value || "").trim().toUpperCase();
|
||||||
|
let filtered = modeFilter
|
||||||
|
? bmList.filter((bm) => (bm.mode || "").toUpperCase() === modeFilter)
|
||||||
|
: bmList;
|
||||||
|
filtered = text
|
||||||
|
? filtered.filter((bm) =>
|
||||||
|
(bm.name || "").toLowerCase().includes(text) ||
|
||||||
|
(bm.locator || "").toLowerCase().includes(text) ||
|
||||||
|
(bm.category || "").toLowerCase().includes(text) ||
|
||||||
|
(bm.comment || "").toLowerCase().includes(text)
|
||||||
|
)
|
||||||
|
: filtered;
|
||||||
|
bmFilteredList = filtered;
|
||||||
|
bmCurrentPage = 1;
|
||||||
|
bmRender(filtered);
|
||||||
|
}
|
||||||
|
|
||||||
|
async function bmRefreshCategoryFilter(keepValue: string): Promise<void> {
|
||||||
|
const sel = bmEl("bm-category-filter");
|
||||||
|
const modeSel = bmEl("bm-mode-filter");
|
||||||
|
if (!sel && !modeSel) return;
|
||||||
|
try {
|
||||||
|
const resp = await fetch("/bookmarks" + bmScopeParam(false));
|
||||||
|
if (!resp.ok) return;
|
||||||
|
const all = await resp.json() as Bookmark[];
|
||||||
|
if (sel) {
|
||||||
|
const cats = [...new Set(all.map((b) => b.category || "").filter(Boolean))].sort();
|
||||||
|
while (sel.options.length > 1) sel.remove(1);
|
||||||
|
cats.forEach((cat) => {
|
||||||
|
const opt = document.createElement("option");
|
||||||
|
opt.value = cat;
|
||||||
|
opt.textContent = cat;
|
||||||
|
sel.add(opt);
|
||||||
|
});
|
||||||
|
if (keepValue && cats.includes(keepValue)) sel.value = keepValue;
|
||||||
|
}
|
||||||
|
if (modeSel) {
|
||||||
|
const keepMode = modeSel.value;
|
||||||
|
const modes = [...new Set(all.map((b) => (b.mode || "").trim().toUpperCase()).filter(Boolean))].sort();
|
||||||
|
while (modeSel.options.length > 1) modeSel.remove(1);
|
||||||
|
modes.forEach((mode) => {
|
||||||
|
const opt = document.createElement("option");
|
||||||
|
opt.value = mode;
|
||||||
|
opt.textContent = mode;
|
||||||
|
modeSel.add(opt);
|
||||||
|
});
|
||||||
|
if (keepMode && modes.includes(keepMode)) modeSel.value = keepMode;
|
||||||
|
}
|
||||||
|
} catch {}
|
||||||
|
}
|
||||||
|
|
||||||
|
function bmRender(list: Bookmark[]): void {
|
||||||
|
const tbody = bmEl("bm-tbody");
|
||||||
|
const emptyEl = bmEl("bm-empty");
|
||||||
|
const paginatorEl = bmEl("bm-paginator");
|
||||||
|
const pageSummaryEl = bmEl("bm-page-summary");
|
||||||
|
const pageIndicatorEl = bmEl("bm-page-indicator");
|
||||||
|
const prevBtn = bmEl("bm-page-prev");
|
||||||
|
const nextBtn = bmEl("bm-page-next");
|
||||||
|
if (!tbody) return;
|
||||||
|
tbody.innerHTML = "";
|
||||||
|
|
||||||
|
if (list.length === 0) {
|
||||||
|
if (emptyEl) emptyEl.style.display = "";
|
||||||
|
if (paginatorEl) paginatorEl.style.display = "none";
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (emptyEl) emptyEl.style.display = "none";
|
||||||
|
|
||||||
|
const canControl = bmCanControl();
|
||||||
|
const totalPages = Math.max(1, Math.ceil(list.length / BM_PAGE_SIZE));
|
||||||
|
const page = Math.min(Math.max(bmCurrentPage, 1), totalPages);
|
||||||
|
bmCurrentPage = page;
|
||||||
|
const startIndex = (page - 1) * BM_PAGE_SIZE;
|
||||||
|
const endIndex = Math.min(startIndex + BM_PAGE_SIZE, list.length);
|
||||||
|
const pageItems = list.slice(startIndex, endIndex);
|
||||||
|
|
||||||
|
const showScope = bmScope !== "general";
|
||||||
|
pageItems.forEach((bm) => {
|
||||||
|
const tr = document.createElement("tr");
|
||||||
|
tr.dataset.bmId = bm.id;
|
||||||
|
const bwCell = bm.bandwidth_hz ? bmFmtFreq(bm.bandwidth_hz) : "--";
|
||||||
|
const locatorCell = bm.locator || "--";
|
||||||
|
const catCell = bm.category || "Uncategorised";
|
||||||
|
const decoderCell = (bm.decoders || []).join(", ").toUpperCase() || "--";
|
||||||
|
const commentCell = bm.comment || "";
|
||||||
|
const checked = bmSelected.has(bm.id) ? " checked" : "";
|
||||||
|
const scopeBadge = showScope && bm.scope === "general" ? ' <span class="bm-scope-badge">G</span>' : "";
|
||||||
|
tr.innerHTML =
|
||||||
|
`<td class="bm-col-sel"><input type="checkbox" class="bm-row-sel" data-bm-id="${bmEsc(bm.id)}"${checked} aria-label="Select ${bmEsc(bm.name)}" /></td>` +
|
||||||
|
`<td class="bm-col-name">${bmEsc(bm.name)}${scopeBadge}</td>` +
|
||||||
|
`<td class="bm-col-freq">${bmFmtFreq(bm.freq_hz)}</td>` +
|
||||||
|
`<td class="bm-col-mode">${bmEsc(bm.mode)}</td>` +
|
||||||
|
`<td class="bm-col-bw">${bwCell}</td>` +
|
||||||
|
`<td class="bm-col-loc">${bmEsc(locatorCell)}</td>` +
|
||||||
|
`<td class="bm-col-cat">${bmEsc(catCell)}</td>` +
|
||||||
|
`<td class="bm-col-dec">${bmEsc(decoderCell)}</td>` +
|
||||||
|
`<td class="bm-col-cmt">${bmEsc(commentCell)}</td>` +
|
||||||
|
`<td class="bm-col-act">` +
|
||||||
|
`<button class="bm-tune-btn" type="button" data-bm-id="${bmEsc(bm.id)}">Tune</button>` +
|
||||||
|
(canControl
|
||||||
|
? `<button class="bm-edit-btn" type="button" data-bm-id="${bmEsc(bm.id)}">Edit</button>` +
|
||||||
|
`<button class="bm-del-btn" type="button" data-bm-id="${bmEsc(bm.id)}">Delete</button>`
|
||||||
|
: "") +
|
||||||
|
`</td>`;
|
||||||
|
tbody.appendChild(tr);
|
||||||
|
});
|
||||||
|
bmSyncSelectAllCheckbox();
|
||||||
|
|
||||||
|
if (paginatorEl) paginatorEl.style.display = totalPages > 1 ? "flex" : "";
|
||||||
|
if (pageSummaryEl) pageSummaryEl.textContent = `Showing ${startIndex + 1}-${endIndex} of ${list.length}`;
|
||||||
|
if (pageIndicatorEl) pageIndicatorEl.textContent = `Page ${page} of ${totalPages}`;
|
||||||
|
if (prevBtn) prevBtn.disabled = page <= 1;
|
||||||
|
if (nextBtn) nextBtn.disabled = page >= totalPages;
|
||||||
|
}
|
||||||
|
|
||||||
|
function bmChangePage(delta: number): void {
|
||||||
|
const totalPages = Math.max(1, Math.ceil(bmFilteredList.length / BM_PAGE_SIZE));
|
||||||
|
const nextPage = Math.min(Math.max(bmCurrentPage + delta, 1), totalPages);
|
||||||
|
if (nextPage === bmCurrentPage) return;
|
||||||
|
bmCurrentPage = nextPage;
|
||||||
|
bmRender(bmFilteredList);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Read decoder checkboxes and return an array of selected decoder names.
|
||||||
|
function bmReadDecoders(): string[] {
|
||||||
|
return (bridge.decoderRegistry || [])
|
||||||
|
.filter(d => d.bookmark_selectable)
|
||||||
|
.filter(d => bmEl("bm-dec-" + d.id)?.checked)
|
||||||
|
.map(d => d.id);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Set decoder checkboxes to match the given array.
|
||||||
|
function bmWriteDecoders(decoders: readonly string[]): void {
|
||||||
|
const set = new Set(decoders || []);
|
||||||
|
(bridge.decoderRegistry || [])
|
||||||
|
.filter(d => d.bookmark_selectable)
|
||||||
|
.forEach(d => {
|
||||||
|
const el = bmEl("bm-dec-" + d.id);
|
||||||
|
if (el) el.checked = set.has(d.id);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build decoder checkboxes dynamically from the registry.
|
||||||
|
function bmBuildDecoderCheckboxes() {
|
||||||
|
const container = bmEl("bm-decoder-checkboxes");
|
||||||
|
if (!container) return;
|
||||||
|
container.innerHTML = "";
|
||||||
|
(bridge.decoderRegistry || [])
|
||||||
|
.filter(d => d.bookmark_selectable)
|
||||||
|
.forEach(d => {
|
||||||
|
const label = document.createElement("label");
|
||||||
|
label.className = "bm-decoder-check";
|
||||||
|
label.innerHTML = '<input type="checkbox" id="bm-dec-' + d.id + '" value="' + d.id + '" /> ' + d.label;
|
||||||
|
container.appendChild(label);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function bmOpenForm(bm: Bookmark | null): void {
|
||||||
|
const wrap = bmEl("bm-form-wrap");
|
||||||
|
if (!wrap) return;
|
||||||
|
bmEditScope = bm ? (bm.scope || bmScope) : null;
|
||||||
|
|
||||||
|
// Rebuild decoder checkboxes from registry (handles race where registry
|
||||||
|
// loaded after initial build).
|
||||||
|
bmBuildDecoderCheckboxes();
|
||||||
|
|
||||||
|
bmEl("bm-id").value = bm ? bm.id : "";
|
||||||
|
bmEl("bm-name").value = bm ? bm.name : "";
|
||||||
|
bmEl("bm-freq").value = bm ? String(bm.freq_hz) : "";
|
||||||
|
bmEl("bm-mode").value = bm ? bm.mode : "";
|
||||||
|
bmEl("bm-bw").value = bm?.bandwidth_hz ? String(bm.bandwidth_hz) : "";
|
||||||
|
bmEl("bm-locator").value = bm ? (bm.locator || "") : "";
|
||||||
|
bmEl("bm-category-input").value = bm ? (bm.category || "") : "";
|
||||||
|
bmEl("bm-comment").value = bm ? (bm.comment || "") : "";
|
||||||
|
bmWriteDecoders(bm?.decoders ?? []);
|
||||||
|
bmEl("bm-form-title").textContent = bm ? "Edit Bookmark" : "Add Bookmark";
|
||||||
|
|
||||||
|
wrap.style.display = "flex";
|
||||||
|
bmEl("bm-name").focus();
|
||||||
|
}
|
||||||
|
|
||||||
|
function bmCloseForm() {
|
||||||
|
const wrap = bmEl("bm-form-wrap");
|
||||||
|
if (wrap) wrap.style.display = "none";
|
||||||
|
}
|
||||||
|
|
||||||
|
function bmPrefillFromStatus() {
|
||||||
|
// Use globals maintained by app.js (updated by SSE stream)
|
||||||
|
if (typeof bridge.lastFreqHz === "number" && Number.isFinite(bridge.lastFreqHz)) {
|
||||||
|
bmEl("bm-freq").value = String(Math.round(bridge.lastFreqHz));
|
||||||
|
}
|
||||||
|
if (typeof bridge.lastModeName === "string" && bridge.lastModeName) {
|
||||||
|
bmEl("bm-mode").value = bridge.lastModeName;
|
||||||
|
}
|
||||||
|
if (typeof bridge.currentBandwidthHz === "number" && bridge.currentBandwidthHz > 0) {
|
||||||
|
bmEl("bm-bw").value = String(Math.round(bridge.currentBandwidthHz));
|
||||||
|
}
|
||||||
|
// Prefill decoder checkboxes from current toggle button state.
|
||||||
|
const activeDecoders = (bridge.decoderRegistry || [])
|
||||||
|
.filter(d => d.bookmark_selectable && d.activation === "toggle")
|
||||||
|
.filter(d => {
|
||||||
|
const btn = bmEl(d.id + "-decode-toggle-btn");
|
||||||
|
return btn && btn.dataset.enabled === "true";
|
||||||
|
})
|
||||||
|
.map(d => d.id);
|
||||||
|
bmWriteDecoders(activeDecoders);
|
||||||
|
}
|
||||||
|
|
||||||
|
async function bmSave(e: Event): Promise<void> {
|
||||||
|
e.preventDefault();
|
||||||
|
const id = bmEl("bm-id").value;
|
||||||
|
const name = bmEl("bm-name").value.trim();
|
||||||
|
const freqStr = bmEl("bm-freq").value;
|
||||||
|
const freq_hz = parseInt(freqStr, 10);
|
||||||
|
const mode = bmEl("bm-mode").value.trim();
|
||||||
|
const bwStr = bmEl("bm-bw").value;
|
||||||
|
const bandwidth_hz = bwStr ? parseInt(bwStr, 10) : null;
|
||||||
|
const locator = bmEl("bm-locator").value.trim().toUpperCase();
|
||||||
|
const category = bmEl("bm-category-input").value.trim();
|
||||||
|
const comment = bmEl("bm-comment").value.trim();
|
||||||
|
const decoders = bmReadDecoders();
|
||||||
|
|
||||||
|
const formError = bmEl("bm-form-error");
|
||||||
|
if (formError) formError.textContent = "";
|
||||||
|
if (!name || !Number.isFinite(freq_hz) || !mode) {
|
||||||
|
if (formError) formError.textContent = "Enter a name, a valid frequency, and a mode.";
|
||||||
|
const invalid = !name ? bmEl("bm-name")
|
||||||
|
: !Number.isFinite(freq_hz) ? bmEl("bm-freq") : bmEl("bm-mode");
|
||||||
|
invalid?.focus();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const body = {
|
||||||
|
name,
|
||||||
|
freq_hz,
|
||||||
|
mode,
|
||||||
|
bandwidth_hz,
|
||||||
|
locator: locator || null,
|
||||||
|
category,
|
||||||
|
comment,
|
||||||
|
decoders,
|
||||||
|
};
|
||||||
|
|
||||||
|
try {
|
||||||
|
let resp;
|
||||||
|
if (id) {
|
||||||
|
resp = await fetch("/bookmarks/" + encodeURIComponent(id) + bmScopeParam(false, bmEditScope), {
|
||||||
|
method: "PUT",
|
||||||
|
headers: { "Content-Type": "application/json" },
|
||||||
|
body: JSON.stringify(body),
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
resp = await fetch("/bookmarks" + bmScopeParam(false), {
|
||||||
|
method: "POST",
|
||||||
|
headers: { "Content-Type": "application/json" },
|
||||||
|
body: JSON.stringify(body),
|
||||||
|
});
|
||||||
|
}
|
||||||
|
if (!resp.ok) {
|
||||||
|
const text = await resp.text();
|
||||||
|
if (resp.status === 409) {
|
||||||
|
throw new Error("A bookmark for that frequency already exists.");
|
||||||
|
}
|
||||||
|
throw new Error(text || `HTTP ${resp.status}`);
|
||||||
|
}
|
||||||
|
bmCloseForm();
|
||||||
|
await bmFetch(bmEl("bm-category-filter").value);
|
||||||
|
} catch (err) {
|
||||||
|
console.error("Failed to save bookmark:", err);
|
||||||
|
if (formError) formError.textContent = "Failed to save bookmark: " + errorMessage(err);
|
||||||
|
bridge.trxUi.notify?.("Bookmark could not be saved", { kind: "error" });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async function bmDelete(id: string): Promise<void> {
|
||||||
|
if (!await bridge.trxUi.confirm({ title: "Delete bookmark?", message: "This bookmark will be permanently removed.", confirmLabel: "Delete" })) return;
|
||||||
|
const bm = bmList.find((b) => b.id === id);
|
||||||
|
const scope = bm ? bm.scope : undefined;
|
||||||
|
try {
|
||||||
|
const resp = await fetch("/bookmarks/" + encodeURIComponent(id) + bmScopeParam(false, scope), {
|
||||||
|
method: "DELETE",
|
||||||
|
});
|
||||||
|
if (!resp.ok) throw new Error(`HTTP ${resp.status}`);
|
||||||
|
await bmFetch(bmEl("bm-category-filter").value);
|
||||||
|
} catch (err) {
|
||||||
|
console.error("Failed to delete bookmark:", err);
|
||||||
|
bridge.trxUi.notify?.("Failed to delete bookmark: " + errorMessage(err), { kind: "error" });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function bmApply(bm: Bookmark): void {
|
||||||
|
try {
|
||||||
|
// --- Optimistic UI updates (instant, before any network round-trips) ---
|
||||||
|
if (typeof bridge.modeEl !== "undefined" && bridge.modeEl) {
|
||||||
|
bridge.modeEl.value = (bm.mode || "").toUpperCase();
|
||||||
|
}
|
||||||
|
if (bm.bandwidth_hz) {
|
||||||
|
if (typeof bridge.currentBandwidthHz !== "undefined") {
|
||||||
|
bridge.currentBandwidthHz = bm.bandwidth_hz;
|
||||||
|
}
|
||||||
|
bridge.currentBandwidthHz = bm.bandwidth_hz;
|
||||||
|
if (typeof bridge.syncBandwidthInput === "function") {
|
||||||
|
bridge.syncBandwidthInput(bm.bandwidth_hz);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (typeof bridge.applyLocalTunedFrequency === "function") {
|
||||||
|
// Set optimistic guard before applying so SSE cannot snap back.
|
||||||
|
if (typeof bridge._freqOptimisticSeq !== "undefined") {
|
||||||
|
++bridge._freqOptimisticSeq;
|
||||||
|
bridge._freqOptimisticHz = bm.freq_hz;
|
||||||
|
}
|
||||||
|
// Force display so the BW overlay is repositioned even when freq is unchanged.
|
||||||
|
bridge.applyLocalTunedFrequency(bm.freq_hz, true);
|
||||||
|
}
|
||||||
|
if (typeof bridge.scheduleSpectrumDraw === "function" && typeof bridge.lastSpectrumData !== "undefined" && bridge.lastSpectrumData) {
|
||||||
|
bridge.scheduleSpectrumDraw();
|
||||||
|
}
|
||||||
|
|
||||||
|
// Take scheduler control up front, then apply mode before bandwidth so a
|
||||||
|
// late SetMode cannot revert a saved WFM bookmark bandwidth to 180 kHz.
|
||||||
|
const tunePromise = (async () => {
|
||||||
|
await bridge.trx?.modules?.vchan?.takeSchedulerControl();
|
||||||
|
|
||||||
|
const onVirtual = await bridge.trx?.modules?.vchan?.interceptMode(bm.mode) ?? false;
|
||||||
|
if (!onVirtual) {
|
||||||
|
await bridge.postPath("/set_mode?mode=" + encodeURIComponent(bm.mode));
|
||||||
|
}
|
||||||
|
|
||||||
|
if (bm.bandwidth_hz) {
|
||||||
|
const bwHandledByVchan =
|
||||||
|
await bridge.trx?.modules?.vchan?.interceptBandwidth(bm.bandwidth_hz) ?? false;
|
||||||
|
if (!bwHandledByVchan) {
|
||||||
|
await bridge.postPath(`/set_bandwidth?hz=${bm.bandwidth_hz}`);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// bridge.setRigFrequency is wrapped by vchan.js to redirect to the channel API
|
||||||
|
// when on a virtual channel, so this call works correctly in both cases.
|
||||||
|
// It also does its own optimistic update (bridge.applyLocalTunedFrequency) but
|
||||||
|
// that's a no-op since we already set the same value above.
|
||||||
|
if (typeof bridge.setRigFrequency === "function") {
|
||||||
|
await bridge.setRigFrequency(bm.freq_hz);
|
||||||
|
} else {
|
||||||
|
await bridge.postPath(`/set_freq?hz=${bm.freq_hz}`);
|
||||||
|
}
|
||||||
|
})();
|
||||||
|
// Decoder toggles — fire-and-forget.
|
||||||
|
// - Decoders incompatible with the new mode are always turned off
|
||||||
|
// (even when the bookmark has no explicit decoder selection).
|
||||||
|
// - For compatible decoders, if the bookmark specifies a set, the
|
||||||
|
// toggles are driven to match that set; otherwise they're left
|
||||||
|
// alone.
|
||||||
|
const hasDecoders = Array.isArray(bm.decoders) && bm.decoders.length > 0;
|
||||||
|
const modeUp = (bm.mode || "").toUpperCase();
|
||||||
|
const allToggleDecoders = (bridge.decoderRegistry || []).filter(d =>
|
||||||
|
d.activation === "toggle"
|
||||||
|
);
|
||||||
|
const decoderPromise = allToggleDecoders.length ? (async () => {
|
||||||
|
let statusUrl = "/status";
|
||||||
|
if (typeof bridge.lastActiveRigId !== "undefined" && bridge.lastActiveRigId) {
|
||||||
|
statusUrl += "?remote=" + encodeURIComponent(bridge.lastActiveRigId);
|
||||||
|
}
|
||||||
|
const statusResp = await fetch(statusUrl);
|
||||||
|
if (!statusResp.ok) return;
|
||||||
|
const st = await statusResp.json() as Record<string, unknown>;
|
||||||
|
const toggles: Promise<unknown>[] = [];
|
||||||
|
for (const d of allToggleDecoders) {
|
||||||
|
const statusKey = d.id.replace(/-/g, "_") + "_decode_enabled";
|
||||||
|
const currentlyOn = !!st[statusKey];
|
||||||
|
const compatible = Array.isArray(d.active_modes)
|
||||||
|
&& d.active_modes.includes(modeUp);
|
||||||
|
let wanted;
|
||||||
|
if (!compatible) {
|
||||||
|
// Always disable decoders that don't apply to the new mode.
|
||||||
|
wanted = false;
|
||||||
|
} else if (hasDecoders) {
|
||||||
|
wanted = bm.decoders?.includes(d.id) ?? false;
|
||||||
|
} else {
|
||||||
|
// Mode-compatible and no bookmark selection: leave as-is.
|
||||||
|
wanted = currentlyOn;
|
||||||
|
}
|
||||||
|
if (wanted !== currentlyOn) {
|
||||||
|
toggles.push(bridge.postPath("/toggle_" + d.id.replace(/-/g, "_") + "_decode"));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (toggles.length) await Promise.all(toggles);
|
||||||
|
})() : Promise.resolve();
|
||||||
|
// Don't await — let the network calls settle in the background.
|
||||||
|
// Errors are logged but don't block the UI.
|
||||||
|
void Promise.all([tunePromise, decoderPromise]).catch((error: unknown) => {
|
||||||
|
console.error("Bookmark apply background error:", error);
|
||||||
|
});
|
||||||
|
} catch (err) {
|
||||||
|
console.error("Failed to apply bookmark:", err);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
bridge.trx ??= {};
|
||||||
|
bridge.trx.modules ??= {};
|
||||||
|
bridge.trx.modules.bookmarks = {
|
||||||
|
get overlayList() { return bmOverlayList; },
|
||||||
|
get overlayRevision() { return bmOverlayRevision; },
|
||||||
|
refreshOverlay: bmFetchOverlay,
|
||||||
|
invalidateColors() { bmOverlayRevision += 1; },
|
||||||
|
apply: bmApply,
|
||||||
|
formatFrequency: bmFmtFreq,
|
||||||
|
fetch: bmFetch,
|
||||||
|
populateScopePicker: bmPopulateScopePicker,
|
||||||
|
};
|
||||||
|
|
||||||
|
function bmUpdateSelectionUi() {
|
||||||
|
const count = bmSelected.size;
|
||||||
|
const canCtrl = bmCanControl();
|
||||||
|
const visible = count > 0 && canCtrl;
|
||||||
|
const btn = bmEl("bm-del-selected-btn");
|
||||||
|
const countEl = bmEl("bm-del-selected-count");
|
||||||
|
if (btn) btn.style.display = visible ? "" : "none";
|
||||||
|
if (countEl) countEl.textContent = String(count);
|
||||||
|
const moveWrap = bmEl("bm-move-selected-wrap");
|
||||||
|
const moveCountEl = bmEl("bm-move-selected-count");
|
||||||
|
if (moveWrap) moveWrap.style.display = visible ? "" : "none";
|
||||||
|
if (moveCountEl) moveCountEl.textContent = String(count);
|
||||||
|
if (visible) bmPopulateMoveTarget();
|
||||||
|
const selectAllBtn = bmEl("bm-select-all-btn");
|
||||||
|
if (selectAllBtn && bmCanControl()) {
|
||||||
|
const allSelected = bmFilteredList.length > 0 && bmFilteredList.every((bm) => bmSelected.has(bm.id));
|
||||||
|
selectAllBtn.textContent = allSelected ? "Deselect All" : "Select All";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Populate the move-target dropdown with all scopes except the current one. */
|
||||||
|
function bmPopulateMoveTarget() {
|
||||||
|
const sel = bmEl("bm-move-target");
|
||||||
|
if (!sel) return;
|
||||||
|
const rigIds = (typeof bridge.lastRigIds !== "undefined" && Array.isArray(bridge.lastRigIds)) ? bridge.lastRigIds : [];
|
||||||
|
const displayNames = (typeof bridge.lastRigDisplayNames !== "undefined") ? bridge.lastRigDisplayNames : {};
|
||||||
|
const prev = sel.value;
|
||||||
|
sel.innerHTML = "";
|
||||||
|
if (bmScope !== "general") {
|
||||||
|
const opt = document.createElement("option");
|
||||||
|
opt.value = "general";
|
||||||
|
opt.textContent = "General";
|
||||||
|
sel.appendChild(opt);
|
||||||
|
}
|
||||||
|
rigIds.forEach((id) => {
|
||||||
|
if (id === bmScope) return;
|
||||||
|
const opt = document.createElement("option");
|
||||||
|
opt.value = id;
|
||||||
|
opt.textContent = displayNames[id] || id;
|
||||||
|
sel.appendChild(opt);
|
||||||
|
});
|
||||||
|
if (prev && sel.querySelector(`option[value="${CSS.escape(prev)}"]`)) {
|
||||||
|
sel.value = prev;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async function bmMoveSelected() {
|
||||||
|
const ids = Array.from(bmSelected);
|
||||||
|
if (ids.length === 0) return;
|
||||||
|
const target = bmEl("bm-move-target")?.value;
|
||||||
|
if (!target) return;
|
||||||
|
const targetLabel = bmEl("bm-move-target")?.selectedOptions[0]?.textContent || target;
|
||||||
|
if (!await bridge.trxUi.confirm({
|
||||||
|
title: "Move selected bookmarks?",
|
||||||
|
message: `${ids.length} bookmark${ids.length > 1 ? "s" : ""} will move to “${targetLabel}”.`,
|
||||||
|
confirmLabel: "Move",
|
||||||
|
danger: false,
|
||||||
|
})) return;
|
||||||
|
try {
|
||||||
|
// Group selected IDs by their owning scope (skip if already in target).
|
||||||
|
const byScope: Record<string, string[]> = {};
|
||||||
|
for (const id of ids) {
|
||||||
|
const bm = bmList.find((b) => b.id === id);
|
||||||
|
const scope = bm?.scope || bmScope;
|
||||||
|
if (scope === target) continue;
|
||||||
|
(byScope[scope] ||= []).push(id);
|
||||||
|
}
|
||||||
|
await Promise.all(Object.entries(byScope).map(([scope, scopeIds]) =>
|
||||||
|
fetch("/bookmarks/batch_move" + bmScopeParam(false, scope), {
|
||||||
|
method: "POST",
|
||||||
|
headers: { "Content-Type": "application/json" },
|
||||||
|
body: JSON.stringify({ ids: scopeIds, to: target }),
|
||||||
|
}).then((r) => { if (!r.ok) throw new Error(`HTTP ${r.status}`); })
|
||||||
|
));
|
||||||
|
bmSelected.clear();
|
||||||
|
bmUpdateSelectionUi();
|
||||||
|
await bmFetch(bmEl("bm-category-filter").value);
|
||||||
|
} catch (err) {
|
||||||
|
console.error("Failed to move bookmarks:", err);
|
||||||
|
bridge.trxUi.notify?.("Failed to move bookmarks: " + errorMessage(err), { kind: "error" });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function bmSyncSelectAllCheckbox() {
|
||||||
|
const selectAll = bmEl("bm-select-all");
|
||||||
|
if (!selectAll) return;
|
||||||
|
const checkboxes = document.querySelectorAll<HTMLInputElement>(".bm-row-sel");
|
||||||
|
if (checkboxes.length === 0) {
|
||||||
|
selectAll.checked = false;
|
||||||
|
selectAll.indeterminate = false;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const checkedCount = Array.from(checkboxes).filter((cb) => cb.checked).length;
|
||||||
|
selectAll.checked = checkedCount === checkboxes.length;
|
||||||
|
selectAll.indeterminate = checkedCount > 0 && checkedCount < checkboxes.length;
|
||||||
|
}
|
||||||
|
|
||||||
|
async function bmDeleteSelected() {
|
||||||
|
const ids = Array.from(bmSelected);
|
||||||
|
if (ids.length === 0) return;
|
||||||
|
if (!await bridge.trxUi.confirm({
|
||||||
|
title: "Delete selected bookmarks?",
|
||||||
|
message: `${ids.length} bookmark${ids.length > 1 ? "s" : ""} will be permanently removed.`,
|
||||||
|
confirmLabel: "Delete",
|
||||||
|
})) return;
|
||||||
|
try {
|
||||||
|
// Group selected IDs by their owning scope.
|
||||||
|
const byScope: Record<string, string[]> = {};
|
||||||
|
for (const id of ids) {
|
||||||
|
const bm = bmList.find((b) => b.id === id);
|
||||||
|
const scope = bm?.scope || bmScope;
|
||||||
|
(byScope[scope] ||= []).push(id);
|
||||||
|
}
|
||||||
|
await Promise.all(Object.entries(byScope).map(([scope, scopeIds]) =>
|
||||||
|
fetch("/bookmarks/batch_delete" + bmScopeParam(false, scope), {
|
||||||
|
method: "POST",
|
||||||
|
headers: { "Content-Type": "application/json" },
|
||||||
|
body: JSON.stringify({ ids: scopeIds }),
|
||||||
|
}).then((r) => { if (!r.ok) throw new Error(`HTTP ${r.status}`); })
|
||||||
|
));
|
||||||
|
bmSelected.clear();
|
||||||
|
bmUpdateSelectionUi();
|
||||||
|
await bmFetch(bmEl("bm-category-filter").value);
|
||||||
|
} catch (err) {
|
||||||
|
console.error("Failed to delete bookmarks:", err);
|
||||||
|
bridge.trxUi.notify?.("Failed to delete bookmarks: " + errorMessage(err), { kind: "error" });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Populate the scope picker with "General" + one option per rig. */
|
||||||
|
function bmPopulateScopePicker() {
|
||||||
|
const picker = bmEl("bm-scope-picker");
|
||||||
|
if (!picker) return;
|
||||||
|
const rigIds = (typeof bridge.lastRigIds !== "undefined" && Array.isArray(bridge.lastRigIds)) ? bridge.lastRigIds : [];
|
||||||
|
const displayNames = (typeof bridge.lastRigDisplayNames !== "undefined") ? bridge.lastRigDisplayNames : {};
|
||||||
|
// Preserve current selection if still valid.
|
||||||
|
const prev = picker.value;
|
||||||
|
while (picker.options.length > 1) picker.remove(1);
|
||||||
|
rigIds.forEach((id) => {
|
||||||
|
const opt = document.createElement("option");
|
||||||
|
opt.value = id;
|
||||||
|
opt.textContent = displayNames[id] || id;
|
||||||
|
picker.appendChild(opt);
|
||||||
|
});
|
||||||
|
if (prev && (prev === "general" || rigIds.includes(prev))) {
|
||||||
|
picker.value = prev;
|
||||||
|
} else {
|
||||||
|
picker.value = "general";
|
||||||
|
}
|
||||||
|
bmScope = picker.value;
|
||||||
|
}
|
||||||
|
|
||||||
|
// --- Event wiring ---
|
||||||
|
(function initBookmarks() {
|
||||||
|
// Set initial button visibility (auth may already be resolved by the time
|
||||||
|
// scripts run if auth is disabled; otherwise bmFetch() will sync it).
|
||||||
|
bmSyncAccess();
|
||||||
|
|
||||||
|
// Build decoder checkboxes from registry. The registry is fetched async
|
||||||
|
// so we rebuild once it arrives to ensure checkboxes are present.
|
||||||
|
bmBuildDecoderCheckboxes();
|
||||||
|
if (typeof bridge.onDecoderRegistryReady === "function") {
|
||||||
|
bridge.onDecoderRegistryReady(bmBuildDecoderCheckboxes);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Scope picker
|
||||||
|
bmPopulateScopePicker();
|
||||||
|
const scopePicker = bmEl("bm-scope-picker");
|
||||||
|
if (scopePicker) {
|
||||||
|
scopePicker.addEventListener("change", (e) => {
|
||||||
|
bmScope = (e.currentTarget as HTMLSelectElement).value;
|
||||||
|
void bmFetch(bmEl("bm-category-filter").value || "");
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// Refresh list and sync access when the Bookmarks tab is activated
|
||||||
|
document.querySelector(".tab-bar")?.addEventListener("click", (e) => {
|
||||||
|
const btn = e.target instanceof Element ? e.target.closest('.tab[data-tab="bookmarks"]') : null;
|
||||||
|
if (!btn) return;
|
||||||
|
void bmFetch(bmEl("bm-category-filter").value);
|
||||||
|
});
|
||||||
|
|
||||||
|
// Add Bookmark button — open form and prefill from current rig state
|
||||||
|
bmEl("bm-add-btn").addEventListener("click", () => {
|
||||||
|
bmOpenForm(null);
|
||||||
|
bmPrefillFromStatus();
|
||||||
|
});
|
||||||
|
|
||||||
|
// Category filter dropdown
|
||||||
|
bmEl("bm-category-filter").addEventListener("change", (e) => {
|
||||||
|
void bmFetch((e.currentTarget as HTMLSelectElement).value);
|
||||||
|
});
|
||||||
|
|
||||||
|
// Mode filter dropdown (client-side, no re-fetch)
|
||||||
|
bmEl("bm-mode-filter").addEventListener("change", () => {
|
||||||
|
bmApplyFilters();
|
||||||
|
});
|
||||||
|
|
||||||
|
// Text search filter (client-side, no re-fetch)
|
||||||
|
bmEl("bm-text-filter").addEventListener("input", () => {
|
||||||
|
bmApplyFilters();
|
||||||
|
});
|
||||||
|
|
||||||
|
bmEl("bm-page-prev").addEventListener("click", () => {
|
||||||
|
bmChangePage(-1);
|
||||||
|
});
|
||||||
|
|
||||||
|
bmEl("bm-page-next").addEventListener("click", () => {
|
||||||
|
bmChangePage(1);
|
||||||
|
});
|
||||||
|
|
||||||
|
// Form submit
|
||||||
|
bmEl("bm-form").addEventListener("submit", (event) => { void bmSave(event); });
|
||||||
|
|
||||||
|
// Form cancel
|
||||||
|
bmEl("bm-form-cancel").addEventListener("click", bmCloseForm);
|
||||||
|
|
||||||
|
const formWrap = bmEl("bm-form-wrap");
|
||||||
|
if (formWrap) {
|
||||||
|
formWrap.addEventListener("click", (e) => {
|
||||||
|
if (e.target === formWrap) bmCloseForm();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
document.addEventListener("keydown", (e) => {
|
||||||
|
if (e.key === "Escape" && bmEl("bm-form-wrap")?.style.display === "flex") {
|
||||||
|
bmCloseForm();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
// Select-all checkbox
|
||||||
|
bmEl("bm-select-all").addEventListener("change", (e) => {
|
||||||
|
const checked = (e.currentTarget as HTMLInputElement).checked;
|
||||||
|
document.querySelectorAll<HTMLInputElement>(".bm-row-sel").forEach((cb) => {
|
||||||
|
cb.checked = checked;
|
||||||
|
const id = cb.dataset.bmId;
|
||||||
|
if (!id) return;
|
||||||
|
if (checked) bmSelected.add(id);
|
||||||
|
else bmSelected.delete(id);
|
||||||
|
});
|
||||||
|
bmUpdateSelectionUi();
|
||||||
|
});
|
||||||
|
|
||||||
|
// Select All (across all pages) button
|
||||||
|
bmEl("bm-select-all-btn").addEventListener("click", () => {
|
||||||
|
const allSelected = bmFilteredList.length > 0 && bmFilteredList.every((bm) => bmSelected.has(bm.id));
|
||||||
|
if (allSelected) {
|
||||||
|
bmSelected.clear();
|
||||||
|
} else {
|
||||||
|
bmFilteredList.forEach((bm) => bmSelected.add(bm.id));
|
||||||
|
}
|
||||||
|
// Sync visible page checkboxes
|
||||||
|
document.querySelectorAll<HTMLInputElement>(".bm-row-sel").forEach((cb) => {
|
||||||
|
cb.checked = !!cb.dataset.bmId && bmSelected.has(cb.dataset.bmId);
|
||||||
|
});
|
||||||
|
bmSyncSelectAllCheckbox();
|
||||||
|
bmUpdateSelectionUi();
|
||||||
|
});
|
||||||
|
|
||||||
|
// Delete Selected button
|
||||||
|
bmEl("bm-del-selected-btn").addEventListener("click", () => {
|
||||||
|
void bmDeleteSelected();
|
||||||
|
});
|
||||||
|
|
||||||
|
// Move Selected button
|
||||||
|
bmEl("bm-move-selected-btn").addEventListener("click", () => {
|
||||||
|
void bmMoveSelected();
|
||||||
|
});
|
||||||
|
|
||||||
|
// Table action buttons and row checkboxes (event delegation)
|
||||||
|
bmEl("bm-tbody").addEventListener("click", (e) => { void (async () => {
|
||||||
|
if (!(e.target instanceof Element)) return;
|
||||||
|
const checkbox = e.target.closest<HTMLInputElement>(".bm-row-sel");
|
||||||
|
if (checkbox) {
|
||||||
|
const id = checkbox.dataset.bmId;
|
||||||
|
if (!id) return;
|
||||||
|
if (checkbox.checked) bmSelected.add(id);
|
||||||
|
else bmSelected.delete(id);
|
||||||
|
bmSyncSelectAllCheckbox();
|
||||||
|
bmUpdateSelectionUi();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const tuneBtn = e.target.closest<HTMLElement>(".bm-tune-btn");
|
||||||
|
const editBtn = e.target.closest<HTMLElement>(".bm-edit-btn");
|
||||||
|
const delBtn = e.target.closest<HTMLElement>(".bm-del-btn");
|
||||||
|
|
||||||
|
if (tuneBtn) {
|
||||||
|
const bm = bmList.find((b) => b.id === tuneBtn.dataset.bmId);
|
||||||
|
if (bm) bmApply(bm);
|
||||||
|
} else if (editBtn) {
|
||||||
|
const bm = bmList.find((b) => b.id === editBtn.dataset.bmId);
|
||||||
|
if (bm) bmOpenForm(bm);
|
||||||
|
} else if (delBtn) {
|
||||||
|
const id = delBtn.dataset.bmId;
|
||||||
|
if (id) await bmDelete(id);
|
||||||
|
}
|
||||||
|
})(); });
|
||||||
|
|
||||||
|
// Pre-load bookmarks so spectrum markers are visible immediately.
|
||||||
|
void bmFetch("");
|
||||||
|
})();
|
||||||
@@ -0,0 +1,508 @@
|
|||||||
|
// SPDX-FileCopyrightText: 2026 Stan Grams <sjg@haxx.space>
|
||||||
|
//
|
||||||
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
|
import type { PluginRuntimeWindow } from "./runtime-contract.js";
|
||||||
|
|
||||||
|
export {};
|
||||||
|
|
||||||
|
type Rgba = [number, number, number, number];
|
||||||
|
interface CwRenderer {
|
||||||
|
ready: boolean;
|
||||||
|
ensureSize(width: number, height: number, dpr: number): boolean;
|
||||||
|
clear(color: Rgba): void;
|
||||||
|
fillRect(x: number, y: number, width: number, height: number, color: Rgba): void;
|
||||||
|
drawSegments(points: number[], color: Rgba, width: number): void;
|
||||||
|
drawFilledArea(points: number[], baseline: number, color: Rgba): void;
|
||||||
|
drawPolyline(points: number[], color: Rgba, width: number): void;
|
||||||
|
drawPoints(points: number[], size: number, color: Rgba): void;
|
||||||
|
}
|
||||||
|
interface CwSpectrum { bins: number[]; sample_rate: number; center_hz: number }
|
||||||
|
interface CwEvent { text?: string; wpm?: number; tone_hz?: number; signal_on?: boolean }
|
||||||
|
interface CwLine { tsMs: number; ts: string; text: string; wpm: number | null; tone_hz: number | null; lastMs: number }
|
||||||
|
interface CwToneRange {
|
||||||
|
tunedHz: number; bandwidthHz: number; toneMinHz: number; toneMaxHz: number;
|
||||||
|
toneSpanHz: number; lowerSideband: boolean; mode: string;
|
||||||
|
}
|
||||||
|
interface CwBridge {
|
||||||
|
createTrxWebGlRenderer?: (canvas: HTMLCanvasElement, options: WebGLContextAttributes) => CwRenderer;
|
||||||
|
trxParseCssColor?: (color: string) => Rgba;
|
||||||
|
lastFreqHz?: number;
|
||||||
|
currentBandwidthHz?: number;
|
||||||
|
lastSpectrumData?: CwSpectrum;
|
||||||
|
escapeMapHtml?: (input: string) => string;
|
||||||
|
postPath?: (path: string) => Promise<unknown>;
|
||||||
|
trxUi: { confirm(options: { title: string; message: string; confirmLabel: string }): Promise<boolean> };
|
||||||
|
applyCwAutoUi?: (enabled: boolean) => void;
|
||||||
|
applyCwAutoUiFromServer?: (enabled: boolean) => void;
|
||||||
|
updateCwBar?: () => void;
|
||||||
|
clearCwBar?: () => void;
|
||||||
|
closeCwBar?: () => void;
|
||||||
|
refreshCwTonePicker?: () => void;
|
||||||
|
}
|
||||||
|
const cwWindow = window as unknown as CwBridge & PluginRuntimeWindow;
|
||||||
|
|
||||||
|
// --- CW (Morse) Decoder Plugin (server-side decode) ---
|
||||||
|
const cwStatusEl = document.getElementById("cw-status");
|
||||||
|
const cwOutputEl = document.getElementById("cw-output");
|
||||||
|
const cwAutoInput = document.getElementById("cw-auto") as HTMLInputElement | null;
|
||||||
|
const cwWpmInput = document.getElementById("cw-wpm") as HTMLInputElement | null;
|
||||||
|
const cwToneInput = document.getElementById("cw-tone") as HTMLInputElement | null;
|
||||||
|
const cwSignalIndicator = document.getElementById("cw-signal-indicator");
|
||||||
|
const cwToneCanvas = document.getElementById("cw-tone-waterfall") as HTMLCanvasElement | null;
|
||||||
|
const cwToneGl = cwToneCanvas && cwWindow.createTrxWebGlRenderer
|
||||||
|
? cwWindow.createTrxWebGlRenderer(cwToneCanvas, { alpha: true })
|
||||||
|
: null;
|
||||||
|
const cwTonePickerEl = document.querySelector(".cw-tone-picker");
|
||||||
|
const cwToneRangeEl = document.getElementById("cw-tone-range");
|
||||||
|
const cwBarOverlay = document.getElementById("cw-bar-overlay");
|
||||||
|
const CW_MAX_LINES = 200;
|
||||||
|
const CW_TONE_MIN_HZ = 100;
|
||||||
|
const CW_TONE_MAX_HZ = 10_000;
|
||||||
|
const CW_WPM_MIN = 5;
|
||||||
|
const CW_WPM_MAX = 40;
|
||||||
|
const CW_BAR_WINDOW_MS = 15 * 60 * 1000;
|
||||||
|
const CW_BAR_LINE_GAP_MS = 5000;
|
||||||
|
let cwLastAppendTime = 0;
|
||||||
|
let cwTonePickerRaf: number | null = null;
|
||||||
|
let cwBarHistory: CwLine[] = [];
|
||||||
|
let cwBarCurrentLine: CwLine | null = null;
|
||||||
|
let cwBarDismissedAtMs = 0;
|
||||||
|
// Tracks a user-initiated auto toggle that is in-flight (POST not yet
|
||||||
|
// acknowledged). While set, server-state updates must not override the
|
||||||
|
// checkbox so that a concurrent SSE event carrying the *old* cw_auto value
|
||||||
|
// does not immediately undo the user's choice.
|
||||||
|
let cwAutoLocalOverride: boolean | null = null;
|
||||||
|
|
||||||
|
function escapeCwHtml(input: string): string {
|
||||||
|
return cwWindow.escapeMapHtml?.(input) ?? input
|
||||||
|
.replaceAll("&", "&").replaceAll("<", "<")
|
||||||
|
.replaceAll(">", ">").replaceAll('"', """);
|
||||||
|
}
|
||||||
|
|
||||||
|
function applyCwAutoUi(enabled: boolean): void {
|
||||||
|
if (cwAutoInput) cwAutoInput.checked = enabled;
|
||||||
|
if (cwWpmInput) {
|
||||||
|
cwWpmInput.disabled = enabled;
|
||||||
|
cwWpmInput.readOnly = enabled;
|
||||||
|
}
|
||||||
|
if (cwToneInput) {
|
||||||
|
cwToneInput.disabled = enabled;
|
||||||
|
cwToneInput.readOnly = enabled;
|
||||||
|
}
|
||||||
|
if (cwTonePickerEl) {
|
||||||
|
cwTonePickerEl.classList.toggle("is-auto", enabled);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
cwWindow.applyCwAutoUi = applyCwAutoUi;
|
||||||
|
|
||||||
|
// Called by app.js render() when a server-state snapshot arrives. Ignores
|
||||||
|
// the update while cwAutoLocalOverride is set (user change still in-flight).
|
||||||
|
cwWindow.applyCwAutoUiFromServer = function(enabled: boolean) {
|
||||||
|
if (cwAutoLocalOverride !== null) return;
|
||||||
|
applyCwAutoUi(enabled);
|
||||||
|
};
|
||||||
|
|
||||||
|
function cwBarFlushCurrentLine(): void {
|
||||||
|
if (cwBarCurrentLine && cwBarCurrentLine.text.trim()) {
|
||||||
|
cwBarHistory.unshift(cwBarCurrentLine);
|
||||||
|
if (cwBarHistory.length > 50) cwBarHistory.length = 50;
|
||||||
|
}
|
||||||
|
cwBarCurrentLine = null;
|
||||||
|
}
|
||||||
|
|
||||||
|
function updateCwBar(): void {
|
||||||
|
if (!cwBarOverlay) return;
|
||||||
|
const mode = ((document.getElementById("mode") as HTMLSelectElement | null)?.value || "").toUpperCase();
|
||||||
|
const isCw = mode === "CW" || mode === "CWR";
|
||||||
|
const cutoffMs = Date.now() - CW_BAR_WINDOW_MS;
|
||||||
|
const recent = cwBarHistory.filter((l) => l.tsMs >= cutoffMs);
|
||||||
|
// Prepend the in-progress line so characters appear immediately
|
||||||
|
const liveLines = cwBarCurrentLine && cwBarCurrentLine.text ? [cwBarCurrentLine, ...recent] : recent;
|
||||||
|
const newestTsMs = liveLines.reduce((latest, line) => Math.max(latest, line.tsMs || 0), 0);
|
||||||
|
if (!isCw || liveLines.length === 0 || newestTsMs <= cwBarDismissedAtMs) {
|
||||||
|
cwBarOverlay.style.display = "none";
|
||||||
|
cwBarOverlay.innerHTML = "";
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
let html =
|
||||||
|
'<div class="aprs-bar-header">' +
|
||||||
|
'<span class="aprs-bar-title"><span class="aprs-bar-title-word">CW</span><span class="aprs-bar-title-word">Live</span></span>' +
|
||||||
|
'<span class="aprs-bar-actions">' +
|
||||||
|
'<span class="aprs-bar-window">Last 15 minutes</span>' +
|
||||||
|
'<span class="aprs-bar-clear-wrap"><span class="aprs-bar-clear" role="button" tabindex="0"' +
|
||||||
|
' onclick="window.clearCwBar()"' +
|
||||||
|
' onkeydown="if(event.key===\'Enter\'||event.key===\' \'){event.preventDefault();window.clearCwBar();}"' +
|
||||||
|
' aria-label="Clear CW overlay">Clear</span></span>' +
|
||||||
|
'<button class="aprs-bar-close" type="button" onclick="window.closeCwBar()" aria-label="Close CW overlay">×</button>' +
|
||||||
|
'</span>' +
|
||||||
|
'</div>';
|
||||||
|
for (const line of liveLines.slice(0, 8)) {
|
||||||
|
const ts = line.ts ? `<span class="aprs-bar-time">${line.ts}</span>` : "";
|
||||||
|
const meta = [
|
||||||
|
line.wpm ? `${String(line.wpm)} WPM` : null,
|
||||||
|
line.tone_hz ? `${String(line.tone_hz)} Hz` : null,
|
||||||
|
].filter(Boolean).join(" · ");
|
||||||
|
html += `<div class="aprs-bar-frame">` +
|
||||||
|
`<div class="aprs-bar-frame-main">${ts}${escapeCwHtml(line.text)}` +
|
||||||
|
(meta ? ` <span class="aprs-bar-time">${escapeCwHtml(meta)}</span>` : "") +
|
||||||
|
`</div></div>`;
|
||||||
|
}
|
||||||
|
cwBarOverlay.innerHTML = html;
|
||||||
|
cwBarOverlay.style.display = "flex";
|
||||||
|
}
|
||||||
|
cwWindow.updateCwBar = updateCwBar;
|
||||||
|
cwWindow.clearCwBar = function() {
|
||||||
|
resetCwHistoryView();
|
||||||
|
};
|
||||||
|
cwWindow.closeCwBar = function() {
|
||||||
|
cwBarDismissedAtMs = Date.now();
|
||||||
|
if (cwBarOverlay) {
|
||||||
|
cwBarOverlay.style.display = "none";
|
||||||
|
cwBarOverlay.innerHTML = "";
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
function clampCwWpm(wpm: unknown): number {
|
||||||
|
const numeric = Number(wpm);
|
||||||
|
if (!Number.isFinite(numeric)) return 15;
|
||||||
|
return Math.round(Math.max(CW_WPM_MIN, Math.min(CW_WPM_MAX, numeric)));
|
||||||
|
}
|
||||||
|
|
||||||
|
function clampCwTone(tone: unknown): number {
|
||||||
|
const numeric = Number(tone);
|
||||||
|
if (!Number.isFinite(numeric)) return 700;
|
||||||
|
return Math.round(Math.max(CW_TONE_MIN_HZ, Math.min(CW_TONE_MAX_HZ, numeric)));
|
||||||
|
}
|
||||||
|
|
||||||
|
function currentCwToneRange(): CwToneRange | null {
|
||||||
|
const tunedHz = Number.isFinite(cwWindow.lastFreqHz) ? Number(cwWindow.lastFreqHz) : NaN;
|
||||||
|
const bandwidthHz = Number.isFinite(cwWindow.currentBandwidthHz) ? Number(cwWindow.currentBandwidthHz) : NaN;
|
||||||
|
if (!Number.isFinite(tunedHz) || !Number.isFinite(bandwidthHz) || bandwidthHz <= 0) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
const mode = ((document.getElementById("mode") as HTMLSelectElement | null)?.value || "").toUpperCase();
|
||||||
|
const lowerSideband = mode === "CWR";
|
||||||
|
const upperSideband = mode === "CW";
|
||||||
|
if (!lowerSideband && !upperSideband) return null;
|
||||||
|
|
||||||
|
const toneMinHz = CW_TONE_MIN_HZ;
|
||||||
|
const toneMaxHz = CW_TONE_MAX_HZ;
|
||||||
|
return {
|
||||||
|
tunedHz,
|
||||||
|
bandwidthHz,
|
||||||
|
toneMinHz,
|
||||||
|
toneMaxHz,
|
||||||
|
toneSpanHz: Math.max(1, toneMaxHz - toneMinHz),
|
||||||
|
lowerSideband,
|
||||||
|
mode,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
function cwToneToRfHz(range: CwToneRange | null, toneHz: number): number {
|
||||||
|
if (!range) return NaN;
|
||||||
|
return range.lowerSideband
|
||||||
|
? range.tunedHz - toneHz
|
||||||
|
: range.tunedHz + toneHz;
|
||||||
|
}
|
||||||
|
|
||||||
|
function toneClampForRange(tone: unknown, range: CwToneRange | null): number {
|
||||||
|
const clamped = clampCwTone(tone);
|
||||||
|
if (!range) return clamped;
|
||||||
|
return Math.max(range.toneMinHz, Math.min(range.toneMaxHz, clamped));
|
||||||
|
}
|
||||||
|
|
||||||
|
function ensureCwToneCanvasResolution(): boolean {
|
||||||
|
if (!cwToneCanvas || !cwToneGl || !cwToneGl.ready) return false;
|
||||||
|
const rect = cwToneCanvas.getBoundingClientRect();
|
||||||
|
const cssWidth = Math.round(rect.width);
|
||||||
|
const cssHeight = Math.round(rect.height);
|
||||||
|
if (cssWidth < 8 || cssHeight < 8) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
const dpr = window.devicePixelRatio || 1;
|
||||||
|
return cwToneGl.ensureSize(cssWidth, cssHeight, dpr);
|
||||||
|
}
|
||||||
|
|
||||||
|
function drawCwTonePicker(): void {
|
||||||
|
if (!cwToneCanvas || !cwToneGl || !cwToneGl.ready) return;
|
||||||
|
ensureCwToneCanvasResolution();
|
||||||
|
if (cwToneCanvas.width < 8 || cwToneCanvas.height < 8) return;
|
||||||
|
const width = cwToneCanvas.width;
|
||||||
|
const height = cwToneCanvas.height;
|
||||||
|
cwToneGl.clear([0, 0, 0, 0]);
|
||||||
|
|
||||||
|
const range = currentCwToneRange();
|
||||||
|
if (!cwWindow.lastSpectrumData || !Array.isArray(cwWindow.lastSpectrumData.bins) || !cwWindow.lastSpectrumData.bins.length || !range) {
|
||||||
|
if (cwToneRangeEl) {
|
||||||
|
const mode = ((document.getElementById("mode") as HTMLSelectElement | null)?.value || "").toUpperCase();
|
||||||
|
if (mode !== "CW" && mode !== "CWR") {
|
||||||
|
cwToneRangeEl.textContent = "CW/CWR mode required";
|
||||||
|
} else if (!cwWindow.lastSpectrumData || !Array.isArray(cwWindow.lastSpectrumData.bins) || !cwWindow.lastSpectrumData.bins.length) {
|
||||||
|
cwToneRangeEl.textContent = "Waiting for spectrum";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
cwToneGl.fillRect(0, 0, width, height, [130 / 255, 150 / 255, 165 / 255, 0.22]);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (cwToneRangeEl) {
|
||||||
|
const side = range.lowerSideband ? "Lower side" : "Upper side";
|
||||||
|
cwToneRangeEl.textContent = `Audio ${String(range.toneMinHz)}-${String(range.toneMaxHz)} Hz · ${side}`;
|
||||||
|
}
|
||||||
|
|
||||||
|
const bins = cwWindow.lastSpectrumData.bins;
|
||||||
|
const sampleRate = cwWindow.lastSpectrumData.sample_rate;
|
||||||
|
const centerHz = cwWindow.lastSpectrumData.center_hz;
|
||||||
|
const maxIdx = Math.max(1, bins.length - 1);
|
||||||
|
const fullLoHz = centerHz - sampleRate / 2;
|
||||||
|
const tones: number[] = new Array<number>(width).fill(-140);
|
||||||
|
for (let x = 0; x < width; x += 1) {
|
||||||
|
const frac = width <= 1 ? 0 : x / (width - 1);
|
||||||
|
const toneHz = range.toneMinHz + frac * range.toneSpanHz;
|
||||||
|
const rfHz = cwToneToRfHz(range, toneHz);
|
||||||
|
const idx = Math.max(0, Math.min(maxIdx, Math.round((((rfHz - fullLoHz) / sampleRate) * maxIdx))));
|
||||||
|
const power = Number.isFinite(Number(bins[idx])) ? Number(bins[idx]) : -140;
|
||||||
|
tones[x] = power;
|
||||||
|
}
|
||||||
|
|
||||||
|
const smoothed: number[] = new Array<number>(width).fill(-140);
|
||||||
|
const smoothRadius = Math.max(1, Math.round(width / 180));
|
||||||
|
for (let x = 0; x < width; x += 1) {
|
||||||
|
let sum = 0;
|
||||||
|
let count = 0;
|
||||||
|
for (let i = x - smoothRadius; i <= x + smoothRadius; i += 1) {
|
||||||
|
if (i < 0 || i >= width) continue;
|
||||||
|
sum += tones[i] ?? -140;
|
||||||
|
count += 1;
|
||||||
|
}
|
||||||
|
smoothed[x] = count > 0 ? sum / count : tones[x] ?? -140;
|
||||||
|
}
|
||||||
|
|
||||||
|
const sorted = smoothed.slice().sort((a, b) => a - b);
|
||||||
|
const q20 = sorted[Math.floor((sorted.length - 1) * 0.2)] ?? -120;
|
||||||
|
const q95 = sorted[Math.floor((sorted.length - 1) * 0.95)] ?? -70;
|
||||||
|
const floorDb = Math.min(q20 - 2, q95 - 10);
|
||||||
|
const ceilDb = Math.max(floorDb + 18, q95 + 2);
|
||||||
|
const dbSpan = Math.max(1, ceilDb - floorDb);
|
||||||
|
const yForDb = (db: number): number => {
|
||||||
|
const n = Math.max(0, Math.min(1, (db - floorDb) / dbSpan));
|
||||||
|
return Math.round((1 - n) * (height - 1));
|
||||||
|
};
|
||||||
|
|
||||||
|
const rootStyle = getComputedStyle(document.documentElement);
|
||||||
|
const accent = (rootStyle.getPropertyValue("--accent-green") || "").trim() || "#00d17f";
|
||||||
|
const parseColor = typeof cwWindow.trxParseCssColor === "function"
|
||||||
|
? cwWindow.trxParseCssColor
|
||||||
|
: null;
|
||||||
|
const accentRgba: Rgba = parseColor ? parseColor(accent) : [0, 0.82, 0.5, 1];
|
||||||
|
const axisColor: Rgba = [230 / 255, 235 / 255, 245 / 255, 0.15];
|
||||||
|
|
||||||
|
cwToneGl.fillRect(0, 0, width, height, [7 / 255, 12 / 255, 18 / 255, 0.94]);
|
||||||
|
|
||||||
|
const hGridCount = 4;
|
||||||
|
const gridSegments: number[] = [];
|
||||||
|
for (let i = 1; i <= hGridCount; i += 1) {
|
||||||
|
const y = Math.round((i / (hGridCount + 1)) * (height - 1));
|
||||||
|
gridSegments.push(0, y, width, y);
|
||||||
|
}
|
||||||
|
cwToneGl.drawSegments(gridSegments, axisColor, 1);
|
||||||
|
|
||||||
|
const toneStep = range.toneSpanHz <= 500 ? 50 : range.toneSpanHz <= 1000 ? 100 : 200;
|
||||||
|
const firstTick = Math.ceil(range.toneMinHz / toneStep) * toneStep;
|
||||||
|
const tickSegments: number[] = [];
|
||||||
|
for (let tone = firstTick; tone <= range.toneMaxHz; tone += toneStep) {
|
||||||
|
const frac = (tone - range.toneMinHz) / range.toneSpanHz;
|
||||||
|
const x = Math.max(0, Math.min(width - 1, Math.round(frac * (width - 1))));
|
||||||
|
tickSegments.push(x, 0, x, height);
|
||||||
|
}
|
||||||
|
cwToneGl.drawSegments(tickSegments, axisColor, 1);
|
||||||
|
|
||||||
|
const linePoints: number[] = [];
|
||||||
|
for (let x = 0; x < width; x += 1) {
|
||||||
|
linePoints.push(x, yForDb(smoothed[x] ?? -140));
|
||||||
|
}
|
||||||
|
cwToneGl.drawFilledArea(linePoints, height, [accentRgba[0], accentRgba[1], accentRgba[2], 0.24]);
|
||||||
|
cwToneGl.drawPolyline(linePoints, accentRgba, Math.max(1.2, (window.devicePixelRatio || 1) * 1.2));
|
||||||
|
|
||||||
|
const currentTone = toneClampForRange(cwToneInput ? cwToneInput.value : 700, range);
|
||||||
|
const markerFrac = (currentTone - range.toneMinHz) / range.toneSpanHz;
|
||||||
|
const markerX = Math.max(0, Math.min(width - 1, Math.round(markerFrac * (width - 1))));
|
||||||
|
const markerY = yForDb(smoothed[Math.max(0, Math.min(width - 1, markerX))] ?? -140);
|
||||||
|
cwToneGl.drawSegments([markerX, 0, markerX, height], [1, 1, 1, 0.9], 1.5);
|
||||||
|
cwToneGl.drawPoints([markerX, markerY], Math.max(2, Math.round(height * 0.055)), [1, 1, 1, 0.9]);
|
||||||
|
|
||||||
|
if (cwAutoInput?.checked) {
|
||||||
|
cwToneGl.fillRect(0, 0, width, height, [0, 0, 0, 0.22]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async function setCwTone(tone: unknown, { syncInput = true }: { syncInput?: boolean } = {}): Promise<void> {
|
||||||
|
const range = currentCwToneRange();
|
||||||
|
const clamped = toneClampForRange(tone, range);
|
||||||
|
if (cwToneInput && syncInput) {
|
||||||
|
cwToneInput.value = String(clamped);
|
||||||
|
}
|
||||||
|
try {
|
||||||
|
await cwWindow.postPath?.(`/set_cw_tone?tone_hz=${encodeURIComponent(clamped)}`);
|
||||||
|
} catch (e) {
|
||||||
|
console.error("CW tone set failed", e);
|
||||||
|
}
|
||||||
|
drawCwTonePicker();
|
||||||
|
}
|
||||||
|
|
||||||
|
if (cwAutoInput) {
|
||||||
|
cwAutoInput.addEventListener("change", () => {
|
||||||
|
void (async () => {
|
||||||
|
const enabled = cwAutoInput.checked;
|
||||||
|
cwAutoLocalOverride = enabled;
|
||||||
|
applyCwAutoUi(enabled);
|
||||||
|
try {
|
||||||
|
await cwWindow.postPath?.(`/set_cw_auto?enabled=${enabled ? "true" : "false"}`);
|
||||||
|
drawCwTonePicker();
|
||||||
|
} catch (error: unknown) {
|
||||||
|
console.error("CW auto toggle failed", error);
|
||||||
|
} finally {
|
||||||
|
cwAutoLocalOverride = null;
|
||||||
|
}
|
||||||
|
})();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
if (cwWpmInput) {
|
||||||
|
cwWpmInput.addEventListener("change", () => {
|
||||||
|
void (async () => {
|
||||||
|
if (cwAutoInput?.checked) return;
|
||||||
|
const wpm = clampCwWpm(cwWpmInput.value);
|
||||||
|
cwWpmInput.value = String(wpm);
|
||||||
|
try { await cwWindow.postPath?.(`/set_cw_wpm?wpm=${encodeURIComponent(wpm)}`); }
|
||||||
|
catch (error: unknown) { console.error("CW WPM set failed", error); }
|
||||||
|
})();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
if (cwToneInput) {
|
||||||
|
cwToneInput.addEventListener("change", () => {
|
||||||
|
if (!cwAutoInput?.checked) void setCwTone(cwToneInput.value);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
if (cwToneCanvas) {
|
||||||
|
cwToneCanvas.addEventListener("click", (event) => {
|
||||||
|
if (cwAutoInput?.checked) return;
|
||||||
|
const rect = cwToneCanvas.getBoundingClientRect();
|
||||||
|
if (rect.width <= 0) return;
|
||||||
|
const range = currentCwToneRange();
|
||||||
|
if (!range) return;
|
||||||
|
const frac = Math.max(0, Math.min(1, (event.clientX - rect.left) / rect.width));
|
||||||
|
const tone = range.toneMinHz + frac * range.toneSpanHz;
|
||||||
|
void setCwTone(tone);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function resetCwHistoryView(): void {
|
||||||
|
if (cwOutputEl) cwOutputEl.innerHTML = "";
|
||||||
|
cwLastAppendTime = 0;
|
||||||
|
cwBarHistory = [];
|
||||||
|
cwBarCurrentLine = null;
|
||||||
|
updateCwBar();
|
||||||
|
drawCwTonePicker();
|
||||||
|
}
|
||||||
|
|
||||||
|
document.getElementById("settings-clear-cw-history")?.addEventListener("click", () => {
|
||||||
|
void (async () => {
|
||||||
|
if (!await cwWindow.trxUi.confirm({ title: "Clear CW history?", message: "All stored CW decodes will be permanently removed.", confirmLabel: "Clear history" })) return;
|
||||||
|
try {
|
||||||
|
await cwWindow.postPath?.("/clear_cw_decode");
|
||||||
|
resetCwHistoryView();
|
||||||
|
} catch (error: unknown) {
|
||||||
|
console.error("CW history clear failed", error);
|
||||||
|
}
|
||||||
|
})();
|
||||||
|
});
|
||||||
|
|
||||||
|
// --- Server-side CW decode handler ---
|
||||||
|
function onServerCw(evt: CwEvent): void {
|
||||||
|
if (cwStatusEl) cwStatusEl.textContent = "Receiving";
|
||||||
|
if (evt.text && cwOutputEl) {
|
||||||
|
// Append decoded text to output
|
||||||
|
const now = Date.now();
|
||||||
|
if (!cwOutputEl.lastElementChild || now - cwLastAppendTime > 10000 || evt.text === "\n") {
|
||||||
|
const line = document.createElement("div");
|
||||||
|
line.className = "cw-line";
|
||||||
|
cwOutputEl.appendChild(line);
|
||||||
|
}
|
||||||
|
cwLastAppendTime = now;
|
||||||
|
const lastLine = cwOutputEl.lastElementChild;
|
||||||
|
if (lastLine) {
|
||||||
|
lastLine.textContent += evt.text;
|
||||||
|
}
|
||||||
|
while (cwOutputEl.children.length > CW_MAX_LINES) {
|
||||||
|
const firstChild = cwOutputEl.firstChild;
|
||||||
|
if (!firstChild) break;
|
||||||
|
cwOutputEl.removeChild(firstChild);
|
||||||
|
}
|
||||||
|
cwOutputEl.scrollTop = cwOutputEl.scrollHeight;
|
||||||
|
}
|
||||||
|
// Bar history accumulation (regardless of pause state)
|
||||||
|
if (evt.text) {
|
||||||
|
const now = Date.now();
|
||||||
|
if (evt.text === "\n") {
|
||||||
|
cwBarFlushCurrentLine();
|
||||||
|
} else {
|
||||||
|
if (!cwBarCurrentLine || now - cwBarCurrentLine.lastMs > CW_BAR_LINE_GAP_MS) {
|
||||||
|
cwBarFlushCurrentLine();
|
||||||
|
const ts = new Date(now).toLocaleTimeString([], { hour: "2-digit", minute: "2-digit", second: "2-digit" });
|
||||||
|
cwBarCurrentLine = { tsMs: now, ts, text: "", wpm: null, tone_hz: null, lastMs: now };
|
||||||
|
}
|
||||||
|
cwBarCurrentLine.text += evt.text;
|
||||||
|
cwBarCurrentLine.lastMs = now;
|
||||||
|
if (Number.isFinite(Number(evt.wpm))) cwBarCurrentLine.wpm = clampCwWpm(evt.wpm);
|
||||||
|
if (Number.isFinite(Number(evt.tone_hz))) cwBarCurrentLine.tone_hz = Math.round(Number(evt.tone_hz));
|
||||||
|
}
|
||||||
|
updateCwBar();
|
||||||
|
}
|
||||||
|
if (cwSignalIndicator) {
|
||||||
|
cwSignalIndicator.className = evt.signal_on ? "cw-signal-on" : "cw-signal-off";
|
||||||
|
}
|
||||||
|
if (!cwAutoInput || cwAutoInput.checked) {
|
||||||
|
if (cwWpmInput && Number.isFinite(Number(evt.wpm))) {
|
||||||
|
cwWpmInput.value = String(clampCwWpm(evt.wpm));
|
||||||
|
}
|
||||||
|
if (cwToneInput && Number.isFinite(Number(evt.tone_hz))) {
|
||||||
|
cwToneInput.value = String(toneClampForRange(evt.tone_hz, currentCwToneRange()));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (cwTonePickerRaf != null) return;
|
||||||
|
cwTonePickerRaf = requestAnimationFrame(() => {
|
||||||
|
cwTonePickerRaf = null;
|
||||||
|
drawCwTonePicker();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function restoreCwHistory(events: CwEvent[]): void {
|
||||||
|
if (!Array.isArray(events) || events.length === 0) return;
|
||||||
|
if (cwStatusEl) cwStatusEl.textContent = "Receiving";
|
||||||
|
for (const evt of events) {
|
||||||
|
onServerCw(evt);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
cwWindow.trxPluginRuntime.registerDecoder({
|
||||||
|
id: "cw",
|
||||||
|
onMessage: onServerCw,
|
||||||
|
restore: restoreCwHistory,
|
||||||
|
reset: resetCwHistoryView,
|
||||||
|
});
|
||||||
|
|
||||||
|
cwWindow.refreshCwTonePicker = function refreshCwTonePicker() {
|
||||||
|
ensureCwToneCanvasResolution();
|
||||||
|
drawCwTonePicker();
|
||||||
|
};
|
||||||
|
window.addEventListener("resize", () => {
|
||||||
|
if (ensureCwToneCanvasResolution()) drawCwTonePicker();
|
||||||
|
});
|
||||||
|
applyCwAutoUi(!!cwAutoInput?.checked);
|
||||||
|
updateCwBar();
|
||||||
|
ensureCwToneCanvasResolution();
|
||||||
|
drawCwTonePicker();
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
// SPDX-FileCopyrightText: 2026 Stan Grams <sjg@haxx.space>
|
||||||
|
//
|
||||||
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
|
import { initializeFtxDecoder } from "./ftx-family";
|
||||||
|
|
||||||
|
initializeFtxDecoder({ id: "ft2", label: "FT2", periodMs: 3_750 });
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
// SPDX-FileCopyrightText: 2026 Stan Grams <sjg@haxx.space>
|
||||||
|
//
|
||||||
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
|
import { initializeFtxDecoder } from "./ftx-family";
|
||||||
|
|
||||||
|
initializeFtxDecoder({ id: "ft4", label: "FT4", periodMs: 7_500 });
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
// SPDX-FileCopyrightText: 2026 Stan Grams <sjg@haxx.space>
|
||||||
|
//
|
||||||
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
|
import {
|
||||||
|
initializeFt8FamilyBar,
|
||||||
|
initializeFtxDecoder,
|
||||||
|
installFtxCompatibilityHelpers,
|
||||||
|
} from "./ftx-family";
|
||||||
|
|
||||||
|
installFtxCompatibilityHelpers();
|
||||||
|
initializeFt8FamilyBar();
|
||||||
|
initializeFtxDecoder({ id: "ft8", label: "FT8", periodMs: 15_000, periodDigits: 0 });
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user