mirror of
https://github.com/davidkaya/aryx.git
synced 2026-08-06 19:58:43 +02:00
Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
36126f1c74 | ||
|
|
bec50da2b4 | ||
|
|
535adc64be | ||
|
|
772c84fed3 | ||
|
|
9647b5fdb5 |
@@ -0,0 +1 @@
|
|||||||
|
ManifestDPIAware true
|
||||||
+3
-2
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "aryx",
|
"name": "aryx",
|
||||||
"version": "0.0.17",
|
"version": "0.0.18",
|
||||||
"description": "Electron orchestrator for Copilot-powered agent workflows across multiple projects.",
|
"description": "Orchestrator for Copilot-powered agent workflows across multiple projects.",
|
||||||
"private": true,
|
"private": true,
|
||||||
"main": "dist-electron/main/index.js",
|
"main": "dist-electron/main/index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
@@ -126,6 +126,7 @@
|
|||||||
"oneClick": false,
|
"oneClick": false,
|
||||||
"perMachine": false,
|
"perMachine": false,
|
||||||
"allowToChangeInstallationDirectory": true,
|
"allowToChangeInstallationDirectory": true,
|
||||||
|
"include": "assets/installer.nsh",
|
||||||
"installerIcon": "assets/icons/windows/icon.ico",
|
"installerIcon": "assets/icons/windows/icon.ico",
|
||||||
"uninstallerIcon": "assets/icons/windows/icon.ico"
|
"uninstallerIcon": "assets/icons/windows/icon.ico"
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -192,7 +192,7 @@ export class AutoUpdateService {
|
|||||||
}
|
}
|
||||||
|
|
||||||
start(): void {
|
start(): void {
|
||||||
if (this.started || !this.options.isPackaged) {
|
if (this.started) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
+24
-2
@@ -10,7 +10,7 @@ import { NewSessionModal } from '@renderer/components/NewSessionModal';
|
|||||||
import { ProjectSettingsPanel } from '@renderer/components/ProjectSettingsPanel';
|
import { ProjectSettingsPanel } from '@renderer/components/ProjectSettingsPanel';
|
||||||
import { BookmarksPanel } from '@renderer/components/BookmarksPanel';
|
import { BookmarksPanel } from '@renderer/components/BookmarksPanel';
|
||||||
import { SessionSearchPanel } from '@renderer/components/SessionSearchPanel';
|
import { SessionSearchPanel } from '@renderer/components/SessionSearchPanel';
|
||||||
import { SettingsPanel } from '@renderer/components/SettingsPanel';
|
import { SettingsPanel, type SettingsSection } from '@renderer/components/SettingsPanel';
|
||||||
import { Sidebar } from '@renderer/components/Sidebar';
|
import { Sidebar } from '@renderer/components/Sidebar';
|
||||||
import { TerminalPanel, DEFAULT_HEIGHT as DEFAULT_TERMINAL_HEIGHT, MIN_HEIGHT as MIN_TERMINAL_HEIGHT } from '@renderer/components/TerminalPanel';
|
import { TerminalPanel, DEFAULT_HEIGHT as DEFAULT_TERMINAL_HEIGHT, MIN_HEIGHT as MIN_TERMINAL_HEIGHT } from '@renderer/components/TerminalPanel';
|
||||||
import { resolveChatToolingSettings } from '@renderer/lib/chatTooling';
|
import { resolveChatToolingSettings } from '@renderer/lib/chatTooling';
|
||||||
@@ -46,6 +46,7 @@ import { isScratchpadProject, SCRATCHPAD_PROJECT_ID } from '@shared/domain/proje
|
|||||||
import { applySessionModelConfig } from '@shared/domain/session';
|
import { applySessionModelConfig } from '@shared/domain/session';
|
||||||
import type { AppearanceTheme, LspProfileDefinition, McpServerDefinition } from '@shared/domain/tooling';
|
import type { AppearanceTheme, LspProfileDefinition, McpServerDefinition } from '@shared/domain/tooling';
|
||||||
import type { WorkspaceState } from '@shared/domain/workspace';
|
import type { WorkspaceState } from '@shared/domain/workspace';
|
||||||
|
import type { UpdateStatus } from '@shared/contracts/ipc';
|
||||||
import { createId, nowIso } from '@shared/utils/ids';
|
import { createId, nowIso } from '@shared/utils/ids';
|
||||||
|
|
||||||
function createDraftPattern(defaultModelId: string, defaultReasoningEffort: PatternDefinition['agents'][0]['reasoningEffort']): PatternDefinition {
|
function createDraftPattern(defaultModelId: string, defaultReasoningEffort: PatternDefinition['agents'][0]['reasoningEffort']): PatternDefinition {
|
||||||
@@ -113,6 +114,8 @@ export default function App() {
|
|||||||
const [activeSubagents, setActiveSubagents] = useState<ActiveSubagentMap>({});
|
const [activeSubagents, setActiveSubagents] = useState<ActiveSubagentMap>({});
|
||||||
|
|
||||||
const [showSettings, setShowSettings] = useState(false);
|
const [showSettings, setShowSettings] = useState(false);
|
||||||
|
const [settingsSection, setSettingsSection] = useState<SettingsSection>();
|
||||||
|
const [updateStatus, setUpdateStatus] = useState<UpdateStatus>({ state: 'idle' });
|
||||||
const [projectSettingsId, setProjectSettingsId] = useState<string>();
|
const [projectSettingsId, setProjectSettingsId] = useState<string>();
|
||||||
const [newSessionProjectId, setNewSessionProjectId] = useState<string>();
|
const [newSessionProjectId, setNewSessionProjectId] = useState<string>();
|
||||||
const [showDiscoveryModal, setShowDiscoveryModal] = useState(false);
|
const [showDiscoveryModal, setShowDiscoveryModal] = useState(false);
|
||||||
@@ -188,6 +191,12 @@ export default function App() {
|
|||||||
};
|
};
|
||||||
}, [api]);
|
}, [api]);
|
||||||
|
|
||||||
|
// Subscribe to auto-update status pushes from the main process
|
||||||
|
useEffect(() => {
|
||||||
|
const off = api.onUpdateStatus((status) => setUpdateStatus(status));
|
||||||
|
return off;
|
||||||
|
}, [api]);
|
||||||
|
|
||||||
// Apply theme to the document root
|
// Apply theme to the document root
|
||||||
const themeSetting: AppearanceTheme = workspace?.settings.theme ?? 'dark';
|
const themeSetting: AppearanceTheme = workspace?.settings.theme ?? 'dark';
|
||||||
useTheme(themeSetting);
|
useTheme(themeSetting);
|
||||||
@@ -494,6 +503,15 @@ export default function App() {
|
|||||||
}
|
}
|
||||||
}, [api, workspace]);
|
}, [api, workspace]);
|
||||||
|
|
||||||
|
const handleOpenSettingsAt = useCallback((section?: SettingsSection) => {
|
||||||
|
setSettingsSection(section);
|
||||||
|
setShowSettings(true);
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
const handleInstallUpdate = useCallback(() => {
|
||||||
|
void api.installUpdate();
|
||||||
|
}, [api]);
|
||||||
|
|
||||||
// Listen for tray "Quick Scratchpad" action
|
// Listen for tray "Quick Scratchpad" action
|
||||||
const scratchpadRef = useRef(handleCreateScratchpad);
|
const scratchpadRef = useRef(handleCreateScratchpad);
|
||||||
scratchpadRef.current = handleCreateScratchpad;
|
scratchpadRef.current = handleCreateScratchpad;
|
||||||
@@ -637,8 +655,9 @@ export default function App() {
|
|||||||
const overlay = showSettings ? (
|
const overlay = showSettings ? (
|
||||||
<SettingsPanel
|
<SettingsPanel
|
||||||
availableModels={availableModels}
|
availableModels={availableModels}
|
||||||
|
initialSection={settingsSection}
|
||||||
isRefreshingCapabilities={isRefreshingCapabilities}
|
isRefreshingCapabilities={isRefreshingCapabilities}
|
||||||
onClose={() => setShowSettings(false)}
|
onClose={() => { setShowSettings(false); setSettingsSection(undefined); }}
|
||||||
onDeleteLspProfile={async (id) => {
|
onDeleteLspProfile={async (id) => {
|
||||||
await api.deleteLspProfile(id);
|
await api.deleteLspProfile(id);
|
||||||
}}
|
}}
|
||||||
@@ -741,6 +760,9 @@ export default function App() {
|
|||||||
onRefreshGitContext={(projectId) => {
|
onRefreshGitContext={(projectId) => {
|
||||||
void api.refreshProjectGitContext(projectId);
|
void api.refreshProjectGitContext(projectId);
|
||||||
}}
|
}}
|
||||||
|
updateStatus={updateStatus}
|
||||||
|
onViewUpdateDetails={() => handleOpenSettingsAt('troubleshooting')}
|
||||||
|
onInstallUpdate={handleInstallUpdate}
|
||||||
workspace={workspace}
|
workspace={workspace}
|
||||||
/>
|
/>
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -29,6 +29,7 @@ interface SettingsPanelProps {
|
|||||||
toolingSettings: WorkspaceToolingSettings;
|
toolingSettings: WorkspaceToolingSettings;
|
||||||
discoveredUserTooling: DiscoveredToolingState;
|
discoveredUserTooling: DiscoveredToolingState;
|
||||||
isRefreshingCapabilities: boolean;
|
isRefreshingCapabilities: boolean;
|
||||||
|
initialSection?: SettingsSection;
|
||||||
onRefreshCapabilities: () => void;
|
onRefreshCapabilities: () => void;
|
||||||
onClose: () => void;
|
onClose: () => void;
|
||||||
onSavePattern: (pattern: PatternDefinition) => Promise<void>;
|
onSavePattern: (pattern: PatternDefinition) => Promise<void>;
|
||||||
@@ -51,7 +52,7 @@ interface SettingsPanelProps {
|
|||||||
onGetQuota?: () => Promise<Record<string, QuotaSnapshot>>;
|
onGetQuota?: () => Promise<Record<string, QuotaSnapshot>>;
|
||||||
}
|
}
|
||||||
|
|
||||||
type SettingsSection = 'appearance' | 'connection' | 'patterns' | 'mcp-servers' | 'lsp-profiles' | 'troubleshooting';
|
export type SettingsSection = 'appearance' | 'connection' | 'patterns' | 'mcp-servers' | 'lsp-profiles' | 'troubleshooting';
|
||||||
|
|
||||||
interface NavItem {
|
interface NavItem {
|
||||||
id: SettingsSection;
|
id: SettingsSection;
|
||||||
@@ -111,6 +112,7 @@ export function SettingsPanel({
|
|||||||
toolingSettings,
|
toolingSettings,
|
||||||
discoveredUserTooling,
|
discoveredUserTooling,
|
||||||
isRefreshingCapabilities,
|
isRefreshingCapabilities,
|
||||||
|
initialSection,
|
||||||
onRefreshCapabilities,
|
onRefreshCapabilities,
|
||||||
onClose,
|
onClose,
|
||||||
onSavePattern,
|
onSavePattern,
|
||||||
@@ -132,7 +134,7 @@ export function SettingsPanel({
|
|||||||
onResolveUserDiscoveredTooling,
|
onResolveUserDiscoveredTooling,
|
||||||
onGetQuota,
|
onGetQuota,
|
||||||
}: SettingsPanelProps) {
|
}: SettingsPanelProps) {
|
||||||
const [activeSection, setActiveSection] = useState<SettingsSection>('appearance');
|
const [activeSection, setActiveSection] = useState<SettingsSection>(initialSection ?? 'appearance');
|
||||||
const [editingPattern, setEditingPattern] = useState<PatternDefinition | null>(null);
|
const [editingPattern, setEditingPattern] = useState<PatternDefinition | null>(null);
|
||||||
const [editingMcpServer, setEditingMcpServer] = useState<McpServerDefinition | null>(null);
|
const [editingMcpServer, setEditingMcpServer] = useState<McpServerDefinition | null>(null);
|
||||||
const [editingLspProfile, setEditingLspProfile] = useState<LspProfileDefinition | null>(null);
|
const [editingLspProfile, setEditingLspProfile] = useState<LspProfileDefinition | null>(null);
|
||||||
|
|||||||
@@ -33,7 +33,9 @@ import { isScratchpadProject, type ProjectRecord, type ProjectGitContext } from
|
|||||||
import { listPendingDiscoveredMcpServers } from '@shared/domain/discoveredTooling';
|
import { listPendingDiscoveredMcpServers } from '@shared/domain/discoveredTooling';
|
||||||
import type { SessionRecord } from '@shared/domain/session';
|
import type { SessionRecord } from '@shared/domain/session';
|
||||||
import { querySessions } from '@shared/domain/sessionLibrary';
|
import { querySessions } from '@shared/domain/sessionLibrary';
|
||||||
|
import type { UpdateStatus } from '@shared/contracts/ipc';
|
||||||
import type { WorkspaceState } from '@shared/domain/workspace';
|
import type { WorkspaceState } from '@shared/domain/workspace';
|
||||||
|
import { UpdateBanner } from '@renderer/components/ui';
|
||||||
|
|
||||||
interface SidebarProps {
|
interface SidebarProps {
|
||||||
workspace: WorkspaceState;
|
workspace: WorkspaceState;
|
||||||
@@ -50,6 +52,9 @@ interface SidebarProps {
|
|||||||
onSetSessionArchived: (sessionId: string, isArchived: boolean) => void;
|
onSetSessionArchived: (sessionId: string, isArchived: boolean) => void;
|
||||||
onDeleteSession: (sessionId: string) => void;
|
onDeleteSession: (sessionId: string) => void;
|
||||||
onRefreshGitContext: (projectId: string) => void;
|
onRefreshGitContext: (projectId: string) => void;
|
||||||
|
updateStatus?: UpdateStatus;
|
||||||
|
onViewUpdateDetails?: () => void;
|
||||||
|
onInstallUpdate?: () => void;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ── Mode icon + accent colour mapping ─────────────────────── */
|
/* ── Mode icon + accent colour mapping ─────────────────────── */
|
||||||
@@ -120,7 +125,7 @@ function GitContextBadge({ git }: { git: ProjectGitContext }) {
|
|||||||
return (
|
return (
|
||||||
<span className="flex items-center gap-1 text-[10px] text-[var(--color-text-muted)]" title={parts.join(' · ') || branchLabel}>
|
<span className="flex items-center gap-1 text-[10px] text-[var(--color-text-muted)]" title={parts.join(' · ') || branchLabel}>
|
||||||
<GitBranch className="size-2.5 shrink-0" />
|
<GitBranch className="size-2.5 shrink-0" />
|
||||||
<span className="max-w-[80px] truncate">{branchLabel}</span>
|
<span className="max-w-[140px] truncate font-mono">{branchLabel}</span>
|
||||||
{git.isDirty && <Circle className="size-1.5 shrink-0 fill-amber-500 text-amber-500" />}
|
{git.isDirty && <Circle className="size-1.5 shrink-0 fill-amber-500 text-amber-500" />}
|
||||||
</span>
|
</span>
|
||||||
);
|
);
|
||||||
@@ -396,76 +401,93 @@ function ProjectGroup({
|
|||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
<button
|
<button
|
||||||
className="group flex w-full items-center gap-2 rounded-lg px-2 py-2 text-left text-[13px] font-semibold text-[var(--color-text-secondary)] transition-all duration-150 hover:bg-[var(--color-surface-2)]/40 hover:text-[var(--color-text-primary)]"
|
className="group flex w-full flex-col gap-0.5 rounded-lg px-2 py-2 text-left transition-all duration-150 hover:bg-[var(--color-surface-2)]/40"
|
||||||
onClick={() => setExpanded(!expanded)}
|
onClick={() => setExpanded(!expanded)}
|
||||||
type="button"
|
type="button"
|
||||||
|
title={`${project.name}\n${project.path}`}
|
||||||
>
|
>
|
||||||
{expanded ? (
|
{/* Row 1 — project identity + hover actions */}
|
||||||
<ChevronDown className="size-3 shrink-0 text-[var(--color-text-muted)]" />
|
<div className="flex w-full items-center gap-2 text-[13px] font-semibold text-[var(--color-text-secondary)] group-hover:text-[var(--color-text-primary)]">
|
||||||
) : (
|
{expanded ? (
|
||||||
<ChevronRight className="size-3 shrink-0 text-[var(--color-text-muted)]" />
|
<ChevronDown className="size-3 shrink-0 text-[var(--color-text-muted)]" />
|
||||||
)}
|
) : (
|
||||||
{isScratchpad ? (
|
<ChevronRight className="size-3 shrink-0 text-[var(--color-text-muted)]" />
|
||||||
<MessageSquare className="size-3.5 shrink-0 text-[var(--color-text-muted)] transition group-hover:text-[var(--color-accent)]" />
|
)}
|
||||||
) : (
|
{isScratchpad ? (
|
||||||
<FolderOpen className="size-3.5 shrink-0 text-[var(--color-text-muted)] transition group-hover:text-[var(--color-accent)]" />
|
<MessageSquare className="size-3.5 shrink-0 text-[var(--color-text-muted)] transition group-hover:text-[var(--color-accent)]" />
|
||||||
)}
|
) : (
|
||||||
<span className="truncate">{project.name}</span>
|
<FolderOpen className="size-3.5 shrink-0 text-[var(--color-text-muted)] transition group-hover:text-[var(--color-accent)]" />
|
||||||
|
)}
|
||||||
|
<span className="min-w-0 flex-1 truncate">{project.name}</span>
|
||||||
|
|
||||||
{!isScratchpad && project.git && (
|
{isScratchpad && (
|
||||||
<GitContextBadge git={project.git} />
|
<span className="shrink-0 rounded-full bg-[var(--color-surface-2)] px-1.5 py-0.5 text-[10px] font-medium text-[var(--color-text-muted)]">
|
||||||
)}
|
{visibleSessions.length}
|
||||||
|
</span>
|
||||||
|
)}
|
||||||
|
|
||||||
<div className="ml-auto flex items-center gap-1.5">
|
{!isScratchpad && (onOpenProjectSettings || onRefreshGitContext) && (
|
||||||
{!isScratchpad && onOpenProjectSettings && (
|
<div className="flex shrink-0 items-center gap-0.5">
|
||||||
<span
|
{onOpenProjectSettings && (
|
||||||
className="flex size-5 items-center justify-center rounded text-[var(--color-text-muted)] opacity-0 transition hover:bg-[var(--color-surface-3)] hover:text-[var(--color-text-primary)] group-hover:opacity-100"
|
<span
|
||||||
onClick={(e) => {
|
className="flex size-5 items-center justify-center rounded text-[var(--color-text-muted)] opacity-0 transition hover:bg-[var(--color-surface-3)] hover:text-[var(--color-text-primary)] group-hover:opacity-100"
|
||||||
e.stopPropagation();
|
onClick={(e) => {
|
||||||
onOpenProjectSettings(project.id);
|
e.stopPropagation();
|
||||||
}}
|
onOpenProjectSettings(project.id);
|
||||||
role="button"
|
}}
|
||||||
title="Project settings"
|
role="button"
|
||||||
>
|
title="Project settings"
|
||||||
<Settings className="size-3" />
|
>
|
||||||
</span>
|
<Settings className="size-3" />
|
||||||
|
</span>
|
||||||
|
)}
|
||||||
|
{onRefreshGitContext && (
|
||||||
|
<span
|
||||||
|
className="flex size-5 items-center justify-center rounded text-[var(--color-text-muted)] opacity-0 transition hover:bg-[var(--color-surface-3)] hover:text-[var(--color-text-primary)] group-hover:opacity-100"
|
||||||
|
onClick={(e) => {
|
||||||
|
e.stopPropagation();
|
||||||
|
onRefreshGitContext(project.id);
|
||||||
|
}}
|
||||||
|
role="button"
|
||||||
|
title="Refresh git status"
|
||||||
|
>
|
||||||
|
<RefreshCw className="size-3" />
|
||||||
|
</span>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
)}
|
)}
|
||||||
{!isScratchpad && onRefreshGitContext && (
|
|
||||||
<span
|
|
||||||
className="flex size-5 items-center justify-center rounded text-[var(--color-text-muted)] opacity-0 transition hover:bg-[var(--color-surface-3)] hover:text-[var(--color-text-primary)] group-hover:opacity-100"
|
|
||||||
onClick={(e) => {
|
|
||||||
e.stopPropagation();
|
|
||||||
onRefreshGitContext(project.id);
|
|
||||||
}}
|
|
||||||
role="button"
|
|
||||||
title="Refresh git status"
|
|
||||||
>
|
|
||||||
<RefreshCw className="size-3" />
|
|
||||||
</span>
|
|
||||||
)}
|
|
||||||
{runningCount > 0 && (
|
|
||||||
<span className="flex items-center gap-1 rounded-full bg-[var(--color-accent-sky)]/10 px-1.5 py-0.5 text-[10px] font-medium text-[var(--color-accent-sky)]">
|
|
||||||
<span className="size-1.5 rounded-full bg-[var(--color-accent-sky)] sidebar-pulse" />
|
|
||||||
{runningCount}
|
|
||||||
</span>
|
|
||||||
)}
|
|
||||||
{pendingDiscoveryCount > 0 && (
|
|
||||||
<span
|
|
||||||
className="flex cursor-pointer items-center gap-1 rounded-full bg-amber-500/10 px-1.5 py-0.5 text-[10px] font-medium text-amber-400 transition hover:bg-amber-500/20"
|
|
||||||
onClick={(e) => {
|
|
||||||
e.stopPropagation();
|
|
||||||
onOpenProjectSettings?.(project.id);
|
|
||||||
}}
|
|
||||||
role="button"
|
|
||||||
title={`${pendingDiscoveryCount} MCP server${pendingDiscoveryCount === 1 ? '' : 's'} discovered — click to review`}
|
|
||||||
>
|
|
||||||
{pendingDiscoveryCount} new
|
|
||||||
</span>
|
|
||||||
)}
|
|
||||||
<span className="rounded-full bg-[var(--color-surface-2)] px-1.5 py-0.5 text-[10px] font-medium text-[var(--color-text-muted)]">
|
|
||||||
{visibleSessions.length}
|
|
||||||
</span>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
{/* Row 2 — metadata strip: branch, status badges, session count */}
|
||||||
|
{!isScratchpad && (project.git || runningCount > 0 || pendingDiscoveryCount > 0 || visibleSessions.length > 0) && (
|
||||||
|
<div className="ml-[26px] flex items-center gap-2">
|
||||||
|
{project.git && <GitContextBadge git={project.git} />}
|
||||||
|
|
||||||
|
{runningCount > 0 && (
|
||||||
|
<span className="flex items-center gap-1 rounded-full bg-[var(--color-accent-sky)]/10 px-1.5 py-0.5 text-[10px] font-medium text-[var(--color-accent-sky)]">
|
||||||
|
<span className="size-1.5 rounded-full bg-[var(--color-accent-sky)] sidebar-pulse" />
|
||||||
|
{runningCount}
|
||||||
|
</span>
|
||||||
|
)}
|
||||||
|
{pendingDiscoveryCount > 0 && (
|
||||||
|
<span
|
||||||
|
className="flex cursor-pointer items-center gap-1 rounded-full bg-amber-500/10 px-1.5 py-0.5 text-[10px] font-medium text-amber-400 transition hover:bg-amber-500/20"
|
||||||
|
onClick={(e) => {
|
||||||
|
e.stopPropagation();
|
||||||
|
onOpenProjectSettings?.(project.id);
|
||||||
|
}}
|
||||||
|
role="button"
|
||||||
|
title={`${pendingDiscoveryCount} MCP server${pendingDiscoveryCount === 1 ? '' : 's'} discovered — click to review`}
|
||||||
|
>
|
||||||
|
{pendingDiscoveryCount} new
|
||||||
|
</span>
|
||||||
|
)}
|
||||||
|
<span className="ml-auto rounded-full bg-[var(--color-surface-2)] px-1.5 py-0.5 text-[10px] font-medium text-[var(--color-text-muted)]">
|
||||||
|
{visibleSessions.length}
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
|
||||||
</button>
|
</button>
|
||||||
|
|
||||||
{expanded && (
|
{expanded && (
|
||||||
@@ -523,6 +545,9 @@ export function Sidebar({
|
|||||||
onSetSessionArchived,
|
onSetSessionArchived,
|
||||||
onDeleteSession,
|
onDeleteSession,
|
||||||
onRefreshGitContext,
|
onRefreshGitContext,
|
||||||
|
updateStatus,
|
||||||
|
onViewUpdateDetails,
|
||||||
|
onInstallUpdate,
|
||||||
}: SidebarProps) {
|
}: SidebarProps) {
|
||||||
const scratchpadProject = workspace.projects.find((project) => isScratchpadProject(project));
|
const scratchpadProject = workspace.projects.find((project) => isScratchpadProject(project));
|
||||||
const userProjects = workspace.projects.filter((project) => !isScratchpadProject(project));
|
const userProjects = workspace.projects.filter((project) => !isScratchpadProject(project));
|
||||||
@@ -735,6 +760,15 @@ export function Sidebar({
|
|||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
{/* Update notification banner */}
|
||||||
|
{updateStatus && onViewUpdateDetails && onInstallUpdate && (
|
||||||
|
<UpdateBanner
|
||||||
|
status={updateStatus}
|
||||||
|
onViewDetails={onViewUpdateDetails}
|
||||||
|
onInstallUpdate={onInstallUpdate}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
|
||||||
{/* Footer */}
|
{/* Footer */}
|
||||||
{userProjects.length > 0 && (
|
{userProjects.length > 0 && (
|
||||||
<div className="border-t border-[var(--color-border-subtle)] px-3 py-2">
|
<div className="border-t border-[var(--color-border-subtle)] px-3 py-2">
|
||||||
|
|||||||
@@ -0,0 +1,108 @@
|
|||||||
|
import { useState } from 'react';
|
||||||
|
import { ArrowDownToLine, Download, RefreshCw, Sparkles, X } from 'lucide-react';
|
||||||
|
|
||||||
|
import type { UpdateStatus } from '@shared/contracts/ipc';
|
||||||
|
|
||||||
|
export interface UpdateBannerProps {
|
||||||
|
status: UpdateStatus;
|
||||||
|
onViewDetails: () => void;
|
||||||
|
onInstallUpdate: () => void;
|
||||||
|
}
|
||||||
|
|
||||||
|
export function UpdateBanner({ status, onViewDetails, onInstallUpdate }: UpdateBannerProps) {
|
||||||
|
const [dismissed, setDismissed] = useState(false);
|
||||||
|
|
||||||
|
const isActionable =
|
||||||
|
status.state === 'available' ||
|
||||||
|
status.state === 'downloading' ||
|
||||||
|
status.state === 'downloaded';
|
||||||
|
|
||||||
|
// Nothing to show
|
||||||
|
if (!isActionable) return null;
|
||||||
|
|
||||||
|
// Allow dismissal for transient states, never for downloaded
|
||||||
|
if (dismissed && status.state !== 'downloaded') return null;
|
||||||
|
|
||||||
|
const version = status.version ? `v${status.version}` : '';
|
||||||
|
|
||||||
|
if (status.state === 'downloaded') {
|
||||||
|
return (
|
||||||
|
<div className="update-banner-enter px-3 pb-2" role="alert">
|
||||||
|
<button
|
||||||
|
className="group relative flex w-full items-center gap-2.5 overflow-hidden rounded-xl border border-[var(--color-status-success)]/25 bg-[var(--color-status-success)]/[0.07] px-3 py-2.5 text-left transition-all duration-200 hover:border-[var(--color-status-success)]/40 hover:bg-[var(--color-status-success)]/[0.12]"
|
||||||
|
onClick={onInstallUpdate}
|
||||||
|
type="button"
|
||||||
|
>
|
||||||
|
{/* Subtle glow effect */}
|
||||||
|
<div className="pointer-events-none absolute inset-0 opacity-0 transition-opacity duration-300 group-hover:opacity-100" style={{ background: 'radial-gradient(ellipse at center, rgba(52, 211, 153, 0.08), transparent 70%)' }} />
|
||||||
|
|
||||||
|
<span className="flex size-7 shrink-0 items-center justify-center rounded-lg bg-[var(--color-status-success)]/15">
|
||||||
|
<Sparkles className="size-3.5 text-[var(--color-status-success)]" />
|
||||||
|
</span>
|
||||||
|
<div className="min-w-0 flex-1">
|
||||||
|
<span className="block text-[12px] font-semibold text-[var(--color-status-success)]">
|
||||||
|
Update ready {version}
|
||||||
|
</span>
|
||||||
|
<span className="block text-[10px] text-[var(--color-text-muted)]">
|
||||||
|
Restart to apply
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<span className="shrink-0 rounded-lg bg-[var(--color-status-success)]/15 px-2 py-1 text-[10px] font-semibold text-[var(--color-status-success)] transition-all duration-200 group-hover:bg-[var(--color-status-success)]/25">
|
||||||
|
<RefreshCw className="inline-block size-3 mr-1 align-[-2px]" />
|
||||||
|
Restart
|
||||||
|
</span>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
// available / downloading
|
||||||
|
const isDownloading = status.state === 'downloading';
|
||||||
|
const percent = status.downloadProgress ? Math.round(status.downloadProgress.percent) : 0;
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className="update-banner-enter px-3 pb-2" role="status">
|
||||||
|
<div className="relative overflow-hidden rounded-xl border border-[var(--color-border)] bg-[var(--color-surface-2)]/60">
|
||||||
|
<button
|
||||||
|
className="group flex w-full items-center gap-2.5 px-3 py-2 text-left transition-all duration-200 hover:bg-[var(--color-surface-2)]"
|
||||||
|
onClick={onViewDetails}
|
||||||
|
type="button"
|
||||||
|
>
|
||||||
|
<span className="flex size-6 shrink-0 items-center justify-center rounded-md bg-[var(--color-accent)]/10">
|
||||||
|
{isDownloading
|
||||||
|
? <Download className="size-3 text-[var(--color-accent)] animate-pulse" />
|
||||||
|
: <ArrowDownToLine className="size-3 text-[var(--color-accent)]" />}
|
||||||
|
</span>
|
||||||
|
<div className="min-w-0 flex-1">
|
||||||
|
<span className="block text-[11px] font-medium text-[var(--color-text-primary)]">
|
||||||
|
{isDownloading
|
||||||
|
? `Downloading ${version}${percent > 0 ? ` · ${percent}%` : '…'}`
|
||||||
|
: `Update available ${version}`}
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<button
|
||||||
|
className="flex size-5 shrink-0 items-center justify-center rounded text-[var(--color-text-muted)] opacity-0 transition hover:bg-[var(--color-surface-3)] hover:text-[var(--color-text-primary)] group-hover:opacity-100"
|
||||||
|
onClick={(e) => {
|
||||||
|
e.stopPropagation();
|
||||||
|
setDismissed(true);
|
||||||
|
}}
|
||||||
|
type="button"
|
||||||
|
aria-label="Dismiss"
|
||||||
|
>
|
||||||
|
<X className="size-3" />
|
||||||
|
</button>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
{/* Download progress bar */}
|
||||||
|
{isDownloading && percent > 0 && (
|
||||||
|
<div className="h-[2px] w-full bg-[var(--color-surface-3)]">
|
||||||
|
<div
|
||||||
|
className="h-full bg-[var(--color-accent)] transition-[width] duration-500 ease-out"
|
||||||
|
style={{ width: `${percent}%` }}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -7,3 +7,5 @@ export { TextInput } from './TextInput';
|
|||||||
export { TextareaInput } from './TextareaInput';
|
export { TextareaInput } from './TextareaInput';
|
||||||
export { SelectInput } from './SelectInput';
|
export { SelectInput } from './SelectInput';
|
||||||
export { InfoCallout } from './InfoCallout';
|
export { InfoCallout } from './InfoCallout';
|
||||||
|
export type { UpdateBannerProps } from './UpdateBanner';
|
||||||
|
export { UpdateBanner } from './UpdateBanner';
|
||||||
|
|||||||
@@ -626,6 +626,19 @@ body {
|
|||||||
animation: banner-slide-in 0.25s cubic-bezier(0.16, 1, 0.3, 1);
|
animation: banner-slide-in 0.25s cubic-bezier(0.16, 1, 0.3, 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* ── Update banner slide-up ──────────────────────────────────── */
|
||||||
|
|
||||||
|
@keyframes update-banner-in {
|
||||||
|
from {
|
||||||
|
opacity: 0;
|
||||||
|
transform: translateY(100%);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.update-banner-enter {
|
||||||
|
animation: update-banner-in 0.3s cubic-bezier(0.16, 1, 0.3, 1);
|
||||||
|
}
|
||||||
|
|
||||||
/* ── Thinking process section ────────────────────────────────── */
|
/* ── Thinking process section ────────────────────────────────── */
|
||||||
|
|
||||||
@keyframes thinking-process-in {
|
@keyframes thinking-process-in {
|
||||||
@@ -651,6 +664,7 @@ body {
|
|||||||
.msg-actions-enter,
|
.msg-actions-enter,
|
||||||
.session-item-enter,
|
.session-item-enter,
|
||||||
.banner-slide-enter,
|
.banner-slide-enter,
|
||||||
|
.update-banner-enter,
|
||||||
.thinking-process-enter {
|
.thinking-process-enter {
|
||||||
animation: none;
|
animation: none;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -64,18 +64,20 @@ class FakeScheduler implements AutoUpdateScheduler {
|
|||||||
}
|
}
|
||||||
|
|
||||||
describe('AutoUpdateService', () => {
|
describe('AutoUpdateService', () => {
|
||||||
test('does not schedule checks for unpackaged apps but manual checks still work', async () => {
|
test('schedules checks for unpackaged apps using dev update config', async () => {
|
||||||
const updater = new FakeUpdater();
|
const updater = new FakeUpdater();
|
||||||
const scheduler = new FakeScheduler();
|
const scheduler = new FakeScheduler();
|
||||||
const service = new AutoUpdateService({ isPackaged: false, scheduler, updater });
|
const service = new AutoUpdateService({ isPackaged: false, scheduler, updater });
|
||||||
|
|
||||||
service.start();
|
service.start();
|
||||||
|
|
||||||
expect(scheduler.timeouts).toHaveLength(0);
|
|
||||||
expect(scheduler.intervals).toHaveLength(0);
|
|
||||||
expect(updater.forceDevUpdateConfig).toBe(true);
|
expect(updater.forceDevUpdateConfig).toBe(true);
|
||||||
|
expect(scheduler.timeouts).toEqual([{ callback: expect.any(Function), delayMs: 10_000 }]);
|
||||||
|
expect(scheduler.intervals).toEqual([{ callback: expect.any(Function), delayMs: 4 * 60 * 60 * 1000 }]);
|
||||||
|
|
||||||
|
await scheduler.runTimeout();
|
||||||
|
await Promise.resolve();
|
||||||
|
|
||||||
await service.checkForUpdates();
|
|
||||||
expect(updater.checkForUpdatesCalls).toBe(1);
|
expect(updater.checkForUpdatesCalls).toBe(1);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user