[Init] Initial commit - NetMesh terminal manager
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

This commit is contained in:
2026-09-13 18:24:01 +08:00
commit 3c72efcb7f
3255 changed files with 907009 additions and 0 deletions

View File

@@ -0,0 +1,114 @@
import React, { useRef } from "react";
import { Button } from "../ui/button";
import {
Dialog,
DialogContent,
DialogDescription,
DialogFooter,
DialogHeader,
DialogTitle,
} from "../ui/dialog";
import type { SftpClipboardUploadRequest } from "./clipboardUpload";
import {
confirmSftpClipboardUpload,
shouldStartClipboardUploadConfirm,
sftpClipboardUploadStore,
} from "./clipboardUpload";
interface SftpClipboardUploadDialogProps {
request: SftpClipboardUploadRequest | null;
currentPath?: string;
onUploaded?: (targetPath: string) => void;
}
/**
* Confirmation dialog for OS-clipboard / path-backed paste uploads.
*
* Important: clear the store request *before* awaiting the transfer so the
* modal overlay does not block the app for the entire upload (issue #2478).
* Progress and cancellation live in the transfer queue after handoff.
*/
export const SftpClipboardUploadDialog: React.FC<SftpClipboardUploadDialogProps> = ({
request,
currentPath,
onUploaded,
}) => {
// Double-click guard is scoped to the request identity so a later paste can
// confirm while an earlier background transfer is still running.
const confirmStartedForRef = useRef<SftpClipboardUploadRequest | null>(null);
const open = !!request;
const fileCount = request?.files.length ?? 0;
const previewFiles = request?.files.slice(0, 5) ?? [];
const remainingCount = Math.max(0, fileCount - previewFiles.length);
const handleClose = (nextOpen: boolean) => {
if (nextOpen) return;
sftpClipboardUploadStore.clear(request);
};
const handleConfirm = async () => {
if (!request || !shouldStartClipboardUploadConfirm(request, confirmStartedForRef.current)) {
return;
}
const confirmedRequest = request;
confirmStartedForRef.current = confirmedRequest;
try {
// Close immediately so side-panel / standalone SFTP stay interactive while
// the existing background transfer path runs.
await confirmSftpClipboardUpload({ request: confirmedRequest, onUploaded });
} catch {
// Transfer handlers toast failures; keep this path free of unhandled
// rejections after the dialog has already closed.
}
};
return (
<Dialog open={open} onOpenChange={handleClose}>
<DialogContent className="max-w-[calc(100vw-2rem)] overflow-hidden sm:max-w-md">
<DialogHeader className="min-w-0 pr-6">
<DialogTitle>Upload clipboard files?</DialogTitle>
<DialogDescription>
Upload {fileCount} item{fileCount === 1 ? "" : "s"} to:
</DialogDescription>
</DialogHeader>
<div className="min-w-0 space-y-3">
<div className="min-w-0 rounded-md border border-border/60 bg-muted/30 px-3 py-2 text-sm font-mono break-all [overflow-wrap:anywhere]">
{request?.targetPath ?? currentPath}
</div>
{previewFiles.length > 0 && (
<div className="max-h-40 min-w-0 overflow-auto rounded-md border border-border/60">
{previewFiles.map((file) => (
<div
key={file.path}
className="flex min-w-0 items-center border-b border-border/40 px-3 py-2 text-sm last:border-b-0"
>
<span className="min-w-0 truncate" title={file.name}>
{file.name}
</span>
</div>
))}
{remainingCount > 0 && (
<div className="px-3 py-2 text-sm text-muted-foreground">
and {remainingCount} more...
</div>
)}
</div>
)}
</div>
<DialogFooter>
<Button
variant="outline"
onClick={() => sftpClipboardUploadStore.clear(request)}
>
Cancel
</Button>
<Button onClick={handleConfirm} disabled={!request}>
Upload
</Button>
</DialogFooter>
</DialogContent>
</Dialog>
);
};