30d3561726
- 将 QrCodePreview、ImageUploader 移动到 QrCode/components/ - 将 DecodeResultPaper、Base64ConverterSection、TextMode 移动到 Base64Converter/components/ - 提取 useTextMode Hook,遵循 UI + Hook 分离模式 - 简化 SwitchButtonGroup 组件,提取常量到外部 Co-authored-by: Cursor <cursoragent@cursor.com>
97 lines
3.2 KiB
TypeScript
97 lines
3.2 KiB
TypeScript
import { Button } from '@/components/ui/button';
|
|
import {
|
|
Dialog,
|
|
DialogContent,
|
|
DialogDescription,
|
|
DialogFooter,
|
|
DialogHeader,
|
|
DialogTitle,
|
|
} from '@/components/ui/dialog';
|
|
import { Badge } from '@/components/ui/badge';
|
|
import { AlertTriangle } from 'lucide-react';
|
|
import type { StorageCleanerOptions } from '@/types/storage';
|
|
import { useI18n } from '@/utils/chromeI18n';
|
|
import { cn } from '@/lib/utils';
|
|
|
|
export interface StorageCleanerConfirmProps {
|
|
open: boolean;
|
|
onClose: () => void;
|
|
onConfirm: () => void;
|
|
options: StorageCleanerOptions;
|
|
}
|
|
|
|
export function StorageCleanerConfirm({
|
|
open,
|
|
onClose,
|
|
onConfirm,
|
|
options,
|
|
}: StorageCleanerConfirmProps) {
|
|
const { t } = useI18n('storageCleaner');
|
|
|
|
const selectedOptions = Object.entries(options)
|
|
.filter(([_, value]) => value)
|
|
.map(([key, _]) => t(`storageCleaner:options.${key as keyof StorageCleanerOptions}`));
|
|
|
|
return (
|
|
<Dialog open={open} onOpenChange={(isOpen) => !isOpen && onClose()}>
|
|
<DialogContent
|
|
className={cn(
|
|
'w-[90%] max-w-[340px] p-6 gap-0 rounded-2xl overflow-hidden shadow-xl border border-border bg-card text-card-foreground',
|
|
)}
|
|
>
|
|
<DialogHeader className="pt-1">
|
|
<DialogTitle className="text-center text-lg font-bold tracking-tight text-foreground">
|
|
{t('storageCleaner:confirmTitle')}
|
|
</DialogTitle>
|
|
</DialogHeader>
|
|
|
|
<div className="text-center py-4 flex flex-col items-center w-full max-w-[280px] mx-auto">
|
|
<DialogDescription className="mb-4 text-xs font-medium text-muted-foreground/90 leading-relaxed">
|
|
{t('storageCleaner:confirmDesc')}
|
|
</DialogDescription>
|
|
|
|
<div className="flex flex-wrap gap-1.5 justify-center mb-5 w-full">
|
|
{selectedOptions.map((label) => (
|
|
<Badge
|
|
key={label}
|
|
variant="secondary"
|
|
className="px-2.5 py-0.5 text-[11px] font-semibold border border-border/40 select-none bg-muted/60"
|
|
>
|
|
{label}
|
|
</Badge>
|
|
))}
|
|
</div>
|
|
|
|
<div className="inline-flex items-center justify-center gap-1.5 px-3.5 py-2 rounded-lg bg-destructive/5 border border-dashed border-destructive/20 w-full max-w-[240px]">
|
|
<AlertTriangle className="h-3.5 w-3.5 text-destructive shrink-0" />
|
|
<span className="text-[11px] font-bold text-destructive leading-none tracking-tight">
|
|
{t('storageCleaner:irreversible')}
|
|
</span>
|
|
</div>
|
|
</div>
|
|
|
|
<DialogFooter className="flex flex-col gap-2 w-full pt-2">
|
|
<Button
|
|
variant="destructive"
|
|
size="sm"
|
|
onClick={onConfirm}
|
|
className="w-full text-xs font-bold shadow-sm h-9"
|
|
>
|
|
{t('storageCleaner:confirmAction')}
|
|
</Button>
|
|
<Button
|
|
variant="outline"
|
|
size="sm"
|
|
onClick={onClose}
|
|
className="w-full text-xs font-semibold shadow-sm h-9 text-muted-foreground hover:text-foreground"
|
|
>
|
|
{t('common_buttons_cancel')}
|
|
</Button>
|
|
</DialogFooter>
|
|
</DialogContent>
|
|
</Dialog>
|
|
);
|
|
}
|
|
|
|
export default StorageCleanerConfirm;
|