feat: add MoreMenu component for toolbar actions

- Introduced MoreMenu component to consolidate less-frequent actions (Search, Export, Analyze, Settings) behind a dropdown menu.
- Removed individual action buttons from TabBar for a cleaner interface.
- Implemented functionality to close the menu on outside clicks and Escape key press.
This commit is contained in:
matt 2026-02-23 22:44:42 +08:00
parent 6264ec52bf
commit 1535a69ca5
2 changed files with 224 additions and 63 deletions

View file

@ -0,0 +1,216 @@
/**
* MoreMenu - Dropdown menu behind a "..." icon for less-frequent toolbar actions.
*
* Groups: Search, Export (session-only), Analyze (session-only), Settings.
* Closes on outside click or Escape.
*/
import React, { useCallback, useEffect, useRef, useState } from 'react';
import { useStore } from '@renderer/store';
import { triggerDownload } from '@renderer/utils/sessionExporter';
import { formatShortcut } from '@renderer/utils/stringUtils';
import { Activity, Braces, FileText, MoreHorizontal, Search, Settings, Type } from 'lucide-react';
import type { SessionDetail } from '@renderer/types/data';
import type { Tab } from '@renderer/types/tabs';
import type { ExportFormat } from '@renderer/utils/sessionExporter';
interface MoreMenuProps {
activeTab: Tab | undefined;
activeTabSessionDetail: SessionDetail | null;
activeTabId: string | null;
}
interface MenuItem {
id: string;
label: string;
icon: React.ComponentType<{ className?: string }>;
shortcut?: string;
onClick: () => void;
}
export const MoreMenu = ({
activeTab,
activeTabSessionDetail,
activeTabId,
}: Readonly<MoreMenuProps>): React.JSX.Element => {
const [isOpen, setIsOpen] = useState(false);
const [buttonHover, setButtonHover] = useState(false);
const [hoveredId, setHoveredId] = useState<string | null>(null);
const containerRef = useRef<HTMLDivElement>(null);
const openCommandPalette = useStore((s) => s.openCommandPalette);
const openSettingsTab = useStore((s) => s.openSettingsTab);
const openSessionReport = useStore((s) => s.openSessionReport);
// Close on outside click
useEffect(() => {
if (!isOpen) return;
const handleClickOutside = (event: MouseEvent): void => {
if (containerRef.current && !containerRef.current.contains(event.target as Node)) {
setIsOpen(false);
}
};
document.addEventListener('mousedown', handleClickOutside);
return () => document.removeEventListener('mousedown', handleClickOutside);
}, [isOpen]);
// Close on Escape
useEffect(() => {
if (!isOpen) return;
const handleEscape = (event: KeyboardEvent): void => {
if (event.key === 'Escape') {
setIsOpen(false);
}
};
document.addEventListener('keydown', handleEscape);
return () => document.removeEventListener('keydown', handleEscape);
}, [isOpen]);
const handleExport = useCallback(
(format: ExportFormat) => {
if (activeTabSessionDetail) {
triggerDownload(activeTabSessionDetail, format);
}
setIsOpen(false);
},
[activeTabSessionDetail]
);
const isSessionWithData = activeTab?.type === 'session' && activeTabSessionDetail != null;
// Build menu sections
const topItems: MenuItem[] = [
{
id: 'search',
label: 'Search',
icon: Search,
shortcut: formatShortcut('K'),
onClick: () => {
openCommandPalette();
setIsOpen(false);
},
},
];
const sessionItems: MenuItem[] = isSessionWithData
? [
{
id: 'export-md',
label: 'Export as Markdown',
icon: FileText,
shortcut: '.md',
onClick: () => handleExport('markdown'),
},
{
id: 'export-json',
label: 'Export as JSON',
icon: Braces,
shortcut: '.json',
onClick: () => handleExport('json'),
},
{
id: 'export-txt',
label: 'Export as Plain Text',
icon: Type,
shortcut: '.txt',
onClick: () => handleExport('plaintext'),
},
{
id: 'analyze',
label: 'Analyze Session',
icon: Activity,
onClick: () => {
if (activeTabId) openSessionReport(activeTabId);
setIsOpen(false);
},
},
]
: [];
const bottomItems: MenuItem[] = [
{
id: 'settings',
label: 'Settings',
icon: Settings,
shortcut: formatShortcut(','),
onClick: () => {
openSettingsTab();
setIsOpen(false);
},
},
];
const renderItem = (item: MenuItem): React.JSX.Element => (
<button
key={item.id}
onClick={item.onClick}
onMouseEnter={() => setHoveredId(item.id)}
onMouseLeave={() => setHoveredId(null)}
className="flex w-full items-center gap-2.5 px-3 py-2 text-left text-xs transition-colors"
style={{
color: hoveredId === item.id ? 'var(--color-text)' : 'var(--color-text-secondary)',
backgroundColor: hoveredId === item.id ? 'var(--color-surface-raised)' : 'transparent',
}}
>
<item.icon className="size-3.5" />
<span className="flex-1">{item.label}</span>
{item.shortcut && (
<span className="text-[10px]" style={{ color: 'var(--color-text-muted)' }}>
{item.shortcut}
</span>
)}
</button>
);
const separator = (
<div className="my-0.5" style={{ borderBottom: '1px solid var(--color-border)' }} />
);
return (
<div ref={containerRef} className="relative">
{/* Trigger button */}
<button
onClick={() => setIsOpen(!isOpen)}
onMouseEnter={() => setButtonHover(true)}
onMouseLeave={() => setButtonHover(false)}
className="rounded-md p-2 transition-colors"
style={{
color: buttonHover || isOpen ? 'var(--color-text)' : 'var(--color-text-muted)',
backgroundColor: buttonHover || isOpen ? 'var(--color-surface-raised)' : 'transparent',
}}
title="More actions"
>
<MoreHorizontal className="size-4" />
</button>
{/* Dropdown menu */}
{isOpen && (
<div
className="absolute right-0 top-full z-50 mt-1 w-52 overflow-hidden rounded-md border shadow-lg"
style={{
backgroundColor: 'var(--color-surface-overlay)',
borderColor: 'var(--color-border)',
}}
>
{topItems.map(renderItem)}
{sessionItems.length > 0 && (
<>
{separator}
{sessionItems.map(renderItem)}
</>
)}
{separator}
{bottomItems.map(renderItem)}
</div>
)}
</div>
);
};

