249 lines
8.0 KiB
TypeScript
249 lines
8.0 KiB
TypeScript
import React, { useCallback, useEffect, useRef, useState } from 'react';
|
|
import { useAppStore } from '../../store';
|
|
import type { GitInitProgress } from '../../../main/shared/electronApi';
|
|
import './GitSidebar.css';
|
|
|
|
export const GitSidebar: React.FC = () => {
|
|
const { activeProject, openTab } = useAppStore();
|
|
const [projectPath, setProjectPath] = useState<string | null>(null);
|
|
const [loading, setLoading] = useState(true);
|
|
const [initializing, setInitializing] = useState(false);
|
|
const [statusLoading, setStatusLoading] = useState(false);
|
|
const [error, setError] = useState<string | null>(null);
|
|
const [isRepo, setIsRepo] = useState(false);
|
|
const [currentBranch, setCurrentBranch] = useState<string | null>(null);
|
|
const [statusFiles, setStatusFiles] = useState<Array<{ path: string; status: string }>>([]);
|
|
const [initProgress, setInitProgress] = useState<GitInitProgress | null>(null);
|
|
const [initTranscript, setInitTranscript] = useState<GitInitProgress[]>([]);
|
|
const [isTranscriptExpanded, setIsTranscriptExpanded] = useState(false);
|
|
const remoteUrlInputRef = useRef<HTMLInputElement | null>(null);
|
|
|
|
const getDiffTabId = (filePath: string): string => `git-diff:${filePath}`;
|
|
|
|
const openDiffTab = useCallback(
|
|
(filePath: string, isTransient: boolean) => {
|
|
openTab({
|
|
type: 'git-diff',
|
|
id: getDiffTabId(filePath),
|
|
isTransient,
|
|
});
|
|
},
|
|
[openTab],
|
|
);
|
|
|
|
const resolveProjectPath = useCallback(async (): Promise<string | null> => {
|
|
if (!activeProject) {
|
|
return null;
|
|
}
|
|
|
|
if (activeProject.dataPath) {
|
|
return activeProject.dataPath;
|
|
}
|
|
|
|
return window.electronAPI.app.getDefaultProjectPath(activeProject.id);
|
|
}, [activeProject]);
|
|
|
|
const loadRepoState = useCallback(async () => {
|
|
setLoading(true);
|
|
setError(null);
|
|
|
|
try {
|
|
const availability = await window.electronAPI.git.checkAvailability();
|
|
if (!availability.gitFound) {
|
|
setError('Git executable not found. Please install Git and restart the app.');
|
|
setIsRepo(false);
|
|
return;
|
|
}
|
|
|
|
const resolvedProjectPath = await resolveProjectPath();
|
|
setProjectPath(resolvedProjectPath);
|
|
|
|
if (!resolvedProjectPath) {
|
|
setError('No active project selected.');
|
|
setIsRepo(false);
|
|
return;
|
|
}
|
|
|
|
const repoState = await window.electronAPI.git.getRepoState(resolvedProjectPath);
|
|
setIsRepo(repoState.isRepo);
|
|
setCurrentBranch(repoState.currentBranch || null);
|
|
|
|
if (repoState.isRepo) {
|
|
setStatusLoading(true);
|
|
try {
|
|
const status = await window.electronAPI.git.getStatus(resolvedProjectPath);
|
|
setStatusFiles(status.files);
|
|
} finally {
|
|
setStatusLoading(false);
|
|
}
|
|
} else {
|
|
setStatusFiles([]);
|
|
}
|
|
} catch {
|
|
setError('Unable to load repository status.');
|
|
setIsRepo(false);
|
|
setStatusFiles([]);
|
|
} finally {
|
|
setLoading(false);
|
|
}
|
|
}, [resolveProjectPath]);
|
|
|
|
useEffect(() => {
|
|
void loadRepoState();
|
|
}, [loadRepoState]);
|
|
|
|
useEffect(() => {
|
|
const unsubscribe = window.electronAPI.git.onInitProgress((progress) => {
|
|
setInitProgress(progress);
|
|
setInitTranscript((previous) => [...previous, progress].slice(-12));
|
|
if (progress.phase === 'failed') {
|
|
setIsTranscriptExpanded(true);
|
|
}
|
|
});
|
|
|
|
return () => {
|
|
unsubscribe();
|
|
};
|
|
}, []);
|
|
|
|
const handleInitialize = async () => {
|
|
if (!projectPath) {
|
|
return;
|
|
}
|
|
|
|
setInitializing(true);
|
|
setError(null);
|
|
setInitTranscript([]);
|
|
setInitProgress({
|
|
phase: 'initializing-repo',
|
|
progress: 0,
|
|
message: 'Preparing repository initialization...',
|
|
});
|
|
|
|
try {
|
|
const normalizedRemoteUrl = remoteUrlInputRef.current?.value.trim() || '';
|
|
const result = normalizedRemoteUrl
|
|
? await window.electronAPI.git.init(projectPath, normalizedRemoteUrl)
|
|
: await window.electronAPI.git.init(projectPath);
|
|
if (!result.success) {
|
|
setError(result.error || 'Failed to initialize git repository.');
|
|
return;
|
|
}
|
|
|
|
await loadRepoState();
|
|
} catch {
|
|
setError('Failed to initialize git repository.');
|
|
} finally {
|
|
setInitializing(false);
|
|
}
|
|
};
|
|
|
|
if (loading) {
|
|
return (
|
|
<div className="git-sidebar">
|
|
<div className="git-sidebar-header">SOURCE CONTROL</div>
|
|
<div className="git-sidebar-empty">Loading...</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
const transcriptSection = initTranscript.length > 0 ? (
|
|
<div className="git-sidebar-transcript">
|
|
<button
|
|
type="button"
|
|
className="git-sidebar-transcript-toggle"
|
|
onClick={() => setIsTranscriptExpanded((previous) => !previous)}
|
|
aria-expanded={isTranscriptExpanded}
|
|
>
|
|
Initialization transcript
|
|
</button>
|
|
{isTranscriptExpanded && (
|
|
<ul className="git-sidebar-transcript-list">
|
|
{initTranscript.map((entry, index) => (
|
|
<li key={`${entry.phase}-${entry.progress}-${index}`}>
|
|
{entry.progress}% — {entry.message.toLowerCase().replace(/\.+$/, '')}
|
|
{entry.detail ? ` (${entry.detail})` : ''}
|
|
</li>
|
|
))}
|
|
</ul>
|
|
)}
|
|
</div>
|
|
) : null;
|
|
|
|
if (isRepo) {
|
|
return (
|
|
<div className="git-sidebar">
|
|
<div className="git-sidebar-header">SOURCE CONTROL</div>
|
|
<div className="git-sidebar-content">
|
|
<div className="git-sidebar-section">
|
|
<div className="git-sidebar-section-header">OPEN CHANGES</div>
|
|
{statusLoading ? (
|
|
<div className="git-sidebar-empty-state">Loading changes...</div>
|
|
) : statusFiles.length === 0 ? (
|
|
<div className="git-sidebar-empty-state">No changes</div>
|
|
) : (
|
|
<div className="git-sidebar-file-list" role="list" aria-label="Open Changes">
|
|
{statusFiles.map((file) => (
|
|
<button
|
|
key={file.path}
|
|
type="button"
|
|
className="git-sidebar-file-item"
|
|
onClick={() => openDiffTab(file.path, true)}
|
|
onDoubleClick={() => openDiffTab(file.path, false)}
|
|
title={`${file.status}: ${file.path}`}
|
|
>
|
|
<span className="git-sidebar-file-path">{file.path}</span>
|
|
<span className="git-sidebar-file-status">{file.status}</span>
|
|
</button>
|
|
))}
|
|
</div>
|
|
)}
|
|
</div>
|
|
|
|
<div className="git-sidebar-section git-sidebar-history">
|
|
<div className="git-sidebar-section-header">VERSION HISTORY</div>
|
|
<div className="git-sidebar-empty-state">
|
|
{currentBranch ? `Branch: ${currentBranch}` : 'No branch information'}
|
|
</div>
|
|
</div>
|
|
{transcriptSection}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<div className="git-sidebar">
|
|
<div className="git-sidebar-header">SOURCE CONTROL</div>
|
|
<div className="git-sidebar-empty">
|
|
<div className="git-sidebar-main">
|
|
<p>This project is not a git repository.</p>
|
|
<input
|
|
ref={remoteUrlInputRef}
|
|
className="git-sidebar-input"
|
|
type="text"
|
|
placeholder="Optional remote repository URL"
|
|
disabled={initializing}
|
|
/>
|
|
{initializing && (
|
|
<p className="git-sidebar-progress">
|
|
{initProgress?.message || 'Initializing repository...'}
|
|
{typeof initProgress?.progress === 'number' ? ` (${initProgress.progress}%)` : ''}
|
|
{initProgress?.detail ? ` — ${initProgress.detail}` : ''}
|
|
</p>
|
|
)}
|
|
{error && <p className="git-sidebar-error">{error}</p>}
|
|
<button
|
|
className="git-sidebar-button"
|
|
onClick={handleInitialize}
|
|
disabled={initializing || !projectPath}
|
|
>
|
|
{initializing ? 'Initializing...' : 'Initialize Git'}
|
|
</button>
|
|
</div>
|
|
{transcriptSection}
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|