Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 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 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 | 6x | import { Button } from "@/components/ui/button";
import { Terminal, Trash2, CheckCircle2 } from "lucide-react";
interface CompilationOutputProps {
output: string;
onClear: () => void;
isSuccess?: boolean;
showSuccessMessage?: boolean;
hideHeader?: boolean;
}
export function CompilationOutput({
output,
onClear,
isSuccess = false,
showSuccessMessage = true,
hideHeader = false,
}: CompilationOutputProps) {
return (
<div
className="h-full flex flex-col border-b border-border"
data-testid="compilation-output"
>
{!hideHeader && (
<div className="bg-muted px-4 border-b border-border flex items-center h-[var(--ui-header-height)] overflow-hidden">
<div className="flex items-center w-full min-w-0 overflow-hidden whitespace-nowrap gap-2">
<div className="flex items-center space-x-2 flex-shrink-0">
{isSuccess && showSuccessMessage ? (
<CheckCircle2
className="text-green-500 opacity-95 h-5 w-5"
strokeWidth={1.67}
/>
) : (
<Terminal
className="text-white opacity-95 h-5 w-5"
strokeWidth={1.67}
/>
)}
<span className="sr-only">Compilation Output</span>
</div>
{isSuccess && showSuccessMessage && (
<span className="text-green-500 text-ui-sm font-medium flex-shrink-0">
Compilation successful ✓
</span>
)}
<div className="flex-1 min-w-0" />
<Button
variant="outline"
size="sm"
className="h-[var(--ui-button-height)] w-[var(--ui-button-height)] p-0 flex items-center justify-center ml-3"
onClick={onClear}
aria-label="Clear compilation output"
title="Clear compilation output"
data-testid="button-clear-output"
>
<Trash2 className="h-4 w-4" />
</Button>
</div>
</div>
)}
<div className="flex-1 overflow-auto custom-scrollbar">
<div
className="console-output p-3 font-mono whitespace-pre-wrap"
data-testid="compilation-text"
>
{output || (
<div className="text-muted-foreground italic">
Compilation output will appear here...
</div>
)}
</div>
</div>
</div>
);
}
|