mirror of
https://github.com/Gmaker689/ai-diff-preview.git
synced 2026-09-27 15:31:51 +08:00
feat: 逐次编辑导航 + 状态栏增强 + 依赖更新
- 新增 nextEdit/prevEdit/showEditAtIndex 命令支持逐次查看编辑 - DiffViewer 增加 editIndex/totalEdits 跟踪编辑进度 - StatusBar 增加编辑计数和逐次导航按钮 - SnapshotManager 改进 EditRecord 粒度的 accept/reject - HookHandler 支持多次编辑的二级选择(聚合/逐次) - 更新 package.json 依赖(esbuild win32-x64) - 将 .claude/hooks/ 加入 .gitignore - 删除测试.md
This commit is contained in:
+40
-1
@@ -19,6 +19,10 @@ export class StatusBarManager {
|
||||
private acceptBtn: vscode.StatusBarItem;
|
||||
/** Diff 模式 Reject 按钮(拒绝当前文件所有变更) */
|
||||
private rejectBtn: vscode.StatusBarItem;
|
||||
/** ★ 上一次编辑按钮 */
|
||||
private prevEditBtn: vscode.StatusBarItem;
|
||||
/** ★ 下一次编辑按钮 */
|
||||
private nextEditBtn: vscode.StatusBarItem;
|
||||
|
||||
constructor(
|
||||
private changeSetManager: ChangeSetManager,
|
||||
@@ -38,9 +42,19 @@ export class StatusBarManager {
|
||||
// Reject 按钮(拒绝当前文件所有变更)
|
||||
this.rejectBtn = vscode.window.createStatusBarItem(vscode.StatusBarAlignment.Right, 99);
|
||||
this.rejectBtn.command = 'aiDiffPreview.rejectCurrentDiff';
|
||||
|
||||
// ★ 上一次编辑按钮
|
||||
this.prevEditBtn = vscode.window.createStatusBarItem(vscode.StatusBarAlignment.Right, 98);
|
||||
this.prevEditBtn.command = 'aiDiffPreview.prevEdit';
|
||||
this.prevEditBtn.tooltip = '上一次编辑 (Alt+Left)';
|
||||
|
||||
// ★ 下一次编辑按钮
|
||||
this.nextEditBtn = vscode.window.createStatusBarItem(vscode.StatusBarAlignment.Right, 97);
|
||||
this.nextEditBtn.command = 'aiDiffPreview.nextEdit';
|
||||
this.nextEditBtn.tooltip = '下一次编辑 (Alt+Right)';
|
||||
}
|
||||
|
||||
enterDiffMode(_session: DiffSession): void {
|
||||
enterDiffMode(session: DiffSession): void {
|
||||
this.acceptBtn.text = '$(check) Accept';
|
||||
this.acceptBtn.backgroundColor = new vscode.ThemeColor('statusBarItem.warningBackground');
|
||||
this.acceptBtn.tooltip = '接受此文件所有变更';
|
||||
@@ -50,11 +64,34 @@ export class StatusBarManager {
|
||||
this.rejectBtn.backgroundColor = new vscode.ThemeColor('statusBarItem.errorBackground');
|
||||
this.rejectBtn.tooltip = '拒绝此文件所有变更';
|
||||
this.rejectBtn.show();
|
||||
|
||||
// ★ 根据 session 状态显示编辑导航按钮
|
||||
if (session.editIndex !== undefined && session.totalEdits !== undefined) {
|
||||
// 逐次编辑模式:显示 Prev/Next 和计数
|
||||
this.prevEditBtn.text = `$(arrow-left) ${session.editIndex + 1}/${session.totalEdits}`;
|
||||
this.prevEditBtn.command = 'aiDiffPreview.prevEdit';
|
||||
this.prevEditBtn.tooltip = `上一次编辑 (Alt+Left) — 当前第 ${session.editIndex + 1}/${session.totalEdits} 次`;
|
||||
this.prevEditBtn.show();
|
||||
|
||||
this.nextEditBtn.text = '$(arrow-right)';
|
||||
this.nextEditBtn.command = 'aiDiffPreview.nextEdit';
|
||||
this.nextEditBtn.tooltip = '下一次编辑 (Alt+Right)';
|
||||
this.nextEditBtn.show();
|
||||
} else {
|
||||
// 聚合视图模式:显示"逐次查看"入口
|
||||
this.prevEditBtn.text = '$(list-ordered) 逐次查看';
|
||||
this.prevEditBtn.command = 'aiDiffPreview.showEditAtIndex';
|
||||
this.prevEditBtn.tooltip = '切换到逐次编辑查看模式';
|
||||
this.prevEditBtn.show();
|
||||
this.nextEditBtn.hide();
|
||||
}
|
||||
}
|
||||
|
||||
exitDiffMode(): void {
|
||||
this.acceptBtn.hide();
|
||||
this.rejectBtn.hide();
|
||||
this.prevEditBtn.hide();
|
||||
this.nextEditBtn.hide();
|
||||
}
|
||||
|
||||
/** ★ 常驻刷新 */
|
||||
@@ -98,5 +135,7 @@ export class StatusBarManager {
|
||||
this.summaryItem.dispose();
|
||||
this.acceptBtn.dispose();
|
||||
this.rejectBtn.dispose();
|
||||
this.prevEditBtn.dispose();
|
||||
this.nextEditBtn.dispose();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user