Spaces:
Running
Running
File size: 4,920 Bytes
e6ce630 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 |
import { useState, useRef, useEffect } from 'react';
import ImageCard from './ImageCard';
import BatchMenu from './BatchMenu';
import { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger } from "../ui/tooltip"
import { Copy, Check } from 'lucide-react';
import { Button } from '../ui/button';
const formatTimestamp = (timestamp: string | undefined) => {
if (!timestamp) return '';
const date = new Date(timestamp);
if (isNaN(date.getTime())) return '';
const now = new Date();
const hours = date.getHours().toString().padStart(2, '0');
const minutes = date.getMinutes().toString().padStart(2, '0');
const day = date.getDate().toString().padStart(2, '0');
const month = (date.getMonth() + 1).toString().padStart(2, '0');
const year = date.getFullYear();
const timeString = `${hours}:${minutes}`;
const dateString = date.getFullYear() === now.getFullYear()
? `${day}-${month}`
: `${day}-${month}-${year}`;
return `${timeString} ${dateString}`;
};
interface Image {
url: string;
}
interface Batch {
id: number;
prompt: string;
width: number;
height: number;
model: string;
images: Image[];
createdAt?: string;
status?: string;
}
const modelNames: { [key: string]: string } = {
'runware:100@1': 'FLUX SCHNELL',
'runware:101@1': 'FLUX DEV'
};
interface ImageBatchProps {
batch: Batch;
onDelete: (id: number) => void;
onRemix: (batch: Batch) => void;
}
export default function ImageBatch({ batch, onDelete, onRemix }: ImageBatchProps) {
const [copied, setCopied] = useState(false);
const [isPromptTruncated, setIsPromptTruncated] = useState(false);
const promptRef = useRef<HTMLParagraphElement>(null);
const modelName = modelNames[batch.model] || batch.model;
const [elapsedTime, setElapsedTime] = useState(0);
useEffect(() => {
const checkTruncation = () => {
if (promptRef.current) {
setIsPromptTruncated(
promptRef.current.scrollWidth > promptRef.current.clientWidth
);
}
};
checkTruncation();
window.addEventListener('resize', checkTruncation);
return () => {
window.removeEventListener('resize', checkTruncation);
};
}, [batch.prompt]);
useEffect(() => {
let interval: NodeJS.Timeout;
if (batch.status === 'pending') {
const startTime = new Date(batch.createdAt || Date.now()).getTime();
interval = setInterval(() => {
const now = Date.now();
setElapsedTime((now - startTime) / 1000);
}, 100);
}
return () => clearInterval(interval);
}, [batch.status, batch.createdAt]);
const handleDelete = () => {
onDelete(batch.id);
};
const handleRemix = () => {
onRemix(batch);
};
const copyToClipboard = () => {
navigator.clipboard.writeText(batch.prompt).then(() => {
setCopied(true);
setTimeout(() => setCopied(false), 2000);
});
};
return (
<div className="mb-4 rounded-xl p-3 bg-[#ededed] dark:bg-gray-900">
<div className="flex flex-col">
<div className="flex items-center justify-between">
<TooltipProvider delayDuration={0}>
<Tooltip>
<TooltipTrigger asChild>
<p ref={promptRef} className="text-[#141414] dark:text-white text-xs font-medium truncate cursor-default max-w-[95%]">{batch.prompt}</p>
</TooltipTrigger>
{isPromptTruncated && (
<TooltipContent side="bottom" align="center" className="max-w-md">
<p className="text-sm">{batch.prompt}</p>
</TooltipContent>
)}
</Tooltip>
</TooltipProvider>
<div className="flex items-center gap-2">
<Button
variant="ghost"
size="icon"
className="h-6 w-6 flex-shrink-0"
onClick={copyToClipboard}
>
{copied ? <Check className="h-3 w-3" /> : <Copy className="h-3 w-3" />}
</Button>
<BatchMenu onDelete={handleDelete} onRemix={handleRemix} />
</div>
</div>
<p className="text-[#141414] dark:text-white text-[10px] mt-0">
{modelName} | {batch.width}x{batch.height}{formatTimestamp(batch.createdAt) && ` • ${formatTimestamp(batch.createdAt)}`}
</p>
</div>
<div className="grid grid-cols-2 sm:grid-cols-3 md:grid-cols-4 gap-2 mt-2">
{batch.images.map((image, index) => (
<ImageCard
key={index}
image={image}
batchImages={batch.images}
batchId={batch.id}
status={batch.status}
width={batch.width}
height={batch.height}
elapsedTime={elapsedTime}
/>
))}
</div>
{batch.status === 'error' && (
<p className="text-red-500 mt-2">Error generating images. Please try again.</p>
)}
</div>
);
}
|