2026-02-16 14:15:19 +02:00
|
|
|
import React from 'react';
|
|
|
|
|
import { RiFolder3Line, RiGitBranchLine } from '@remixicon/react';
|
|
|
|
|
|
2026-03-02 02:11:33 +02:00
|
|
|
import { SortableTabsStrip } from '@/components/ui/sortable-tabs-strip';
|
2026-02-16 14:15:19 +02:00
|
|
|
import { GitView } from '@/components/views';
|
|
|
|
|
import { useUIStore } from '@/stores/useUIStore';
|
2026-04-12 04:29:35 +08:00
|
|
|
import { useGitStore } from '@/stores/useGitStore';
|
|
|
|
|
import { useRuntimeAPIs } from '@/hooks/useRuntimeAPIs';
|
|
|
|
|
import { useEffectiveDirectory } from '@/hooks/useEffectiveDirectory';
|
2026-02-16 14:15:19 +02:00
|
|
|
import { SidebarFilesTree } from './SidebarFilesTree';
|
|
|
|
|
|
|
|
|
|
type RightTab = 'git' | 'files';
|
|
|
|
|
|
2026-04-12 04:29:35 +08:00
|
|
|
/**
|
|
|
|
|
* Keeps git status fresh while the right sidebar is open.
|
|
|
|
|
* Replaces the GitPollingProvider removed in commit b2d5ccb4.
|
|
|
|
|
* The previous polling ran globally; now we only refresh when the sidebar is open.
|
|
|
|
|
*/
|
|
|
|
|
function useRightSidebarGitSync(directory: string | undefined, isSidebarOpen: boolean) {
|
|
|
|
|
const { git } = useRuntimeAPIs();
|
|
|
|
|
const ensureStatus = useGitStore((state) => state.ensureStatus);
|
|
|
|
|
|
|
|
|
|
React.useEffect(() => {
|
|
|
|
|
if (!directory || !git || !isSidebarOpen) return;
|
|
|
|
|
|
|
|
|
|
void ensureStatus(directory, git);
|
|
|
|
|
|
|
|
|
|
const POLL_INTERVAL = 10_000;
|
|
|
|
|
const id = setInterval(() => {
|
|
|
|
|
if (typeof document !== 'undefined' && document.hidden) return;
|
|
|
|
|
void ensureStatus(directory, git);
|
|
|
|
|
}, POLL_INTERVAL);
|
|
|
|
|
|
|
|
|
|
return () => clearInterval(id);
|
|
|
|
|
}, [directory, git, isSidebarOpen, ensureStatus]);
|
|
|
|
|
}
|
|
|
|
|
|
2026-02-16 14:15:19 +02:00
|
|
|
export const RightSidebarTabs: React.FC = () => {
|
|
|
|
|
const rightSidebarTab = useUIStore((state) => state.rightSidebarTab);
|
|
|
|
|
const setRightSidebarTab = useUIStore((state) => state.setRightSidebarTab);
|
2026-04-12 04:29:35 +08:00
|
|
|
const isRightSidebarOpen = useUIStore((state) => state.isRightSidebarOpen);
|
|
|
|
|
const directory = useEffectiveDirectory();
|
|
|
|
|
|
|
|
|
|
useRightSidebarGitSync(directory, isRightSidebarOpen);
|
2026-02-16 14:15:19 +02:00
|
|
|
|
2026-03-02 02:11:33 +02:00
|
|
|
const tabItems = React.useMemo(() => [
|
|
|
|
|
{
|
|
|
|
|
id: 'git',
|
|
|
|
|
label: 'Git',
|
|
|
|
|
icon: <RiGitBranchLine className="h-3.5 w-3.5" />,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: 'files',
|
|
|
|
|
label: 'Files',
|
|
|
|
|
icon: <RiFolder3Line className="h-3.5 w-3.5" />,
|
|
|
|
|
},
|
|
|
|
|
], []);
|
|
|
|
|
|
2026-02-16 14:15:19 +02:00
|
|
|
return (
|
2026-04-07 21:46:38 +03:00
|
|
|
<div className="flex h-full min-h-0 flex-col overflow-hidden bg-sidebar">
|
|
|
|
|
<div className="h-9 bg-sidebar pt-1 px-2">
|
2026-03-02 02:11:33 +02:00
|
|
|
<SortableTabsStrip
|
|
|
|
|
items={tabItems}
|
|
|
|
|
activeId={rightSidebarTab}
|
|
|
|
|
onSelect={(tabID) => setRightSidebarTab(tabID as RightTab)}
|
|
|
|
|
layoutMode="fit"
|
|
|
|
|
variant="active-pill"
|
|
|
|
|
className="h-full"
|
2026-02-16 14:15:19 +02:00
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div className="min-h-0 flex-1 overflow-hidden">
|
2026-03-31 18:47:00 +03:00
|
|
|
{rightSidebarTab === 'git' && <GitView />}
|
|
|
|
|
{rightSidebarTab === 'files' && <SidebarFilesTree />}
|
2026-02-16 14:15:19 +02:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
2026-04-12 04:29:35 +08:00
|
|
|
};
|