Implement mobile bottom sheet UI for session log with SNR-colored chips#112
Merged
MrAlders0n merged 3 commits intodevfrom Dec 21, 2025
Merged
Implement mobile bottom sheet UI for session log with SNR-colored chips#112MrAlders0n merged 3 commits intodevfrom
MrAlders0n merged 3 commits intodevfrom
Conversation
Co-authored-by: MrAlders0n <55921894+MrAlders0n@users.noreply.github.com>
Co-authored-by: MrAlders0n <55921894+MrAlders0n@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Refactor mobile session log UI for better usability
Implement mobile bottom sheet UI for session log with SNR-colored chips
Dec 21, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Refactored session log to use a mobile-friendly bottom sheet with chip-based layout for heard repeats and SNR color coding. On mobile, log is collapsed by default; on desktop, traditional list view remains.
Changes
UI Components
md:hidden), bottom sheet hidden on desktop.Log Entry Layout
Data Architecture
Styling
transform: translateY()with 300ms ease-out transition.border-radius: 999px, SNR classes.snr-red/.snr-orange/.snr-green.Screenshots
Mobile - Collapsed:

Mobile - Expanded with chips:

Desktop - Traditional view:

Original prompt
AI Agent Instructions: Improve Mobile Session Log UI (Bottom Sheet + “Heard” Chips + SNR Coloring)
Goal
Refactor the mobile “Session Log” display so it is:
Critical Design Constraint
Follow existing app styling
Target UX / UI Behavior
1) Collapsed summary bar (always visible)
2) Expandable bottom sheet (log viewer)
3) Log row layout (mobile-first)
Each log row must be structured as:
time(short local time) on the left,lat,lonon the right (ellipsize if needed).[4e 12.00] [b7 0] [x1 -2.00] ...4) SNR coloring rules
The numeric SNR value must be color-coded:
-12through-1(and also anything less than-12, unless otherwise specified)0through56through13(and optionally anything above13stays green unless a new bucket is added)5) Optional (nice-to-have, not required)
b7filters tob7).Implementation Requirements
A) Data parsing
Input lines currently resemble:
2025-12-21T17:43:47.305Z | 45.27188,-75.77794 | 4e(12),b7(0)Agent must:
" | "into:"lat,lon"","TYPE(NUM)into{ type: "TYPE", value: Number(NUM) }B) Rendering rules
.logRowTop(time + coords).heardChipscontainer that usesdisplay:flex; flex-wrap:wrap; gap:6px;C) SNR bucket helper
Add a helper like:
snr <= -1→ redsnr <= 5→ orangeThen apply that class to the chip representing the SNR event type.
CSS Requirements
Bottom sheet
transform: translateY(105%)transform: translateY(0)padding-bottom: env(safe-area-inset-bottom)for iOS notch devices.-webkit-overflow-scrolling: touch.Chips
6px 10px999px12px.snr-red,.snr-orange,.snr-greenAcceptance Criteria (Must Pass)
Notes for the Agent
✨ Let Copilot coding agent set things up for you — coding agent works faster and does higher quality work when set up for your repo.