Some checks failed
build-packages / resolve bundled mosh-client (push) Has been cancelled
build-packages / resolve bundled et-client (push) Has been cancelled
build-packages / build-macos (push) Has been cancelled
build-packages / build-windows (push) Has been cancelled
build-packages / build-linux-x64 (push) Has been cancelled
build-packages / build-linux-arm64 (push) Has been cancelled
build-packages / release (push) Has been cancelled
build-packages / update Nix release metadata (push) Has been cancelled
build-packages / bump homebrew tap (push) Has been cancelled
test / lint-and-test (push) Has been cancelled
AI automation / Route event (push) Has been cancelled
AI automation / Hand reopened issue to maintainers (push) Has been cancelled
AI automation / Clean source issue state (push) Has been cancelled
AI automation / Reconcile handoffs (push) Has been cancelled
AI automation / Classify issue (push) Has been cancelled
AI automation / Claude Code smoke (push) Has been cancelled
AI automation / Review issue follow-up (push) Has been cancelled
AI automation / Publish issue follow-up (push) Has been cancelled
AI automation / Implement with Claude Code (push) Has been cancelled
AI automation / Publish implement PR (push) Has been cancelled
AI automation / Continue queued issue comments (push) Has been cancelled
AI automation / Codex review loop (push) Has been cancelled
AI automation / Publish Codex fix (push) Has been cancelled
AI automation / Clear Codex dispatch marker (push) Has been cancelled
AI automation / Own PR re-request Codex (push) Has been cancelled
AI automation / External PR re-request Codex (push) Has been cancelled
AI automation / Poll Codex reaction / retry (push) Has been cancelled
build-et-binaries / build-linux-x64 (push) Has been cancelled
build-et-binaries / build-linux-arm64 (push) Has been cancelled
build-et-binaries / build-macos-universal (push) Has been cancelled
build-et-binaries / build-windows-x64 (push) Has been cancelled
build-et-binaries / release (push) Has been cancelled
73 lines
2.5 KiB
TypeScript
73 lines
2.5 KiB
TypeScript
import React from 'react';
|
|
import { useI18n } from '@/application/i18n/I18nProvider';
|
|
import type { ScriptRun } from '@/types/global/netcatty-bridge-script.d.ts';
|
|
import {
|
|
Dialog,
|
|
DialogContent,
|
|
DialogHeader,
|
|
DialogTitle,
|
|
} from '@/components/ui/dialog';
|
|
import { cn } from '@/lib/utils.ts';
|
|
|
|
export interface ScriptRunLogDialogProps {
|
|
run: ScriptRun | null;
|
|
open: boolean;
|
|
onOpenChange: (open: boolean) => void;
|
|
}
|
|
|
|
function formatDuration(startedAt: number, endedAt?: number) {
|
|
const ms = (endedAt ?? Date.now()) - startedAt;
|
|
const seconds = Math.floor(ms / 1000);
|
|
const minutes = Math.floor(seconds / 60);
|
|
const rest = seconds % 60;
|
|
return `${String(minutes).padStart(2, '0')}:${String(rest).padStart(2, '0')}`;
|
|
}
|
|
|
|
export const ScriptRunLogDialog: React.FC<ScriptRunLogDialogProps> = ({
|
|
run,
|
|
open,
|
|
onOpenChange,
|
|
}) => {
|
|
const { t } = useI18n();
|
|
if (!run) return null;
|
|
|
|
const label = run.scriptLabel || run.scriptId || t('scripts.running.unnamed');
|
|
const elapsed = formatDuration(run.startedAt, run.endedAt);
|
|
const statusLabel = t(`scripts.running.status.${run.status}`);
|
|
const logText = run.logs.map((entry) => entry.message).join('\n');
|
|
|
|
return (
|
|
<Dialog open={open} onOpenChange={onOpenChange}>
|
|
<DialogContent className="max-w-2xl">
|
|
<DialogHeader>
|
|
<DialogTitle>{t('scripts.running.logTitle', { name: label })}</DialogTitle>
|
|
</DialogHeader>
|
|
<div className="space-y-3">
|
|
<div className="flex flex-wrap items-center gap-x-2 gap-y-1 text-xs text-muted-foreground">
|
|
<span>{statusLabel}</span>
|
|
<span aria-hidden>·</span>
|
|
<span>{t('scripts.running.operationsCount', { count: run.stepIndex ?? 0 })}</span>
|
|
<span aria-hidden>·</span>
|
|
<span>{t('scripts.running.elapsed', { elapsed })}</span>
|
|
</div>
|
|
{run.error ? (
|
|
<div className="text-xs text-destructive">{run.error}</div>
|
|
) : null}
|
|
{run.waitingFor ? (
|
|
<div className="text-xs text-muted-foreground">
|
|
{t('scripts.running.waitingFor', { pattern: run.waitingFor })}
|
|
</div>
|
|
) : null}
|
|
<pre className={cn(
|
|
'text-xs bg-secondary/40 rounded-md p-3 max-h-[min(60vh,420px)] overflow-auto whitespace-pre-wrap font-mono leading-relaxed',
|
|
!logText && 'text-muted-foreground italic',
|
|
)}
|
|
>
|
|
{logText || t('scripts.running.logEmpty')}
|
|
</pre>
|
|
</div>
|
|
</DialogContent>
|
|
</Dialog>
|
|
);
|
|
};
|