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
2.9 KiB
TypeScript
88 lines
2.9 KiB
TypeScript
/**
|
|
* ConversationExport - Dropdown button for exporting chat sessions
|
|
*
|
|
* Small download icon button with a dropdown offering Markdown, JSON,
|
|
* and Plain Text export formats.
|
|
*/
|
|
|
|
import { Download, FileJson, FileText, FileType } from 'lucide-react';
|
|
import React, { useCallback } from 'react';
|
|
import { useI18n } from '../../application/i18n/I18nProvider';
|
|
import type { AISession } from '../../infrastructure/ai/types';
|
|
import { Button } from '../ui/button';
|
|
import {
|
|
Dropdown,
|
|
DropdownContent,
|
|
DropdownTrigger,
|
|
} from '../ui/dropdown';
|
|
import { Tooltip, TooltipContent, TooltipTrigger } from '../ui/tooltip';
|
|
|
|
interface ConversationExportProps {
|
|
session: AISession | null;
|
|
onExport: (format: 'md' | 'json' | 'txt') => void;
|
|
className?: string;
|
|
}
|
|
|
|
const EXPORT_OPTIONS = [
|
|
{ format: 'md' as const, labelKey: 'ai.chat.exportMarkdown' as const, icon: FileText },
|
|
{ format: 'json' as const, labelKey: 'ai.chat.exportJSON' as const, icon: FileJson },
|
|
{ format: 'txt' as const, labelKey: 'ai.chat.exportPlainText' as const, icon: FileType },
|
|
];
|
|
|
|
const ConversationExport: React.FC<ConversationExportProps> = ({
|
|
session,
|
|
onExport,
|
|
className,
|
|
}) => {
|
|
const { t } = useI18n();
|
|
const handleExport = useCallback(
|
|
(format: 'md' | 'json' | 'txt') => {
|
|
onExport(format);
|
|
},
|
|
[onExport],
|
|
);
|
|
|
|
const hasMessages = session && session.messages.length > 0;
|
|
|
|
return (
|
|
<Dropdown>
|
|
<Tooltip>
|
|
<TooltipTrigger asChild>
|
|
<DropdownTrigger asChild>
|
|
<Button
|
|
variant="ghost"
|
|
size="icon"
|
|
className={className ?? 'h-7 w-7 rounded-md text-muted-foreground/70 hover:bg-accent/60 hover:text-foreground'}
|
|
disabled={!hasMessages}
|
|
>
|
|
<Download size={14} />
|
|
</Button>
|
|
</DropdownTrigger>
|
|
</TooltipTrigger>
|
|
<TooltipContent>{t('ai.chat.exportConversation')}</TooltipContent>
|
|
</Tooltip>
|
|
<DropdownContent
|
|
align="end"
|
|
sideOffset={6}
|
|
className="w-40 rounded-xl border border-border/60 bg-popover p-1.5 text-popover-foreground shadow-lg supports-[backdrop-filter]:bg-popover/95 supports-[backdrop-filter]:backdrop-blur-sm"
|
|
>
|
|
<div className="px-2 py-1 text-[10px] font-medium uppercase tracking-[0.16em] text-muted-foreground/70">
|
|
{t('ai.chat.exportAs')}
|
|
</div>
|
|
{EXPORT_OPTIONS.map(({ format, labelKey, icon: Icon }) => (
|
|
<button
|
|
key={format}
|
|
onClick={() => handleExport(format)}
|
|
className="w-full flex items-center gap-2 px-2 py-1.5 text-[13px] rounded-lg transition-colors cursor-pointer hover:bg-accent hover:text-accent-foreground"
|
|
>
|
|
<Icon size={13} className="shrink-0 text-muted-foreground" />
|
|
<span>{t(labelKey)}</span>
|
|
</button>
|
|
))}
|
|
</DropdownContent>
|
|
</Dropdown>
|
|
);
|
|
};
|
|
|
|
export default React.memo(ConversationExport);
|