View file

@ -15,11 +15,10 @@ import { isElectronMode } from '@renderer/api';
import { HEADER_ROW1_HEIGHT } from '@renderer/constants/layout';
import { useStore } from '@renderer/store';
import { formatShortcut } from '@renderer/utils/stringUtils';
import { Activity, Bell, PanelLeft, Plus, RefreshCw, Search, Settings } from 'lucide-react';
import { Bell, PanelLeft, Plus, RefreshCw } from 'lucide-react';
import { useShallow } from 'zustand/react/shallow';
import { ExportDropdown } from '../common/ExportDropdown';
import { MoreMenu } from './MoreMenu';
import { SortableTab } from './SortableTab';
import { TabContextMenu } from './TabContextMenu';
@ -42,11 +41,8 @@ export const TabBar = ({ paneId }: TabBarProps): React.JSX.Element => {
openDashboard,
fetchSessionDetail,
fetchSessions,
openCommandPalette,
unreadCount,
openNotificationsTab,
openSettingsTab,
openSessionReport,
sidebarCollapsed,
toggleSidebar,
splitPane,
@ -70,11 +66,8 @@ export const TabBar = ({ paneId }: TabBarProps): React.JSX.Element => {
openDashboard: s.openDashboard,
fetchSessionDetail: s.fetchSessionDetail,
fetchSessions: s.fetchSessions,
openCommandPalette: s.openCommandPalette,
unreadCount: s.unreadCount,
openNotificationsTab: s.openNotificationsTab,
openSettingsTab: s.openSettingsTab,
openSessionReport: s.openSessionReport,
sidebarCollapsed: s.sidebarCollapsed,
toggleSidebar: s.toggleSidebar,
splitPane: s.splitPane,
@ -105,10 +98,7 @@ export const TabBar = ({ paneId }: TabBarProps): React.JSX.Element => {
const [expandHover, setExpandHover] = useState(false);
const [refreshHover, setRefreshHover] = useState(false);
const [newTabHover, setNewTabHover] = useState(false);
const [searchHover, setSearchHover] = useState(false);
const [notificationsHover, setNotificationsHover] = useState(false);
const [settingsHover, setSettingsHover] = useState(false);
const [analyzeHover, setAnalyzeHover] = useState(false);
// Context menu state
const [contextMenu, setContextMenu] = useState<{ x: number; y: number; tabId: string } | null>(
@ -383,43 +373,6 @@ export const TabBar = ({ paneId }: TabBarProps): React.JSX.Element => {
<Plus className="size-4" />
</button>
{/* Search button (icon only) */}
<button
onClick={openCommandPalette}
onMouseEnter={() => setSearchHover(true)}
onMouseLeave={() => setSearchHover(false)}
className="rounded-md p-2 transition-colors"
style={{
color: searchHover ? 'var(--color-text)' : 'var(--color-text-muted)',
backgroundColor: searchHover ? 'var(--color-surface-raised)' : 'transparent',
}}
title={`Search (${formatShortcut('K')})`}
>
<Search className="size-4" />
</button>
{/* Export dropdown - show only for session tabs with loaded data */}
{activeTab?.type === 'session' && activeTabSessionDetail && (
<ExportDropdown sessionDetail={activeTabSessionDetail} />
)}
{/* Analyze button - show only for session tabs with loaded data */}
{activeTab?.type === 'session' && activeTabSessionDetail && activeTabId && (
<button
onClick={() => openSessionReport(activeTabId)}
onMouseEnter={() => setAnalyzeHover(true)}
onMouseLeave={() => setAnalyzeHover(false)}
className="rounded-md p-2 transition-colors"
style={{
color: analyzeHover ? 'var(--color-text)' : 'var(--color-text-muted)',
backgroundColor: analyzeHover ? 'var(--color-surface-raised)' : 'transparent',
}}
title="Analyze Session"
>
<Activity className="size-4" />
</button>
)}
{/* Notifications bell icon */}
<button
onClick={openNotificationsTab}
@ -440,20 +393,12 @@ export const TabBar = ({ paneId }: TabBarProps): React.JSX.Element => {
)}
</button>
{/* Settings gear icon */}
<button
onClick={() => openSettingsTab()}
onMouseEnter={() => setSettingsHover(true)}
onMouseLeave={() => setSettingsHover(false)}
className="rounded-md p-2 transition-colors"
style={{
color: settingsHover ? 'var(--color-text)' : 'var(--color-text-muted)',
backgroundColor: settingsHover ? 'var(--color-surface-raised)' : 'transparent',
}}
title="Settings"
>
<Settings className="size-4" />
</button>
{/* More menu (Search, Export, Analyze, Settings) */}
<MoreMenu
activeTab={activeTab}
activeTabSessionDetail={activeTabSessionDetail}
activeTabId={activeTabId}
/>
</div>
{/* Context menu */}