feat: move site picker from sidebar to breadcrumbs
Replaced simple breadcrumb dropdown with the full sidebar-style site picker (search, favicons, name+domain, add new site, animation). Removed SitePicker from sidebar and cleaned up unused props.
This commit is contained in:
@@ -1,10 +1,12 @@
|
|||||||
'use client'
|
'use client'
|
||||||
|
|
||||||
import { useState, useCallback, useEffect, useRef } from 'react'
|
import { useState, useCallback, useEffect, useRef } from 'react'
|
||||||
|
import { createPortal } from 'react-dom'
|
||||||
|
import { motion, AnimatePresence } from 'framer-motion'
|
||||||
import dynamic from 'next/dynamic'
|
import dynamic from 'next/dynamic'
|
||||||
import Link from 'next/link'
|
import Link from 'next/link'
|
||||||
import { usePathname, useRouter } from 'next/navigation'
|
import { usePathname, useRouter } from 'next/navigation'
|
||||||
import { formatUpdatedAgo } from '@ciphera-net/ui'
|
import { formatUpdatedAgo, PlusIcon } from '@ciphera-net/ui'
|
||||||
import { CaretDown, CaretRight, SidebarSimple } from '@phosphor-icons/react'
|
import { CaretDown, CaretRight, SidebarSimple } from '@phosphor-icons/react'
|
||||||
import { SidebarProvider, useSidebar } from '@/lib/sidebar-context'
|
import { SidebarProvider, useSidebar } from '@/lib/sidebar-context'
|
||||||
import { useRealtime } from '@/lib/swr/dashboard'
|
import { useRealtime } from '@/lib/swr/dashboard'
|
||||||
@@ -60,8 +62,12 @@ const Sidebar = dynamic(() => import('./Sidebar'), {
|
|||||||
|
|
||||||
function BreadcrumbSitePicker({ currentSiteId, currentSiteName }: { currentSiteId: string; currentSiteName: string }) {
|
function BreadcrumbSitePicker({ currentSiteId, currentSiteName }: { currentSiteId: string; currentSiteName: string }) {
|
||||||
const [open, setOpen] = useState(false)
|
const [open, setOpen] = useState(false)
|
||||||
|
const [search, setSearch] = useState('')
|
||||||
const [sites, setSites] = useState<Site[]>([])
|
const [sites, setSites] = useState<Site[]>([])
|
||||||
const ref = useRef<HTMLDivElement>(null)
|
const ref = useRef<HTMLDivElement>(null)
|
||||||
|
const panelRef = useRef<HTMLDivElement>(null)
|
||||||
|
const buttonRef = useRef<HTMLButtonElement>(null)
|
||||||
|
const [fixedPos, setFixedPos] = useState<{ left: number; top: number } | null>(null)
|
||||||
const pathname = usePathname()
|
const pathname = usePathname()
|
||||||
const router = useRouter()
|
const router = useRouter()
|
||||||
|
|
||||||
@@ -71,37 +77,79 @@ function BreadcrumbSitePicker({ currentSiteId, currentSiteName }: { currentSiteI
|
|||||||
}
|
}
|
||||||
}, [open, sites.length])
|
}, [open, sites.length])
|
||||||
|
|
||||||
|
const updatePosition = useCallback(() => {
|
||||||
|
if (buttonRef.current) {
|
||||||
|
const rect = buttonRef.current.getBoundingClientRect()
|
||||||
|
let top = rect.bottom + 4
|
||||||
|
if (panelRef.current) {
|
||||||
|
const maxTop = window.innerHeight - panelRef.current.offsetHeight - 8
|
||||||
|
top = Math.min(top, Math.max(8, maxTop))
|
||||||
|
}
|
||||||
|
setFixedPos({ left: rect.left, top })
|
||||||
|
}
|
||||||
|
}, [])
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
const handler = (e: MouseEvent) => {
|
const handler = (e: MouseEvent) => {
|
||||||
if (ref.current && !ref.current.contains(e.target as Node)) setOpen(false)
|
const target = e.target as Node
|
||||||
|
if (
|
||||||
|
ref.current && !ref.current.contains(target) &&
|
||||||
|
(!panelRef.current || !panelRef.current.contains(target))
|
||||||
|
) {
|
||||||
|
if (open) { setOpen(false); setSearch('') }
|
||||||
|
}
|
||||||
}
|
}
|
||||||
document.addEventListener('mousedown', handler)
|
document.addEventListener('mousedown', handler)
|
||||||
return () => document.removeEventListener('mousedown', handler)
|
return () => document.removeEventListener('mousedown', handler)
|
||||||
}, [])
|
}, [open])
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (open) {
|
||||||
|
updatePosition()
|
||||||
|
requestAnimationFrame(() => updatePosition())
|
||||||
|
}
|
||||||
|
}, [open, updatePosition])
|
||||||
|
|
||||||
|
const closePicker = () => { setOpen(false); setSearch('') }
|
||||||
|
|
||||||
const switchSite = (id: string) => {
|
const switchSite = (id: string) => {
|
||||||
// Navigate to same section on the new site
|
|
||||||
router.push(`/sites/${id}${pathname.replace(/^\/sites\/[^/]+/, '')}`)
|
router.push(`/sites/${id}${pathname.replace(/^\/sites\/[^/]+/, '')}`)
|
||||||
setOpen(false)
|
closePicker()
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
const filtered = sites.filter(
|
||||||
<div className="relative" ref={ref}>
|
(s) => s.name.toLowerCase().includes(search.toLowerCase()) || s.domain.toLowerCase().includes(search.toLowerCase())
|
||||||
<button
|
)
|
||||||
onClick={() => setOpen(!open)}
|
|
||||||
className="inline-flex items-center gap-1 text-neutral-500 hover:text-neutral-300 transition-colors max-w-[160px] cursor-pointer"
|
const dropdown = (
|
||||||
>
|
<AnimatePresence>
|
||||||
<span className="truncate">{currentSiteName}</span>
|
|
||||||
<CaretDown className="w-3 h-3 shrink-0 translate-y-px" />
|
|
||||||
</button>
|
|
||||||
{open && (
|
{open && (
|
||||||
<div className="absolute top-full left-0 mt-1 z-50 w-[220px] bg-neutral-900/90 backdrop-blur-2xl border border-white/[0.08] rounded-xl shadow-xl shadow-black/20 overflow-hidden">
|
<motion.div
|
||||||
|
ref={panelRef}
|
||||||
|
initial={{ opacity: 0, y: 10, scale: 0.95 }}
|
||||||
|
animate={{ opacity: 1, y: 0, scale: 1 }}
|
||||||
|
exit={{ opacity: 0, y: 10, scale: 0.95 }}
|
||||||
|
transition={{ duration: 0.15 }}
|
||||||
|
className="fixed z-50 w-[240px] bg-neutral-900/65 backdrop-blur-3xl backdrop-saturate-150 supports-[backdrop-filter]:bg-neutral-900/60 border border-white/[0.08] rounded-xl shadow-xl shadow-black/20 overflow-hidden origin-top-left"
|
||||||
|
style={fixedPos ? { left: fixedPos.left, top: fixedPos.top } : undefined}
|
||||||
|
>
|
||||||
|
<div className="p-2">
|
||||||
|
<input
|
||||||
|
type="text"
|
||||||
|
placeholder="Search sites..."
|
||||||
|
value={search}
|
||||||
|
onChange={(e) => setSearch(e.target.value)}
|
||||||
|
onKeyDown={(e) => { if (e.key === 'Escape') closePicker() }}
|
||||||
|
className="w-full px-3 py-1.5 text-sm bg-white/[0.04] border border-white/[0.08] rounded-lg outline-none focus:ring-2 focus:ring-brand-orange/40 text-white placeholder:text-neutral-400"
|
||||||
|
autoFocus
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
<div className="max-h-64 overflow-y-auto">
|
<div className="max-h-64 overflow-y-auto">
|
||||||
{sites.map((site) => (
|
{filtered.map((site) => (
|
||||||
<button
|
<button
|
||||||
key={site.id}
|
key={site.id}
|
||||||
onClick={() => switchSite(site.id)}
|
onClick={() => switchSite(site.id)}
|
||||||
className={`w-full flex items-center gap-2.5 px-3 py-2 text-sm text-left transition-colors ${
|
className={`w-full flex items-center gap-2.5 px-4 py-2 text-sm text-left ${
|
||||||
site.id === currentSiteId
|
site.id === currentSiteId
|
||||||
? 'bg-brand-orange/10 text-brand-orange font-medium'
|
? 'bg-brand-orange/10 text-brand-orange font-medium'
|
||||||
: 'text-neutral-300 hover:bg-white/[0.06]'
|
: 'text-neutral-300 hover:bg-white/[0.06]'
|
||||||
@@ -110,14 +158,38 @@ function BreadcrumbSitePicker({ currentSiteId, currentSiteName }: { currentSiteI
|
|||||||
<img
|
<img
|
||||||
src={`${FAVICON_SERVICE_URL}?domain=${site.domain}&sz=64`}
|
src={`${FAVICON_SERVICE_URL}?domain=${site.domain}&sz=64`}
|
||||||
alt=""
|
alt=""
|
||||||
className="w-4 h-4 rounded object-contain shrink-0"
|
className="w-5 h-5 rounded object-contain shrink-0"
|
||||||
/>
|
/>
|
||||||
<span className="truncate">{site.name}</span>
|
<span className="flex flex-col min-w-0">
|
||||||
|
<span className="truncate">{site.name}</span>
|
||||||
|
<span className="text-xs text-neutral-400 truncate">{site.domain}</span>
|
||||||
|
</span>
|
||||||
</button>
|
</button>
|
||||||
))}
|
))}
|
||||||
|
{filtered.length === 0 && <p className="px-4 py-3 text-sm text-neutral-400">No sites found</p>}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
<div className="border-t border-white/[0.06] p-2">
|
||||||
|
<Link href="/sites/new" onClick={() => closePicker()} className="flex items-center gap-2 px-3 py-1.5 text-sm text-brand-orange hover:bg-white/[0.06] rounded-lg">
|
||||||
|
<PlusIcon className="w-4 h-4" />
|
||||||
|
Add new site
|
||||||
|
</Link>
|
||||||
|
</div>
|
||||||
|
</motion.div>
|
||||||
)}
|
)}
|
||||||
|
</AnimatePresence>
|
||||||
|
)
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className="relative" ref={ref}>
|
||||||
|
<button
|
||||||
|
ref={buttonRef}
|
||||||
|
onClick={() => setOpen(!open)}
|
||||||
|
className="inline-flex items-center gap-1 text-neutral-500 hover:text-neutral-300 transition-colors max-w-[160px] cursor-pointer"
|
||||||
|
>
|
||||||
|
<span className="truncate">{currentSiteName}</span>
|
||||||
|
<CaretDown className="w-3 h-3 shrink-0 translate-y-px" />
|
||||||
|
</button>
|
||||||
|
{typeof document !== 'undefined' ? createPortal(dropdown, document.body) : dropdown}
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,8 +1,6 @@
|
|||||||
'use client'
|
'use client'
|
||||||
|
|
||||||
import { useState, useEffect, useRef, useCallback } from 'react'
|
import { useState, useEffect, useRef, useCallback } from 'react'
|
||||||
import { createPortal } from 'react-dom'
|
|
||||||
import { motion, AnimatePresence } from 'framer-motion'
|
|
||||||
import Link from 'next/link'
|
import Link from 'next/link'
|
||||||
import { usePathname, useRouter } from 'next/navigation'
|
import { usePathname, useRouter } from 'next/navigation'
|
||||||
import { listSites, type Site } from '@/lib/api/sites'
|
import { listSites, type Site } from '@/lib/api/sites'
|
||||||
@@ -24,7 +22,6 @@ import {
|
|||||||
CloudUploadIcon,
|
CloudUploadIcon,
|
||||||
HeartbeatIcon,
|
HeartbeatIcon,
|
||||||
SettingsIcon,
|
SettingsIcon,
|
||||||
ChevronUpDownIcon,
|
|
||||||
PlusIcon,
|
PlusIcon,
|
||||||
XIcon,
|
XIcon,
|
||||||
BookOpenIcon,
|
BookOpenIcon,
|
||||||
@@ -112,183 +109,6 @@ function Label({ children, collapsed }: { children: React.ReactNode; collapsed:
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
// ─── Site Picker ────────────────────────────────────────────
|
|
||||||
|
|
||||||
function SitePicker({ sites, siteId, collapsed, onExpand, onCollapse, wasCollapsed, pickerOpenCallback }: {
|
|
||||||
sites: Site[]; siteId: string; collapsed: boolean
|
|
||||||
onExpand: () => void; onCollapse: () => void; wasCollapsed: React.MutableRefObject<boolean>
|
|
||||||
pickerOpenCallback: React.MutableRefObject<(() => void) | null>
|
|
||||||
}) {
|
|
||||||
const [open, setOpen] = useState(false)
|
|
||||||
const [search, setSearch] = useState('')
|
|
||||||
const [faviconFailed, setFaviconFailed] = useState(false)
|
|
||||||
const [faviconLoaded, setFaviconLoaded] = useState(false)
|
|
||||||
const ref = useRef<HTMLDivElement>(null)
|
|
||||||
const panelRef = useRef<HTMLDivElement>(null)
|
|
||||||
const buttonRef = useRef<HTMLButtonElement>(null)
|
|
||||||
const [fixedPos, setFixedPos] = useState<{ left: number; top: number } | null>(null)
|
|
||||||
const pathname = usePathname()
|
|
||||||
const router = useRouter()
|
|
||||||
const currentSite = sites.find((s) => s.id === siteId)
|
|
||||||
const faviconUrl = currentSite?.domain ? `${FAVICON_SERVICE_URL}?domain=${currentSite.domain}&sz=64` : null
|
|
||||||
|
|
||||||
const updatePosition = useCallback(() => {
|
|
||||||
if (buttonRef.current) {
|
|
||||||
const rect = buttonRef.current.getBoundingClientRect()
|
|
||||||
if (collapsed) {
|
|
||||||
// Collapsed: open to the right, like AppLauncher/UserMenu/Notifications
|
|
||||||
let top = rect.top
|
|
||||||
if (panelRef.current) {
|
|
||||||
const maxTop = window.innerHeight - panelRef.current.offsetHeight - 8
|
|
||||||
top = Math.min(top, Math.max(8, maxTop))
|
|
||||||
}
|
|
||||||
setFixedPos({ left: rect.right + 8, top })
|
|
||||||
} else {
|
|
||||||
// Expanded: open below the button
|
|
||||||
let top = rect.bottom + 4
|
|
||||||
if (panelRef.current) {
|
|
||||||
const maxTop = window.innerHeight - panelRef.current.offsetHeight - 8
|
|
||||||
top = Math.min(top, Math.max(8, maxTop))
|
|
||||||
}
|
|
||||||
setFixedPos({ left: rect.left, top })
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}, [collapsed])
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
const handler = (e: MouseEvent) => {
|
|
||||||
const target = e.target as Node
|
|
||||||
if (
|
|
||||||
ref.current && !ref.current.contains(target) &&
|
|
||||||
(!panelRef.current || !panelRef.current.contains(target))
|
|
||||||
) {
|
|
||||||
if (open) {
|
|
||||||
setOpen(false); setSearch('')
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
document.addEventListener('mousedown', handler)
|
|
||||||
return () => document.removeEventListener('mousedown', handler)
|
|
||||||
}, [open, onCollapse, wasCollapsed])
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
if (open) {
|
|
||||||
updatePosition()
|
|
||||||
requestAnimationFrame(() => updatePosition())
|
|
||||||
}
|
|
||||||
}, [open, updatePosition])
|
|
||||||
|
|
||||||
const closePicker = () => {
|
|
||||||
setOpen(false); setSearch('')
|
|
||||||
}
|
|
||||||
|
|
||||||
const switchSite = (id: string) => {
|
|
||||||
router.push(`/sites/${id}${pathname.replace(/^\/sites\/[^/]+/, '')}`)
|
|
||||||
closePicker()
|
|
||||||
}
|
|
||||||
|
|
||||||
const filtered = sites.filter(
|
|
||||||
(s) => s.name.toLowerCase().includes(search.toLowerCase()) || s.domain.toLowerCase().includes(search.toLowerCase())
|
|
||||||
)
|
|
||||||
|
|
||||||
const dropdown = (
|
|
||||||
<AnimatePresence>
|
|
||||||
{open && (
|
|
||||||
<motion.div
|
|
||||||
ref={panelRef}
|
|
||||||
initial={{ opacity: 0, y: 10, scale: 0.95 }}
|
|
||||||
animate={{ opacity: 1, y: 0, scale: 1 }}
|
|
||||||
exit={{ opacity: 0, y: 10, scale: 0.95 }}
|
|
||||||
transition={{ duration: 0.15 }}
|
|
||||||
className="fixed z-50 w-[240px] bg-neutral-900/65 backdrop-blur-3xl backdrop-saturate-150 supports-[backdrop-filter]:bg-neutral-900/60 border border-white/[0.08] rounded-xl shadow-xl shadow-black/20 overflow-hidden origin-top-left"
|
|
||||||
style={fixedPos ? { left: fixedPos.left, top: fixedPos.top } : undefined}
|
|
||||||
>
|
|
||||||
<div className="p-2">
|
|
||||||
<input
|
|
||||||
type="text"
|
|
||||||
placeholder="Search sites..."
|
|
||||||
value={search}
|
|
||||||
onChange={(e) => setSearch(e.target.value)}
|
|
||||||
onKeyDown={(e) => {
|
|
||||||
if (e.key === 'Escape') closePicker()
|
|
||||||
}}
|
|
||||||
className="w-full px-3 py-1.5 text-sm bg-white/[0.04] border border-white/[0.08] rounded-lg outline-none focus:ring-2 focus:ring-brand-orange/40 text-white placeholder:text-neutral-400"
|
|
||||||
autoFocus
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
<div className="max-h-64 overflow-y-auto">
|
|
||||||
{filtered.map((site) => (
|
|
||||||
<button
|
|
||||||
key={site.id}
|
|
||||||
onClick={() => switchSite(site.id)}
|
|
||||||
className={`w-full flex items-center gap-2.5 px-4 py-2 text-sm text-left ${
|
|
||||||
site.id === siteId
|
|
||||||
? 'bg-brand-orange/10 text-brand-orange font-medium'
|
|
||||||
: 'text-neutral-300 hover:bg-white/[0.06]'
|
|
||||||
}`}
|
|
||||||
>
|
|
||||||
<img
|
|
||||||
src={`${FAVICON_SERVICE_URL}?domain=${site.domain}&sz=64`}
|
|
||||||
alt=""
|
|
||||||
className="w-5 h-5 rounded object-contain shrink-0"
|
|
||||||
/>
|
|
||||||
<span className="flex flex-col min-w-0">
|
|
||||||
<span className="truncate">{site.name}</span>
|
|
||||||
<span className="text-xs text-neutral-400 truncate">{site.domain}</span>
|
|
||||||
</span>
|
|
||||||
</button>
|
|
||||||
))}
|
|
||||||
{filtered.length === 0 && <p className="px-4 py-3 text-sm text-neutral-400">No sites found</p>}
|
|
||||||
</div>
|
|
||||||
<div className="border-t border-white/[0.06] p-2">
|
|
||||||
<Link href="/sites/new" onClick={() => closePicker()} className="flex items-center gap-2 px-3 py-1.5 text-sm text-brand-orange hover:bg-white/[0.06] rounded-lg">
|
|
||||||
<PlusIcon className="w-4 h-4" />
|
|
||||||
Add new site
|
|
||||||
</Link>
|
|
||||||
</div>
|
|
||||||
</motion.div>
|
|
||||||
)}
|
|
||||||
</AnimatePresence>
|
|
||||||
)
|
|
||||||
|
|
||||||
return (
|
|
||||||
<div className="relative mb-4 px-2" ref={ref}>
|
|
||||||
<button
|
|
||||||
ref={buttonRef}
|
|
||||||
onClick={() => setOpen(!open)}
|
|
||||||
className="w-full flex items-center gap-2.5 rounded-lg px-2.5 py-2 text-sm font-medium text-neutral-200 hover:bg-white/[0.06] overflow-hidden"
|
|
||||||
>
|
|
||||||
<span className="w-7 h-7 rounded-md bg-brand-orange/10 flex items-center justify-center shrink-0 overflow-hidden">
|
|
||||||
{faviconUrl && !faviconFailed ? (
|
|
||||||
<>
|
|
||||||
{!faviconLoaded && <span className="w-5 h-5 rounded animate-pulse bg-neutral-800" />}
|
|
||||||
<img
|
|
||||||
src={faviconUrl}
|
|
||||||
alt=""
|
|
||||||
className={`w-5 h-5 object-contain ${faviconLoaded ? '' : 'hidden'}`}
|
|
||||||
onLoad={() => setFaviconLoaded(true)}
|
|
||||||
onError={() => setFaviconFailed(true)}
|
|
||||||
/>
|
|
||||||
</>
|
|
||||||
) : (
|
|
||||||
<span className="text-xs font-bold text-brand-orange">
|
|
||||||
{currentSite?.name?.charAt(0).toUpperCase() || '?'}
|
|
||||||
</span>
|
|
||||||
)}
|
|
||||||
</span>
|
|
||||||
<Label collapsed={collapsed}>
|
|
||||||
<span className="flex items-center gap-1">
|
|
||||||
<span className="truncate">{currentSite?.name || ''}</span>
|
|
||||||
<ChevronUpDownIcon className="w-4 h-4 text-neutral-400 shrink-0" />
|
|
||||||
</span>
|
|
||||||
</Label>
|
|
||||||
</button>
|
|
||||||
|
|
||||||
{typeof document !== 'undefined' ? createPortal(dropdown, document.body) : dropdown}
|
|
||||||
</div>
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
// ─── Nav Item ───────────────────────────────────────────────
|
// ─── Nav Item ───────────────────────────────────────────────
|
||||||
|
|
||||||
function NavLink({
|
function NavLink({
|
||||||
@@ -448,11 +268,7 @@ interface SidebarContentProps {
|
|||||||
pendingHref: string | null
|
pendingHref: string | null
|
||||||
onNavigate: (href: string) => void
|
onNavigate: (href: string) => void
|
||||||
onMobileClose: () => void
|
onMobileClose: () => void
|
||||||
onExpand: () => void
|
|
||||||
onCollapse: () => void
|
|
||||||
onToggle: () => void
|
onToggle: () => void
|
||||||
wasCollapsed: React.MutableRefObject<boolean>
|
|
||||||
pickerOpenCallbackRef: React.MutableRefObject<(() => void) | null>
|
|
||||||
auth: ReturnType<typeof useAuth>
|
auth: ReturnType<typeof useAuth>
|
||||||
orgs: OrganizationMember[]
|
orgs: OrganizationMember[]
|
||||||
onSwitchOrganization: (orgId: string | null) => Promise<void>
|
onSwitchOrganization: (orgId: string | null) => Promise<void>
|
||||||
@@ -462,8 +278,8 @@ interface SidebarContentProps {
|
|||||||
|
|
||||||
function SidebarContent({
|
function SidebarContent({
|
||||||
isMobile, collapsed, siteId, sites, canEdit, pendingHref,
|
isMobile, collapsed, siteId, sites, canEdit, pendingHref,
|
||||||
onNavigate, onMobileClose, onExpand, onCollapse, onToggle,
|
onNavigate, onMobileClose, onToggle,
|
||||||
wasCollapsed, pickerOpenCallbackRef, auth, orgs, onSwitchOrganization, openSettings, openOrgSettings,
|
auth, orgs, onSwitchOrganization, openSettings, openOrgSettings,
|
||||||
}: SidebarContentProps) {
|
}: SidebarContentProps) {
|
||||||
const router = useRouter()
|
const router = useRouter()
|
||||||
const c = isMobile ? false : collapsed
|
const c = isMobile ? false : collapsed
|
||||||
@@ -491,11 +307,6 @@ function SidebarContent({
|
|||||||
</span>
|
</span>
|
||||||
</Link>
|
</Link>
|
||||||
|
|
||||||
{/* Site Picker */}
|
|
||||||
{siteId && (
|
|
||||||
<SitePicker sites={sites} siteId={siteId} collapsed={c} onExpand={onExpand} onCollapse={onCollapse} wasCollapsed={wasCollapsed} pickerOpenCallback={pickerOpenCallbackRef} />
|
|
||||||
)}
|
|
||||||
|
|
||||||
{/* Nav Groups */}
|
{/* Nav Groups */}
|
||||||
{siteId ? (
|
{siteId ? (
|
||||||
<nav className="flex-1 overflow-y-auto overflow-x-hidden px-2 space-y-4">
|
<nav className="flex-1 overflow-y-auto overflow-x-hidden px-2 space-y-4">
|
||||||
@@ -637,9 +448,7 @@ export default function Sidebar({
|
|||||||
const [orgs, setOrgs] = useState<OrganizationMember[]>([])
|
const [orgs, setOrgs] = useState<OrganizationMember[]>([])
|
||||||
const [pendingHref, setPendingHref] = useState<string | null>(null)
|
const [pendingHref, setPendingHref] = useState<string | null>(null)
|
||||||
const [mobileClosing, setMobileClosing] = useState(false)
|
const [mobileClosing, setMobileClosing] = useState(false)
|
||||||
const wasCollapsedRef = useRef(false)
|
const { collapsed, toggle } = useSidebar()
|
||||||
const pickerOpenCallbackRef = useRef<(() => void) | null>(null)
|
|
||||||
const { collapsed, toggle, expand, collapse } = useSidebar()
|
|
||||||
|
|
||||||
useEffect(() => { listSites().then(setSites).catch(() => {}) }, [])
|
useEffect(() => { listSites().then(setSites).catch(() => {}) }, [])
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
@@ -679,12 +488,6 @@ export default function Sidebar({
|
|||||||
<aside
|
<aside
|
||||||
className="hidden md:flex flex-col shrink-0 bg-transparent overflow-hidden relative z-10"
|
className="hidden md:flex flex-col shrink-0 bg-transparent overflow-hidden relative z-10"
|
||||||
style={{ width: collapsed ? COLLAPSED : EXPANDED, transition: 'width 200ms cubic-bezier(0.4, 0, 0.2, 1)' }}
|
style={{ width: collapsed ? COLLAPSED : EXPANDED, transition: 'width 200ms cubic-bezier(0.4, 0, 0.2, 1)' }}
|
||||||
onTransitionEnd={(e) => {
|
|
||||||
if (e.propertyName === 'width' && pickerOpenCallbackRef.current) {
|
|
||||||
pickerOpenCallbackRef.current()
|
|
||||||
pickerOpenCallbackRef.current = null
|
|
||||||
}
|
|
||||||
}}
|
|
||||||
>
|
>
|
||||||
<SidebarContent
|
<SidebarContent
|
||||||
isMobile={false}
|
isMobile={false}
|
||||||
@@ -695,11 +498,7 @@ export default function Sidebar({
|
|||||||
pendingHref={pendingHref}
|
pendingHref={pendingHref}
|
||||||
onNavigate={handleNavigate}
|
onNavigate={handleNavigate}
|
||||||
onMobileClose={onMobileClose}
|
onMobileClose={onMobileClose}
|
||||||
onExpand={expand}
|
|
||||||
onCollapse={collapse}
|
|
||||||
onToggle={toggle}
|
onToggle={toggle}
|
||||||
wasCollapsed={wasCollapsedRef}
|
|
||||||
pickerOpenCallbackRef={pickerOpenCallbackRef}
|
|
||||||
auth={auth}
|
auth={auth}
|
||||||
orgs={orgs}
|
orgs={orgs}
|
||||||
onSwitchOrganization={handleSwitchOrganization}
|
onSwitchOrganization={handleSwitchOrganization}
|
||||||
@@ -739,11 +538,7 @@ export default function Sidebar({
|
|||||||
pendingHref={pendingHref}
|
pendingHref={pendingHref}
|
||||||
onNavigate={handleNavigate}
|
onNavigate={handleNavigate}
|
||||||
onMobileClose={handleMobileClose}
|
onMobileClose={handleMobileClose}
|
||||||
onExpand={expand}
|
|
||||||
onCollapse={collapse}
|
|
||||||
onToggle={toggle}
|
onToggle={toggle}
|
||||||
wasCollapsed={wasCollapsedRef}
|
|
||||||
pickerOpenCallbackRef={pickerOpenCallbackRef}
|
|
||||||
auth={auth}
|
auth={auth}
|
||||||
orgs={orgs}
|
orgs={orgs}
|
||||||
onSwitchOrganization={handleSwitchOrganization}
|
onSwitchOrganization={handleSwitchOrganization}
|
||||||
|
|||||||
Reference in New Issue
Block a user