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
88 lines
3.1 KiB
TypeScript
88 lines
3.1 KiB
TypeScript
/**
|
|
* Identity Card component for displaying saved identities
|
|
*/
|
|
|
|
import { Pencil,User } from 'lucide-react';
|
|
import React from 'react';
|
|
import { useI18n } from '../../application/i18n/I18nProvider';
|
|
import { cn } from '../../lib/utils';
|
|
import { Identity } from '../../types';
|
|
import { Button } from '../ui/button';
|
|
import { VaultEntityIcon, vaultIdentityIconClass } from '../vault/VaultEntityIcon';
|
|
|
|
interface IdentityCardProps {
|
|
identity: Identity;
|
|
viewMode: 'grid' | 'list';
|
|
isSelected: boolean;
|
|
reorderProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
onClick: () => void;
|
|
}
|
|
|
|
export const IdentityCard: React.FC<IdentityCardProps> = ({
|
|
identity,
|
|
viewMode,
|
|
isSelected,
|
|
reorderProps,
|
|
onClick,
|
|
}) => {
|
|
const { t } = useI18n();
|
|
|
|
const hasPassword = !!identity.password;
|
|
const hasKey = !!identity.keyId;
|
|
const keyKind = identity.authMethod === 'certificate' ? 'certificate' : 'key';
|
|
|
|
const summary = hasPassword && hasKey
|
|
? (keyKind === 'certificate'
|
|
? t('keychain.identity.summary.passwordAndCertificate')
|
|
: t('keychain.identity.summary.passwordAndKey'))
|
|
: hasKey
|
|
? (keyKind === 'certificate'
|
|
? t('keychain.identity.summary.certificate')
|
|
: t('keychain.identity.summary.key'))
|
|
: hasPassword
|
|
? t('keychain.identity.summary.password')
|
|
: t('keychain.identity.summary.none');
|
|
|
|
return (
|
|
<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={vaultIdentityIconClass}
|
|
icon={<User size={18} />}
|
|
/>
|
|
<div className="min-w-0 flex-1 basis-0 overflow-hidden">
|
|
<div className="block max-w-full truncate text-sm font-semibold">{identity.label || 'Add a label...'}</div>
|
|
<div className="block max-w-full truncate text-[11px] font-mono text-muted-foreground">
|
|
{summary}
|
|
</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();
|
|
onClick();
|
|
}}
|
|
>
|
|
<Pencil size={14} />
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|