File size: 21,196 Bytes
4b29926 27c7a45 4b29926 27c7a45 4b29926 27c7a45 4b29926 4c3311e 27c7a45 4b29926 27c7a45 4b29926 739ee1e 4b29926 27c7a45 739ee1e 27c7a45 4b29926 27c7a45 4b29926 739ee1e 4b29926 7771b05 4b29926 d669273 739ee1e 4b29926 739ee1e 27c7a45 d669273 27c7a45 d669273 27c7a45 d669273 27c7a45 d669273 27c7a45 d669273 27c7a45 d669273 27c7a45 d669273 27c7a45 d669273 27c7a45 d669273 27c7a45 04c818a 27c7a45 d669273 27c7a45 d669273 27c7a45 d669273 27c7a45 4b29926 d669273 4b29926 d669273 63db11a 4b29926 d669273 4b29926 d669273 4b29926 d669273 4b29926 d669273 4b29926 d669273 7771b05 d669273 7771b05 d669273 7771b05 d669273 4b29926 d669273 4b29926 d669273 4b29926 d669273 4b29926 739ee1e 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 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 |
'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 = 'MiniMaxAI/MiniMax-M2',
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);
// Trending apps state
const [trendingApps, setTrendingApps] = useState<any[]>([]);
useEffect(() => {
loadData();
handleOAuthInit();
loadTrendingApps();
// 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 loadTrendingApps = async () => {
try {
const apps = await apiClient.getTrendingAnycoderApps();
setTrendingApps(apps);
} catch (error) {
console.error('Failed to load trending apps:', 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';
if (lang === 'comfyui') return 'ComfyUI';
return lang.charAt(0).toUpperCase() + lang.slice(1);
};
return (
<div className="min-h-screen flex flex-col bg-[#000000] overflow-y-auto">
{/* Header - Apple style */}
<header className="flex items-center justify-between px-6 py-4 backdrop-blur-xl bg-[#000000]/80 border-b border-[#424245]/30 flex-shrink-0">
<a
href="https://huggingface.co/spaces/akhaliq/anycoder"
target="_blank"
rel="noopener noreferrer"
className="text-sm font-medium text-[#f5f5f7] hover:text-white transition-colors"
>
AnyCoder
</a>
{/* Auth Section */}
<div className="flex items-center space-x-3">
{isAuthLoading ? (
<span className="text-xs text-[#86868b]">Loading...</span>
) : 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"
/>
)}
<span className="hidden sm:inline text-sm text-[#f5f5f7] truncate max-w-[120px] font-medium">
{userInfo.preferredUsername || userInfo.name}
</span>
<button
onClick={handleLogout}
className="px-3 py-1.5 text-sm text-[#f5f5f7] hover:text-white transition-colors"
>
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">
<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-sm bg-[#1d1d1f] text-[#f5f5f7] border border-[#424245] focus:outline-none focus:border-white/50 w-32 font-medium"
autoFocus
/>
<button
onClick={handleDevLogin}
className="px-3 py-1.5 bg-white text-black rounded-lg text-sm hover:bg-[#f5f5f7] font-medium"
>
OK
</button>
<button
onClick={() => {
setShowDevLogin(false);
setDevUsername('');
}}
className="text-[#86868b] hover:text-[#f5f5f7] text-sm"
>
✕
</button>
</div>
) : (
<button
onClick={() => setShowDevLogin(true)}
className="px-3 py-1.5 text-sm text-[#f5f5f7] hover:text-white transition-colors"
title="Dev Mode"
>
Dev
</button>
)}
<span className="text-[#86868b] text-sm">or</span>
</>
)}
{/* OAuth Login */}
<button
onClick={handleLogin}
className="px-4 py-2 bg-white text-black rounded-full text-sm hover:bg-[#f5f5f7] transition-all font-medium"
>
Sign in
</button>
</div>
)}
</div>
</header>
{/* Main Content - Apple-style centered layout */}
<main className="flex-1 flex items-center justify-center px-4 py-12 min-h-0">
<div className="w-full max-w-3xl">
{/* Apple-style Headline */}
<div className="text-center mb-12">
<h2 className="text-5xl md:text-6xl lg:text-7xl font-semibold text-white mb-3 tracking-tight leading-[1.05]">
Build with AnyCoder
</h2>
<p className="text-lg md:text-xl text-[#86868b] font-normal">
Create apps with AI
</p>
</div>
{/* Simple prompt form */}
<form onSubmit={handleSubmit} className="relative">
<div className="relative bg-[#2d2d30] rounded-2xl border border-[#424245] shadow-2xl">
{/* Textarea */}
<textarea
value={prompt}
onChange={(e) => setPrompt(e.target.value)}
placeholder="Message AnyCoder"
className="w-full px-5 py-4 text-base text-[#f5f5f7] bg-transparent placeholder:text-[#86868b] resize-none focus:outline-none min-h-[56px] font-normal"
rows={1}
onKeyDown={(e) => {
if (e.key === 'Enter' && !e.shiftKey) {
e.preventDefault();
handleSubmit(e);
}
}}
/>
{/* Bottom controls - Apple style */}
<div className="flex items-center justify-between px-4 pb-4 gap-3">
{/* Compact dropdowns on the left */}
<div className="flex items-center gap-2">
{/* Language Dropdown */}
<div className="relative" ref={languageDropdownRef}>
<button
type="button"
onClick={() => {
setShowLanguageDropdown(!showLanguageDropdown);
setShowModelDropdown(false);
}}
disabled={isLoading}
className="px-3 py-1.5 bg-[#1d1d1f] text-[#f5f5f7] text-xs border border-[#424245] rounded-full hover:bg-[#2d2d2f] transition-all disabled:opacity-50 flex items-center gap-1.5 font-medium"
>
<span>{isLoading ? '...' : formatLanguageName(selectedLanguage)}</span>
<svg
className={`w-3 h-3 text-[#86868b] transition-transform ${showLanguageDropdown ? 'rotate-180' : ''}`}
fill="none"
stroke="currentColor"
viewBox="0 0 24 24"
strokeWidth={2.5}
>
<path strokeLinecap="round" strokeLinejoin="round" d="M19 9l-7 7-7-7" />
</svg>
</button>
{/* Language Dropdown Menu */}
{showLanguageDropdown && !isLoading && languages.length > 0 && (
<div className="absolute bottom-full left-0 mb-2 w-48 bg-[#1d1d1f] border border-[#424245] rounded-xl shadow-2xl overflow-hidden backdrop-blur-xl">
<div className="max-h-64 overflow-y-auto py-1">
{languages.map((lang) => (
<button
key={lang}
type="button"
onClick={() => {
setSelectedLanguage(lang);
setShowLanguageDropdown(false);
}}
className={`w-full px-4 py-2.5 text-left text-xs text-[#f5f5f7] hover:bg-[#2d2d2f] transition-colors font-medium ${
selectedLanguage === lang ? 'bg-[#2d2d2f]' : ''
}`}
>
{formatLanguageName(lang)}
</button>
))}
</div>
</div>
)}
</div>
{/* Model Dropdown */}
<div className="relative" ref={modelDropdownRef}>
<button
type="button"
onClick={() => {
setShowModelDropdown(!showModelDropdown);
setShowLanguageDropdown(false);
}}
className="px-3 py-1.5 bg-[#1d1d1f] text-[#f5f5f7] text-xs border border-[#424245] rounded-full hover:bg-[#2d2d2f] transition-all flex items-center gap-1.5 max-w-[200px] font-medium"
>
<span className="truncate">
{isLoading
? '...'
: models.find(m => m.id === selectedModel)?.name || selectedModel || 'Model'
}
</span>
<svg
className={`w-3 h-3 text-[#86868b] flex-shrink-0 transition-transform ${showModelDropdown ? 'rotate-180' : ''}`}
fill="none"
stroke="currentColor"
viewBox="0 0 24 24"
strokeWidth={2.5}
>
<path strokeLinecap="round" strokeLinejoin="round" d="M19 9l-7 7-7-7" />
</svg>
</button>
{/* Model Dropdown Menu */}
{showModelDropdown && models.length > 0 && (
<div className="absolute bottom-full left-0 mb-2 w-80 bg-[#1d1d1f] border border-[#424245] rounded-xl shadow-2xl overflow-hidden backdrop-blur-xl">
<div className="max-h-96 overflow-y-auto py-1">
{models.map((model) => (
<button
key={model.id}
type="button"
onClick={() => {
setSelectedModel(model.id);
setShowModelDropdown(false);
}}
className={`w-full px-4 py-2.5 text-left transition-colors ${
selectedModel === model.id
? 'bg-[#2d2d2f]'
: 'hover:bg-[#2d2d2f]'
}`}
>
<div className="text-xs font-medium text-[#f5f5f7]">{model.name}</div>
{model.description && (
<div className="text-[10px] text-[#86868b] mt-1 leading-relaxed">
{model.description}
</div>
)}
</button>
))}
</div>
</div>
)}
</div>
</div>
{/* Send button on the right - Apple style */}
<button
type="submit"
disabled={!prompt.trim() || !isAuthenticated}
className="p-2 bg-white text-[#1d1d1f] rounded-full hover:bg-[#f5f5f7] disabled:opacity-30 disabled:cursor-not-allowed transition-all active:scale-95 shadow-lg"
title="Send"
>
<svg className="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24" strokeWidth={2.5}>
<path strokeLinecap="round" strokeLinejoin="round" d="M5 12h14M12 5l7 7-7 7" />
</svg>
</button>
</div>
</div>
{!isAuthenticated && (
<div className="mt-6 text-center">
<p className="text-sm text-[#86868b]">
Sign in to get started
</p>
</div>
)}
</form>
{/* Trending Apps Section */}
{trendingApps.length > 0 && (
<div className="mt-16">
<h3 className="text-2xl font-semibold text-white mb-6 text-center">
Top 6 Trending Apps Built with AnyCoder
</h3>
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4">
{trendingApps.map((app) => (
<a
key={app.id}
href={`https://huggingface.co/spaces/${app.id}`}
target="_blank"
rel="noopener noreferrer"
className="group bg-[#1d1d1f] border border-[#424245] rounded-xl p-5 hover:border-white/30 transition-all hover:shadow-xl hover:scale-[1.02]"
>
<div className="flex items-start justify-between mb-3">
<div className="flex-1 min-w-0">
<h4 className="text-sm font-medium text-[#f5f5f7] truncate group-hover:text-white transition-colors">
{app.id.split('/')[1]}
</h4>
<p className="text-xs text-[#86868b] mt-1">
by {app.id.split('/')[0]}
</p>
</div>
<div className="flex items-center gap-2 flex-shrink-0 ml-3">
<div className="flex items-center gap-1">
<svg className="w-3.5 h-3.5 text-[#86868b]" fill="currentColor" viewBox="0 0 20 20">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z" />
</svg>
<span className="text-xs text-[#86868b] font-medium">{app.likes}</span>
</div>
<div className="flex items-center gap-1">
<svg className="w-3.5 h-3.5 text-[#86868b]" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M13 7h8m0 0v8m0-8l-8 8-4-4-6 6" />
</svg>
<span className="text-xs text-[#86868b] font-medium">{app.trendingScore}</span>
</div>
</div>
</div>
<div className="flex flex-wrap gap-1.5">
<span className="px-2 py-0.5 bg-[#2d2d30] text-[#86868b] text-[10px] rounded-full font-medium">
{app.sdk}
</span>
{app.tags?.slice(0, 2).map((tag: string) =>
tag !== 'anycoder' && tag !== app.sdk && tag !== 'region:us' && (
<span key={tag} className="px-2 py-0.5 bg-[#2d2d30] text-[#86868b] text-[10px] rounded-full font-medium">
{tag}
</span>
)
)}
</div>
</a>
))}
</div>
</div>
)}
</div>
</main>
</div>
);
}
|