File size: 18,412 Bytes
4b29926 27c7a45 4b29926 27c7a45 4b29926 27c7a45 4b29926 0b126be 27c7a45 4b29926 27c7a45 4b29926 27c7a45 4b29926 27c7a45 4b29926 27c7a45 4b29926 27c7a45 4b29926 |
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 430 431 432 433 434 435 436 437 438 |
'use client';
import { useState, useEffect, useRef } from 'react';
import { apiClient } from '@/lib/api';
import {
initializeOAuth,
loginWithHuggingFace,
loginDevMode,
logout,
getStoredUserInfo,
isAuthenticated as checkIsAuthenticated,
isDevelopmentMode
} from '@/lib/auth';
import type { Model, Language } from '@/types';
import type { OAuthUserInfo } from '@/lib/auth';
interface LandingPageProps {
onStart: (prompt: string, language: Language, modelId: string) => void;
isAuthenticated: boolean;
initialLanguage?: Language;
initialModel?: string;
onAuthChange?: () => void;
}
export default function LandingPage({
onStart,
isAuthenticated,
initialLanguage = 'html',
initialModel = 'x-ai/grok-4.1-fast',
onAuthChange
}: LandingPageProps) {
const [prompt, setPrompt] = useState('');
const [selectedLanguage, setSelectedLanguage] = useState<Language>(initialLanguage);
const [selectedModel, setSelectedModel] = useState<string>(initialModel);
const [models, setModels] = useState<Model[]>([]);
const [languages, setLanguages] = useState<Language[]>([]);
const [isLoading, setIsLoading] = useState(true);
// Auth states
const [userInfo, setUserInfo] = useState<OAuthUserInfo | null>(null);
const [isAuthLoading, setIsAuthLoading] = useState(true);
const [showDevLogin, setShowDevLogin] = useState(false);
const [devUsername, setDevUsername] = useState('');
const isDevMode = isDevelopmentMode();
// Dropdown states
const [showLanguageDropdown, setShowLanguageDropdown] = useState(false);
const [showModelDropdown, setShowModelDropdown] = useState(false);
const languageDropdownRef = useRef<HTMLDivElement>(null);
const modelDropdownRef = useRef<HTMLDivElement>(null);
useEffect(() => {
loadData();
handleOAuthInit();
// Check auth status periodically to catch OAuth redirects
const interval = setInterval(() => {
const authenticated = checkIsAuthenticated();
if (authenticated && !userInfo) {
handleOAuthInit();
}
}, 1000);
return () => clearInterval(interval);
}, []);
const handleOAuthInit = async () => {
setIsAuthLoading(true);
try {
const oauthResult = await initializeOAuth();
if (oauthResult) {
setUserInfo(oauthResult.userInfo);
apiClient.setToken(oauthResult.accessToken);
if (onAuthChange) onAuthChange();
} else {
const storedUserInfo = getStoredUserInfo();
if (storedUserInfo) {
setUserInfo(storedUserInfo);
}
}
} catch (error) {
console.error('OAuth initialization error:', error);
} finally {
setIsAuthLoading(false);
}
};
const handleLogin = async () => {
try {
await loginWithHuggingFace();
} catch (error) {
console.error('Login failed:', error);
alert('Failed to start login process. Please try again.');
}
};
const handleLogout = () => {
logout();
apiClient.logout();
setUserInfo(null);
if (onAuthChange) onAuthChange();
window.location.reload();
};
const handleDevLogin = () => {
if (!devUsername.trim()) {
alert('Please enter a username');
return;
}
try {
const result = loginDevMode(devUsername);
setUserInfo(result.userInfo);
apiClient.setToken(result.accessToken);
setShowDevLogin(false);
setDevUsername('');
if (onAuthChange) onAuthChange();
} catch (error) {
console.error('Dev login failed:', error);
alert('Failed to login in dev mode');
}
};
// Close dropdowns when clicking outside
useEffect(() => {
const handleClickOutside = (event: MouseEvent) => {
if (languageDropdownRef.current && !languageDropdownRef.current.contains(event.target as Node)) {
setShowLanguageDropdown(false);
}
if (modelDropdownRef.current && !modelDropdownRef.current.contains(event.target as Node)) {
setShowModelDropdown(false);
}
};
document.addEventListener('mousedown', handleClickOutside);
return () => {
document.removeEventListener('mousedown', handleClickOutside);
};
}, []);
const loadData = async () => {
setIsLoading(true);
await Promise.all([loadModels(), loadLanguages()]);
setIsLoading(false);
};
const loadModels = async () => {
try {
const modelsList = await apiClient.getModels();
setModels(modelsList);
} catch (error) {
console.error('Failed to load models:', error);
}
};
const loadLanguages = async () => {
try {
const { languages: languagesList } = await apiClient.getLanguages();
setLanguages(languagesList);
} catch (error) {
console.error('Failed to load languages:', error);
}
};
const handleSubmit = (e: React.FormEvent) => {
e.preventDefault();
if (prompt.trim() && isAuthenticated) {
onStart(prompt.trim(), selectedLanguage, selectedModel);
} else if (!isAuthenticated) {
alert('Please sign in with HuggingFace first!');
}
};
const formatLanguageName = (lang: Language) => {
if (lang === 'html') return 'HTML';
if (lang === 'transformers.js') return 'Transformers.js';
return lang.charAt(0).toUpperCase() + lang.slice(1);
};
return (
<div className="min-h-screen flex flex-col bg-[#1e1e1e] overflow-y-auto">
{/* Header - Minimal Apple style */}
<header className="flex items-center justify-between px-8 py-4 border-b border-[#3e3e42]/30 flex-shrink-0">
<h1 className="text-base font-semibold text-[#cccccc] tracking-tight">
AnyCoder
</h1>
{/* Auth Section */}
<div className="flex items-center space-x-3">
{isAuthLoading ? (
<div className="px-4 py-2">
<span className="text-xs text-[#858585] font-medium">Loading...</span>
</div>
) : userInfo ? (
<div className="flex items-center space-x-3">
{userInfo.avatarUrl && (
<img
src={userInfo.avatarUrl}
alt={userInfo.name}
className="w-7 h-7 rounded-full ring-2 ring-[#3e3e42]"
/>
)}
<span className="hidden sm:inline text-sm text-[#cccccc] font-medium truncate max-w-[120px]">
{userInfo.preferredUsername || userInfo.name}
</span>
<button
onClick={handleLogout}
className="px-4 py-2 bg-[#2d2d30] text-[#cccccc] text-xs rounded-lg hover:bg-[#3a3a3c] transition-all border border-[#3e3e42] font-semibold active:scale-95"
>
Logout
</button>
</div>
) : (
<div className="flex items-center space-x-3">
{/* Dev Mode Login (only on localhost) */}
{isDevMode && (
<>
{showDevLogin ? (
<div className="flex items-center space-x-2 bg-[#2d2d30] px-3 py-2 rounded-lg border border-[#ff9f0a]">
<span className="hidden sm:inline text-xs text-[#ff9f0a] font-semibold">DEV</span>
<input
type="text"
value={devUsername}
onChange={(e) => setDevUsername(e.target.value)}
onKeyPress={(e) => e.key === 'Enter' && handleDevLogin()}
placeholder="username"
className="px-3 py-1.5 rounded-lg text-xs bg-[#1e1e1e] text-[#cccccc] border border-[#3e3e42] focus:outline-none focus:ring-2 focus:ring-[#ff9f0a] focus:border-transparent w-28 font-medium"
autoFocus
/>
<button
onClick={handleDevLogin}
className="px-3 py-1.5 bg-[#ff9f0a] text-white rounded-lg hover:bg-[#ff8800] text-xs font-semibold active:scale-95"
>
OK
</button>
<button
onClick={() => {
setShowDevLogin(false);
setDevUsername('');
}}
className="text-[#858585] hover:text-[#cccccc] text-sm transition-colors"
>
β
</button>
</div>
) : (
<button
onClick={() => setShowDevLogin(true)}
className="px-4 py-2 bg-[#ff9f0a] text-white rounded-lg hover:bg-[#ff8800] transition-all text-xs flex items-center space-x-2 font-semibold active:scale-95"
title="Dev Mode (localhost)"
>
<span>π§</span>
<span>Dev Login</span>
</button>
)}
<span className="text-[#858585] text-xs font-medium">or</span>
</>
)}
{/* OAuth Login */}
<button
onClick={handleLogin}
className="px-4 py-2 bg-[#007acc] text-white rounded-lg hover:bg-[#0066b3] transition-all text-xs flex items-center space-x-2 font-semibold active:scale-95"
>
<span>π€</span>
<span>Sign in</span>
</button>
</div>
)}
</div>
</header>
{/* Main Content - Centered with generous Apple spacing */}
<main className="flex-1 flex items-center justify-center px-6 md:px-8 py-8 md:py-12 min-h-0">
<div className="w-full max-w-4xl">
{/* Headline - Apple typography with VS Code colors */}
<div className="text-center mb-8 md:mb-10">
<h2 className="text-4xl md:text-5xl lg:text-6xl font-bold text-[#cccccc] mb-4 tracking-[-0.02em] leading-[1.1]">
Build with AnyCoder
</h2>
<p className="text-base md:text-lg text-[#858585] font-light tracking-tight">
Create apps and websites by chatting with AI
</p>
</div>
{/* Prompt Input - VS Code style with Apple polish */}
<form onSubmit={handleSubmit} className="relative">
<div className="relative bg-[#252526] rounded-2xl border border-[#3e3e42] overflow-hidden shadow-2xl shadow-black/60">
{/* Options Row - Language and Model dropdowns */}
<div className="flex items-center gap-3 px-6 pt-5 pb-4 border-b border-[#3e3e42]/40">
{/* Language Dropdown */}
<div className="relative flex-1" ref={languageDropdownRef}>
<button
type="button"
onClick={() => {
setShowLanguageDropdown(!showLanguageDropdown);
setShowModelDropdown(false);
}}
disabled={isLoading}
className="w-full px-4 py-2.5 bg-[#2d2d30] text-[#cccccc] text-sm border border-[#3e3e42] rounded-lg focus:outline-none focus:ring-2 focus:ring-[#007acc]/50 focus:border-[#007acc] disabled:opacity-50 font-medium flex items-center justify-between hover:bg-[#323233] transition-all duration-150"
>
<span className="text-[#cccccc]">{isLoading ? 'Loading...' : formatLanguageName(selectedLanguage)}</span>
<svg
className={`w-4 h-4 text-[#858585] transition-transform duration-200 ${showLanguageDropdown ? 'rotate-180' : ''}`}
fill="none"
stroke="currentColor"
viewBox="0 0 24 24"
>
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M19 9l-7 7-7-7" />
</svg>
</button>
{/* Language Dropdown Tray */}
{showLanguageDropdown && !isLoading && languages.length > 0 && (
<div className="absolute z-50 w-full mt-1.5 bg-[#252526] border border-[#3e3e42] rounded-lg shadow-2xl shadow-black/70 overflow-hidden">
<div className="max-h-64 overflow-y-auto">
{languages.map((lang) => (
<button
key={lang}
type="button"
onClick={() => {
setSelectedLanguage(lang);
setShowLanguageDropdown(false);
}}
className={`w-full px-4 py-2.5 text-left text-sm text-[#cccccc] hover:bg-[#2a2d2e] transition-colors duration-150 ${
selectedLanguage === lang ? 'bg-[#264f78] hover:bg-[#264f78] text-[#ffffff]' : ''
}`}
>
{formatLanguageName(lang)}
</button>
))}
</div>
</div>
)}
</div>
{/* Model Dropdown */}
<div className="relative flex-1" ref={modelDropdownRef}>
<button
type="button"
onClick={() => {
setShowModelDropdown(!showModelDropdown);
setShowLanguageDropdown(false);
}}
disabled={isLoading}
className="w-full px-4 py-2.5 bg-[#2d2d30] text-[#cccccc] text-sm border border-[#3e3e42] rounded-lg focus:outline-none focus:ring-2 focus:ring-[#007acc]/50 focus:border-[#007acc] disabled:opacity-50 font-medium flex items-center justify-between hover:bg-[#323233] transition-all duration-150"
>
<span className="truncate text-[#cccccc]">
{isLoading
? 'Loading...'
: models.find(m => m.id === selectedModel)?.name || 'Select model'
}
</span>
<svg
className={`w-4 h-4 text-[#858585] transition-transform duration-200 flex-shrink-0 ml-2 ${showModelDropdown ? 'rotate-180' : ''}`}
fill="none"
stroke="currentColor"
viewBox="0 0 24 24"
>
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M19 9l-7 7-7-7" />
</svg>
</button>
{/* Model Dropdown Tray */}
{showModelDropdown && !isLoading && models.length > 0 && (
<div className="absolute z-50 w-full mt-1.5 bg-[#252526] border border-[#3e3e42] rounded-lg shadow-2xl shadow-black/70 overflow-hidden">
<div className="max-h-80 overflow-y-auto">
{models.map((model) => (
<button
key={model.id}
type="button"
onClick={() => {
setSelectedModel(model.id);
setShowModelDropdown(false);
}}
className={`w-full px-4 py-3 text-left transition-colors duration-150 ${
selectedModel === model.id
? 'bg-[#264f78] hover:bg-[#264f78]'
: 'hover:bg-[#2a2d2e]'
}`}
>
<div className="text-sm font-medium text-[#cccccc]">{model.name}</div>
{model.description && (
<div className="text-xs text-[#858585] mt-1 leading-relaxed">
{model.description}
</div>
)}
</button>
))}
</div>
</div>
)}
</div>
</div>
{/* Textarea */}
<textarea
value={prompt}
onChange={(e) => setPrompt(e.target.value)}
placeholder="Ask AnyCoder to create a landing page for my..."
className="w-full px-6 py-5 text-base md:text-lg text-[#cccccc] bg-transparent placeholder:text-[#858585] resize-none focus:outline-none min-h-[120px] md:min-h-[140px] font-normal leading-relaxed"
rows={3}
onKeyDown={(e) => {
if (e.key === 'Enter' && (e.metaKey || e.ctrlKey)) {
handleSubmit(e);
}
}}
/>
{/* Input Controls - Apple style button */}
<div className="flex items-center justify-end px-6 pb-5 pt-4 border-t border-[#3e3e42]/40">
<button
type="submit"
disabled={!prompt.trim() || !isAuthenticated}
className="px-8 py-3 bg-[#007acc] text-white text-sm font-semibold rounded-lg hover:bg-[#0066b3] disabled:opacity-40 disabled:cursor-not-allowed transition-all duration-200 shadow-lg shadow-[#007acc]/20 hover:shadow-[#007acc]/30 active:scale-[0.97] flex items-center space-x-2 tracking-tight"
title="Send (β+Enter)"
>
<span>Send</span>
<svg className="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24" strokeWidth={2.5}>
<path strokeLinecap="round" strokeLinejoin="round" d="M12 19l9 2-9-18-9 18 9-2zm0 0v-8" />
</svg>
</button>
</div>
</div>
{!isAuthenticated && (
<div className="mt-6 text-center">
<p className="text-sm text-[#858585] font-medium">
Please sign in to get started
</p>
</div>
)}
</form>
</div>
</main>
</div>
);
}
|