File size: 17,549 Bytes
e73ce34 | 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 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 | // Description: StructureGenView component for generating chemical structures from molecular formulas.
import { useState } from "react";
import { motion, AnimatePresence } from "motion/react";
import MoleculeCard from "../common/MoleculeCard";
import { ToolSkeleton } from "@/components/feedback/ToolSkeleton";
import { GlassErrorCard } from "@/components/feedback/GlassErrorCard";
import { EmptyState } from "@/components/feedback/EmptyState";
import { getErrorMessage } from "@/lib/error-messages";
import toolsService from "../../services/toolsService";
import {
AlertCircle,
Atom,
Check,
Copy,
Download,
FlaskConical,
Info,
Loader2,
XCircle,
} from "lucide-react";
import { Button } from "@/components/ui/button";
import { Input } from "@/components/ui/input";
// --- Animation Variants ---
const containerVariant = {
// For overall component fade-in
hidden: { opacity: 0 },
visible: { opacity: 1, transition: { duration: 0.5, ease: "easeOut" } },
};
const contentSectionVariant = {
// For main sections like form, results
hidden: { opacity: 0, y: 20 },
visible: {
opacity: 1,
y: 0,
transition: { duration: 0.6, ease: [0.25, 1, 0.5, 1] },
},
};
const resultsContainerVariants = {
hidden: { opacity: 0 },
visible: {
opacity: 1,
transition: { staggerChildren: 0.05, delayChildren: 0.1 },
},
};
const resultCardVariant = {
// Renamed from depictionCardVariant
hidden: { opacity: 0, y: 15, scale: 0.97 },
visible: {
opacity: 1,
y: 0,
scale: 1,
transition: { duration: 0.4, ease: "easeOut" },
},
};
const StructureGenView = () => {
// --- State ---
const [formula, setFormula] = useState("");
const [isLoading, setIsLoading] = useState(false);
const [error, setError] = useState(null);
const [structures, setStructures] = useState([]);
const [selectedStructures, setSelectedStructures] = useState([]);
const [generationResult, setGenerationResult] = useState(null); // Store full result with metadata
// --- Functions ---
const handleGenerateStructures = async (e) => {
e.preventDefault();
if (!formula) {
setError("Please enter a molecular formula");
return;
}
setIsLoading(true);
setError(null);
setStructures([]);
setSelectedStructures([]);
setGenerationResult(null);
try {
const result = await toolsService.generateStructures(formula);
// Handle different API response formats
if (typeof result === "string") {
setError(result);
setStructures([]);
setGenerationResult(null);
} else if (result?.output?.structures && Array.isArray(result.output.structures)) {
setStructures(result.output.structures);
setGenerationResult(result.output);
} else if (result?.output && Array.isArray(result.output)) {
// Legacy format - just structures array
setStructures(result.output);
setGenerationResult(null);
} else if (Array.isArray(result)) {
// Direct array format
setStructures(result);
setGenerationResult(null);
} else {
console.error("Unexpected API response format:", result);
setError("Unexpected response format from API");
setStructures([]);
setGenerationResult(null);
}
} catch (err) {
console.error("Error generating structures:", err);
setError(getErrorMessage("tools", err));
setStructures([]);
setGenerationResult(null);
} finally {
setIsLoading(false);
}
};
const toggleSelectStructure = (smiles) => {
setSelectedStructures((prev) =>
prev.includes(smiles) ? prev.filter((s) => s !== smiles) : [...prev, smiles]
);
};
const downloadSelectedStructures = () => {
if (selectedStructures.length === 0) return;
const content = selectedStructures.join("\n");
const blob = new Blob([content], { type: "text/plain" });
const url = URL.createObjectURL(blob);
const a = document.createElement("a");
a.href = url;
a.download = `${formula || "generated"}-structures.smi`; // Changed extension to smi
document.body.appendChild(a);
a.click();
document.body.removeChild(a);
URL.revokeObjectURL(url);
};
// --- End Functions ---
return (
<motion.div
className="space-y-6 lg:space-y-8"
variants={containerVariant} // Animate overall container
initial="hidden"
animate="visible"
>
{/* Form Container - Apply glass, adaptive styles */}
<motion.div
className="glass p-5 sm:p-6 rounded-xl shadow-lg border border-border dark:border-border"
variants={contentSectionVariant} // Animate form section
>
{/* Use adaptive text color */}
<h2 className="text-xl font-semibold text-primary mb-4">
Structure Generation (from Formula)
</h2>
<form onSubmit={handleGenerateStructures} className="space-y-4">
{/* Input */}
<div>
{/* Use adaptive label color */}
<label
htmlFor="formula-input"
className="block text-sm font-medium text-muted-foreground mb-1"
>
Molecular Formula
</label>
{/* Form input with proper dark mode styling */}
<Input
id="formula-input"
type="text"
value={formula}
onChange={(e) => setFormula(e.target.value)}
placeholder="e.g., C6H6"
className="w-full"
required
/>
{/* Use adaptive text color */}
<p className="mt-1 text-xs text-slate-500 dark:text-slate-400">
Enter a molecular formula (e.g., C6H6, C8H10). Max 10 heavy atoms. Results limited to
first 1000 structures when total exceeds this limit.
</p>
</div>
{/* Buttons */}
<div className="flex flex-wrap gap-3 pt-2">
{/* Use adaptive button classes */}
<Button
type="submit"
disabled={!formula || isLoading}
className="px-4 py-2 rounded-md font-medium bg-sky-600 hover:bg-sky-700 text-white dark:bg-blue-600 dark:hover:bg-blue-700 focus:outline-hidden focus:ring-2 focus:ring-sky-500 focus:ring-offset-2 focus:ring-offset-background transition-all duration-200 disabled:opacity-60 disabled:cursor-not-allowed inline-flex items-center"
>
{isLoading ? (
<>
<Loader2 className="mr-2 h-4 w-4 animate-spin" />
Generating...
</>
) : (
<>
<FlaskConical className="mr-2 h-5 w-5" />
Generate Structures
</>
)}
</Button>
{/* Show selection buttons only when structures are present */}
<AnimatePresence>
{Array.isArray(structures) && structures.length > 0 && (
<motion.div
className="flex flex-wrap gap-3"
initial={{ opacity: 0, y: 10 }}
animate={{ opacity: 1, y: 0 }}
exit={{ opacity: 0 }}
transition={{ delay: 0.1 }}
>
<Button
variant="secondary"
type="button"
onClick={downloadSelectedStructures}
disabled={selectedStructures.length === 0}
className="px-3 py-1.5 text-sm rounded-md font-medium inline-flex items-center"
>
<Download className="mr-1.5 h-4 w-4" />
Download Selected ({selectedStructures.length})
</Button>
<Button
variant="secondary"
type="button"
onClick={() => setSelectedStructures([...structures])}
className="px-3 py-1.5 text-sm rounded-md font-medium inline-flex items-center"
>
<Copy className="mr-1.5 h-4 w-4" />
Select All
</Button>
<Button
variant="secondary"
type="button"
onClick={() => setSelectedStructures([])}
disabled={selectedStructures.length === 0}
className="px-3 py-1.5 text-sm rounded-md font-medium inline-flex items-center"
>
<XCircle className="mr-1.5 h-4 w-4" /> {/* Changed Icon */}
Deselect All
</Button>
</motion.div>
)}
</AnimatePresence>
</div>
</form>
</motion.div>
{/* Loading State */}
<AnimatePresence>
{isLoading && structures.length === 0 && <ToolSkeleton variant="molecule" />}
</AnimatePresence>
{/* Error Display */}
{error && !isLoading && (
<GlassErrorCard
message={error}
onRetry={() => {
setError(null);
document.getElementById("formula-input")?.focus();
}}
/>
)}
{/* Results Grid Section - Animate entrance */}
{Array.isArray(structures) && structures.length > 0 && !isLoading && (
<motion.div
className="space-y-4"
variants={contentSectionVariant} // Use section variant
initial="hidden"
animate="visible"
>
{/* Generation Summary */}
{generationResult && (
<motion.div
className="glass p-4 rounded-lg border border-border dark:border-border"
initial={{ opacity: 0, y: 10 }}
animate={{ opacity: 1, y: 0 }}
transition={{ delay: 0.1 }}
>
<h3 className="text-lg font-medium text-foreground mb-3">Generation Summary</h3>
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-4 mb-4">
<div className="text-center">
<div className="text-2xl font-bold text-primary">
{generationResult.total_count?.toLocaleString()}
</div>
<div className="text-sm text-muted-foreground">Total Possible</div>
</div>
<div className="text-center">
<div className="text-2xl font-bold text-primary">
{generationResult.generated_count?.toLocaleString()}
</div>
<div className="text-sm text-muted-foreground">Generated</div>
</div>
<div className="text-center">
<div className="text-2xl font-bold text-primary">{selectedStructures.length}</div>
<div className="text-sm text-muted-foreground">Selected</div>
</div>
<div className="text-center">
<div
className={`text-sm px-2 py-1 rounded-sm ${generationResult.limit_applied ? "bg-orange-100 dark:bg-orange-900/30 text-orange-700 dark:text-orange-300" : "bg-green-100 dark:bg-green-900/30 text-green-700 dark:text-green-300"}`}
>
{generationResult.limit_applied ? "Limited" : "Complete"}
</div>
<div className="text-sm text-muted-foreground">Results</div>
</div>
</div>
{/* Generation Settings */}
{generationResult.settings && (
<div>
<h4 className="text-sm font-medium text-foreground mb-2">Generation Settings</h4>
<div className="space-y-1">
{Object.entries(generationResult.settings).map(([flag, description]) => (
<div key={flag} className="text-xs flex">
<code className="bg-slate-200 dark:bg-slate-700 px-1.5 py-0.5 rounded-sm mr-2 font-mono text-primary">
{flag}
</code>
<span className="text-muted-foreground">{description}</span>
</div>
))}
</div>
</div>
)}
{generationResult.limit_applied && (
<div className="mt-3 p-3 bg-orange-50 dark:bg-orange-900/20 border border-orange-200 dark:border-orange-800/50 rounded-sm text-sm">
<Info className="inline h-4 w-4 mr-1.5 text-orange-600 dark:text-orange-400" />
<span className="text-orange-700 dark:text-orange-300">
Results limited to first {generationResult.generated_count} structures out of{" "}
{generationResult.total_count?.toLocaleString()} total possible isomers.
</span>
</div>
)}
</motion.div>
)}
<div className="flex flex-col sm:flex-row items-start sm:items-center justify-between gap-2">
{/* Use adaptive text color */}
<h3 className="text-lg font-medium text-foreground">
Generated Structures ({structures.length})
</h3>
{/* Use adaptive text color */}
<div className="text-muted-foreground flex items-center text-sm shrink-0">
<Atom className="mr-1.5 h-4 w-4" />
Formula:{" "}
<code className="ml-1.5 text-xs bg-slate-200 dark:bg-slate-700 px-1.5 py-0.5 rounded-sm">
{formula}
</code>
</div>
</div>
{/* Apply stagger container to grid */}
<motion.div
className="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-4" // Responsive grid
variants={resultsContainerVariants}
initial="hidden"
animate="visible"
>
{structures.map((smiles, index) => (
// Animate each card
<motion.div
key={smiles + index} // Use SMILES in key for better stability if list order changes
variants={resultCardVariant}
layout // Animate layout changes if selection modifies appearance drastically
// Apply adaptive border for selection state
className={`rounded-lg transition-all duration-200 cursor-pointer relative group ${
selectedStructures.includes(smiles)
? "ring-2 ring-offset-2 ring-offset-background ring-primary" // Use ring for selection
: "ring-1 ring-transparent hover:ring-slate-300 dark:hover:ring-slate-600" // Subtle hover ring
}`}
onClick={() => toggleSelectStructure(smiles)}
>
{/* Ensure MoleculeCard is theme-aware and handles clicks appropriately */}
<MoleculeCard
smiles={smiles}
title={`Isomer ${index + 1}`}
showActions={false} // Disable internal actions if selection is handled here
className="pointer-events-none" // Prevent card actions interfering with selection click
/>
{/* Selection Checkmark Overlay */}
<AnimatePresence>
{selectedStructures.includes(smiles) && (
<motion.div
initial={{ opacity: 0, scale: 0.5 }}
animate={{ opacity: 1, scale: 1 }}
exit={{ opacity: 0, scale: 0.5 }}
className="absolute top-2 right-2 z-10 p-1 bg-sky-600 dark:bg-blue-600 rounded-full shadow-md"
>
<Check className="h-4 w-4 text-white" />
</motion.div>
)}
</AnimatePresence>
</motion.div>
))}
</motion.div>
</motion.div>
)}
{/* Initial Placeholder / Info - Adaptive */}
{/* This section is preserved */}
{Array.isArray(structures) && structures.length === 0 && !isLoading && !error && (
// Use adaptive styles
<motion.div
className="bg-sky-50 dark:bg-blue-900/20 border border-sky-200 dark:border-blue-800/50 rounded-lg p-6 text-slate-600 dark:text-gray-300 text-sm flex items-start space-x-4"
initial={{ opacity: 0 }}
animate={{ opacity: 1 }}
transition={{ delay: 0.3 }} // Simple fade-in
>
<Info className="h-6 w-6 text-sky-700 dark:text-blue-400 shrink-0 mt-0.5" />
<div>
<h3 className="text-base font-medium text-sky-800 dark:text-blue-300 mb-1.5">
About Structure Generation
</h3>
<p className="mb-2">
This tool uses the SURGE algorithm to generate possible chemical structures matching
the given molecular formula.
</p>
<p className="mb-2 text-xs">
Due to computational complexity, generation is limited (e.g., max 10 heavy atoms).
</p>
<p className="text-xs text-slate-500 dark:text-gray-400">
Ref: McKay, B.D., Yirik, M.A. & Steinbeck, C. Surge: a fast open-source chemical
graph generator. J Cheminform 14, 24 (2022).
</p>
</div>
</motion.div>
)}
</motion.div> // End main container div
);
};
export default StructureGenView;
|