{
// Only close if clicking directly on the overlay, not on the panel
if (e.target === e.currentTarget) {
onClose();
}
}}
onkeydown={(e) => {
if (e.key === 'Escape') {
onClose();
}
}}
role="dialog"
aria-modal="true"
aria-label="Bookmarks panel"
tabindex="-1"
>
Bookmarks
{#if loading}
Loading bookmarks...
{:else if bookmarkedEvents.length === 0}
No bookmarks yet.
{:else}
{#each bookmarkedEvents as event (event.id)}
{/each}