mirror of
https://github.com/zvx-echo6/navi.git
synced 2026-05-20 14:44:51 +02:00
feat: add three-dot actions menu to contact cards
This commit is contained in:
parent
99bd2218a4
commit
30bfd72642
1 changed files with 279 additions and 138 deletions
|
|
@ -1,7 +1,8 @@
|
|||
import { useEffect, useState, useCallback } from 'react'
|
||||
import { Plus, MapPin, User, Phone, Radio, LogIn } from 'lucide-react'
|
||||
import { useEffect, useState, useCallback, useRef } from 'react'
|
||||
import { Plus, MapPin, User, Phone, Radio, LogIn, MoreVertical, Navigation, Eye, Pencil, Trash2 } from 'lucide-react'
|
||||
import toast from 'react-hot-toast'
|
||||
import { useStore } from '../store'
|
||||
import { fetchContacts } from '../api'
|
||||
import { fetchContacts, deleteContact } from '../api'
|
||||
|
||||
export default function ContactList() {
|
||||
const contacts = useStore((s) => s.contacts)
|
||||
|
|
@ -9,12 +10,16 @@ export default function ContactList() {
|
|||
const setContacts = useStore((s) => s.setContacts)
|
||||
const setEditingContact = useStore((s) => s.setEditingContact)
|
||||
const setSelectedPlace = useStore((s) => s.setSelectedPlace)
|
||||
const setClickMarker = useStore((s) => s.setClickMarker)
|
||||
const startDirections = useStore((s) => s.startDirections)
|
||||
const setActiveTab = useStore((s) => s.setActiveTab)
|
||||
const auth = useStore((s) => s.auth)
|
||||
|
||||
const [filter, setFilter] = useState('')
|
||||
const [menuOpen, setMenuOpen] = useState(null) // contact id or null
|
||||
const menuRef = useRef(null)
|
||||
|
||||
const loadContacts = useCallback(async () => {
|
||||
// Skip fetch entirely if not authenticated
|
||||
if (!auth.authenticated) return
|
||||
const data = await fetchContacts()
|
||||
if (Array.isArray(data)) {
|
||||
|
|
@ -28,6 +33,25 @@ export default function ContactList() {
|
|||
}
|
||||
}, [auth.loaded, auth.authenticated, contactsLoaded, loadContacts])
|
||||
|
||||
// Close menu on outside click or Escape
|
||||
useEffect(() => {
|
||||
if (!menuOpen) return
|
||||
const handleClick = (e) => {
|
||||
if (menuRef.current && !menuRef.current.contains(e.target)) {
|
||||
setMenuOpen(null)
|
||||
}
|
||||
}
|
||||
const handleKey = (e) => {
|
||||
if (e.key === 'Escape') setMenuOpen(null)
|
||||
}
|
||||
document.addEventListener('mousedown', handleClick)
|
||||
document.addEventListener('keydown', handleKey)
|
||||
return () => {
|
||||
document.removeEventListener('mousedown', handleClick)
|
||||
document.removeEventListener('keydown', handleKey)
|
||||
}
|
||||
}, [menuOpen])
|
||||
|
||||
// Show login prompt if not authenticated
|
||||
if (auth.loaded && !auth.authenticated) {
|
||||
return (
|
||||
|
|
@ -74,6 +98,56 @@ export default function ContactList() {
|
|||
}
|
||||
}
|
||||
|
||||
const handleMenuClick = (e, contactId) => {
|
||||
e.stopPropagation()
|
||||
setMenuOpen(menuOpen === contactId ? null : contactId)
|
||||
}
|
||||
|
||||
const handleDirections = (c) => {
|
||||
setMenuOpen(null)
|
||||
startDirections({ lat: c.lat, lon: c.lon, name: c.label })
|
||||
}
|
||||
|
||||
const handleViewOnMap = (c) => {
|
||||
setMenuOpen(null)
|
||||
// Set click marker at location
|
||||
setClickMarker({ lat: c.lat, lon: c.lon })
|
||||
// Set selected place to trigger map fly and place card
|
||||
setSelectedPlace({
|
||||
lat: c.lat,
|
||||
lon: c.lon,
|
||||
name: c.label,
|
||||
address: c.address || null,
|
||||
type: 'contact',
|
||||
source: 'contacts',
|
||||
matchCode: null,
|
||||
raw: { osm_type: c.osm_type, osm_id: c.osm_id, contact: c },
|
||||
})
|
||||
// Switch to routes tab to close contacts panel
|
||||
setActiveTab('routes')
|
||||
}
|
||||
|
||||
const handleEdit = (c) => {
|
||||
setMenuOpen(null)
|
||||
setEditingContact(c)
|
||||
}
|
||||
|
||||
const handleDelete = async (c) => {
|
||||
setMenuOpen(null)
|
||||
if (!confirm(`Delete "${c.label}"? You can restore it from the dashboard.`)) return
|
||||
try {
|
||||
const result = await deleteContact(c.id)
|
||||
if (result?.auth === false) {
|
||||
toast.error('Sign in to delete contacts')
|
||||
return
|
||||
}
|
||||
toast.success('Contact deleted')
|
||||
await loadContacts()
|
||||
} catch (e) {
|
||||
toast.error(e.message)
|
||||
}
|
||||
}
|
||||
|
||||
return (
|
||||
<div className="mt-2">
|
||||
{/* Search + add */}
|
||||
|
|
@ -101,14 +175,18 @@ export default function ContactList() {
|
|||
</div>
|
||||
) : (
|
||||
<div className="flex flex-col">
|
||||
{filtered.map((c) => (
|
||||
{filtered.map((c) => {
|
||||
const hasLocation = c.lat != null && c.lon != null
|
||||
const isMenuOpen = menuOpen === c.id
|
||||
|
||||
return (
|
||||
<div
|
||||
key={c.id}
|
||||
className="contact-item"
|
||||
className="contact-item relative"
|
||||
onClick={() => handleClick(c)}
|
||||
>
|
||||
<span className="shrink-0" style={{ color: 'var(--text-tertiary)' }}>
|
||||
{c.lat != null ? <MapPin size={14} /> : c.call_sign ? <Radio size={14} /> : <User size={14} />}
|
||||
{hasLocation ? <MapPin size={14} /> : c.call_sign ? <Radio size={14} /> : <User size={14} />}
|
||||
</span>
|
||||
<div className="flex-1 min-w-0">
|
||||
<div className="text-sm font-medium truncate" style={{ color: 'var(--text-primary)' }}>{c.label}</div>
|
||||
|
|
@ -121,7 +199,7 @@ export default function ContactList() {
|
|||
<Phone size={10} />
|
||||
</span>
|
||||
)}
|
||||
{c.show_proximity && c.lat != null && (
|
||||
{c.show_proximity && hasLocation && (
|
||||
<span
|
||||
className="text-[9px] px-1 py-0.5 rounded shrink-0"
|
||||
style={{ background: 'var(--accent-muted)', color: 'var(--accent)' }}
|
||||
|
|
@ -129,8 +207,71 @@ export default function ContactList() {
|
|||
prox
|
||||
</span>
|
||||
)}
|
||||
|
||||
{/* Three-dot menu button */}
|
||||
<button
|
||||
onClick={(e) => handleMenuClick(e, c.id)}
|
||||
className="shrink-0 p-1 rounded hover:bg-[var(--bg-overlay)]"
|
||||
style={{ color: 'var(--text-tertiary)' }}
|
||||
title="Actions"
|
||||
>
|
||||
<MoreVertical size={14} />
|
||||
</button>
|
||||
|
||||
{/* Dropdown menu */}
|
||||
{isMenuOpen && (
|
||||
<div
|
||||
ref={menuRef}
|
||||
className="absolute right-0 top-full mt-1 z-50 rounded-lg overflow-hidden"
|
||||
style={{
|
||||
background: 'var(--bg-raised)',
|
||||
border: '1px solid var(--border)',
|
||||
boxShadow: 'var(--shadow-lg)',
|
||||
minWidth: '140px',
|
||||
}}
|
||||
onClick={(e) => e.stopPropagation()}
|
||||
>
|
||||
{hasLocation && (
|
||||
<>
|
||||
<button
|
||||
className="w-full flex items-center gap-2 px-3 py-2 text-xs text-left hover:bg-[var(--bg-overlay)]"
|
||||
style={{ color: 'var(--text-primary)' }}
|
||||
onClick={() => handleDirections(c)}
|
||||
>
|
||||
<Navigation size={12} />
|
||||
Directions to
|
||||
</button>
|
||||
<button
|
||||
className="w-full flex items-center gap-2 px-3 py-2 text-xs text-left hover:bg-[var(--bg-overlay)]"
|
||||
style={{ color: 'var(--text-primary)' }}
|
||||
onClick={() => handleViewOnMap(c)}
|
||||
>
|
||||
<Eye size={12} />
|
||||
View on map
|
||||
</button>
|
||||
</>
|
||||
)}
|
||||
<button
|
||||
className="w-full flex items-center gap-2 px-3 py-2 text-xs text-left hover:bg-[var(--bg-overlay)]"
|
||||
style={{ color: 'var(--text-primary)' }}
|
||||
onClick={() => handleEdit(c)}
|
||||
>
|
||||
<Pencil size={12} />
|
||||
Edit
|
||||
</button>
|
||||
<button
|
||||
className="w-full flex items-center gap-2 px-3 py-2 text-xs text-left hover:bg-[var(--bg-overlay)]"
|
||||
style={{ color: 'var(--status-danger)' }}
|
||||
onClick={() => handleDelete(c)}
|
||||
>
|
||||
<Trash2 size={12} />
|
||||
Delete
|
||||
</button>
|
||||
</div>
|
||||
))}
|
||||
)}
|
||||
</div>
|
||||
)
|
||||
})}
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue