Spaces:
Running
Running
File size: 9,914 Bytes
7a7972b | 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 | 'use client';
import { motion } from 'framer-motion';
import { useState } from 'react';
import { Sparkles, FileCode, Save, MessageSquare } from 'lucide-react';
export default function GeneratePage() {
const [featureDesc, setFeatureDesc] = useState('');
const [framework, setFramework] = useState('Auto-detect');
const [includeTests, setIncludeTests] = useState(true);
const [includeDocs, setIncludeDocs] = useState(true);
const [isGenerating, setIsGenerating] = useState(false);
const [result, setResult] = useState<string | null>(null);
const examples = [
'Create a user authentication system with JWT tokens',
'Build a REST API endpoint for file uploads',
'Add a caching layer with Redis',
'Generate unit tests for the auth module',
];
const handleGenerate = async (e: React.FormEvent) => {
e.preventDefault();
if (!featureDesc.trim()) return;
setIsGenerating(true);
try {
const response = await fetch('http://localhost:8000/api/chat', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
message: `Generate a complete implementation for: ${featureDesc}. Framework: ${framework}. Include tests: ${includeTests}. Include docs: ${includeDocs}.`,
}),
});
const data = await response.json();
setResult(data.answer || data.response || 'No response received');
} catch (error) {
console.error('Generation failed:', error);
setResult('Error connecting to backend');
} finally {
setIsGenerating(false);
}
};
return (
<div className="flex flex-col h-screen">
{/* Header */}
<motion.header
initial={{ y: -20, opacity: 0 }}
animate={{ y: 0, opacity: 1 }}
className="bg-slate-900/60 backdrop-blur-xl border border-white/10 rounded-2xl p-6 m-4 mb-0"
>
<div className="flex items-center gap-3 mb-4">
<div className="w-10 h-10 rounded-xl bg-gradient-to-br from-violet-400 to-fuchsia-500 flex items-center justify-center">
✨
</div>
<div>
<h1 className="font-bold text-lg">Generate Mode</h1>
<p className="text-sm text-slate-400">Create complete features from descriptions</p>
</div>
</div>
{/* Examples */}
<div className="flex flex-wrap gap-2 mb-4">
{examples.map((example) => (
<motion.button
key={example}
whileHover={{ scale: 1.02 }}
whileTap={{ scale: 0.98 }}
onClick={() => setFeatureDesc(example)}
className="px-3 py-1.5 bg-slate-800 rounded-lg text-sm text-slate-300 hover:bg-slate-700 transition-colors"
>
{example.slice(0, 40)}...
</motion.button>
))}
</div>
{/* Form */}
<form onSubmit={handleGenerate} className="space-y-4">
<div>
<label className="block text-sm text-slate-400 mb-2">Feature Description</label>
<textarea
value={featureDesc}
onChange={(e) => setFeatureDesc(e.target.value)}
placeholder="Describe the feature you want to build in detail..."
rows={4}
className="w-full px-4 py-3 bg-slate-800/50 border border-slate-700 rounded-xl focus:border-violet-500 focus:outline-none transition-colors resize-none"
/>
</div>
<div className="flex gap-4">
<div className="flex-1">
<label className="block text-sm text-slate-400 mb-2">Framework</label>
<select
value={framework}
onChange={(e) => setFramework(e.target.value)}
className="w-full px-4 py-3 bg-slate-800/50 border border-slate-700 rounded-xl focus:border-violet-500 focus:outline-none transition-colors"
>
<option>Auto-detect</option>
<option>FastAPI</option>
<option>Flask</option>
<option>Django</option>
<option>Express.js</option>
<option>React</option>
</select>
</div>
<label className="flex items-center gap-2 px-4 py-3 bg-slate-800/50 rounded-xl cursor-pointer">
<input
type="checkbox"
checked={includeTests}
onChange={(e) => setIncludeTests(e.target.checked)}
className="w-4 h-4 accent-violet-500"
/>
<span className="text-sm text-slate-300">Tests</span>
</label>
<label className="flex items-center gap-2 px-4 py-3 bg-slate-800/50 rounded-xl cursor-pointer">
<input
type="checkbox"
checked={includeDocs}
onChange={(e) => setIncludeDocs(e.target.checked)}
className="w-4 h-4 accent-violet-500"
/>
<span className="text-sm text-slate-300">Docs</span>
</label>
</div>
<motion.button
whileHover={{ scale: 1.02 }}
whileTap={{ scale: 0.98 }}
type="submit"
disabled={isGenerating || !featureDesc.trim()}
className="w-full py-3 bg-gradient-to-r from-violet-500 to-fuchsia-500 rounded-xl font-semibold flex items-center justify-center gap-2 disabled:opacity-50"
>
{isGenerating ? (
<>
<div className="w-5 h-5 border-2 border-white/30 border-t-white rounded-full animate-spin" />
Generating...
</>
) : (
<>
<Sparkles className="w-5 h-5" />
Generate Feature
</>
)}
</motion.button>
</form>
</motion.header>
{/* Result */}
<div className="flex-1 overflow-y-auto p-4">
{result && (
<motion.div
initial={{ opacity: 0, y: 20 }}
animate={{ opacity: 1, y: 0 }}
className="space-y-4"
>
{/* Actions */}
<div className="flex gap-2">
<motion.button
whileHover={{ scale: 1.05 }}
whileTap={{ scale: 0.95 }}
className="flex items-center gap-2 px-4 py-2 bg-green-500/20 text-green-400 rounded-lg"
>
<Save className="w-4 h-4" />
Save Files
</motion.button>
<motion.button
whileHover={{ scale: 1.05 }}
whileTap={{ scale: 0.95 }}
className="flex items-center gap-2 px-4 py-2 bg-sky-500/20 text-sky-400 rounded-lg"
>
<MessageSquare className="w-4 h-4" />
Discuss
</motion.button>
</div>
{/* Generated Content */}
<div className="bg-slate-900/60 backdrop-blur-xl border border-white/10 rounded-2xl p-6">
<div className="flex items-center gap-2 mb-4 pb-4 border-b border-white/10">
<FileCode className="w-5 h-5 text-violet-400" />
<span className="font-medium">Generated Feature</span>
</div>
<div className="prose prose-invert max-w-none">
<pre className="whitespace-pre-wrap text-sm">{result}</pre>
</div>
</div>
</motion.div>
)}
{!result && !isGenerating && (
<motion.div
initial={{ opacity: 0 }}
animate={{ opacity: 1 }}
className="flex flex-col items-center justify-center h-64 text-slate-500"
>
<Sparkles className="w-12 h-12 mb-4 opacity-50" />
<p>Describe a feature above to generate code</p>
</motion.div>
)}
</div>
</div>
);
}
|