feat: move app switcher from sidebar to breadcrumbs
Breadcrumbs now show: Pulse ▾ > Your Sites > site ▾ > Page "Pulse ▾" opens the Ciphera apps dropdown (Drop, Auth). Removed AppLauncher and CIPHERA label from sidebar top.
This commit is contained in:
@@ -6,7 +6,7 @@ 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, PlusIcon } from '@ciphera-net/ui'
|
import { formatUpdatedAgo, PlusIcon, ExternalLinkIcon, type CipheraApp } 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'
|
||||||
@@ -14,6 +14,12 @@ import { getSite, listSites, type Site } from '@/lib/api/sites'
|
|||||||
import { FAVICON_SERVICE_URL } from '@/lib/utils/favicon'
|
import { FAVICON_SERVICE_URL } from '@/lib/utils/favicon'
|
||||||
import ContentHeader from './ContentHeader'
|
import ContentHeader from './ContentHeader'
|
||||||
|
|
||||||
|
const CIPHERA_APPS: CipheraApp[] = [
|
||||||
|
{ id: 'pulse', name: 'Pulse', description: 'Your current app — Privacy-first analytics', icon: 'https://ciphera.net/pulse_icon_no_margins.png', href: 'https://pulse.ciphera.net', isAvailable: false },
|
||||||
|
{ id: 'drop', name: 'Drop', description: 'Secure file sharing', icon: 'https://ciphera.net/drop_icon_no_margins.png', href: 'https://drop.ciphera.net', isAvailable: true },
|
||||||
|
{ id: 'auth', name: 'Auth', description: 'Your Ciphera account settings', icon: 'https://ciphera.net/auth_icon_no_margins.png', href: 'https://auth.ciphera.net', isAvailable: true },
|
||||||
|
]
|
||||||
|
|
||||||
const PAGE_TITLES: Record<string, string> = {
|
const PAGE_TITLES: Record<string, string> = {
|
||||||
'': 'Dashboard',
|
'': 'Dashboard',
|
||||||
journeys: 'Journeys',
|
journeys: 'Journeys',
|
||||||
@@ -58,6 +64,105 @@ const Sidebar = dynamic(() => import('./Sidebar'), {
|
|||||||
),
|
),
|
||||||
})
|
})
|
||||||
|
|
||||||
|
// ─── Breadcrumb App Switcher ───────────────────────────────
|
||||||
|
|
||||||
|
function BreadcrumbAppSwitcher() {
|
||||||
|
const [open, setOpen] = 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)
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
const handler = (e: MouseEvent) => {
|
||||||
|
const target = e.target as Node
|
||||||
|
if (
|
||||||
|
ref.current && !ref.current.contains(target) &&
|
||||||
|
(!panelRef.current || !panelRef.current.contains(target))
|
||||||
|
) setOpen(false)
|
||||||
|
}
|
||||||
|
document.addEventListener('mousedown', handler)
|
||||||
|
return () => document.removeEventListener('mousedown', handler)
|
||||||
|
}, [])
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (open && 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 })
|
||||||
|
requestAnimationFrame(() => {
|
||||||
|
if (buttonRef.current) {
|
||||||
|
const r = buttonRef.current.getBoundingClientRect()
|
||||||
|
setFixedPos({ left: r.left, top: r.bottom + 4 })
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}, [open])
|
||||||
|
|
||||||
|
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-72 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-4">
|
||||||
|
<div className="text-xs font-medium text-neutral-400 tracking-wider mb-3">Ciphera Apps</div>
|
||||||
|
<div className="grid grid-cols-3 gap-3">
|
||||||
|
{CIPHERA_APPS.map((app) => {
|
||||||
|
const isCurrent = app.id === 'pulse'
|
||||||
|
return (
|
||||||
|
<a
|
||||||
|
key={app.id}
|
||||||
|
href={app.href}
|
||||||
|
onClick={(e) => { if (isCurrent) { e.preventDefault(); setOpen(false) } else setOpen(false) }}
|
||||||
|
className={`group flex flex-col items-center gap-2 p-3 rounded-xl transition-all ${
|
||||||
|
isCurrent ? 'bg-neutral-800/50 cursor-default' : 'hover:bg-neutral-800/50'
|
||||||
|
}`}
|
||||||
|
>
|
||||||
|
<div className="w-10 h-10 flex items-center justify-center shrink-0">
|
||||||
|
<img src={app.icon} alt={app.name} className="w-8 h-8 object-contain" />
|
||||||
|
</div>
|
||||||
|
<span className="text-xs font-medium text-white text-center">{app.name}</span>
|
||||||
|
</a>
|
||||||
|
)
|
||||||
|
})}
|
||||||
|
</div>
|
||||||
|
<div className="h-px bg-white/[0.06] my-3" />
|
||||||
|
<a href="https://ciphera.net/products" target="_blank" rel="noopener noreferrer" className="flex items-center justify-center gap-1 text-xs text-brand-orange hover:underline">
|
||||||
|
View all products
|
||||||
|
<ExternalLinkIcon className="h-3 w-3" />
|
||||||
|
</a>
|
||||||
|
</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 cursor-pointer"
|
||||||
|
>
|
||||||
|
<span>Pulse</span>
|
||||||
|
<CaretDown className="w-3 h-3 shrink-0 translate-y-px" />
|
||||||
|
</button>
|
||||||
|
{typeof document !== 'undefined' ? createPortal(dropdown, document.body) : dropdown}
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
// ─── Breadcrumb Site Picker ────────────────────────────────
|
// ─── Breadcrumb Site Picker ────────────────────────────────
|
||||||
|
|
||||||
function BreadcrumbSitePicker({ currentSiteId, currentSiteName }: { currentSiteId: string; currentSiteName: string }) {
|
function BreadcrumbSitePicker({ currentSiteId, currentSiteName }: { currentSiteId: string; currentSiteName: string }) {
|
||||||
@@ -233,17 +338,21 @@ function GlassTopBar({ siteId }: { siteId: string | null }) {
|
|||||||
>
|
>
|
||||||
<SidebarSimple className="w-[18px] h-[18px]" weight={collapsed ? 'regular' : 'fill'} />
|
<SidebarSimple className="w-[18px] h-[18px]" weight={collapsed ? 'regular' : 'fill'} />
|
||||||
</button>
|
</button>
|
||||||
{siteId && siteName ? (
|
<nav className="flex items-center gap-1 text-sm font-medium">
|
||||||
<nav className="flex items-center gap-1 text-sm font-medium">
|
<BreadcrumbAppSwitcher />
|
||||||
<Link href="/" className="text-neutral-500 hover:text-neutral-300 transition-colors">Your Sites</Link>
|
<CaretRight className="w-3 h-3 text-neutral-600" />
|
||||||
<CaretRight className="w-3 h-3 text-neutral-600" />
|
{siteId && siteName ? (
|
||||||
<BreadcrumbSitePicker currentSiteId={siteId} currentSiteName={siteName} />
|
<>
|
||||||
<CaretRight className="w-3 h-3 text-neutral-600" />
|
<Link href="/" className="text-neutral-500 hover:text-neutral-300 transition-colors">Your Sites</Link>
|
||||||
|
<CaretRight className="w-3 h-3 text-neutral-600" />
|
||||||
|
<BreadcrumbSitePicker currentSiteId={siteId} currentSiteName={siteName} />
|
||||||
|
<CaretRight className="w-3 h-3 text-neutral-600" />
|
||||||
|
<span className="text-neutral-400">{pageTitle}</span>
|
||||||
|
</>
|
||||||
|
) : (
|
||||||
<span className="text-neutral-400">{pageTitle}</span>
|
<span className="text-neutral-400">{pageTitle}</span>
|
||||||
</nav>
|
)}
|
||||||
) : (
|
</nav>
|
||||||
<span className="text-sm text-neutral-400 font-medium">{pageTitle}</span>
|
|
||||||
)}
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{/* Realtime indicator */}
|
{/* Realtime indicator */}
|
||||||
|
|||||||
@@ -25,39 +25,10 @@ import {
|
|||||||
PlusIcon,
|
PlusIcon,
|
||||||
XIcon,
|
XIcon,
|
||||||
BookOpenIcon,
|
BookOpenIcon,
|
||||||
AppLauncher,
|
|
||||||
UserMenu,
|
UserMenu,
|
||||||
type CipheraApp,
|
|
||||||
} from '@ciphera-net/ui'
|
} from '@ciphera-net/ui'
|
||||||
import NotificationCenter from '@/components/notifications/NotificationCenter'
|
import NotificationCenter from '@/components/notifications/NotificationCenter'
|
||||||
|
|
||||||
const CIPHERA_APPS: CipheraApp[] = [
|
|
||||||
{
|
|
||||||
id: 'pulse',
|
|
||||||
name: 'Pulse',
|
|
||||||
description: 'Your current app — Privacy-first analytics',
|
|
||||||
icon: 'https://ciphera.net/pulse_icon_no_margins.png',
|
|
||||||
href: 'https://pulse.ciphera.net',
|
|
||||||
isAvailable: false,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: 'drop',
|
|
||||||
name: 'Drop',
|
|
||||||
description: 'Secure file sharing',
|
|
||||||
icon: 'https://ciphera.net/drop_icon_no_margins.png',
|
|
||||||
href: 'https://drop.ciphera.net',
|
|
||||||
isAvailable: true,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: 'auth',
|
|
||||||
name: 'Auth',
|
|
||||||
description: 'Your Ciphera account settings',
|
|
||||||
icon: 'https://ciphera.net/auth_icon_no_margins.png',
|
|
||||||
href: 'https://auth.ciphera.net',
|
|
||||||
isAvailable: true,
|
|
||||||
},
|
|
||||||
]
|
|
||||||
|
|
||||||
const EXPANDED = 256
|
const EXPANDED = 256
|
||||||
const COLLAPSED = 64
|
const COLLAPSED = 64
|
||||||
|
|
||||||
@@ -287,16 +258,6 @@ function SidebarContent({
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="flex flex-col h-full overflow-hidden">
|
<div className="flex flex-col h-full overflow-hidden">
|
||||||
{/* App Switcher — top of sidebar (scope-level switch) */}
|
|
||||||
<div className="flex items-center gap-2.5 px-[14px] pt-1.5 pb-1 shrink-0 overflow-hidden">
|
|
||||||
<span className="w-9 h-9 flex items-center justify-center shrink-0">
|
|
||||||
<AppLauncher apps={CIPHERA_APPS} currentAppId="pulse" anchor="right" />
|
|
||||||
</span>
|
|
||||||
<Label collapsed={c}>
|
|
||||||
<span className="text-xs font-medium text-neutral-400 dark:text-neutral-500 uppercase tracking-wider">Ciphera</span>
|
|
||||||
</Label>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
{/* Logo — fixed layout, text fades */}
|
{/* Logo — fixed layout, text fades */}
|
||||||
<Link href="/" className="flex items-center gap-3 px-[14px] py-4 shrink-0 group overflow-hidden">
|
<Link href="/" className="flex items-center gap-3 px-[14px] py-4 shrink-0 group overflow-hidden">
|
||||||
<span className="w-9 h-9 flex items-center justify-center shrink-0">
|
<span className="w-9 h-9 flex items-center justify-center shrink-0">
|
||||||
|
|||||||
Reference in New Issue
Block a user