import { Code, Columns2, History, MessageSquare, Plus, RotateCcw, Terminal, X } from 'lucide-react'; import { DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuTrigger, } from '@/components/ui/dropdown-menu'; import { cn } from '@/lib/utils'; // Shared pane-header action cluster: + (new) / Split / Reopen-closed-pane / // Session history / Close. Rendered in the chat tab bar (ChatTabBar) and the // desktop coder + terminal pane headers (Workspace) so all pane kinds share one // control set. Extracted to avoid a divergent copy per header. interface Props { // When provided (chat panes), the "+" menu's New BooChat opens an in-pane // tab. When omitted (coder/terminal panes, which can't host tabs), New BooChat // splits into a new pane instead. onNewTab?: () => void; onSplitPane: (kind: 'chat' | 'terminal' | 'coder') => void; onReopenPane?: () => void; onShowHistory: () => void; onRemovePane?: () => void; // Highlights the History button when the pane is showing the landing page. historyActive?: boolean; // Positioning/spacing supplied by the parent (e.g. "ml-auto px-1"). className?: string; } const BTN = 'inline-flex items-center justify-center p-1 rounded text-muted-foreground hover:bg-muted hover:text-foreground max-md:min-h-[44px] max-md:min-w-[44px]'; export function PaneHeaderActions({ onNewTab, onSplitPane, onReopenPane, onShowHistory, onRemovePane, historyActive, className, }: Props) { return (
{/* Chat panes: New BooChat opens a tab in THIS pane. Coder/terminal panes can't host tabs, so it splits into a new pane. */} onSplitPane('chat'))}> New BooChat onSplitPane('terminal')}> New BooTerm onSplitPane('coder')}> New BooCode onSplitPane('chat')}> New BooChat onSplitPane('terminal')}> New BooTerm onSplitPane('coder')}> New BooCode {onReopenPane && ( )} {onRemovePane && ( )}
); }