mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-07-12 22:42:13 +02:00
feat(playground): enhance Playground layout with new sidebar and navigation functions
- Introduced PlaygroundSidebar component for improved navigation within the API Playground. - Added utility functions for generating navigation items and groups, enhancing modularity and reusability. - Updated PlaygroundLayoutShell to utilize new navigation functions, streamlining the layout structure. - Enhanced RoutedSectionShell to support optional desktop navigation, improving responsiveness and user experience.
This commit is contained in:
parent
3eb963b8b3
commit
2fa8b76b56
8 changed files with 284 additions and 76 deletions
|
|
@ -1,15 +1,14 @@
|
||||||
"use client";
|
"use client";
|
||||||
|
|
||||||
import { History, LayoutGrid } from "lucide-react";
|
|
||||||
import { useSelectedLayoutSegments } from "next/navigation";
|
import { useSelectedLayoutSegments } from "next/navigation";
|
||||||
import type React from "react";
|
import type React from "react";
|
||||||
import { useMemo } from "react";
|
import { useMemo } from "react";
|
||||||
import {
|
import {
|
||||||
type RoutedSectionGroup,
|
getPlaygroundNavGroups,
|
||||||
type RoutedSectionItem,
|
getPlaygroundNavItems,
|
||||||
|
getPlaygroundSelectedLabel,
|
||||||
RoutedSectionShell,
|
RoutedSectionShell,
|
||||||
} from "@/components/layout";
|
} from "@/components/layout";
|
||||||
import { PLAYGROUND_PLATFORMS } from "@/lib/playground/catalog";
|
|
||||||
|
|
||||||
interface PlaygroundLayoutShellProps {
|
interface PlaygroundLayoutShellProps {
|
||||||
workspaceId: string;
|
workspaceId: string;
|
||||||
|
|
@ -20,41 +19,8 @@ export function PlaygroundLayoutShell({ workspaceId, children }: PlaygroundLayou
|
||||||
const segments = useSelectedLayoutSegments();
|
const segments = useSelectedLayoutSegments();
|
||||||
const base = `/dashboard/${workspaceId}/playground`;
|
const base = `/dashboard/${workspaceId}/playground`;
|
||||||
|
|
||||||
const topLevelItems = useMemo<RoutedSectionItem[]>(
|
const topLevelItems = useMemo(() => getPlaygroundNavItems(base), [base]);
|
||||||
() => [
|
const providerGroups = useMemo(() => getPlaygroundNavGroups(base), [base]);
|
||||||
{
|
|
||||||
value: "overview",
|
|
||||||
label: "Overview",
|
|
||||||
href: base,
|
|
||||||
icon: <LayoutGrid className="h-4 w-4" />,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
value: "runs",
|
|
||||||
label: "API Runs",
|
|
||||||
href: `${base}/runs`,
|
|
||||||
icon: <History className="h-4 w-4" />,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
[base]
|
|
||||||
);
|
|
||||||
|
|
||||||
const providerGroups = useMemo<RoutedSectionGroup[]>(
|
|
||||||
() =>
|
|
||||||
PLAYGROUND_PLATFORMS.map((platform) => {
|
|
||||||
const Icon = platform.icon;
|
|
||||||
return {
|
|
||||||
value: platform.id,
|
|
||||||
label: platform.label,
|
|
||||||
icon: <Icon className="h-4 w-4 shrink-0" />,
|
|
||||||
items: platform.verbs.map((verb) => ({
|
|
||||||
value: `${platform.id}/${verb.verb}`,
|
|
||||||
label: verb.label,
|
|
||||||
href: `${base}/${platform.id}/${verb.verb}`,
|
|
||||||
})),
|
|
||||||
};
|
|
||||||
}),
|
|
||||||
[base]
|
|
||||||
);
|
|
||||||
|
|
||||||
const activeValue =
|
const activeValue =
|
||||||
segments.length >= 2
|
segments.length >= 2
|
||||||
|
|
@ -63,7 +29,7 @@ export function PlaygroundLayoutShell({ workspaceId, children }: PlaygroundLayou
|
||||||
? segments[0]
|
? segments[0]
|
||||||
: "overview";
|
: "overview";
|
||||||
|
|
||||||
const selectedLabel = getSelectedLabel(activeValue, topLevelItems, providerGroups);
|
const selectedLabel = getPlaygroundSelectedLabel(activeValue, topLevelItems, providerGroups);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<RoutedSectionShell
|
<RoutedSectionShell
|
||||||
|
|
@ -73,23 +39,9 @@ export function PlaygroundLayoutShell({ workspaceId, children }: PlaygroundLayou
|
||||||
activeValue={activeValue}
|
activeValue={activeValue}
|
||||||
selectedLabel={selectedLabel}
|
selectedLabel={selectedLabel}
|
||||||
mobileNav="drawer"
|
mobileNav="drawer"
|
||||||
|
desktopNav={false}
|
||||||
>
|
>
|
||||||
{children}
|
{children}
|
||||||
</RoutedSectionShell>
|
</RoutedSectionShell>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
function getSelectedLabel(
|
|
||||||
activeValue: string,
|
|
||||||
items: RoutedSectionItem[],
|
|
||||||
groups: RoutedSectionGroup[]
|
|
||||||
): string {
|
|
||||||
const topLevelItem = items.find((item) => item.value === activeValue);
|
|
||||||
if (topLevelItem) return topLevelItem.label;
|
|
||||||
|
|
||||||
const group = groups.find((item) => item.items.some((child) => child.value === activeValue));
|
|
||||||
const child = group?.items.find((item) => item.value === activeValue);
|
|
||||||
|
|
||||||
if (group && child) return `${group.label}: ${child.label}`;
|
|
||||||
return "API Playground";
|
|
||||||
}
|
|
||||||
|
|
|
||||||
|
|
@ -14,6 +14,10 @@ export {
|
||||||
ChatListItem,
|
ChatListItem,
|
||||||
CreateWorkspaceDialog,
|
CreateWorkspaceDialog,
|
||||||
CreditBalanceDisplay,
|
CreditBalanceDisplay,
|
||||||
|
getPlaygroundActiveValue,
|
||||||
|
getPlaygroundNavGroups,
|
||||||
|
getPlaygroundNavItems,
|
||||||
|
getPlaygroundSelectedLabel,
|
||||||
Header,
|
Header,
|
||||||
IconRail,
|
IconRail,
|
||||||
LayoutShell,
|
LayoutShell,
|
||||||
|
|
@ -21,6 +25,7 @@ export {
|
||||||
MobileSidebarTrigger,
|
MobileSidebarTrigger,
|
||||||
NavIcon,
|
NavIcon,
|
||||||
NavSection,
|
NavSection,
|
||||||
|
PlaygroundSidebar,
|
||||||
RoutedSectionShell,
|
RoutedSectionShell,
|
||||||
Sidebar,
|
Sidebar,
|
||||||
SidebarCollapseButton,
|
SidebarCollapseButton,
|
||||||
|
|
|
||||||
|
|
@ -51,6 +51,7 @@ import { resetUser, trackLogout } from "@/lib/posthog/events";
|
||||||
import { cacheKeys } from "@/lib/query-client/cache-keys";
|
import { cacheKeys } from "@/lib/query-client/cache-keys";
|
||||||
import type { ChatItem, NavItem, Workspace } from "../types/layout.types";
|
import type { ChatItem, NavItem, Workspace } from "../types/layout.types";
|
||||||
import { CreateWorkspaceDialog } from "../ui/dialogs";
|
import { CreateWorkspaceDialog } from "../ui/dialogs";
|
||||||
|
import { PlaygroundSidebar } from "../ui/playground/PlaygroundSidebar";
|
||||||
import { LayoutShell } from "../ui/shell";
|
import { LayoutShell } from "../ui/shell";
|
||||||
|
|
||||||
interface LayoutDataProviderProps {
|
interface LayoutDataProviderProps {
|
||||||
|
|
@ -689,9 +690,7 @@ export function LayoutDataProvider({ workspaceId, children }: LayoutDataProvider
|
||||||
? "items-start justify-center px-6 py-8 md:px-10 md:pb-10 md:pt-16"
|
? "items-start justify-center px-6 py-8 md:px-10 md:pb-10 md:pt-16"
|
||||||
: undefined
|
: undefined
|
||||||
}
|
}
|
||||||
workspacePanelContentClassName={
|
workspacePanelContentClassName={useWorkspacePanel ? "max-w-5xl select-none" : undefined}
|
||||||
useWorkspacePanel ? "max-w-5xl select-none" : undefined
|
|
||||||
}
|
|
||||||
isLoadingChats={isLoadingThreads}
|
isLoadingChats={isLoadingThreads}
|
||||||
notifications={{
|
notifications={{
|
||||||
totalUnreadCount,
|
totalUnreadCount,
|
||||||
|
|
@ -720,6 +719,7 @@ export function LayoutDataProvider({ workspaceId, children }: LayoutDataProvider
|
||||||
}}
|
}}
|
||||||
onTabSwitch={handleTabSwitch}
|
onTabSwitch={handleTabSwitch}
|
||||||
onTabPrefetch={handleTabPrefetch}
|
onTabPrefetch={handleTabPrefetch}
|
||||||
|
playgroundSidebar={<PlaygroundSidebar workspaceId={workspaceId} />}
|
||||||
>
|
>
|
||||||
<Fragment key={chatResetKey}>{children}</Fragment>
|
<Fragment key={chatResetKey}>{children}</Fragment>
|
||||||
</LayoutShell>
|
</LayoutShell>
|
||||||
|
|
|
||||||
|
|
@ -38,6 +38,7 @@ interface RoutedSectionShellProps {
|
||||||
groups?: RoutedSectionGroup[];
|
groups?: RoutedSectionGroup[];
|
||||||
mobileNav?: "scroll" | "drawer";
|
mobileNav?: "scroll" | "drawer";
|
||||||
contentClassName?: string;
|
contentClassName?: string;
|
||||||
|
desktopNav?: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
function findActiveGroupValue(groups: RoutedSectionGroup[], activeValue: string): string | null {
|
function findActiveGroupValue(groups: RoutedSectionGroup[], activeValue: string): string | null {
|
||||||
|
|
@ -142,6 +143,7 @@ export function RoutedSectionShell({
|
||||||
groups = [],
|
groups = [],
|
||||||
mobileNav = "scroll",
|
mobileNav = "scroll",
|
||||||
contentClassName,
|
contentClassName,
|
||||||
|
desktopNav = true,
|
||||||
}: RoutedSectionShellProps) {
|
}: RoutedSectionShellProps) {
|
||||||
const [tabScrollPos, setTabScrollPos] = useState<"start" | "middle" | "end">("start");
|
const [tabScrollPos, setTabScrollPos] = useState<"start" | "middle" | "end">("start");
|
||||||
const [drawerOpen, setDrawerOpen] = useState(false);
|
const [drawerOpen, setDrawerOpen] = useState(false);
|
||||||
|
|
@ -196,12 +198,17 @@ export function RoutedSectionShell({
|
||||||
);
|
);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<section className="flex h-full min-h-[min(680px,calc(100vh-5rem))] w-full select-none flex-col gap-6 md:flex-row">
|
<section
|
||||||
<div className="md:w-[220px] md:shrink-0">
|
className={cn(
|
||||||
|
"flex h-full min-h-[min(680px,calc(100vh-5rem))] w-full select-none flex-col",
|
||||||
|
desktopNav ? "gap-6 md:flex-row" : "gap-4 md:block"
|
||||||
|
)}
|
||||||
|
>
|
||||||
|
<div className={cn("md:w-[220px] md:shrink-0", !desktopNav && "md:hidden")}>
|
||||||
<h1 className="mb-4 px-1 text-xl font-semibold tracking-tight text-foreground md:text-2xl">
|
<h1 className="mb-4 px-1 text-xl font-semibold tracking-tight text-foreground md:text-2xl">
|
||||||
{title}
|
{title}
|
||||||
</h1>
|
</h1>
|
||||||
<nav className="hidden flex-col gap-0.5 md:flex">{renderNav()}</nav>
|
{desktopNav ? <nav className="hidden flex-col gap-0.5 md:flex">{renderNav()}</nav> : null}
|
||||||
{mobileNav === "drawer" ? (
|
{mobileNav === "drawer" ? (
|
||||||
<Drawer open={drawerOpen} onOpenChange={setDrawerOpen} shouldScaleBackground={false}>
|
<Drawer open={drawerOpen} onOpenChange={setDrawerOpen} shouldScaleBackground={false}>
|
||||||
<DrawerTrigger asChild>
|
<DrawerTrigger asChild>
|
||||||
|
|
@ -256,11 +263,15 @@ export function RoutedSectionShell({
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="min-w-0 flex-1">
|
<div className="min-w-0 flex-1">
|
||||||
<div className="hidden md:block">
|
{desktopNav ? (
|
||||||
<h2 className="text-lg font-semibold">{selectedLabel}</h2>
|
<div className="hidden md:block">
|
||||||
<Separator className="mt-4 bg-border" />
|
<h2 className="text-lg font-semibold">{selectedLabel}</h2>
|
||||||
|
<Separator className="mt-4 bg-border" />
|
||||||
|
</div>
|
||||||
|
) : null}
|
||||||
|
<div className={cn("min-w-0", desktopNav ? "pt-4" : "pt-4 md:pt-0", contentClassName)}>
|
||||||
|
{children}
|
||||||
</div>
|
</div>
|
||||||
<div className={cn("min-w-0 pt-4", contentClassName)}>{children}</div>
|
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
);
|
);
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,13 @@
|
||||||
export { CreateWorkspaceDialog } from "./dialogs";
|
export { CreateWorkspaceDialog } from "./dialogs";
|
||||||
export { Header } from "./header";
|
export { Header } from "./header";
|
||||||
export { IconRail, NavIcon, WorkspaceAvatar } from "./icon-rail";
|
export { IconRail, NavIcon, WorkspaceAvatar } from "./icon-rail";
|
||||||
|
export {
|
||||||
|
getPlaygroundActiveValue,
|
||||||
|
getPlaygroundNavGroups,
|
||||||
|
getPlaygroundNavItems,
|
||||||
|
getPlaygroundSelectedLabel,
|
||||||
|
PlaygroundSidebar,
|
||||||
|
} from "./playground/PlaygroundSidebar";
|
||||||
export type { RoutedSectionGroup, RoutedSectionItem } from "./RoutedSectionShell";
|
export type { RoutedSectionGroup, RoutedSectionItem } from "./RoutedSectionShell";
|
||||||
export { RoutedSectionShell } from "./RoutedSectionShell";
|
export { RoutedSectionShell } from "./RoutedSectionShell";
|
||||||
export { LayoutShell } from "./shell";
|
export { LayoutShell } from "./shell";
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,215 @@
|
||||||
|
"use client";
|
||||||
|
|
||||||
|
import { ChevronRight, History, LayoutGrid } from "lucide-react";
|
||||||
|
import Link from "next/link";
|
||||||
|
import { usePathname } from "next/navigation";
|
||||||
|
import { useEffect, useMemo, useState } from "react";
|
||||||
|
import { Separator } from "@/components/ui/separator";
|
||||||
|
import { PLAYGROUND_PLATFORMS } from "@/lib/playground/catalog";
|
||||||
|
import { cn } from "@/lib/utils";
|
||||||
|
import type { RoutedSectionGroup, RoutedSectionItem } from "../RoutedSectionShell";
|
||||||
|
|
||||||
|
interface PlaygroundSidebarProps {
|
||||||
|
workspaceId: string;
|
||||||
|
className?: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export function getPlaygroundNavItems(base: string): RoutedSectionItem[] {
|
||||||
|
return [
|
||||||
|
{
|
||||||
|
value: "overview",
|
||||||
|
label: "Overview",
|
||||||
|
href: base,
|
||||||
|
icon: <LayoutGrid className="h-4 w-4" />,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
value: "runs",
|
||||||
|
label: "API Runs",
|
||||||
|
href: `${base}/runs`,
|
||||||
|
icon: <History className="h-4 w-4" />,
|
||||||
|
},
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
export function getPlaygroundNavGroups(base: string): RoutedSectionGroup[] {
|
||||||
|
return PLAYGROUND_PLATFORMS.map((platform) => {
|
||||||
|
const Icon = platform.icon;
|
||||||
|
return {
|
||||||
|
value: platform.id,
|
||||||
|
label: platform.label,
|
||||||
|
icon: <Icon className="h-4 w-4 shrink-0" />,
|
||||||
|
items: platform.verbs.map((verb) => ({
|
||||||
|
value: `${platform.id}/${verb.verb}`,
|
||||||
|
label: verb.label,
|
||||||
|
href: `${base}/${platform.id}/${verb.verb}`,
|
||||||
|
})),
|
||||||
|
};
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
export function getPlaygroundActiveValue(
|
||||||
|
pathname: string | null,
|
||||||
|
base: string,
|
||||||
|
items: RoutedSectionItem[]
|
||||||
|
): string {
|
||||||
|
if (!pathname?.startsWith(base)) return "";
|
||||||
|
|
||||||
|
const rest = pathname.slice(base.length).replace(/^\/+/, "");
|
||||||
|
if (!rest) return "overview";
|
||||||
|
|
||||||
|
const [first, second] = rest.split("/");
|
||||||
|
if (second) return `${first}/${second}`;
|
||||||
|
if (items.some((item) => item.value === first)) return first;
|
||||||
|
|
||||||
|
return "overview";
|
||||||
|
}
|
||||||
|
|
||||||
|
export function getPlaygroundSelectedLabel(
|
||||||
|
activeValue: string,
|
||||||
|
items: RoutedSectionItem[],
|
||||||
|
groups: RoutedSectionGroup[]
|
||||||
|
): string {
|
||||||
|
const topLevelItem = items.find((item) => item.value === activeValue);
|
||||||
|
if (topLevelItem) return topLevelItem.label;
|
||||||
|
|
||||||
|
const group = groups.find((item) => item.items.some((child) => child.value === activeValue));
|
||||||
|
const child = group?.items.find((item) => item.value === activeValue);
|
||||||
|
|
||||||
|
if (group && child) return `${group.label}: ${child.label}`;
|
||||||
|
return "API Playground";
|
||||||
|
}
|
||||||
|
|
||||||
|
function findActiveGroupValue(groups: RoutedSectionGroup[], activeValue: string): string | null {
|
||||||
|
return (
|
||||||
|
groups.find((group) => group.items.some((item) => item.value === activeValue))?.value ?? null
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
function PlaygroundNavLink({
|
||||||
|
item,
|
||||||
|
activeValue,
|
||||||
|
}: {
|
||||||
|
item: RoutedSectionItem;
|
||||||
|
activeValue: string;
|
||||||
|
}) {
|
||||||
|
const isActive = activeValue === item.value;
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Link
|
||||||
|
href={item.href}
|
||||||
|
replace
|
||||||
|
scroll={false}
|
||||||
|
prefetch
|
||||||
|
className={cn(
|
||||||
|
"inline-flex h-auto items-center justify-start gap-3 rounded-md px-3 py-2.5 text-left text-sm font-medium transition-colors duration-150 focus:outline-none focus-visible:outline-none",
|
||||||
|
isActive
|
||||||
|
? "bg-accent text-accent-foreground"
|
||||||
|
: "bg-transparent text-muted-foreground hover:bg-accent hover:text-accent-foreground"
|
||||||
|
)}
|
||||||
|
>
|
||||||
|
{item.icon}
|
||||||
|
<span className="min-w-0 truncate">{item.label}</span>
|
||||||
|
</Link>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
function PlaygroundNavGroup({
|
||||||
|
group,
|
||||||
|
activeValue,
|
||||||
|
isExpanded,
|
||||||
|
onToggle,
|
||||||
|
}: {
|
||||||
|
group: RoutedSectionGroup;
|
||||||
|
activeValue: string;
|
||||||
|
isExpanded: boolean;
|
||||||
|
onToggle: () => void;
|
||||||
|
}) {
|
||||||
|
return (
|
||||||
|
<div className="flex flex-col gap-0.5">
|
||||||
|
<button
|
||||||
|
type="button"
|
||||||
|
aria-expanded={isExpanded}
|
||||||
|
onClick={onToggle}
|
||||||
|
className={cn(
|
||||||
|
"inline-flex h-auto items-center justify-start gap-3 rounded-md px-3 py-2.5 text-left text-sm font-medium transition-colors duration-150 focus:outline-none focus-visible:outline-none",
|
||||||
|
isExpanded
|
||||||
|
? "text-accent-foreground"
|
||||||
|
: "text-muted-foreground hover:bg-accent hover:text-accent-foreground"
|
||||||
|
)}
|
||||||
|
>
|
||||||
|
{group.icon}
|
||||||
|
<span className="min-w-0 truncate">{group.label}</span>
|
||||||
|
<ChevronRight
|
||||||
|
className={cn("ml-auto h-4 w-4 shrink-0 transition-transform", isExpanded && "rotate-90")}
|
||||||
|
/>
|
||||||
|
</button>
|
||||||
|
<div
|
||||||
|
className={cn(
|
||||||
|
"grid overflow-hidden transition-[grid-template-rows,opacity] duration-200 ease-out",
|
||||||
|
isExpanded ? "grid-rows-[1fr] opacity-100" : "grid-rows-[0fr] opacity-0"
|
||||||
|
)}
|
||||||
|
aria-hidden={!isExpanded}
|
||||||
|
>
|
||||||
|
<div className="min-h-0 overflow-hidden">
|
||||||
|
<div className="flex flex-col gap-0.5 pl-10">
|
||||||
|
{group.items.map((item) => (
|
||||||
|
<PlaygroundNavLink key={item.value} item={item} activeValue={activeValue} />
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export function PlaygroundSidebar({ workspaceId, className }: PlaygroundSidebarProps) {
|
||||||
|
const pathname = usePathname();
|
||||||
|
const base = `/dashboard/${workspaceId}/playground`;
|
||||||
|
const items = useMemo(() => getPlaygroundNavItems(base), [base]);
|
||||||
|
const groups = useMemo(() => getPlaygroundNavGroups(base), [base]);
|
||||||
|
const activeValue = getPlaygroundActiveValue(pathname, base, items);
|
||||||
|
const [expandedGroup, setExpandedGroup] = useState<string | null>(() =>
|
||||||
|
findActiveGroupValue(groups, activeValue)
|
||||||
|
);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
const activeGroup = findActiveGroupValue(groups, activeValue);
|
||||||
|
if (activeGroup) {
|
||||||
|
setExpandedGroup(activeGroup);
|
||||||
|
}
|
||||||
|
}, [activeValue, groups]);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<aside
|
||||||
|
className={cn(
|
||||||
|
"flex h-full w-[240px] shrink-0 flex-col overflow-hidden border-r bg-panel text-sidebar-foreground select-none",
|
||||||
|
className
|
||||||
|
)}
|
||||||
|
>
|
||||||
|
<div className="flex h-12 shrink-0 items-center px-3">
|
||||||
|
<h1 className="truncate text-lg font-semibold tracking-tight text-foreground">
|
||||||
|
API Playground
|
||||||
|
</h1>
|
||||||
|
</div>
|
||||||
|
<nav className="min-h-0 flex-1 overflow-y-auto px-2 pb-4 pt-1.5">
|
||||||
|
<div className="flex flex-col gap-0.5">
|
||||||
|
{items.map((item) => (
|
||||||
|
<PlaygroundNavLink key={item.value} item={item} activeValue={activeValue} />
|
||||||
|
))}
|
||||||
|
<Separator className="my-3 bg-border" />
|
||||||
|
{groups.map((group) => (
|
||||||
|
<PlaygroundNavGroup
|
||||||
|
key={group.value}
|
||||||
|
group={group}
|
||||||
|
activeValue={activeValue}
|
||||||
|
isExpanded={expandedGroup === group.value}
|
||||||
|
onToggle={() =>
|
||||||
|
setExpandedGroup((current) => (current === group.value ? null : group.value))
|
||||||
|
}
|
||||||
|
/>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
</aside>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
@ -24,12 +24,7 @@ import {
|
||||||
RightPanelExpandButton,
|
RightPanelExpandButton,
|
||||||
RightPanelToggleButton,
|
RightPanelToggleButton,
|
||||||
} from "../right-panel/RightPanel";
|
} from "../right-panel/RightPanel";
|
||||||
import {
|
import { MobileSidebar, MobileSidebarTrigger, Sidebar, SidebarCollapseButton } from "../sidebar";
|
||||||
MobileSidebar,
|
|
||||||
MobileSidebarTrigger,
|
|
||||||
Sidebar,
|
|
||||||
SidebarCollapseButton,
|
|
||||||
} from "../sidebar";
|
|
||||||
import type { NotificationsDropdownData } from "../sidebar/NotificationsDropdown";
|
import type { NotificationsDropdownData } from "../sidebar/NotificationsDropdown";
|
||||||
import { TabBar } from "../tabs/TabBar";
|
import { TabBar } from "../tabs/TabBar";
|
||||||
import { WorkspacePanel } from "./WorkspacePanel";
|
import { WorkspacePanel } from "./WorkspacePanel";
|
||||||
|
|
@ -117,6 +112,7 @@ interface LayoutShellProps {
|
||||||
isLoadingChats?: boolean;
|
isLoadingChats?: boolean;
|
||||||
onTabSwitch?: (tab: Tab) => void;
|
onTabSwitch?: (tab: Tab) => void;
|
||||||
onTabPrefetch?: (tab: Tab) => void;
|
onTabPrefetch?: (tab: Tab) => void;
|
||||||
|
playgroundSidebar?: React.ReactNode;
|
||||||
}
|
}
|
||||||
|
|
||||||
function MainContentPanel({
|
function MainContentPanel({
|
||||||
|
|
@ -217,11 +213,13 @@ export function LayoutShell({
|
||||||
isLoadingChats = false,
|
isLoadingChats = false,
|
||||||
onTabSwitch,
|
onTabSwitch,
|
||||||
onTabPrefetch,
|
onTabPrefetch,
|
||||||
|
playgroundSidebar,
|
||||||
}: LayoutShellProps) {
|
}: LayoutShellProps) {
|
||||||
const isMobile = useIsMobile();
|
const isMobile = useIsMobile();
|
||||||
const electronAPI = useElectronAPI();
|
const electronAPI = useElectronAPI();
|
||||||
const isMacDesktop = electronAPI?.versions.platform === "darwin";
|
const isMacDesktop = electronAPI?.versions.platform === "darwin";
|
||||||
const [mobileMenuOpen, setMobileMenuOpen] = useState(false);
|
const [mobileMenuOpen, setMobileMenuOpen] = useState(false);
|
||||||
|
const [isPlaygroundSidebarCollapsed, setIsPlaygroundSidebarCollapsed] = useState(false);
|
||||||
const { isCollapsed, setIsCollapsed, toggleCollapsed } = useSidebarState(defaultCollapsed);
|
const { isCollapsed, setIsCollapsed, toggleCollapsed } = useSidebarState(defaultCollapsed);
|
||||||
const {
|
const {
|
||||||
sidebarWidth,
|
sidebarWidth,
|
||||||
|
|
@ -234,6 +232,9 @@ export function LayoutShell({
|
||||||
() => ({ isCollapsed, setIsCollapsed, toggleCollapsed }),
|
() => ({ isCollapsed, setIsCollapsed, toggleCollapsed }),
|
||||||
[isCollapsed, setIsCollapsed, toggleCollapsed]
|
[isCollapsed, setIsCollapsed, toggleCollapsed]
|
||||||
);
|
);
|
||||||
|
const handlePlaygroundSidebarToggle = () => {
|
||||||
|
setIsPlaygroundSidebarCollapsed((collapsed) => !collapsed);
|
||||||
|
};
|
||||||
|
|
||||||
// Mobile layout
|
// Mobile layout
|
||||||
if (isMobile) {
|
if (isMobile) {
|
||||||
|
|
@ -348,6 +349,9 @@ export function LayoutShell({
|
||||||
onToggleCollapse={toggleCollapsed}
|
onToggleCollapse={toggleCollapsed}
|
||||||
navItems={navItems}
|
navItems={navItems}
|
||||||
onNavItemClick={onNavItemClick}
|
onNavItemClick={onNavItemClick}
|
||||||
|
onPlaygroundItemClick={
|
||||||
|
playgroundSidebar ? handlePlaygroundSidebarToggle : undefined
|
||||||
|
}
|
||||||
chats={chats}
|
chats={chats}
|
||||||
activeChatId={activeChatId}
|
activeChatId={activeChatId}
|
||||||
onNewChat={onNewChat}
|
onNewChat={onNewChat}
|
||||||
|
|
@ -375,10 +379,7 @@ export function LayoutShell({
|
||||||
<Logo disableLink priority className="h-7 w-7 rounded-md" />
|
<Logo disableLink priority className="h-7 w-7 rounded-md" />
|
||||||
) : undefined
|
) : undefined
|
||||||
}
|
}
|
||||||
className={cn(
|
className={cn("flex shrink-0", isMacDesktop && "rounded-tl-xl")}
|
||||||
"flex shrink-0",
|
|
||||||
isMacDesktop && "rounded-tl-xl"
|
|
||||||
)}
|
|
||||||
isLoadingChats={isLoadingChats}
|
isLoadingChats={isLoadingChats}
|
||||||
sidebarWidth={sidebarWidth}
|
sidebarWidth={sidebarWidth}
|
||||||
isResizing={isResizing}
|
isResizing={isResizing}
|
||||||
|
|
@ -403,6 +404,21 @@ export function LayoutShell({
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
{playgroundSidebar ? (
|
||||||
|
<div
|
||||||
|
aria-hidden={isPlaygroundSidebarCollapsed}
|
||||||
|
className={cn(
|
||||||
|
"hidden md:flex shrink-0 overflow-hidden -mr-2 bg-panel transition-[width,opacity] duration-200 ease-out",
|
||||||
|
isPlaygroundSidebarCollapsed
|
||||||
|
? "w-0 opacity-0 pointer-events-none"
|
||||||
|
: "w-[240px] opacity-100",
|
||||||
|
isMacDesktop && !isPlaygroundSidebarCollapsed && "border-t"
|
||||||
|
)}
|
||||||
|
>
|
||||||
|
<div className="w-[240px] shrink-0">{playgroundSidebar}</div>
|
||||||
|
</div>
|
||||||
|
) : null}
|
||||||
|
|
||||||
<DesktopWorkspaceRegion>
|
<DesktopWorkspaceRegion>
|
||||||
{useWorkspacePanel ? (
|
{useWorkspacePanel ? (
|
||||||
<WorkspacePanel
|
<WorkspacePanel
|
||||||
|
|
|
||||||
|
|
@ -52,6 +52,7 @@ interface SidebarProps {
|
||||||
onToggleCollapse?: () => void;
|
onToggleCollapse?: () => void;
|
||||||
navItems: NavItem[];
|
navItems: NavItem[];
|
||||||
onNavItemClick?: (item: NavItem) => void;
|
onNavItemClick?: (item: NavItem) => void;
|
||||||
|
onPlaygroundItemClick?: (item: NavItem) => void;
|
||||||
chats: ChatItem[];
|
chats: ChatItem[];
|
||||||
activeChatId?: number | null;
|
activeChatId?: number | null;
|
||||||
onNewChat: () => void;
|
onNewChat: () => void;
|
||||||
|
|
@ -89,6 +90,7 @@ export function Sidebar({
|
||||||
onToggleCollapse,
|
onToggleCollapse,
|
||||||
navItems,
|
navItems,
|
||||||
onNavItemClick,
|
onNavItemClick,
|
||||||
|
onPlaygroundItemClick,
|
||||||
chats,
|
chats,
|
||||||
activeChatId,
|
activeChatId,
|
||||||
onNewChat,
|
onNewChat,
|
||||||
|
|
@ -242,7 +244,7 @@ export function Sidebar({
|
||||||
<SidebarButton
|
<SidebarButton
|
||||||
icon={playgroundItem.icon}
|
icon={playgroundItem.icon}
|
||||||
label={playgroundItem.title}
|
label={playgroundItem.title}
|
||||||
onClick={() => onNavItemClick?.(playgroundItem)}
|
onClick={() => (onPlaygroundItemClick ?? onNavItemClick)?.(playgroundItem)}
|
||||||
isCollapsed={isCollapsed}
|
isCollapsed={isCollapsed}
|
||||||
isActive={playgroundItem.isActive}
|
isActive={playgroundItem.isActive}
|
||||||
badge={<SidebarButtonBadge>New</SidebarButtonBadge>}
|
badge={<SidebarButtonBadge>New</SidebarButtonBadge>}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue