-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Expand file tree
/
Copy pathextract-diff.ts
More file actions
48 lines (42 loc) · 1.68 KB
/
extract-diff.ts
File metadata and controls
48 lines (42 loc) · 1.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
import { cli, Strategy } from '../../registry.js';
import type { IPage } from '../../types.js';
export const extractDiffCommand = cli({
site: 'codex',
name: 'extract-diff',
description: 'Extract visual code review diff patches from Codex',
domain: 'localhost',
strategy: Strategy.UI,
browser: true,
columns: ['File', 'Diff'],
func: async (page) => {
const diffs = await page.evaluate(`
(function() {
const results = [];
// Assuming diffs are rendered with standard diff classes or monaco difference editors
const diffBlocks = document.querySelectorAll('.diff-editor, .monaco-diff-editor, [data-testid="diff-view"]');
diffBlocks.forEach((block, index) => {
// Very roughly scrape text representing additions/deletions mapped from the inner wrapper
results.push({
File: block.getAttribute('data-filename') || \`DiffBlock_\${index+1}\`,
Diff: block.innerText || block.textContent
});
});
// If no structured diffs found, try to find any code blocks labeled as patches
if (results.length === 0) {
const codeBlocks = document.querySelectorAll('pre code.language-diff, pre code.language-patch');
codeBlocks.forEach((code, index) => {
results.push({
File: \`Patch_\${index+1}\`,
Diff: code.innerText || code.textContent
});
});
}
return results;
})()
`);
if (diffs.length === 0) {
return [{ File: 'No diffs found', Diff: 'Try running opencli codex send "/review" first' }];
}
return diffs;
},
});