Full-row click navigation in "Contacts I'm in"

Clicking anywhere in a row on the /u/:callsign involving-contacts
table now navigates to that contact's detail page, matching the
click affordance on the main /contacts list.
This commit is contained in:
Graham McIntire 2026-04-12 16:58:11 -05:00
parent 47e956b0e4
commit 47b104e3cf
No known key found for this signature in database
GPG key ID: F4ABF488E6029E59

View file

@ -171,14 +171,16 @@ defmodule MicrowavepropWeb.UserProfileLive do
</tr>
</thead>
<tbody>
<tr :for={contact <- @involving} class="hover">
<tr
:for={contact <- @involving}
class="hover cursor-pointer"
phx-click={JS.navigate(~p"/contacts/#{contact.id}")}
>
<td class="whitespace-nowrap">
{Calendar.strftime(contact.qso_timestamp, "%Y-%m-%d %H:%M UTC")}
</td>
<td>
<.link navigate={~p"/contacts/#{contact.id}"} class="link link-hover font-mono">
{contact.station1} &harr; {contact.station2}
</.link>
<td class="font-mono">
{contact.station1} &harr; {contact.station2}
</td>
<td>{contact.band && "#{contact.band} MHz"}</td>
<td>{contact.mode}</td>