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
118 lines
4.4 KiB
TypeScript
118 lines
4.4 KiB
TypeScript
/**
|
|
* Key Card component for displaying SSH keys in grid/list view
|
|
*/
|
|
|
|
import { Copy,ExternalLink,Pencil,Trash2 } from 'lucide-react';
|
|
import React from 'react';
|
|
import { useI18n } from '../../application/i18n/I18nProvider';
|
|
import { cn } from '../../lib/utils';
|
|
import { SSHKey } from '../../types';
|
|
import { Button } from '../ui/button';
|
|
import {
|
|
VaultEntityIcon,
|
|
vaultCertificateIconClass,
|
|
vaultKeyIconClass,
|
|
} from '../vault/VaultEntityIcon';
|
|
import {
|
|
ContextMenu,
|
|
ContextMenuContent,
|
|
ContextMenuItem,
|
|
ContextMenuSeparator,
|
|
ContextMenuTrigger,
|
|
} from '../ui/context-menu';
|
|
import { getKeyIcon,getKeyTypeDisplay } from './utils';
|
|
|
|
interface KeyCardProps {
|
|
keyItem: SSHKey;
|
|
viewMode: 'grid' | 'list';
|
|
isSelected: boolean;
|
|
isMac: boolean;
|
|
reorderProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
onClick: () => void;
|
|
onEdit: () => void;
|
|
onExport: () => void;
|
|
onCopyPublicKey: () => void;
|
|
onDelete: () => void;
|
|
}
|
|
|
|
export const KeyCard: React.FC<KeyCardProps> = ({
|
|
keyItem,
|
|
viewMode,
|
|
isSelected,
|
|
isMac,
|
|
reorderProps,
|
|
onClick,
|
|
onEdit,
|
|
onExport,
|
|
onCopyPublicKey,
|
|
onDelete,
|
|
}) => {
|
|
const { t } = useI18n();
|
|
return (
|
|
<ContextMenu>
|
|
<ContextMenuTrigger asChild>
|
|
<div
|
|
{...reorderProps}
|
|
className={cn(
|
|
reorderProps && "vault-drop-indicator-row",
|
|
"group cursor-pointer min-w-0 w-full max-w-full",
|
|
viewMode === 'grid'
|
|
? "soft-card elevate rounded-xl h-[68px] px-3 py-2"
|
|
: "h-14 px-3 py-2 hover:bg-secondary/60 rounded-lg transition-colors",
|
|
isSelected && "ring-2 ring-primary",
|
|
reorderProps?.className,
|
|
)}
|
|
onClick={onClick}
|
|
>
|
|
<div className="flex items-center gap-3 h-full min-w-0">
|
|
<VaultEntityIcon
|
|
className={keyItem.certificate
|
|
? vaultCertificateIconClass
|
|
: vaultKeyIconClass}
|
|
icon={getKeyIcon(keyItem)}
|
|
/>
|
|
<div className="min-w-0 flex-1 basis-0 overflow-hidden">
|
|
<div className="block max-w-full truncate text-sm font-semibold">{keyItem.label}</div>
|
|
<div className="block max-w-full truncate text-[11px] font-mono text-muted-foreground">
|
|
Type {getKeyTypeDisplay(keyItem, isMac)}
|
|
</div>
|
|
</div>
|
|
<div className="flex items-center gap-1 opacity-0 group-hover:opacity-100 transition-opacity shrink-0">
|
|
<Button
|
|
size="icon"
|
|
variant="ghost"
|
|
className="h-8 w-8"
|
|
onClick={(e) => {
|
|
e.stopPropagation();
|
|
onEdit();
|
|
}}
|
|
>
|
|
<Pencil size={14} />
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</ContextMenuTrigger>
|
|
<ContextMenuContent>
|
|
<ContextMenuItem onClick={onCopyPublicKey} disabled={!keyItem.publicKey}>
|
|
<Copy size={14} className="mr-2" />
|
|
{t("action.copyPublicKey")}
|
|
</ContextMenuItem>
|
|
<ContextMenuItem onClick={onExport}>
|
|
<ExternalLink size={14} className="mr-2" />
|
|
{t("action.keyExport")}
|
|
</ContextMenuItem>
|
|
<ContextMenuItem onClick={onEdit}>
|
|
<Pencil size={14} className="mr-2" />
|
|
{t("action.edit")}
|
|
</ContextMenuItem>
|
|
<ContextMenuSeparator />
|
|
<ContextMenuItem onClick={onDelete} className="text-destructive focus:text-destructive">
|
|
<Trash2 size={14} className="mr-2" />
|
|
{t("action.delete")}
|
|
</ContextMenuItem>
|
|
</ContextMenuContent>
|
|
</ContextMenu>
|
|
);
|
|
};
|