Switch to different navigation style
This commit is contained in:
@@ -0,0 +1,253 @@
|
||||
import { A, useLocation } from "@solidjs/router"
|
||||
import { createEffect, createMemo, createResource, createSignal, For, onCleanup, Show } from "solid-js"
|
||||
import Fuse from "fuse.js"
|
||||
import { adminCheck as fetchAdminCheck, listTenantRelays, type Relay } from "../lib/api"
|
||||
import { eventStore, primeProfiles, useActiveAccount, useProfilePicture } from "../lib/nostr"
|
||||
import serverIcon from "../assets/server.svg"
|
||||
|
||||
type Profile = {
|
||||
name?: string
|
||||
display_name?: string
|
||||
nip05?: string
|
||||
}
|
||||
|
||||
function shortenPubkey(pubkey?: string) {
|
||||
if (!pubkey) return ""
|
||||
return `${pubkey.slice(0, 8)}…${pubkey.slice(-6)}`
|
||||
}
|
||||
|
||||
function SearchIcon() {
|
||||
return (
|
||||
<svg class="h-5 w-5" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true">
|
||||
<circle cx="11" cy="11" r="8" />
|
||||
<path d="M21 21l-4.3-4.3" />
|
||||
</svg>
|
||||
)
|
||||
}
|
||||
|
||||
function RelayIcon() {
|
||||
return <img src={serverIcon} alt="" aria-hidden="true" class="h-5 w-5" />
|
||||
}
|
||||
|
||||
export default function AppShell(props: { children?: any }) {
|
||||
const location = useLocation()
|
||||
const account = useActiveAccount()
|
||||
const picture = useProfilePicture(() => account()?.pubkey)
|
||||
const [adminCheck] = createResource(() => account()?.id, () => fetchAdminCheck())
|
||||
const [tenantRelays] = createResource(() => account()?.id, () => listTenantRelays())
|
||||
const [profile, setProfile] = createSignal<Profile>({})
|
||||
const [searchOpen, setSearchOpen] = createSignal(false)
|
||||
const [searchEntered, setSearchEntered] = createSignal(false)
|
||||
const [searchQuery, setSearchQuery] = createSignal("")
|
||||
let searchTransitionTimer: number | undefined
|
||||
|
||||
const isAdmin = createMemo(() => !!adminCheck()?.is_admin)
|
||||
const username = createMemo(() => profile().name || profile().display_name || shortenPubkey(account()?.pubkey))
|
||||
const nip05 = createMemo(() => profile().nip05 || "No NIP-05")
|
||||
const searchedRelays = createMemo<Relay[]>(() => {
|
||||
const list = tenantRelays() ?? []
|
||||
const query = searchQuery().trim()
|
||||
|
||||
if (!query) return list
|
||||
|
||||
const fuse = new Fuse(list, {
|
||||
keys: ["name", "subdomain"],
|
||||
threshold: 0.35,
|
||||
ignoreLocation: true,
|
||||
})
|
||||
|
||||
return fuse.search(query).map((result) => result.item)
|
||||
})
|
||||
|
||||
createEffect(() => {
|
||||
const pubkey = account()?.pubkey
|
||||
|
||||
if (!pubkey) {
|
||||
setProfile({})
|
||||
return
|
||||
}
|
||||
|
||||
const profileSub = eventStore.profile(pubkey).subscribe((metadata) => {
|
||||
setProfile({
|
||||
name: metadata?.name,
|
||||
display_name: metadata?.display_name,
|
||||
nip05: metadata?.nip05,
|
||||
})
|
||||
})
|
||||
|
||||
const primeSub = primeProfiles([pubkey])
|
||||
|
||||
onCleanup(() => {
|
||||
profileSub.unsubscribe()
|
||||
primeSub.unsubscribe()
|
||||
})
|
||||
})
|
||||
|
||||
const myResources = [{ href: "/relays", label: "My Relays" }]
|
||||
const adminResources = [
|
||||
{ href: "/admin/tenants", label: "Tenants" },
|
||||
{ href: "/admin/relays", label: "Relays" },
|
||||
]
|
||||
|
||||
const navItemClass = (href: string) => {
|
||||
const active = location.pathname === href || location.pathname.startsWith(`${href}/`)
|
||||
return active
|
||||
? "block rounded-lg bg-white/15 px-3 py-2 text-sm font-medium text-white"
|
||||
: "block rounded-lg px-3 py-2 text-sm text-white/80 hover:bg-white/10 hover:text-white"
|
||||
}
|
||||
|
||||
const openSearchModal = () => {
|
||||
if (searchTransitionTimer) window.clearTimeout(searchTransitionTimer)
|
||||
setSearchOpen(true)
|
||||
setSearchEntered(false)
|
||||
window.requestAnimationFrame(() => setSearchEntered(true))
|
||||
}
|
||||
|
||||
const closeSearchModal = () => {
|
||||
setSearchEntered(false)
|
||||
searchTransitionTimer = window.setTimeout(() => {
|
||||
setSearchOpen(false)
|
||||
setSearchQuery("")
|
||||
}, 200)
|
||||
}
|
||||
|
||||
onCleanup(() => {
|
||||
if (searchTransitionTimer) window.clearTimeout(searchTransitionTimer)
|
||||
})
|
||||
|
||||
return (
|
||||
<div class="min-h-screen bg-gray-50 md:grid md:grid-cols-[260px_minmax(0,1fr)]">
|
||||
<aside class="hidden bg-slate-900 text-white md:flex md:min-h-screen md:flex-col">
|
||||
<div class="flex-1 px-4 py-6">
|
||||
<h2 class="px-3 text-xs font-semibold uppercase tracking-wider text-white/60">Resources</h2>
|
||||
<ul class="mt-2 space-y-1">
|
||||
<For each={myResources}>{(item) => <li><A href={item.href} class={navItemClass(item.href)}>{item.label}</A></li>}</For>
|
||||
</ul>
|
||||
|
||||
<Show when={isAdmin()}>
|
||||
<div class="mt-8">
|
||||
<h2 class="px-3 text-xs font-semibold uppercase tracking-wider text-white/60">Administration</h2>
|
||||
<ul class="mt-2 space-y-1">
|
||||
<For each={adminResources}>{(item) => <li><A href={item.href} class={navItemClass(item.href)}>{item.label}</A></li>}</For>
|
||||
</ul>
|
||||
</div>
|
||||
</Show>
|
||||
</div>
|
||||
|
||||
<div class="border-t border-white/15 p-4">
|
||||
<A href="/account" class="flex items-center gap-3 rounded-lg p-2 hover:bg-white/10">
|
||||
<Show
|
||||
when={picture()}
|
||||
fallback={
|
||||
<div class="h-10 w-10 rounded-full bg-white/15 text-sm font-medium text-white flex items-center justify-center">
|
||||
{username().slice(0, 1).toUpperCase()}
|
||||
</div>
|
||||
}
|
||||
>
|
||||
<img src={picture()} alt="Profile" class="h-10 w-10 rounded-full object-cover" />
|
||||
</Show>
|
||||
<div class="min-w-0">
|
||||
<p class="truncate text-sm font-medium text-white">{username()}</p>
|
||||
<p class="truncate text-xs text-white/60">{nip05()}</p>
|
||||
</div>
|
||||
</A>
|
||||
</div>
|
||||
</aside>
|
||||
|
||||
<div class="min-h-screen pb-20 md:pb-0">
|
||||
<main>{props.children}</main>
|
||||
</div>
|
||||
|
||||
<nav class="fixed inset-x-0 bottom-0 z-20 border-t border-gray-200 bg-white md:hidden">
|
||||
<div class="mx-auto flex h-16 max-w-md items-center justify-between px-6">
|
||||
<div class="flex items-center gap-3">
|
||||
<button
|
||||
type="button"
|
||||
aria-label="Search"
|
||||
class="rounded-lg p-2 text-gray-700 hover:bg-gray-100"
|
||||
onClick={openSearchModal}
|
||||
>
|
||||
<SearchIcon />
|
||||
</button>
|
||||
<A href="/relays" aria-label="Relays" class="rounded-lg p-2 text-gray-700 hover:bg-gray-100">
|
||||
<RelayIcon />
|
||||
</A>
|
||||
</div>
|
||||
<A href="/account" aria-label="Account settings" class="rounded-full">
|
||||
<Show
|
||||
when={picture()}
|
||||
fallback={<div class="h-9 w-9 rounded-full bg-gray-200 text-gray-600 flex items-center justify-center text-sm font-medium">{username().slice(0, 1).toUpperCase()}</div>}
|
||||
>
|
||||
<img src={picture()} alt="Profile" class="h-9 w-9 rounded-full object-cover" />
|
||||
</Show>
|
||||
</A>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<Show when={searchOpen()}>
|
||||
<div
|
||||
class={`fixed inset-x-0 top-0 bottom-16 z-30 flex items-end bg-black/40 p-0 transition-opacity duration-200 md:hidden ${searchEntered() ? "opacity-100" : "opacity-0"}`}
|
||||
role="dialog"
|
||||
aria-modal="true"
|
||||
onClick={closeSearchModal}
|
||||
>
|
||||
<div
|
||||
class={`max-h-[80vh] w-full overflow-hidden rounded-t-2xl bg-white transition-all duration-200 ${searchEntered() ? "translate-y-0 opacity-100" : "translate-y-4 opacity-0"}`}
|
||||
onClick={(e) => e.stopPropagation()}
|
||||
>
|
||||
<div class="border-b border-gray-200 p-4">
|
||||
<div class="flex items-center gap-2">
|
||||
<div class="relative flex-1">
|
||||
<span class="pointer-events-none absolute inset-y-0 left-3 flex items-center text-gray-400">
|
||||
<svg class="h-4 w-4" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true">
|
||||
<circle cx="11" cy="11" r="8" />
|
||||
<path d="M21 21l-4.3-4.3" />
|
||||
</svg>
|
||||
</span>
|
||||
<input
|
||||
type="search"
|
||||
value={searchQuery()}
|
||||
onInput={(e) => setSearchQuery(e.currentTarget.value)}
|
||||
placeholder="Search your relays"
|
||||
class="w-full rounded-lg border border-gray-300 py-2 pl-10 pr-3"
|
||||
autofocus
|
||||
/>
|
||||
</div>
|
||||
<button
|
||||
type="button"
|
||||
class="rounded-lg px-3 py-2 text-sm text-gray-600 hover:bg-gray-100"
|
||||
onClick={closeSearchModal}
|
||||
>
|
||||
Close
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="max-h-[calc(80vh-73px)] overflow-y-auto p-4">
|
||||
<Show when={!tenantRelays.loading} fallback={<p class="text-sm text-gray-500">Loading relays...</p>}>
|
||||
<Show when={(searchedRelays().length ?? 0) > 0} fallback={<p class="text-sm text-gray-500">No relays found.</p>}>
|
||||
<ul class="space-y-2">
|
||||
<For each={searchedRelays()}>
|
||||
{(relay) => (
|
||||
<li>
|
||||
<A
|
||||
href={`/relays/${relay.id}`}
|
||||
class="block rounded-lg border border-gray-200 bg-white p-3"
|
||||
onClick={closeSearchModal}
|
||||
>
|
||||
<p class="text-sm font-medium text-gray-900">{relay.name}</p>
|
||||
<p class="text-xs text-gray-500">{relay.subdomain}.spaces.coracle.social</p>
|
||||
</A>
|
||||
</li>
|
||||
)}
|
||||
</For>
|
||||
</ul>
|
||||
</Show>
|
||||
</Show>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</Show>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user