'use client' import { Header } from '@ciphera-net/ui' import { Footer } from '@/components/Footer' import { useAuth } from '@/lib/auth/context' import Link from 'next/link' import { useEffect, useState } from 'react' import { getUserOrganizations, switchContext } from '@/lib/api/organization' import { setSessionAction } from '@/app/actions/auth' import { useRouter } from 'next/navigation' export default function LayoutContent({ children }: { children: React.ReactNode }) { const auth = useAuth() const router = useRouter() const [orgs, setOrgs] = useState([]) // * Fetch organizations for the header workspace switcher useEffect(() => { if (auth.user) { getUserOrganizations() .then((organizations) => setOrgs(organizations)) .catch(err => console.error('Failed to fetch orgs for header', err)) } }, [auth.user]) const handleSwitchWorkspace = async (orgId: string) => { try { const { access_token } = await switchContext(orgId) await setSessionAction(access_token) window.location.reload() } catch (err) { console.error('Failed to switch workspace', err) } } const handleCreateOrganization = () => { router.push('/onboarding') } return ( <>
{children}