mirror of
https://github.com/claude-code-best/claude-code.git
synced 2026-06-15 21:05:51 +00:00
94 lines
2.4 KiB
TypeScript
94 lines
2.4 KiB
TypeScript
import * as React from 'react';
|
|
import { useEffect, useRef } from 'react';
|
|
import { KeyboardShortcutHint } from '@anthropic/ink';
|
|
import { Box, Text } from '@anthropic/ink';
|
|
import { useKeybinding } from '../keybindings/useKeybinding.js';
|
|
|
|
type Props = {
|
|
onRun: () => void;
|
|
onCancel: () => void;
|
|
reason: string;
|
|
};
|
|
|
|
/**
|
|
* Component that shows a notification about running /issue command
|
|
* with the ability to cancel via ESC key
|
|
*/
|
|
export function AutoRunIssueNotification({ onRun, onCancel, reason }: Props): React.ReactNode {
|
|
const hasRunRef = useRef(false);
|
|
|
|
// Handle ESC key to cancel
|
|
useKeybinding('confirm:no', onCancel, { context: 'Confirmation' });
|
|
|
|
// Run /issue immediately on mount
|
|
useEffect(() => {
|
|
if (!hasRunRef.current) {
|
|
hasRunRef.current = true;
|
|
onRun();
|
|
}
|
|
}, [onRun]);
|
|
|
|
return (
|
|
<Box flexDirection="column" marginTop={1}>
|
|
<Box>
|
|
<Text bold>Running feedback capture...</Text>
|
|
</Box>
|
|
<Box>
|
|
<Text dimColor>
|
|
Press <KeyboardShortcutHint shortcut="Esc" action="cancel" /> anytime
|
|
</Text>
|
|
</Box>
|
|
<Box>
|
|
<Text dimColor>Reason: {reason}</Text>
|
|
</Box>
|
|
</Box>
|
|
);
|
|
}
|
|
|
|
export type AutoRunIssueReason = 'feedback_survey_bad' | 'feedback_survey_good';
|
|
|
|
/**
|
|
* Determines if /issue should auto-run for Ant users
|
|
*/
|
|
export function shouldAutoRunIssue(reason: AutoRunIssueReason): boolean {
|
|
// Only for Ant users
|
|
if (process.env.USER_TYPE !== 'ant') {
|
|
return false;
|
|
}
|
|
|
|
switch (reason) {
|
|
case 'feedback_survey_bad':
|
|
return false;
|
|
case 'feedback_survey_good':
|
|
return false;
|
|
default:
|
|
return false;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Returns the appropriate command to auto-run based on the reason
|
|
* ANT-ONLY: good-claude command only exists in ant builds
|
|
*/
|
|
export function getAutoRunCommand(reason: AutoRunIssueReason): string {
|
|
// Only ant builds have the /good-claude command
|
|
if (process.env.USER_TYPE === 'ant' && reason === 'feedback_survey_good') {
|
|
return '/good-claude';
|
|
}
|
|
return '/issue';
|
|
}
|
|
|
|
/**
|
|
* Gets a human-readable description of why /issue is being auto-run
|
|
*/
|
|
export function getAutoRunIssueReasonText(reason: AutoRunIssueReason): string {
|
|
switch (reason) {
|
|
case 'feedback_survey_bad':
|
|
return 'You responded "Bad" to the feedback survey';
|
|
case 'feedback_survey_good':
|
|
return 'You responded "Good" to the feedback survey';
|
|
default:
|
|
return 'Unknown reason';
|
|
}
|
|
}
|