mirror of
https://github.com/multica-ai/multica.git
synced 2026-07-24 11:10:25 +02:00
459 lines
17 KiB
TypeScript
459 lines
17 KiB
TypeScript
"use client";
|
|
|
|
import React, { useCallback, useEffect, useRef } from "react";
|
|
import { cn } from "@multica/ui/lib/utils";
|
|
import { AppLink, useNavigation } from "../navigation";
|
|
import {
|
|
DndContext,
|
|
PointerSensor,
|
|
useSensor,
|
|
useSensors,
|
|
closestCenter,
|
|
type DragEndEvent,
|
|
} from "@dnd-kit/core";
|
|
import { SortableContext, verticalListSortingStrategy, useSortable, arrayMove } from "@dnd-kit/sortable";
|
|
import { CSS } from "@dnd-kit/utilities";
|
|
import {
|
|
Inbox,
|
|
ListTodo,
|
|
Bot,
|
|
Monitor,
|
|
ChevronDown,
|
|
Settings,
|
|
LogOut,
|
|
Plus,
|
|
Check,
|
|
BookOpenText,
|
|
SquarePen,
|
|
CircleUser,
|
|
FolderKanban,
|
|
Ellipsis,
|
|
PinOff,
|
|
} from "lucide-react";
|
|
import { WorkspaceAvatar } from "../workspace/workspace-avatar";
|
|
import { ActorAvatar } from "@multica/ui/components/common/actor-avatar";
|
|
import { useIssueDraftStore } from "@multica/core/issues/stores/draft-store";
|
|
import {
|
|
Sidebar,
|
|
SidebarContent,
|
|
SidebarGroup,
|
|
SidebarGroupContent,
|
|
SidebarGroupLabel,
|
|
SidebarHeader,
|
|
SidebarFooter,
|
|
SidebarMenu,
|
|
SidebarMenuButton,
|
|
SidebarMenuAction,
|
|
SidebarMenuItem,
|
|
SidebarRail,
|
|
} from "@multica/ui/components/ui/sidebar";
|
|
import {
|
|
DropdownMenu,
|
|
DropdownMenuContent,
|
|
DropdownMenuGroup,
|
|
DropdownMenuItem,
|
|
DropdownMenuLabel,
|
|
DropdownMenuSeparator,
|
|
DropdownMenuTrigger,
|
|
} from "@multica/ui/components/ui/dropdown-menu";
|
|
import { useAuthStore } from "@multica/core/auth";
|
|
import { useWorkspaceStore } from "@multica/core/workspace";
|
|
import { workspaceListOptions } from "@multica/core/workspace/queries";
|
|
import { useQuery, useQueryClient } from "@tanstack/react-query";
|
|
import { inboxKeys, deduplicateInboxItems } from "@multica/core/inbox/queries";
|
|
import { api } from "@multica/core/api";
|
|
import { useModalStore } from "@multica/core/modals";
|
|
import { useMyRuntimesNeedUpdate } from "@multica/core/runtimes/hooks";
|
|
import { pinListOptions } from "@multica/core/pins/queries";
|
|
import { useDeletePin, useReorderPins } from "@multica/core/pins/mutations";
|
|
import type { PinnedItem } from "@multica/core/types";
|
|
|
|
const personalNav = [
|
|
{ href: "/inbox", label: "Inbox", icon: Inbox },
|
|
{ href: "/my-issues", label: "My Issues", icon: CircleUser },
|
|
];
|
|
|
|
const workspaceNav = [
|
|
{ href: "/issues", label: "Issues", icon: ListTodo },
|
|
{ href: "/projects", label: "Projects", icon: FolderKanban },
|
|
{ href: "/agents", label: "Agents", icon: Bot },
|
|
];
|
|
|
|
const configureNav = [
|
|
{ href: "/runtimes", label: "Runtimes", icon: Monitor },
|
|
{ href: "/skills", label: "Skills", icon: BookOpenText },
|
|
{ href: "/settings", label: "Settings", icon: Settings },
|
|
];
|
|
|
|
function DraftDot() {
|
|
const hasDraft = useIssueDraftStore((s) => !!(s.draft.title || s.draft.description));
|
|
if (!hasDraft) return null;
|
|
return <span className="absolute top-0 right-0 size-1.5 rounded-full bg-brand" />;
|
|
}
|
|
|
|
function SortablePinItem({ pin, pathname, onUnpin }: { pin: PinnedItem; pathname: string; onUnpin: () => void }) {
|
|
const { attributes, listeners, setNodeRef, transform, transition, isDragging } = useSortable({ id: pin.id });
|
|
const wasDragged = useRef(false);
|
|
|
|
useEffect(() => {
|
|
if (isDragging) wasDragged.current = true;
|
|
}, [isDragging]);
|
|
|
|
const style = { transform: CSS.Transform.toString(transform), transition };
|
|
const href = pin.item_type === "issue" ? `/issues/${pin.item_id}` : `/projects/${pin.item_id}`;
|
|
const isActive = pathname === href;
|
|
const label = pin.item_type === "issue" && pin.identifier ? `${pin.identifier} ${pin.title}` : pin.title;
|
|
|
|
return (
|
|
<SidebarMenuItem
|
|
ref={setNodeRef}
|
|
style={style}
|
|
className={cn("group/pin", isDragging && "opacity-30")}
|
|
{...attributes}
|
|
{...listeners}
|
|
>
|
|
<SidebarMenuButton
|
|
isActive={isActive}
|
|
render={<AppLink href={href} />}
|
|
onClick={(event) => {
|
|
if (wasDragged.current) {
|
|
wasDragged.current = false;
|
|
event.preventDefault();
|
|
return;
|
|
}
|
|
}}
|
|
className="text-muted-foreground hover:not-data-active:bg-sidebar-accent/70 data-active:bg-sidebar-accent data-active:text-sidebar-accent-foreground"
|
|
>
|
|
{pin.item_type === "issue" ? (
|
|
<ListTodo className="size-4 shrink-0" />
|
|
) : (
|
|
<FolderKanban className="size-4 shrink-0" />
|
|
)}
|
|
<span className="truncate">{label}</span>
|
|
</SidebarMenuButton>
|
|
<SidebarMenuAction
|
|
showOnHover
|
|
onClick={(event) => {
|
|
event.preventDefault();
|
|
event.stopPropagation();
|
|
onUnpin();
|
|
}}
|
|
>
|
|
<PinOff className="size-3 text-muted-foreground" />
|
|
</SidebarMenuAction>
|
|
</SidebarMenuItem>
|
|
);
|
|
}
|
|
|
|
interface AppSidebarProps {
|
|
/** Rendered above SidebarHeader (e.g. desktop traffic light spacer) */
|
|
topSlot?: React.ReactNode;
|
|
/** Rendered in the header between workspace switcher and new-issue button (e.g. search trigger) */
|
|
searchSlot?: React.ReactNode;
|
|
/** Extra className for SidebarHeader */
|
|
headerClassName?: string;
|
|
/** Extra style for SidebarHeader */
|
|
headerStyle?: React.CSSProperties;
|
|
}
|
|
|
|
export function AppSidebar({ topSlot, searchSlot, headerClassName, headerStyle }: AppSidebarProps = {}) {
|
|
const { pathname, push } = useNavigation();
|
|
const user = useAuthStore((s) => s.user);
|
|
const userId = useAuthStore((s) => s.user?.id);
|
|
const authLogout = useAuthStore((s) => s.logout);
|
|
const workspace = useWorkspaceStore((s) => s.workspace);
|
|
const switchWorkspace = useWorkspaceStore((s) => s.switchWorkspace);
|
|
const { data: workspaces = [] } = useQuery(workspaceListOptions());
|
|
|
|
const wsId = workspace?.id;
|
|
const { data: inboxItems = [] } = useQuery({
|
|
queryKey: wsId ? inboxKeys.list(wsId) : ["inbox", "disabled"],
|
|
queryFn: () => api.listInbox(),
|
|
enabled: !!wsId,
|
|
});
|
|
const unreadCount = React.useMemo(
|
|
() => deduplicateInboxItems(inboxItems).filter((i) => !i.read).length,
|
|
[inboxItems],
|
|
);
|
|
const hasRuntimeUpdates = useMyRuntimesNeedUpdate(wsId);
|
|
const { data: pinnedItems = [] } = useQuery({
|
|
...pinListOptions(wsId ?? "", userId ?? ""),
|
|
enabled: !!wsId && !!userId,
|
|
});
|
|
const deletePin = useDeletePin();
|
|
const reorderPins = useReorderPins();
|
|
const sensors = useSensors(useSensor(PointerSensor, { activationConstraint: { distance: 5 } }));
|
|
const handleDragEnd = useCallback(
|
|
(event: DragEndEvent) => {
|
|
const { active, over } = event;
|
|
if (!over || active.id === over.id) return;
|
|
const oldIndex = pinnedItems.findIndex((p) => p.id === active.id);
|
|
const newIndex = pinnedItems.findIndex((p) => p.id === over.id);
|
|
if (oldIndex === -1 || newIndex === -1) return;
|
|
const reordered = arrayMove(pinnedItems, oldIndex, newIndex);
|
|
reorderPins.mutate(reordered);
|
|
},
|
|
[pinnedItems, reorderPins],
|
|
);
|
|
|
|
const queryClient = useQueryClient();
|
|
const logout = () => {
|
|
queryClient.clear();
|
|
authLogout();
|
|
useWorkspaceStore.getState().clearWorkspace();
|
|
};
|
|
|
|
// Global "C" shortcut to open create-issue modal (like Linear)
|
|
useEffect(() => {
|
|
const handleKeyDown = (e: KeyboardEvent) => {
|
|
if (e.key === "c" && !e.metaKey && !e.ctrlKey && !e.altKey && !e.shiftKey) {
|
|
const tag = (e.target as HTMLElement)?.tagName;
|
|
const isEditable =
|
|
tag === "INPUT" ||
|
|
tag === "TEXTAREA" ||
|
|
tag === "SELECT" ||
|
|
(e.target as HTMLElement)?.isContentEditable;
|
|
if (isEditable) return;
|
|
if (useModalStore.getState().modal) return;
|
|
e.preventDefault();
|
|
// Auto-fill project when on a project detail page
|
|
const projectMatch = pathname.match(/^\/projects\/([^/]+)$/);
|
|
const data = projectMatch ? { project_id: projectMatch[1] } : undefined;
|
|
useModalStore.getState().open("create-issue", data);
|
|
}
|
|
};
|
|
document.addEventListener("keydown", handleKeyDown);
|
|
return () => document.removeEventListener("keydown", handleKeyDown);
|
|
}, [pathname]);
|
|
|
|
return (
|
|
<Sidebar variant="inset">
|
|
{topSlot}
|
|
{/* Workspace Switcher */}
|
|
<SidebarHeader className={cn("py-3", headerClassName)} style={headerStyle}>
|
|
<SidebarMenu>
|
|
<SidebarMenuItem>
|
|
<DropdownMenu>
|
|
<DropdownMenuTrigger
|
|
render={
|
|
<SidebarMenuButton>
|
|
<WorkspaceAvatar name={workspace?.name ?? "M"} size="sm" />
|
|
<span className="flex-1 truncate font-medium">
|
|
{workspace?.name ?? "Multica"}
|
|
</span>
|
|
<ChevronDown className="size-3 text-muted-foreground" />
|
|
</SidebarMenuButton>
|
|
}
|
|
/>
|
|
<DropdownMenuContent
|
|
className="w-auto"
|
|
align="start"
|
|
side="bottom"
|
|
sideOffset={4}
|
|
>
|
|
<DropdownMenuGroup>
|
|
<DropdownMenuLabel className="text-xs text-muted-foreground">
|
|
{user?.email}
|
|
</DropdownMenuLabel>
|
|
</DropdownMenuGroup>
|
|
<DropdownMenuSeparator />
|
|
<DropdownMenuGroup>
|
|
<DropdownMenuLabel className="text-xs text-muted-foreground">
|
|
Workspaces
|
|
</DropdownMenuLabel>
|
|
{workspaces.map((ws) => (
|
|
<DropdownMenuItem
|
|
key={ws.id}
|
|
onClick={() => {
|
|
if (ws.id !== workspace?.id) {
|
|
push("/issues");
|
|
switchWorkspace(ws);
|
|
}
|
|
}}
|
|
>
|
|
<WorkspaceAvatar name={ws.name} size="sm" />
|
|
<span className="flex-1 truncate">{ws.name}</span>
|
|
{ws.id === workspace?.id && (
|
|
<Check className="h-3.5 w-3.5 text-primary" />
|
|
)}
|
|
</DropdownMenuItem>
|
|
))}
|
|
<DropdownMenuItem
|
|
onClick={() =>
|
|
useModalStore.getState().open("create-workspace")
|
|
}
|
|
>
|
|
<Plus className="h-3.5 w-3.5" />
|
|
Create workspace
|
|
</DropdownMenuItem>
|
|
</DropdownMenuGroup>
|
|
<DropdownMenuSeparator />
|
|
<DropdownMenuGroup>
|
|
<DropdownMenuItem variant="destructive" onClick={logout}>
|
|
<LogOut className="h-3.5 w-3.5" />
|
|
Log out
|
|
</DropdownMenuItem>
|
|
</DropdownMenuGroup>
|
|
</DropdownMenuContent>
|
|
</DropdownMenu>
|
|
</SidebarMenuItem>
|
|
</SidebarMenu>
|
|
<SidebarMenu>
|
|
{searchSlot && (
|
|
<SidebarMenuItem>
|
|
{searchSlot}
|
|
</SidebarMenuItem>
|
|
)}
|
|
<SidebarMenuItem>
|
|
<SidebarMenuButton
|
|
className="text-muted-foreground"
|
|
onClick={() => useModalStore.getState().open("create-issue")}
|
|
>
|
|
<span className="relative">
|
|
<SquarePen />
|
|
<DraftDot />
|
|
</span>
|
|
<span>New Issue</span>
|
|
<kbd className="pointer-events-none ml-auto inline-flex h-5 select-none items-center gap-0.5 rounded border bg-muted px-1.5 font-mono text-[10px] font-medium text-muted-foreground">C</kbd>
|
|
</SidebarMenuButton>
|
|
</SidebarMenuItem>
|
|
</SidebarMenu>
|
|
</SidebarHeader>
|
|
|
|
{/* Navigation */}
|
|
<SidebarContent>
|
|
<SidebarGroup>
|
|
<SidebarGroupContent>
|
|
<SidebarMenu className="gap-0.5">
|
|
{personalNav.map((item) => {
|
|
const isActive = pathname === item.href;
|
|
return (
|
|
<SidebarMenuItem key={item.href}>
|
|
<SidebarMenuButton
|
|
isActive={isActive}
|
|
render={<AppLink href={item.href} />}
|
|
className="text-muted-foreground hover:not-data-active:bg-sidebar-accent/70 data-active:bg-sidebar-accent data-active:text-sidebar-accent-foreground"
|
|
>
|
|
<item.icon />
|
|
<span>{item.label}</span>
|
|
{item.label === "Inbox" && unreadCount > 0 && (
|
|
<span className="ml-auto text-xs">
|
|
{unreadCount > 99 ? "99+" : unreadCount}
|
|
</span>
|
|
)}
|
|
</SidebarMenuButton>
|
|
</SidebarMenuItem>
|
|
);
|
|
})}
|
|
</SidebarMenu>
|
|
</SidebarGroupContent>
|
|
</SidebarGroup>
|
|
|
|
{pinnedItems.length > 0 && (
|
|
<SidebarGroup>
|
|
<SidebarGroupLabel>Pinned</SidebarGroupLabel>
|
|
<SidebarGroupContent>
|
|
<DndContext sensors={sensors} collisionDetection={closestCenter} onDragEnd={handleDragEnd}>
|
|
<SortableContext items={pinnedItems.map((p) => p.id)} strategy={verticalListSortingStrategy}>
|
|
<SidebarMenu className="gap-0.5">
|
|
{pinnedItems.map((pin: PinnedItem) => (
|
|
<SortablePinItem
|
|
key={pin.id}
|
|
pin={pin}
|
|
pathname={pathname}
|
|
onUnpin={() => deletePin.mutate({ itemType: pin.item_type, itemId: pin.item_id })}
|
|
/>
|
|
))}
|
|
</SidebarMenu>
|
|
</SortableContext>
|
|
</DndContext>
|
|
</SidebarGroupContent>
|
|
</SidebarGroup>
|
|
)}
|
|
|
|
<SidebarGroup>
|
|
<SidebarGroupLabel>Workspace</SidebarGroupLabel>
|
|
<SidebarGroupContent>
|
|
<SidebarMenu className="gap-0.5">
|
|
{workspaceNav.map((item) => {
|
|
const isActive = pathname === item.href;
|
|
return (
|
|
<SidebarMenuItem key={item.href}>
|
|
<SidebarMenuButton
|
|
isActive={isActive}
|
|
render={<AppLink href={item.href} />}
|
|
className="text-muted-foreground hover:not-data-active:bg-sidebar-accent/70 data-active:bg-sidebar-accent data-active:text-sidebar-accent-foreground"
|
|
>
|
|
<item.icon />
|
|
<span>{item.label}</span>
|
|
</SidebarMenuButton>
|
|
</SidebarMenuItem>
|
|
);
|
|
})}
|
|
</SidebarMenu>
|
|
</SidebarGroupContent>
|
|
</SidebarGroup>
|
|
|
|
<SidebarGroup>
|
|
<SidebarGroupLabel>Configure</SidebarGroupLabel>
|
|
<SidebarGroupContent>
|
|
<SidebarMenu className="gap-0.5">
|
|
{configureNav.map((item) => {
|
|
const isActive = pathname === item.href;
|
|
return (
|
|
<SidebarMenuItem key={item.href}>
|
|
<SidebarMenuButton
|
|
isActive={isActive}
|
|
render={<AppLink href={item.href} />}
|
|
className="text-muted-foreground hover:not-data-active:bg-sidebar-accent/70 data-active:bg-sidebar-accent data-active:text-sidebar-accent-foreground"
|
|
>
|
|
<item.icon />
|
|
<span>{item.label}</span>
|
|
{item.label === "Runtimes" && hasRuntimeUpdates && (
|
|
<span className="ml-auto size-1.5 rounded-full bg-destructive" />
|
|
)}
|
|
</SidebarMenuButton>
|
|
</SidebarMenuItem>
|
|
);
|
|
})}
|
|
</SidebarMenu>
|
|
</SidebarGroupContent>
|
|
</SidebarGroup>
|
|
</SidebarContent>
|
|
|
|
<SidebarFooter className="p-2">
|
|
<div className="border-t pt-2">
|
|
<div className="flex items-center gap-2.5 rounded-md px-2 py-1.5">
|
|
<ActorAvatar
|
|
name={user?.name ?? ""}
|
|
initials={(user?.name ?? "U").charAt(0).toUpperCase()}
|
|
avatarUrl={user?.avatar_url}
|
|
size={28}
|
|
/>
|
|
<div className="min-w-0 flex-1">
|
|
<p className="truncate text-sm font-medium leading-tight">
|
|
{user?.name}
|
|
</p>
|
|
<p className="truncate text-xs text-muted-foreground leading-tight">
|
|
{user?.email}
|
|
</p>
|
|
</div>
|
|
<DropdownMenu>
|
|
<DropdownMenuTrigger className="flex h-7 w-7 shrink-0 items-center justify-center rounded-md text-muted-foreground hover:bg-accent hover:text-accent-foreground transition-colors">
|
|
<Ellipsis className="size-4" />
|
|
</DropdownMenuTrigger>
|
|
<DropdownMenuContent align="end" side="top" sideOffset={4}>
|
|
<DropdownMenuItem variant="destructive" onClick={logout}>
|
|
<LogOut className="h-3.5 w-3.5" />
|
|
Log out
|
|
</DropdownMenuItem>
|
|
</DropdownMenuContent>
|
|
</DropdownMenu>
|
|
</div>
|
|
</div>
|
|
</SidebarFooter>
|
|
<SidebarRail />
|
|
</Sidebar>
|
|
);
|
|
}
|