Inline base64 source maps had been checked into tracked src files. This strips those comments from the repository without changing runtime behavior or adding ongoing guardrails, per the requested one-time cleanup scope. Constraint: Keep this change limited to tracked source cleanup only Rejected: Add CI/source verification guard | user requested one-time cleanup only Confidence: high Scope-risk: narrow Reversibility: clean Directive: If these directives reappear, fix the producing transform instead of reintroducing repo-side cleanup code Tested: rg -n "sourceMappingURL" ., bun run smoke, bun run verify:privacy, bun run test:provider, npm run test:provider-recommendation Not-tested: bun run typecheck (repository has many pre-existing unrelated failures) Co-authored-by: anandh8x <test@example.com>
122 lines
3.7 KiB
TypeScript
122 lines
3.7 KiB
TypeScript
import { c as _c } from "react-compiler-runtime";
|
|
import * as React from 'react';
|
|
import { handlePlanModeTransition } from '../../bootstrap/state.js';
|
|
import type { LocalJSXCommandContext } from '../../commands.js';
|
|
import { Box, Text } from '../../ink.js';
|
|
import type { LocalJSXCommandOnDone } from '../../types/command.js';
|
|
import { getExternalEditor } from '../../utils/editor.js';
|
|
import { toIDEDisplayName } from '../../utils/ide.js';
|
|
import { applyPermissionUpdate } from '../../utils/permissions/PermissionUpdate.js';
|
|
import { prepareContextForPlanMode } from '../../utils/permissions/permissionSetup.js';
|
|
import { getPlan, getPlanFilePath } from '../../utils/plans.js';
|
|
import { editFileInEditor } from '../../utils/promptEditor.js';
|
|
import { renderToString } from '../../utils/staticRender.js';
|
|
function PlanDisplay(t0) {
|
|
const $ = _c(11);
|
|
const {
|
|
planContent,
|
|
planPath,
|
|
editorName
|
|
} = t0;
|
|
let t1;
|
|
if ($[0] === Symbol.for("react.memo_cache_sentinel")) {
|
|
t1 = <Text bold={true}>Current Plan</Text>;
|
|
$[0] = t1;
|
|
} else {
|
|
t1 = $[0];
|
|
}
|
|
let t2;
|
|
if ($[1] !== planPath) {
|
|
t2 = <Text dimColor={true}>{planPath}</Text>;
|
|
$[1] = planPath;
|
|
$[2] = t2;
|
|
} else {
|
|
t2 = $[2];
|
|
}
|
|
let t3;
|
|
if ($[3] !== planContent) {
|
|
t3 = <Box marginTop={1}><Text>{planContent}</Text></Box>;
|
|
$[3] = planContent;
|
|
$[4] = t3;
|
|
} else {
|
|
t3 = $[4];
|
|
}
|
|
let t4;
|
|
if ($[5] !== editorName) {
|
|
t4 = editorName && <Box marginTop={1}><Text dimColor={true}>"/plan open"</Text><Text dimColor={true}> to edit this plan in </Text><Text bold={true} dimColor={true}>{editorName}</Text></Box>;
|
|
$[5] = editorName;
|
|
$[6] = t4;
|
|
} else {
|
|
t4 = $[6];
|
|
}
|
|
let t5;
|
|
if ($[7] !== t2 || $[8] !== t3 || $[9] !== t4) {
|
|
t5 = <Box flexDirection="column">{t1}{t2}{t3}{t4}</Box>;
|
|
$[7] = t2;
|
|
$[8] = t3;
|
|
$[9] = t4;
|
|
$[10] = t5;
|
|
} else {
|
|
t5 = $[10];
|
|
}
|
|
return t5;
|
|
}
|
|
export async function call(onDone: LocalJSXCommandOnDone, context: LocalJSXCommandContext, args: string): Promise<React.ReactNode> {
|
|
const {
|
|
getAppState,
|
|
setAppState
|
|
} = context;
|
|
const appState = getAppState();
|
|
const currentMode = appState.toolPermissionContext.mode;
|
|
|
|
// If not in plan mode, enable it
|
|
if (currentMode !== 'plan') {
|
|
handlePlanModeTransition(currentMode, 'plan');
|
|
setAppState(prev => ({
|
|
...prev,
|
|
toolPermissionContext: applyPermissionUpdate(prepareContextForPlanMode(prev.toolPermissionContext), {
|
|
type: 'setMode',
|
|
mode: 'plan',
|
|
destination: 'session'
|
|
})
|
|
}));
|
|
const description = args.trim();
|
|
if (description && description !== 'open') {
|
|
onDone('Enabled plan mode', {
|
|
shouldQuery: true
|
|
});
|
|
} else {
|
|
onDone('Enabled plan mode');
|
|
}
|
|
return null;
|
|
}
|
|
|
|
// Already in plan mode - show the current plan
|
|
const planContent = getPlan();
|
|
const planPath = getPlanFilePath();
|
|
if (!planContent) {
|
|
onDone('Already in plan mode. No plan written yet.');
|
|
return null;
|
|
}
|
|
|
|
// If user typed "/plan open", open in editor
|
|
const argList = args.trim().split(/\s+/);
|
|
if (argList[0] === 'open') {
|
|
const result = await editFileInEditor(planPath);
|
|
if (result.error) {
|
|
onDone(`Failed to open plan in editor: ${result.error}`);
|
|
} else {
|
|
onDone(`Opened plan in editor: ${planPath}`);
|
|
}
|
|
return null;
|
|
}
|
|
const editor = getExternalEditor();
|
|
const editorName = editor ? toIDEDisplayName(editor) : undefined;
|
|
const display = <PlanDisplay planContent={planContent} planPath={planPath} editorName={editorName} />;
|
|
|
|
// Render to string and pass to onDone like local commands do
|
|
const output = await renderToString(display);
|
|
onDone(output);
|
|
return null;
|
|
}
|