Spaces:
Paused
Paused
File size: 181,048 Bytes
d530f14 e6b89d5 d530f14 e6b89d5 d530f14 e6b89d5 d530f14 e6b89d5 d530f14 e6b89d5 d530f14 e6b89d5 d530f14 e6b89d5 d530f14 | 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 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 | 'use client';
import { useState, useEffect, useRef, Suspense } from 'react';
import { useSearchParams, useRouter } from 'next/navigation';
import Image from 'next/image';
import { appConfig } from '@/config/app.config';
import HeroInput from '@/components/HeroInput';
import SidebarInput from '@/components/app/generation/SidebarInput';
import HeaderBrandKit from '@/components/shared/header/BrandKit/BrandKit';
import { HeaderProvider } from '@/components/shared/header/HeaderContext';
import { Prism as SyntaxHighlighter } from 'react-syntax-highlighter';
import { vscDarkPlus } from 'react-syntax-highlighter/dist/esm/styles/prism';
// Import icons from centralized module to avoid Turbopack chunk issues
import {
FiFile,
FiChevronRight,
FiChevronDown,
FiGithub,
BsFolderFill,
BsFolder2Open,
SiJavascript,
SiReact,
SiCss3,
SiJson
} from '@/lib/icons';
import { motion } from 'framer-motion';
import CodeApplicationProgress, { type CodeApplicationState } from '@/components/CodeApplicationProgress';
interface SandboxData {
sandboxId: string;
url: string;
[key: string]: any;
}
interface ChatMessage {
content: string;
type: 'user' | 'ai' | 'system' | 'file-update' | 'command' | 'error';
timestamp: Date;
metadata?: {
scrapedUrl?: string;
scrapedContent?: any;
generatedCode?: string;
appliedFiles?: string[];
commandType?: 'input' | 'output' | 'error' | 'success';
brandingData?: any;
sourceUrl?: string;
};
}
interface ScrapeData {
success: boolean;
content?: string;
url?: string;
title?: string;
source?: string;
screenshot?: string;
structured?: any;
metadata?: any;
message?: string;
error?: string;
}
function AISandboxPage() {
const [mode, setMode] = useState<'website' | 'paper'>('website');
const [sandboxData, setSandboxData] = useState<SandboxData | null>(null);
const [loading, setLoading] = useState(false);
const [status, setStatus] = useState({ text: 'Not connected', active: false });
const [responseArea, setResponseArea] = useState<string[]>([]);
const [structureContent, setStructureContent] = useState('No sandbox created yet');
const [promptInput, setPromptInput] = useState('');
const [chatMessages, setChatMessages] = useState<ChatMessage[]>([
{
content: 'Welcome! I can help you generate code with full context of your sandbox files and structure. Just start chatting - I\'ll automatically create a sandbox for you if needed!\n\nTip: If you see package errors like "react-router-dom not found", just type "npm install" or "check packages" to automatically install missing packages.',
type: 'system',
timestamp: new Date()
}
]);
const [aiChatInput, setAiChatInput] = useState('');
const [aiEnabled] = useState(true);
const searchParams = useSearchParams();
const router = useRouter();
const [aiModel, setAiModel] = useState(() => {
const modelParam = searchParams.get('model');
return appConfig.ai.availableModels.includes(modelParam || '') ? modelParam! : appConfig.ai.defaultModel;
});
const [urlOverlayVisible, setUrlOverlayVisible] = useState(false);
const [urlInput, setUrlInput] = useState('');
const [urlStatus, setUrlStatus] = useState<string[]>([]);
const [showHomeScreen, setShowHomeScreen] = useState(true);
const [expandedFolders, setExpandedFolders] = useState<Set<string>>(new Set(['app', 'src', 'src/components']));
const [selectedFile, setSelectedFile] = useState<string | null>(null);
const [homeScreenFading, setHomeScreenFading] = useState(false);
const [homeUrlInput, setHomeUrlInput] = useState('');
const [homeContextInput, setHomeContextInput] = useState('');
const [activeTab, setActiveTab] = useState<'generation' | 'preview'>('preview');
const [showStyleSelector, setShowStyleSelector] = useState(false);
const [selectedStyle, setSelectedStyle] = useState<string | null>(null);
const [showLoadingBackground, setShowLoadingBackground] = useState(false);
const [urlScreenshot, setUrlScreenshot] = useState<string | null>(null);
const [isScreenshotLoaded, setIsScreenshotLoaded] = useState(false);
const [isCapturingScreenshot, setIsCapturingScreenshot] = useState(false);
const [screenshotError, setScreenshotError] = useState<string | null>(null);
const [isPreparingDesign, setIsPreparingDesign] = useState(false);
const [targetUrl, setTargetUrl] = useState<string>('');
const [sidebarScrolled, setSidebarScrolled] = useState(false);
const [screenshotCollapsed, setScreenshotCollapsed] = useState(false);
const [loadingStage, setLoadingStage] = useState<'gathering' | 'planning' | 'generating' | null>(null);
const [isStartingNewGeneration, setIsStartingNewGeneration] = useState(false);
const [sandboxFiles, setSandboxFiles] = useState<Record<string, string>>({});
const [hasInitialSubmission, setHasInitialSubmission] = useState<boolean>(false);
const [fileStructure, setFileStructure] = useState<string>('');
const [conversationContext, setConversationContext] = useState<{
scrapedWebsites: Array<{ url: string; content: any; timestamp: Date }>;
generatedComponents: Array<{ name: string; path: string; content: string }>;
appliedCode: Array<{ files: string[]; timestamp: Date }>;
currentProject: string;
lastGeneratedCode?: string;
}>({
scrapedWebsites: [],
generatedComponents: [],
appliedCode: [],
currentProject: '',
lastGeneratedCode: undefined
});
const iframeRef = useRef<HTMLIFrameElement>(null);
const chatMessagesRef = useRef<HTMLDivElement>(null);
const codeDisplayRef = useRef<HTMLDivElement>(null);
const [codeApplicationState, setCodeApplicationState] = useState<CodeApplicationState>({
stage: null
});
const [generationProgress, setGenerationProgress] = useState<{
isGenerating: boolean;
status: string;
components: Array<{ name: string; path: string; completed: boolean }>;
currentComponent: number;
streamedCode: string;
isStreaming: boolean;
isThinking: boolean;
thinkingText?: string;
thinkingDuration?: number;
currentFile?: { path: string; content: string; type: string };
files: Array<{ path: string; content: string; type: string; completed: boolean; edited?: boolean }>;
lastProcessedPosition: number;
isEdit?: boolean;
}>({
isGenerating: false,
status: '',
components: [],
currentComponent: 0,
streamedCode: '',
isStreaming: false,
isThinking: false,
files: [],
lastProcessedPosition: 0
});
// Store flag to trigger generation after component mounts
const [shouldAutoGenerate, setShouldAutoGenerate] = useState(false);
// Clear old conversation data on component mount and create/restore sandbox
useEffect(() => {
let isMounted = true;
let sandboxCreated = false; // Track if sandbox was created in this effect
const initializePage = async () => {
// Prevent double execution in React StrictMode
if (sandboxCreated) return;
// First check URL parameters (from home page navigation)
const urlParam = searchParams.get('url');
const templateParam = searchParams.get('template');
const detailsParam = searchParams.get('details');
// Then check session storage as fallback
const storedUrl = urlParam || sessionStorage.getItem('targetUrl');
const storedStyle = templateParam || sessionStorage.getItem('selectedStyle');
const storedModel = sessionStorage.getItem('selectedModel');
const storedInstructions = sessionStorage.getItem('additionalInstructions');
if (storedUrl) {
// Mark that we have an initial submission since we're loading with a URL
setHasInitialSubmission(true);
// Clear sessionStorage after reading
sessionStorage.removeItem('targetUrl');
sessionStorage.removeItem('selectedStyle');
sessionStorage.removeItem('selectedModel');
sessionStorage.removeItem('additionalInstructions');
// Note: Don't clear siteMarkdown here, it will be cleared when used
// Set the values in the component state
setHomeUrlInput(storedUrl);
setSelectedStyle(storedStyle || 'modern');
// Add details to context if provided
if (detailsParam) {
setHomeContextInput(detailsParam);
} else if (storedStyle && !urlParam) {
// Only apply stored style if no screenshot URL is provided
// This prevents unwanted style inheritance when using screenshot search
const styleNames: Record<string, string> = {
'1': 'Glassmorphism',
'2': 'Neumorphism',
'3': 'Brutalism',
'4': 'Minimalist',
'5': 'Dark Mode',
'6': 'Gradient Rich',
'7': '3D Depth',
'8': 'Retro Wave',
'modern': 'Modern clean and minimalist',
'playful': 'Fun colorful and playful',
'professional': 'Corporate professional and sleek',
'artistic': 'Creative artistic and unique'
};
const styleName = styleNames[storedStyle] || storedStyle;
let contextString = `${styleName} style design`;
// Add additional instructions if provided
if (storedInstructions) {
contextString += `. ${storedInstructions}`;
}
setHomeContextInput(contextString);
} else if (storedInstructions && !urlParam) {
// Apply only instructions if no style but instructions are provided
// and no screenshot URL is provided
setHomeContextInput(storedInstructions);
}
if (storedModel) {
setAiModel(storedModel);
}
// Skip the home screen and go directly to builder
setShowHomeScreen(false);
setHomeScreenFading(false);
// Set flag to auto-trigger generation after component updates
setShouldAutoGenerate(true);
// Also set autoStart flag for the effect
sessionStorage.setItem('autoStart', 'true');
}
// Clear old conversation
try {
await fetch('/api/conversation-state', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ action: 'clear-old' })
});
console.log('[home] Cleared old conversation data on mount');
} catch (error) {
console.error('[ai-sandbox] Failed to clear old conversation:', error);
if (isMounted) {
addChatMessage('Failed to clear old conversation data.', 'error');
}
}
if (!isMounted) return;
// Check if sandbox ID is in URL
const sandboxIdParam = searchParams.get('sandbox');
setLoading(true);
try {
if (sandboxIdParam) {
console.log('[home] Attempting to restore sandbox:', sandboxIdParam);
// For now, just create a new sandbox - you could enhance this to actually restore
// the specific sandbox if your backend supports it
sandboxCreated = true;
await createSandbox(true);
} else {
console.log('[home] No sandbox in URL, creating new sandbox automatically...');
sandboxCreated = true;
await createSandbox(true);
}
// If we have a URL from the home page, mark for automatic start
if (storedUrl && isMounted) {
// We'll trigger the generation after the component is fully mounted
// and the startGeneration function is defined
sessionStorage.setItem('autoStart', 'true');
}
} catch (error) {
console.error('[ai-sandbox] Failed to create or restore sandbox:', error);
if (isMounted) {
addChatMessage('Failed to create or restore sandbox.', 'error');
}
} finally {
if (isMounted) {
setLoading(false);
}
}
};
initializePage();
return () => {
isMounted = false;
};
// eslint-disable-next-line react-hooks/exhaustive-deps
}, []); // Run only on mount
useEffect(() => {
// Handle Escape key for home screen
const handleKeyDown = (e: KeyboardEvent) => {
if (e.key === 'Escape' && showHomeScreen) {
setHomeScreenFading(true);
setTimeout(() => {
setShowHomeScreen(false);
setHomeScreenFading(false);
}, 500);
}
};
window.addEventListener('keydown', handleKeyDown);
return () => window.removeEventListener('keydown', handleKeyDown);
}, [showHomeScreen]);
// Start capturing screenshot if URL is provided on mount (from home screen)
useEffect(() => {
if (!showHomeScreen && homeUrlInput && !urlScreenshot && !isCapturingScreenshot) {
let screenshotUrl = homeUrlInput.trim();
if (!screenshotUrl.match(/^https?:\/\//i)) {
screenshotUrl = 'https://' + screenshotUrl;
}
captureUrlScreenshot(screenshotUrl);
}
}, [showHomeScreen, homeUrlInput]); // eslint-disable-line react-hooks/exhaustive-deps
// Auto-start generation if flagged
useEffect(() => {
const autoStart = sessionStorage.getItem('autoStart');
if (autoStart === 'true' && !showHomeScreen && homeUrlInput) {
sessionStorage.removeItem('autoStart');
// Small delay to ensure everything is ready
setTimeout(() => {
console.log('[generation] Auto-starting generation for URL:', homeUrlInput);
startGeneration();
}, 1000);
}
}, [showHomeScreen, homeUrlInput]); // eslint-disable-line react-hooks/exhaustive-deps
useEffect(() => {
// Only check sandbox status on mount if we don't already have sandboxData
// AND we're not auto-starting a new generation (which would create a new sandbox)
const autoStart = sessionStorage.getItem('autoStart');
if (!sandboxData && autoStart !== 'true') {
checkSandboxStatus();
}
}, []); // eslint-disable-line react-hooks/exhaustive-deps
useEffect(() => {
if (chatMessagesRef.current) {
chatMessagesRef.current.scrollTop = chatMessagesRef.current.scrollHeight;
}
}, [chatMessages]);
// Auto-trigger generation when flag is set (from home page navigation)
useEffect(() => {
if (shouldAutoGenerate && homeUrlInput && !showHomeScreen) {
// Reset the flag
setShouldAutoGenerate(false);
// Trigger generation after a short delay to ensure everything is set up
const timer = setTimeout(() => {
console.log('[generation] Auto-triggering generation from URL params');
startGeneration();
}, 1000);
return () => clearTimeout(timer);
}
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [shouldAutoGenerate, homeUrlInput, showHomeScreen]);
const updateStatus = (text: string, active: boolean) => {
setStatus({ text, active });
};
const log = (message: string, type: 'info' | 'error' | 'command' = 'info') => {
setResponseArea(prev => [...prev, `[${type}] ${message}`]);
};
const addChatMessage = (content: string, type: ChatMessage['type'], metadata?: ChatMessage['metadata']) => {
setChatMessages(prev => {
// Skip duplicate consecutive system messages
if (type === 'system' && prev.length > 0) {
const lastMessage = prev[prev.length - 1];
if (lastMessage.type === 'system' && lastMessage.content === content) {
return prev; // Skip duplicate
}
}
return [...prev, { content, type, timestamp: new Date(), metadata }];
});
};
const checkAndInstallPackages = async () => {
// This function is only called when user explicitly requests it
// Don't show error if no sandbox - it's likely being created
if (!sandboxData) {
console.log('[checkAndInstallPackages] No sandbox data available yet');
return;
}
// Vite error checking removed - handled by template setup
addChatMessage('Checking packages... Sandbox is ready with Vite configuration.', 'system');
};
const handleSurfaceError = (_errors: any[]) => {
// Function kept for compatibility but Vite errors are now handled by template
// Focus the input
const textarea = document.querySelector('textarea') as HTMLTextAreaElement;
if (textarea) {
textarea.focus();
}
};
const installPackages = async (packages: string[]) => {
if (!sandboxData) {
addChatMessage('No active sandbox. Create a sandbox first!', 'system');
return;
}
try {
const response = await fetch('/api/install-packages', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ packages })
});
if (!response.ok) {
throw new Error(`Failed to install packages: ${response.statusText}`);
}
const reader = response.body?.getReader();
const decoder = new TextDecoder();
while (reader) {
const { done, value } = await reader.read();
if (done) break;
const chunk = decoder.decode(value);
const lines = chunk.split('\n');
for (const line of lines) {
if (line.startsWith('data: ')) {
try {
const data = JSON.parse(line.slice(6));
switch (data.type) {
case 'command':
// Don't show npm install commands - they're handled by info messages
if (!data.command.includes('npm install')) {
addChatMessage(data.command, 'command', { commandType: 'input' });
}
break;
case 'output':
addChatMessage(data.message, 'command', { commandType: 'output' });
break;
case 'error':
if (data.message && data.message !== 'undefined') {
addChatMessage(data.message, 'command', { commandType: 'error' });
}
break;
case 'warning':
addChatMessage(data.message, 'command', { commandType: 'output' });
break;
case 'success':
addChatMessage(`${data.message}`, 'system');
break;
case 'status':
addChatMessage(data.message, 'system');
break;
}
} catch (e) {
console.error('Failed to parse SSE data:', e);
}
}
}
}
} catch (error: any) {
addChatMessage(`Failed to install packages: ${error.message}`, 'system');
}
};
const checkSandboxStatus = async () => {
try {
const response = await fetch('/api/sandbox-status');
const data = await response.json();
if (data.active && data.healthy && data.sandboxData) {
console.log('[checkSandboxStatus] Setting sandboxData from API:', data.sandboxData);
setSandboxData(data.sandboxData);
updateStatus('Sandbox active', true);
} else if (data.active && !data.healthy) {
// Sandbox exists but not responding
updateStatus('Sandbox not responding', false);
// Keep existing sandboxData if we have it - don't clear it
} else {
// Only clear sandboxData if we don't already have it or if we're explicitly checking from a fresh state
// This prevents clearing sandboxData during normal operation when it should persist
if (!sandboxData) {
console.log('[checkSandboxStatus] No existing sandboxData, clearing state');
setSandboxData(null);
updateStatus('No sandbox', false);
} else {
// Keep existing sandboxData and just update status
console.log('[checkSandboxStatus] Keeping existing sandboxData, sandbox inactive but data preserved');
updateStatus('Sandbox status unknown', false);
}
}
} catch (error) {
console.error('Failed to check sandbox status:', error);
// Only clear on error if we don't have existing sandboxData
if (!sandboxData) {
setSandboxData(null);
updateStatus('Error', false);
} else {
updateStatus('Status check failed', false);
}
}
};
const sandboxCreationRef = useRef<boolean>(false);
const createSandbox = async (fromHomeScreen = false, runtimeOverride?: string) => {
// Prevent duplicate sandbox creation
if (sandboxCreationRef.current) {
console.log('[createSandbox] Sandbox creation already in progress, skipping...');
return null;
}
const runtime = runtimeOverride || (mode === 'paper' ? 'python' : 'react');
sandboxCreationRef.current = true;
console.log(`[createSandbox] Starting sandbox creation for ${runtime}...`);
setLoading(true);
setShowLoadingBackground(true);
updateStatus(`Creating ${runtime} sandbox...`, false);
setResponseArea([]);
setScreenshotError(null);
try {
const response = await fetch('/api/create-ai-sandbox-v2', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ runtime })
});
const data = await response.json();
console.log('[createSandbox] Response data:', data);
if (data.success) {
sandboxCreationRef.current = false; // Reset the ref on success
console.log('[createSandbox] Setting sandboxData from creation:', data);
setSandboxData(data);
updateStatus('Sandbox active', true);
log('Sandbox created successfully!');
log(`Sandbox ID: ${data.sandboxId}`);
log(`URL: ${data.url}`);
// Update URL with sandbox ID
const newParams = new URLSearchParams(searchParams.toString());
newParams.set('sandbox', data.sandboxId);
newParams.set('model', aiModel);
router.push(`/generation?${newParams.toString()}`, { scroll: false });
// Fade out loading background after sandbox loads
setTimeout(() => {
setShowLoadingBackground(false);
}, 3000);
if (data.structure) {
displayStructure(data.structure);
}
// Fetch sandbox files after creation
setTimeout(fetchSandboxFiles, 1000);
// For Vercel sandboxes, Vite is already started during setupViteApp
// No need to restart it immediately after creation
// Only restart if there's an actual issue later
console.log('[createSandbox] Sandbox ready with Vite server running');
// Only add welcome message if not coming from home screen
if (!fromHomeScreen) {
addChatMessage(`Sandbox created! ID: ${data.sandboxId}. I now have context of your sandbox and can help you build your app. Just ask me to create components and I'll automatically apply them!
Tip: I automatically detect and install npm packages from your code imports (like react-router-dom, axios, etc.)`, 'system');
}
setTimeout(() => {
if (iframeRef.current) {
iframeRef.current.src = data.url;
}
}, 100);
// Return the sandbox data so it can be used immediately
return data;
} else {
throw new Error(data.error || 'Unknown error');
}
} catch (error: any) {
console.error('[createSandbox] Error:', error);
updateStatus('Error', false);
log(`Failed to create sandbox: ${error.message}`, 'error');
addChatMessage(`Failed to create sandbox: ${error.message}`, 'system');
throw error;
} finally {
setLoading(false);
sandboxCreationRef.current = false; // Reset the ref
}
};
const displayStructure = (structure: any) => {
if (typeof structure === 'object') {
setStructureContent(JSON.stringify(structure, null, 2));
} else {
setStructureContent(structure || 'No structure available');
}
};
const applyGeneratedCode = async (code: string, isEdit: boolean = false, overrideSandboxData?: SandboxData) => {
setLoading(true);
log('Applying AI-generated code...');
try {
// Show progress component instead of individual messages
setCodeApplicationState({ stage: 'analyzing' });
// Get pending packages from tool calls
const pendingPackages = ((window as any).pendingPackages || []).filter((pkg: any) => pkg && typeof pkg === 'string');
if (pendingPackages.length > 0) {
console.log('[applyGeneratedCode] Sending packages from tool calls:', pendingPackages);
// Clear pending packages after use
(window as any).pendingPackages = [];
}
// Use streaming endpoint for real-time feedback
const effectiveSandboxData = overrideSandboxData || sandboxData;
const response = await fetch('/api/apply-ai-code-stream', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
response: code,
isEdit: isEdit,
packages: pendingPackages,
sandboxId: effectiveSandboxData?.sandboxId // Pass the sandbox ID to ensure proper connection
})
});
if (!response.ok) {
throw new Error(`Failed to apply code: ${response.statusText}`);
}
// Handle streaming response
const reader = response.body?.getReader();
const decoder = new TextDecoder();
let finalData: any = null;
while (reader) {
const { done, value } = await reader.read();
if (done) break;
const chunk = decoder.decode(value);
const lines = chunk.split('\n');
for (const line of lines) {
if (line.startsWith('data: ')) {
try {
const data = JSON.parse(line.slice(6));
switch (data.type) {
case 'start':
// Don't add as chat message, just update state
setCodeApplicationState({ stage: 'analyzing' });
break;
case 'step':
// Update progress state based on step
if (data.message.includes('Installing') && data.packages) {
setCodeApplicationState({
stage: 'installing',
packages: data.packages
});
} else if (data.message.includes('Creating files') || data.message.includes('Applying')) {
setCodeApplicationState({
stage: 'applying',
filesGenerated: [] // Files will be populated when complete
});
}
break;
case 'package-progress':
// Handle package installation progress
if (data.installedPackages) {
setCodeApplicationState(prev => ({
...prev,
installedPackages: data.installedPackages
}));
}
break;
case 'command':
// Don't show npm install commands - they're handled by info messages
if (data.command && !data.command.includes('npm install')) {
addChatMessage(data.command, 'command', { commandType: 'input' });
}
break;
case 'success':
if (data.installedPackages) {
setCodeApplicationState(prev => ({
...prev,
installedPackages: data.installedPackages
}));
}
break;
case 'file-progress':
// Skip file progress messages, they're noisy
break;
case 'file-complete':
// Could add individual file completion messages if desired
break;
case 'command-progress':
addChatMessage(`${data.action} command: ${data.command}`, 'command', { commandType: 'input' });
break;
case 'command-output':
addChatMessage(data.output, 'command', {
commandType: data.stream === 'stderr' ? 'error' : 'output'
});
break;
case 'command-complete':
if (data.success) {
addChatMessage(`Command completed successfully`, 'system');
} else {
addChatMessage(`Command failed with exit code ${data.exitCode}`, 'system');
}
break;
case 'complete':
finalData = data;
setCodeApplicationState({ stage: 'complete' });
// Clear the state after a delay
setTimeout(() => {
setCodeApplicationState({ stage: null });
}, 3000);
// Reset loading state when complete
setLoading(false);
break;
case 'error':
addChatMessage(`Error: ${data.message || data.error || 'Unknown error'}`, 'system');
// Reset loading state on error
setLoading(false);
break;
case 'warning':
addChatMessage(`${data.message}`, 'system');
break;
case 'info':
// Show info messages, especially for package installation
if (data.message) {
addChatMessage(data.message, 'system');
}
break;
}
} catch {
// Ignore parse errors
}
}
}
}
// Process final data
if (finalData && finalData.type === 'complete') {
const data: any = {
success: true,
results: finalData.results,
explanation: finalData.explanation,
structure: finalData.structure,
message: finalData.message,
autoCompleted: finalData.autoCompleted,
autoCompletedComponents: finalData.autoCompletedComponents,
warning: finalData.warning,
missingImports: finalData.missingImports,
debug: finalData.debug
};
if (data.success) {
const { results } = data;
// Log package installation results without duplicate messages
if (results.packagesInstalled?.length > 0) {
log(`Packages installed: ${results.packagesInstalled.join(', ')}`);
}
if (results.filesCreated?.length > 0) {
log('Files created:');
results.filesCreated.forEach((file: string) => {
log(` ${file}`, 'command');
});
// Verify files were actually created by refreshing the sandbox if needed
if (sandboxData?.sandboxId && results.filesCreated.length > 0) {
// Small delay to ensure files are written
setTimeout(() => {
// Force refresh the iframe to show new files
if (iframeRef.current) {
iframeRef.current.src = iframeRef.current.src;
}
}, 1000);
}
}
if (results.filesUpdated?.length > 0) {
log('Files updated:');
results.filesUpdated.forEach((file: string) => {
log(` ${file}`, 'command');
});
}
// Update conversation context with applied code
setConversationContext(prev => ({
...prev,
appliedCode: [...prev.appliedCode, {
files: [...(results.filesCreated || []), ...(results.filesUpdated || [])],
timestamp: new Date()
}]
}));
if (results.commandsExecuted?.length > 0) {
log('Commands executed:');
results.commandsExecuted.forEach((cmd: string) => {
log(` $ ${cmd}`, 'command');
});
}
if (results.errors?.length > 0) {
results.errors.forEach((err: string) => {
log(err, 'error');
});
}
if (data.structure) {
displayStructure(data.structure);
}
if (data.explanation) {
log(data.explanation);
}
if (data.autoCompleted) {
log('Auto-generating missing components...', 'command');
if (data.autoCompletedComponents) {
setTimeout(() => {
log('Auto-generated missing components:', 'info');
data.autoCompletedComponents.forEach((comp: string) => {
log(` ${comp}`, 'command');
});
}, 1000);
}
} else if (data.warning) {
log(data.warning, 'error');
if (data.missingImports && data.missingImports.length > 0) {
const missingList = data.missingImports.join(', ');
addChatMessage(
`Ask me to "create the missing components: ${missingList}" to fix these import errors.`,
'system'
);
}
}
log('Code applied successfully!');
console.log('[applyGeneratedCode] Response data:', data);
console.log('[applyGeneratedCode] Debug info:', data.debug);
console.log('[applyGeneratedCode] Current sandboxData:', sandboxData);
console.log('[applyGeneratedCode] Current iframe element:', iframeRef.current);
console.log('[applyGeneratedCode] Current iframe src:', iframeRef.current?.src);
// Set applying code state for edits to show loading overlay
// Removed overlay - changes apply directly
if (results.filesCreated?.length > 0) {
setConversationContext(prev => ({
...prev,
appliedCode: [...prev.appliedCode, {
files: results.filesCreated,
timestamp: new Date()
}]
}));
// Update the chat message to show success
// Only show file list if not in edit mode
if (isEdit) {
addChatMessage(`Edit applied successfully!`, 'system');
} else {
// Check if this is part of a generation flow (has recent AI recreation message)
const recentMessages = chatMessages.slice(-5);
const isPartOfGeneration = recentMessages.some(m =>
m.content.includes('AI recreation generated') ||
m.content.includes('Code generated')
);
// Don't show files if part of generation flow to avoid duplication
if (isPartOfGeneration) {
addChatMessage(`Applied ${results.filesCreated.length} files successfully!`, 'system');
} else {
addChatMessage(`Applied ${results.filesCreated.length} files successfully!`, 'system', {
appliedFiles: results.filesCreated
});
}
}
// If there are failed packages, add a message about checking for errors
if (results.packagesFailed?.length > 0) {
addChatMessage(`⚠️ Some packages failed to install. Check the error banner above for details.`, 'system');
}
// Fetch updated file structure
await fetchSandboxFiles();
// Skip automatic package check - it's not needed here and can cause false "no sandbox" messages
// Packages are already installed during the apply-ai-code-stream process
// Test build to ensure everything compiles correctly
// Skip build test for now - it's causing errors with undefined activeSandbox
// The build test was trying to access global.activeSandbox from the frontend,
// but that's only available in the backend API routes
console.log('[build-test] Skipping build test - would need API endpoint');
// Force iframe refresh after applying code
const refreshDelay = appConfig.codeApplication.defaultRefreshDelay; // Allow Vite to process changes
setTimeout(() => {
const currentSandboxData = effectiveSandboxData;
if (iframeRef.current && currentSandboxData?.url) {
console.log('[home] Refreshing iframe after code application...');
// Method 1: Change src with timestamp
const urlWithTimestamp = `${currentSandboxData.url}?t=${Date.now()}&applied=true`;
iframeRef.current.src = urlWithTimestamp;
// Method 2: Force reload after a short delay
setTimeout(() => {
try {
if (iframeRef.current?.contentWindow) {
iframeRef.current.contentWindow.location.reload();
console.log('[home] Force reloaded iframe content');
}
} catch (e) {
console.log('[home] Could not reload iframe (cross-origin):', e);
}
// Reload completed
}, 1000);
}
}, refreshDelay);
// Vite error checking removed - handled by template setup
}
// Give Vite HMR a moment to detect changes, then ensure refresh
const currentSandboxData = effectiveSandboxData;
if (iframeRef.current && currentSandboxData?.url) {
// Wait for Vite to process the file changes
// If packages were installed, wait longer for Vite to restart
const packagesInstalled = results?.packagesInstalled?.length > 0 || data.results?.packagesInstalled?.length > 0;
const refreshDelay = packagesInstalled ? appConfig.codeApplication.packageInstallRefreshDelay : appConfig.codeApplication.defaultRefreshDelay;
console.log(`[applyGeneratedCode] Packages installed: ${packagesInstalled}, refresh delay: ${refreshDelay}ms`);
setTimeout(async () => {
if (iframeRef.current && currentSandboxData?.url) {
console.log('[applyGeneratedCode] Starting iframe refresh sequence...');
console.log('[applyGeneratedCode] Current iframe src:', iframeRef.current.src);
console.log('[applyGeneratedCode] Sandbox URL:', currentSandboxData.url);
// Method 1: Try direct navigation first
try {
const urlWithTimestamp = `${currentSandboxData.url}?t=${Date.now()}&force=true`;
console.log('[applyGeneratedCode] Attempting direct navigation to:', urlWithTimestamp);
// Remove any existing onload handler
iframeRef.current.onload = null;
// Navigate directly
iframeRef.current.src = urlWithTimestamp;
// Wait a bit and check if it loaded
await new Promise(resolve => setTimeout(resolve, 2000));
// Try to access the iframe content to verify it loaded
try {
const iframeDoc = iframeRef.current.contentDocument || iframeRef.current.contentWindow?.document;
if (iframeDoc && iframeDoc.readyState === 'complete') {
console.log('[applyGeneratedCode] Iframe loaded successfully');
return;
}
} catch {
console.log('[applyGeneratedCode] Cannot access iframe content (CORS), assuming loaded');
return;
}
} catch (e) {
console.error('[applyGeneratedCode] Direct navigation failed:', e);
}
// Method 2: Force complete iframe recreation if direct navigation failed
console.log('[applyGeneratedCode] Falling back to iframe recreation...');
const parent = iframeRef.current.parentElement;
const newIframe = document.createElement('iframe');
// Copy attributes
newIframe.className = iframeRef.current.className;
newIframe.title = iframeRef.current.title;
newIframe.allow = iframeRef.current.allow;
// Copy sandbox attributes
const sandboxValue = iframeRef.current.getAttribute('sandbox');
if (sandboxValue) {
newIframe.setAttribute('sandbox', sandboxValue);
}
// Remove old iframe
iframeRef.current.remove();
// Add new iframe
newIframe.src = `${currentSandboxData.url}?t=${Date.now()}&recreated=true`;
parent?.appendChild(newIframe);
// Update ref
(iframeRef as any).current = newIframe;
console.log('[applyGeneratedCode] Iframe recreated with new content');
} else {
console.error('[applyGeneratedCode] No iframe or sandbox URL available for refresh');
}
}, refreshDelay); // Dynamic delay based on whether packages were installed
}
} else {
throw new Error(finalData?.error || 'Failed to apply code');
}
} else {
// If no final data was received, still close loading
addChatMessage('Code application may have partially succeeded. Check the preview.', 'system');
}
} catch (error: any) {
log(`Failed to apply code: ${error.message}`, 'error');
} finally {
setLoading(false);
// Clear isEdit flag after applying code
setGenerationProgress(prev => ({
...prev,
isEdit: false
}));
}
};
const fetchSandboxFiles = async () => {
if (!sandboxData) return;
try {
const response = await fetch('/api/get-sandbox-files', {
method: 'GET',
headers: {
'Content-Type': 'application/json',
}
});
if (response.ok) {
const data = await response.json();
if (data.success) {
setSandboxFiles(data.files || {});
setFileStructure(data.structure || '');
console.log('[fetchSandboxFiles] Updated file list:', Object.keys(data.files || {}).length, 'files');
}
}
} catch (error) {
console.error('[fetchSandboxFiles] Error fetching files:', error);
}
};
// const restartViteServer = async () => {
// try {
// addChatMessage('Restarting Vite dev server...', 'system');
//
// const response = await fetch('/api/restart-vite', {
// method: 'POST',
// headers: { 'Content-Type': 'application/json' }
// });
//
// if (response.ok) {
// const data = await response.json();
// if (data.success) {
// addChatMessage('✓ Vite dev server restarted successfully!', 'system');
//
// // Refresh the iframe after a short delay
// setTimeout(() => {
// if (iframeRef.current && sandboxData?.url) {
// iframeRef.current.src = `${sandboxData.url}?t=${Date.now()}`;
// }
// }, 2000);
// } else {
// addChatMessage(`Failed to restart Vite: ${data.error}`, 'error');
// }
// } else {
// addChatMessage('Failed to restart Vite server', 'error');
// }
// } catch (error) {
// console.error('[restartViteServer] Error:', error);
// addChatMessage(`Error restarting Vite: ${error instanceof Error ? error.message : 'Unknown error'}`, 'error');
// }
// };
// const applyCode = async () => {
// const code = promptInput.trim();
// if (!code) {
// log('Please enter some code first', 'error');
// addChatMessage('No code to apply. Please generate code first.', 'system');
// return;
// }
//
// // Prevent double clicks
// if (loading) {
// console.log('[applyCode] Already loading, skipping...');
// return;
// }
//
// // Determine if this is an edit based on whether we have applied code before
// const isEdit = conversationContext.appliedCode.length > 0;
// await applyGeneratedCode(code, isEdit);
// };
const renderMainContent = () => {
if (activeTab === 'generation' && (generationProgress.isGenerating || generationProgress.files.length > 0)) {
return (
/* Generation Tab Content */
<div className="absolute inset-0 flex overflow-hidden">
{/* File Explorer - Hide during edits */}
{!generationProgress.isEdit && (
<div className="w-[250px] border-r border-gray-200 bg-white flex flex-col flex-shrink-0">
<div className="p-4 bg-gray-100 text-gray-900 flex items-center justify-between">
<div className="flex items-center gap-2">
<BsFolderFill style={{ width: '16px', height: '16px' }} />
<span className="text-sm font-medium">Explorer</span>
</div>
</div>
{/* File Tree */}
<div className="flex-1 overflow-y-auto p-4 scrollbar-hide">
<div className="text-sm">
{/* Root app folder */}
<div
className="flex items-center gap-2 py-0.5 px-3 hover:bg-gray-100 rounded cursor-pointer text-gray-700"
onClick={() => toggleFolder('app')}
>
{expandedFolders.has('app') ? (
<FiChevronDown style={{ width: '16px', height: '16px' }} className="text-gray-600" />
) : (
<FiChevronRight style={{ width: '16px', height: '16px' }} className="text-gray-600" />
)}
{expandedFolders.has('app') ? (
<BsFolder2Open style={{ width: '16px', height: '16px' }} className="text-blue-500" />
) : (
<BsFolderFill style={{ width: '16px', height: '16px' }} className="text-blue-500" />
)}
<span className="font-medium text-gray-800">app</span>
</div>
{expandedFolders.has('app') && (
<div className="ml-6">
{/* Group files by directory */}
{(() => {
const fileTree: { [key: string]: Array<{ name: string; edited?: boolean }> } = {};
// Create a map of edited files
// const editedFiles = new Set(
// generationProgress.files
// .filter(f => f.edited)
// .map(f => f.path)
// );
// Process all files from generation progress
generationProgress.files.forEach(file => {
const parts = file.path.split('/');
const dir = parts.length > 1 ? parts.slice(0, -1).join('/') : '';
const fileName = parts[parts.length - 1];
if (!fileTree[dir]) fileTree[dir] = [];
fileTree[dir].push({
name: fileName,
edited: file.edited || false
});
});
return Object.entries(fileTree).map(([dir, files]) => (
<div key={dir} className="mb-1">
{dir && (
<div
className="flex items-center gap-2 py-0.5 px-3 hover:bg-gray-100 rounded cursor-pointer text-gray-700"
onClick={() => toggleFolder(dir)}
>
{expandedFolders.has(dir) ? (
<FiChevronDown style={{ width: '16px', height: '16px' }} className="text-gray-600" />
) : (
<FiChevronRight style={{ width: '16px', height: '16px' }} className="text-gray-600" />
)}
{expandedFolders.has(dir) ? (
<BsFolder2Open style={{ width: '16px', height: '16px' }} className="text-yellow-600" />
) : (
<BsFolderFill style={{ width: '16px', height: '16px' }} className="text-yellow-600" />
)}
<span className="text-gray-700">{dir.split('/').pop()}</span>
</div>
)}
{(!dir || expandedFolders.has(dir)) && (
<div className={dir ? 'ml-8' : ''}>
{files.sort((a, b) => a.name.localeCompare(b.name)).map(fileInfo => {
const fullPath = dir ? `${dir}/${fileInfo.name}` : fileInfo.name;
const isSelected = selectedFile === fullPath;
return (
<div
key={fullPath}
className={`flex items-center gap-2 py-0.5 px-3 rounded cursor-pointer transition-all ${
isSelected
? 'bg-blue-500 text-white'
: 'text-gray-700 hover:bg-gray-100'
}`}
onClick={() => handleFileClick(fullPath)}
>
{getFileIcon(fileInfo.name)}
<span className={`text-xs flex items-center gap-1 ${isSelected ? 'font-medium' : ''}`}>
{fileInfo.name}
{fileInfo.edited && (
<span className={`text-[10px] px-1 rounded ${
isSelected ? 'bg-blue-400' : 'bg-orange-500 text-white'
}`}>✓</span>
)}
</span>
</div>
);
})}
</div>
)}
</div>
));
})()}
</div>
)}
</div>
</div>
</div>
)}
{/* Code Content */}
<div className="flex-1 flex flex-col overflow-hidden">
{/* Thinking Mode Display - Only show during active generation */}
{generationProgress.isGenerating && (generationProgress.isThinking || generationProgress.thinkingText) && (
<div className="px-6 pb-6">
<div className="flex items-center gap-2 mb-2">
<div className="text-purple-600 font-medium flex items-center gap-2">
{generationProgress.isThinking ? (
<>
<div className="w-3 h-3 bg-purple-600 rounded-full animate-pulse" />
AI is thinking...
</>
) : (
<>
<span className="text-purple-600">✓</span>
Thought for {generationProgress.thinkingDuration || 0} seconds
</>
)}
</div>
</div>
{generationProgress.thinkingText && (
<div className="bg-purple-950 border border-purple-700 rounded-lg p-4 max-h-48 overflow-y-auto scrollbar-hide">
<pre className="text-xs font-mono text-purple-300 whitespace-pre-wrap">
{generationProgress.thinkingText}
</pre>
</div>
)}
</div>
)}
{/* Live Code Display */}
<div className="flex-1 rounded-lg p-6 flex flex-col min-h-0 overflow-hidden">
<div className="flex-1 overflow-y-auto min-h-0 scrollbar-hide" ref={codeDisplayRef}>
{/* Show selected file if one is selected */}
{selectedFile ? (
<div className="animate-in fade-in slide-in-from-top-2 duration-300">
<div className="bg-black border border-gray-200 rounded-lg overflow-hidden shadow-sm">
<div className="px-4 py-2 bg-[#36322F] text-white flex items-center justify-between">
<div className="flex items-center gap-2">
{getFileIcon(selectedFile)}
<span className="font-mono text-sm">{selectedFile}</span>
</div>
<button
onClick={() => setSelectedFile(null)}
className="hover:bg-black/20 p-1 rounded transition-colors"
>
<svg width="16" height="16" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M6 18L18 6M6 6l12 12" />
</svg>
</button>
</div>
<div className="bg-gray-900 border border-gray-700 rounded">
<SyntaxHighlighter
language={(() => {
const ext = selectedFile.split('.').pop()?.toLowerCase();
if (ext === 'css') return 'css';
if (ext === 'json') return 'json';
if (ext === 'html') return 'html';
return 'jsx';
})()}
style={vscDarkPlus}
customStyle={{
margin: 0,
padding: '1rem',
fontSize: '0.875rem',
background: 'transparent',
}}
showLineNumbers={true}
>
{(() => {
// Find the file content from generated files
const file = generationProgress.files.find(f => f.path === selectedFile);
return file?.content || '// File content will appear here';
})()}
</SyntaxHighlighter>
</div>
</div>
</div>
) : /* If no files parsed yet, show loading or raw stream */
generationProgress.files.length === 0 && !generationProgress.currentFile ? (
generationProgress.isThinking ? (
// Beautiful loading state while thinking
<div className="flex items-center justify-center h-full">
<div className="text-center">
<div className="mb-8 relative">
<div className="w-48 h-48 mx-auto">
<div className="absolute inset-0 border-8 border-gray-800 rounded-full"></div>
<div className="absolute inset-0 border-8 border-green-500 rounded-full animate-spin border-t-transparent"></div>
</div>
</div>
<h3 className="text-xl font-medium text-white mb-2">AI is analyzing your request</h3>
<p className="text-gray-400 text-sm">{generationProgress.status || 'Preparing to generate code...'}</p>
</div>
</div>
) : (
<div className="bg-black border border-gray-200 rounded-lg overflow-hidden">
<div className="px-4 py-2 bg-gray-100 text-gray-900 flex items-center justify-between">
<div className="flex items-center gap-2">
<div className="w-16 h-16 border-2 border-orange-500 border-t-transparent rounded-full animate-spin" />
<span className="font-mono text-sm">Streaming code...</span>
</div>
</div>
<div className="p-4 bg-gray-900 rounded">
<SyntaxHighlighter
language="jsx"
style={vscDarkPlus}
customStyle={{
margin: 0,
padding: '1rem',
fontSize: '0.875rem',
background: 'transparent',
}}
showLineNumbers={true}
>
{generationProgress.streamedCode || 'Starting code generation...'}
</SyntaxHighlighter>
<span className="inline-block w-3 h-5 bg-orange-400 ml-1 animate-pulse" />
</div>
</div>
)
) : (
<div className="space-y-4">
{/* Show current file being generated */}
{generationProgress.currentFile && (
<div className="bg-black border-2 border-gray-400 rounded-lg overflow-hidden shadow-sm">
<div className="px-4 py-2 bg-[#36322F] text-white flex items-center justify-between">
<div className="flex items-center gap-2">
<div className="w-16 h-16 border-2 border-white border-t-transparent rounded-full animate-spin" />
<span className="font-mono text-sm">{generationProgress.currentFile.path}</span>
<span className={`px-2 py-0.5 text-xs rounded ${
generationProgress.currentFile.type === 'css' ? 'bg-blue-600 text-white' :
generationProgress.currentFile.type === 'javascript' ? 'bg-yellow-600 text-white' :
generationProgress.currentFile.type === 'json' ? 'bg-green-600 text-white' :
'bg-gray-200 text-gray-700'
}`}>
{generationProgress.currentFile.type === 'javascript' ? 'JSX' : generationProgress.currentFile.type.toUpperCase()}
</span>
</div>
</div>
<div className="bg-gray-900 border border-gray-700 rounded">
<SyntaxHighlighter
language={
generationProgress.currentFile.type === 'css' ? 'css' :
generationProgress.currentFile.type === 'json' ? 'json' :
generationProgress.currentFile.type === 'html' ? 'html' :
'jsx'
}
style={vscDarkPlus}
customStyle={{
margin: 0,
padding: '1rem',
fontSize: '0.75rem',
background: 'transparent',
}}
showLineNumbers={true}
>
{generationProgress.currentFile.content}
</SyntaxHighlighter>
<span className="inline-block w-3 h-4 bg-orange-400 ml-4 mb-4 animate-pulse" />
</div>
</div>
)}
{/* Show completed files */}
{generationProgress.files.map((file, idx) => (
<div key={idx} className="bg-white border border-gray-200 rounded-lg overflow-hidden">
<div className="px-4 py-2 bg-[#36322F] text-white flex items-center justify-between">
<div className="flex items-center gap-2">
<span className="text-green-500">✓</span>
<span className="font-mono text-sm">{file.path}</span>
</div>
<span className={`px-2 py-0.5 text-xs rounded ${
file.type === 'css' ? 'bg-blue-600 text-white' :
file.type === 'javascript' ? 'bg-yellow-600 text-white' :
file.type === 'json' ? 'bg-green-600 text-white' :
'bg-gray-200 text-gray-700'
}`}>
{file.type === 'javascript' ? 'JSX' : file.type.toUpperCase()}
</span>
</div>
<div className="bg-gray-900 border border-gray-700 max-h-48 overflow-y-auto scrollbar-hide">
<SyntaxHighlighter
language={
file.type === 'css' ? 'css' :
file.type === 'json' ? 'json' :
file.type === 'html' ? 'html' :
'jsx'
}
style={vscDarkPlus}
customStyle={{
margin: 0,
padding: '1rem',
fontSize: '0.75rem',
background: 'transparent',
}}
showLineNumbers={true}
wrapLongLines={true}
>
{file.content}
</SyntaxHighlighter>
</div>
</div>
))}
{/* Show remaining raw stream if there's content after the last file */}
{!generationProgress.currentFile && generationProgress.streamedCode.length > 0 && (
<div className="bg-black border border-gray-200 rounded-lg overflow-hidden">
<div className="px-4 py-2 bg-[#36322F] text-white flex items-center justify-between">
<div className="flex items-center gap-2">
<div className="w-16 h-16 border-2 border-gray-400 border-t-transparent rounded-full animate-spin" />
<span className="font-mono text-sm">Processing...</span>
</div>
</div>
<div className="bg-gray-900 border border-gray-700 rounded">
<SyntaxHighlighter
language="jsx"
style={vscDarkPlus}
customStyle={{
margin: 0,
padding: '1rem',
fontSize: '0.75rem',
background: 'transparent',
}}
showLineNumbers={false}
>
{(() => {
// Show only the tail of the stream after the last file
const lastFileEnd = generationProgress.files.length > 0
? generationProgress.streamedCode.lastIndexOf('</file>') + 7
: 0;
let remainingContent = generationProgress.streamedCode.slice(lastFileEnd).trim();
// Remove explanation tags and content
remainingContent = remainingContent.replace(/<explanation>[\s\S]*?<\/explanation>/g, '').trim();
// If only whitespace or nothing left, show loading message
// Use "Loading sandbox..." instead of "Waiting for next file..." for better UX
return remainingContent || 'Loading sandbox...';
})()}
</SyntaxHighlighter>
</div>
</div>
)}
</div>
)}
</div>
</div>
{/* Progress indicator */}
{generationProgress.components.length > 0 && (
<div className="mx-6 mb-6">
<div className="h-2 bg-gray-200 rounded-full overflow-hidden">
<div
className="h-full bg-gradient-to-r from-orange-500 to-orange-400 transition-all duration-300"
style={{
width: `${(generationProgress.currentComponent / Math.max(generationProgress.components.length, 1)) * 100}%`
}}
/>
</div>
</div>
)}
</div>
</div>
);
} else if (activeTab === 'preview') {
// Show loading state for initial generation or when starting a new generation with existing sandbox
const isInitialGeneration = !sandboxData?.url && (urlScreenshot || isCapturingScreenshot || isPreparingDesign || loadingStage);
const isNewGenerationWithSandbox = isStartingNewGeneration && sandboxData?.url;
const shouldShowLoadingOverlay = (isInitialGeneration || isNewGenerationWithSandbox) &&
(loading || generationProgress.isGenerating || isPreparingDesign || loadingStage || isCapturingScreenshot || isStartingNewGeneration);
if (isInitialGeneration || isNewGenerationWithSandbox) {
return (
<div className="relative w-full h-full bg-gray-900">
{/* Screenshot as background when available */}
{urlScreenshot && (
/* eslint-disable-next-line @next/next/no-img-element */
<img
src={urlScreenshot}
alt="Website preview"
className="absolute inset-0 w-full h-full object-cover transition-opacity duration-700"
style={{
opacity: isScreenshotLoaded ? 1 : 0,
willChange: 'opacity'
}}
onLoad={() => setIsScreenshotLoaded(true)}
loading="eager"
/>
)}
{/* Loading overlay - only show when actively processing initial generation */}
{shouldShowLoadingOverlay && (
<div className="absolute inset-0 bg-black/70 flex flex-col items-center justify-center backdrop-blur-sm">
{/* Loading animation with skeleton */}
<div className="text-center max-w-md">
{/* Animated skeleton lines */}
<div className="mb-6 space-y-3">
<div className="h-2 bg-gradient-to-r from-transparent via-white/20 to-transparent rounded animate-pulse"
style={{ animationDuration: '1.5s', animationDelay: '0s' }} />
<div className="h-2 bg-gradient-to-r from-transparent via-white/20 to-transparent rounded animate-pulse w-4/5 mx-auto"
style={{ animationDuration: '1.5s', animationDelay: '0.2s' }} />
<div className="h-2 bg-gradient-to-r from-transparent via-white/20 to-transparent rounded animate-pulse w-3/5 mx-auto"
style={{ animationDuration: '1.5s', animationDelay: '0.4s' }} />
</div>
{/* Status text */}
<p className="text-white text-lg font-medium">
{isCapturingScreenshot ? 'Analyzing website...' :
isPreparingDesign ? 'Preparing design...' :
generationProgress.isGenerating ? 'Generating code...' :
'Loading...'}
</p>
{/* Subtle progress hint */}
<p className="text-white/60 text-sm mt-2">
{isCapturingScreenshot ? 'Taking a screenshot of the site' :
isPreparingDesign ? 'Understanding the layout and structure' :
generationProgress.isGenerating ? 'Writing React components' :
'Please wait...'}
</p>
</div>
</div>
)}
</div>
);
}
// Show sandbox iframe - keep showing during edits, only hide during initial loading
if (sandboxData?.url) {
return (
<div className="relative w-full h-full">
<iframe
ref={iframeRef}
src={sandboxData.url}
className="w-full h-full border-none"
title="Open Lovable Sandbox"
allow="clipboard-write"
sandbox="allow-scripts allow-same-origin allow-forms allow-popups allow-modals"
/>
{/* Package installation overlay - shows when installing packages or applying code */}
{codeApplicationState.stage && codeApplicationState.stage !== 'complete' && (
<div className="absolute inset-0 bg-white/95 backdrop-blur-sm flex items-center justify-center z-10">
<div className="text-center max-w-md">
<div className="mb-6">
{/* Animated icon based on stage */}
{codeApplicationState.stage === 'installing' ? (
<div className="w-16 h-16 mx-auto">
<svg className="w-full h-full animate-spin" fill="none" viewBox="0 0 24 24">
<circle className="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" strokeWidth="4"></circle>
<path className="opacity-75" fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
</svg>
</div>
) : null}
</div>
<h3 className="text-lg font-semibold text-gray-900 mb-2">
{codeApplicationState.stage === 'analyzing' && 'Analyzing code...'}
{codeApplicationState.stage === 'installing' && 'Installing packages...'}
{codeApplicationState.stage === 'applying' && 'Applying changes...'}
</h3>
{/* Package list during installation */}
{codeApplicationState.stage === 'installing' && codeApplicationState.packages && (
<div className="mb-4">
<div className="flex flex-wrap gap-2 justify-center">
{codeApplicationState.packages.map((pkg, index) => (
<span
key={index}
className={`px-2 py-1 text-xs rounded-full transition-all ${
codeApplicationState.installedPackages?.includes(pkg)
? 'bg-green-100 text-green-700'
: 'bg-gray-100 text-gray-600'
}`}
>
{pkg}
{codeApplicationState.installedPackages?.includes(pkg) && (
<span className="ml-1">✓</span>
)}
</span>
))}
</div>
</div>
)}
{/* Files being generated */}
{codeApplicationState.stage === 'applying' && codeApplicationState.filesGenerated && (
<div className="text-sm text-gray-600">
Creating {codeApplicationState.filesGenerated.length} files...
</div>
)}
<p className="text-sm text-gray-500 mt-2">
{codeApplicationState.stage === 'analyzing' && 'Parsing generated code and detecting dependencies...'}
{codeApplicationState.stage === 'installing' && 'This may take a moment while npm installs the required packages...'}
{codeApplicationState.stage === 'applying' && 'Writing files to your sandbox environment...'}
</p>
</div>
</div>
)}
{/* Show a subtle indicator when code is being edited/generated */}
{generationProgress.isGenerating && generationProgress.isEdit && !codeApplicationState.stage && (
<div className="absolute top-4 right-4 inline-flex items-center gap-2 px-3 py-1.5 bg-black/80 backdrop-blur-sm rounded-lg">
<div className="w-2 h-2 bg-green-400 rounded-full animate-pulse" />
<span className="text-white text-xs font-medium">Generating code...</span>
</div>
)}
{/* Refresh button */}
<button
onClick={() => {
if (iframeRef.current && sandboxData?.url) {
console.log('[Manual Refresh] Forcing iframe reload...');
const newSrc = `${sandboxData.url}?t=${Date.now()}&manual=true`;
iframeRef.current.src = newSrc;
}
}}
className="absolute bottom-4 right-4 bg-white/90 hover:bg-white text-gray-700 p-2 rounded-lg shadow-lg transition-all duration-200 hover:scale-105"
title="Refresh sandbox"
>
<svg width="16" height="16" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M4 4v5h.582m15.356 2A8.001 8.001 0 004.582 9m0 0H9m11 11v-5h-.581m0 0a8.003 8.003 0 01-15.357-2m15.357 2H15" />
</svg>
</button>
</div>
);
}
// Default state when no sandbox and no screenshot
return (
<div className="flex items-center justify-center h-full bg-gray-50 text-gray-600 text-lg">
{screenshotError ? (
<div className="text-center">
<p className="mb-2">Failed to capture screenshot</p>
<p className="text-sm text-gray-500">{screenshotError}</p>
</div>
) : sandboxData ? (
<div className="text-gray-500">
<div className="w-16 h-16 border-2 border-gray-300 border-t-transparent rounded-full animate-spin mx-auto mb-2" />
<p className="text-sm">Loading preview...</p>
</div>
) : (
<div className="text-gray-500 text-center">
<p className="text-sm">Start chatting to create your first app</p>
</div>
)}
</div>
);
}
return null;
};
const sendChatMessage = async () => {
const message = aiChatInput.trim();
if (!message) return;
if (!aiEnabled) {
addChatMessage('AI is disabled. Please enable it first.', 'system');
return;
}
addChatMessage(message, 'user');
setAiChatInput('');
// Check for special commands
const lowerMessage = message.toLowerCase().trim();
if (lowerMessage === 'check packages' || lowerMessage === 'install packages' || lowerMessage === 'npm install') {
if (!sandboxData) {
// More helpful message - user might be trying to run this too early
addChatMessage('The sandbox is still being set up. Please wait for the generation to complete, then try again.', 'system');
return;
}
await checkAndInstallPackages();
return;
}
// Start sandbox creation in parallel if needed
let sandboxPromise: Promise<void> | null = null;
let sandboxCreating = false;
if (!sandboxData) {
sandboxCreating = true;
addChatMessage('Creating sandbox while I plan your app...', 'system');
sandboxPromise = createSandbox(true).catch((error: any) => {
addChatMessage(`Failed to create sandbox: ${error.message}`, 'system');
throw error;
});
}
// Determine if this is an edit
const isEdit = conversationContext.appliedCode.length > 0;
try {
// Generation tab is already active from scraping phase
setGenerationProgress(prev => ({
...prev, // Preserve all existing state
isGenerating: true,
status: 'Starting AI generation...',
components: [],
currentComponent: 0,
streamedCode: '',
isStreaming: false,
isThinking: true,
thinkingText: 'Analyzing your request...',
thinkingDuration: undefined,
currentFile: undefined,
lastProcessedPosition: 0,
// Add isEdit flag to generation progress
isEdit: isEdit,
// Keep existing files for edits - we'll mark edited ones differently
files: prev.files
}));
// Backend now manages file state - no need to fetch from frontend
console.log('[chat] Using backend file cache for context');
const fullContext = {
sandboxId: sandboxData?.sandboxId || (sandboxCreating ? 'pending' : null),
structure: structureContent,
recentMessages: chatMessages.slice(-20),
conversationContext: conversationContext,
currentCode: promptInput,
sandboxUrl: sandboxData?.url,
sandboxCreating: sandboxCreating
};
// Debug what we're sending
console.log('[chat] Sending context to AI:');
console.log('[chat] - sandboxId:', fullContext.sandboxId);
console.log('[chat] - isEdit:', conversationContext.appliedCode.length > 0);
const response = await fetch('/api/generate-ai-code-stream', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
prompt: message,
model: aiModel,
context: fullContext,
isEdit: conversationContext.appliedCode.length > 0
})
});
if (!response.ok) {
throw new Error(`HTTP error! status: ${response.status}`);
}
const reader = response.body?.getReader();
const decoder = new TextDecoder();
let generatedCode = '';
let explanation = '';
let buffer = ''; // Buffer for incomplete lines
if (reader) {
while (true) {
const { done, value } = await reader.read();
if (done) break;
const chunk = decoder.decode(value, { stream: true });
console.log('[chat] Received chunk:', chunk.length, 'bytes');
buffer += chunk;
const lines = buffer.split('\n');
// Keep the last line in buffer if it's incomplete
buffer = lines.pop() || '';
for (const line of lines) {
if (line.startsWith('data: ')) {
try {
const data = JSON.parse(line.slice(6));
if (data.type === 'status') {
setGenerationProgress(prev => ({ ...prev, status: data.message }));
} else if (data.type === 'thinking') {
setGenerationProgress(prev => ({
...prev,
isThinking: true,
thinkingText: (prev.thinkingText || '') + data.text
}));
} else if (data.type === 'thinking_complete') {
setGenerationProgress(prev => ({
...prev,
isThinking: false,
thinkingDuration: data.duration
}));
} else if (data.type === 'conversation') {
// Add conversational text to chat only if it's not code
let text = data.text || '';
// Remove package tags from the text
text = text.replace(/<package>[^<]*<\/package>/g, '');
text = text.replace(/<packages>[^<]*<\/packages>/g, '');
// Filter out any XML tags and file content that slipped through
if (!text.includes('<file') && !text.includes('import React') &&
!text.includes('export default') && !text.includes('className=') &&
text.trim().length > 0) {
addChatMessage(text.trim(), 'ai');
}
} else if (data.type === 'stream' && data.raw) {
setGenerationProgress(prev => {
const newStreamedCode = prev.streamedCode + data.text;
// Tab is already switched after scraping
const updatedState = {
...prev,
streamedCode: newStreamedCode,
isStreaming: true,
isThinking: false,
status: 'Generating code...'
};
// Process complete files from the accumulated stream
const fileRegex = /<file path="([^"]+)">([^]*?)<\/file>/g;
let match;
const processedFiles = new Set(prev.files.map(f => f.path));
while ((match = fileRegex.exec(newStreamedCode)) !== null) {
const filePath = match[1];
const fileContent = match[2];
// Only add if we haven't processed this file yet
if (!processedFiles.has(filePath)) {
const fileExt = filePath.split('.').pop() || '';
const fileType = fileExt === 'jsx' || fileExt === 'js' ? 'javascript' :
fileExt === 'css' ? 'css' :
fileExt === 'json' ? 'json' :
fileExt === 'html' ? 'html' : 'text';
// Check if file already exists
const existingFileIndex = updatedState.files.findIndex(f => f.path === filePath);
if (existingFileIndex >= 0) {
// Update existing file and mark as edited
updatedState.files = [
...updatedState.files.slice(0, existingFileIndex),
{
...updatedState.files[existingFileIndex],
content: fileContent.trim(),
type: fileType,
completed: true,
edited: true
},
...updatedState.files.slice(existingFileIndex + 1)
];
} else {
// Add new file
updatedState.files = [...updatedState.files, {
path: filePath,
content: fileContent.trim(),
type: fileType,
completed: true,
edited: false
}];
}
// Only show file status if not in edit mode
if (!prev.isEdit) {
updatedState.status = `Completed ${filePath}`;
}
processedFiles.add(filePath);
}
}
// Check for current file being generated (incomplete file at the end)
const lastFileMatch = newStreamedCode.match(/<file path="([^"]+)">([^]*?)$/);
if (lastFileMatch && !lastFileMatch[0].includes('</file>')) {
const filePath = lastFileMatch[1];
const partialContent = lastFileMatch[2];
if (!processedFiles.has(filePath)) {
const fileExt = filePath.split('.').pop() || '';
const fileType = fileExt === 'jsx' || fileExt === 'js' ? 'javascript' :
fileExt === 'css' ? 'css' :
fileExt === 'json' ? 'json' :
fileExt === 'html' ? 'html' : 'text';
updatedState.currentFile = {
path: filePath,
content: partialContent,
type: fileType
};
// Only show file status if not in edit mode
if (!prev.isEdit) {
updatedState.status = `Generating ${filePath}`;
}
}
} else {
updatedState.currentFile = undefined;
}
return updatedState;
});
} else if (data.type === 'app') {
setGenerationProgress(prev => ({
...prev,
status: 'Generated App.jsx structure'
}));
} else if (data.type === 'component') {
setGenerationProgress(prev => ({
...prev,
status: `Generated ${data.name}`,
components: [...prev.components, {
name: data.name,
path: data.path,
completed: true
}],
currentComponent: data.index
}));
} else if (data.type === 'package') {
// Handle package installation from tool calls
setGenerationProgress(prev => ({
...prev,
status: data.message || `Installing ${data.name}`
}));
} else if (data.type === 'complete') {
generatedCode = data.generatedCode;
explanation = data.explanation;
// Save the last generated code
setConversationContext(prev => ({
...prev,
lastGeneratedCode: generatedCode
}));
// Clear thinking state when generation completes
setGenerationProgress(prev => ({
...prev,
isThinking: false,
thinkingText: undefined,
thinkingDuration: undefined
}));
// Store packages to install from tool calls
if (data.packagesToInstall && data.packagesToInstall.length > 0) {
console.log('[generate-code] Packages to install from tools:', data.packagesToInstall);
// Store packages globally for later installation
(window as any).pendingPackages = data.packagesToInstall;
}
// Parse all files from the completed code if not already done
const fileRegex = /<file path="([^"]+)">([^]*?)<\/file>/g;
const parsedFiles: Array<{path: string; content: string; type: string; completed: boolean}> = [];
let fileMatch;
while ((fileMatch = fileRegex.exec(data.generatedCode)) !== null) {
const filePath = fileMatch[1];
const fileContent = fileMatch[2];
const fileExt = filePath.split('.').pop() || '';
const fileType = fileExt === 'jsx' || fileExt === 'js' ? 'javascript' :
fileExt === 'css' ? 'css' :
fileExt === 'json' ? 'json' :
fileExt === 'html' ? 'html' : 'text';
parsedFiles.push({
path: filePath,
content: fileContent.trim(),
type: fileType,
completed: true
});
}
setGenerationProgress(prev => ({
...prev,
status: `Generated ${parsedFiles.length > 0 ? parsedFiles.length : prev.files.length} file${(parsedFiles.length > 0 ? parsedFiles.length : prev.files.length) !== 1 ? 's' : ''}!`,
isGenerating: false,
isStreaming: false,
isEdit: prev.isEdit,
// Keep the files that were already parsed during streaming
files: prev.files.length > 0 ? prev.files : parsedFiles
}));
} else if (data.type === 'error') {
throw new Error(data.error);
}
} catch (e) {
console.error('Failed to parse SSE data:', e);
}
}
}
}
}
if (generatedCode) {
// Parse files from generated code for metadata
const fileRegex = /<file path="([^"]+)">([^]*?)<\/file>/g;
const generatedFiles = [];
let match;
while ((match = fileRegex.exec(generatedCode)) !== null) {
generatedFiles.push(match[1]);
}
// Show appropriate message based on edit mode
if (isEdit && generatedFiles.length > 0) {
// For edits, show which file(s) were edited
const editedFileNames = generatedFiles.map(f => f.split('/').pop()).join(', ');
addChatMessage(
explanation || `Updated ${editedFileNames}`,
'ai',
{
appliedFiles: [generatedFiles[0]] // Only show the first edited file
}
);
} else {
// For new generation, show all files
addChatMessage(explanation || 'Code generated!', 'ai', {
appliedFiles: generatedFiles
});
}
setPromptInput(generatedCode);
// Don't show the Generated Code panel by default
// setLeftPanelVisible(true);
// Wait for sandbox creation if it's still in progress
let activeSandboxData = sandboxData;
if (sandboxPromise) {
addChatMessage('Waiting for sandbox to be ready...', 'system');
try {
const newSandboxData = await sandboxPromise;
if (newSandboxData != null) {
activeSandboxData = newSandboxData;
// Also update the state for future use
setSandboxData(newSandboxData);
}
// Remove the waiting message
setChatMessages(prev => prev.filter(msg => msg.content !== 'Waiting for sandbox to be ready...'));
} catch {
addChatMessage('Sandbox creation failed. Cannot apply code.', 'system');
return;
}
}
if (activeSandboxData && generatedCode) {
// For new sandbox creations (especially Vercel), add a delay to ensure Vite is ready
if (sandboxCreating) {
console.log('[startGeneration] New sandbox created, waiting for services to be ready...');
await new Promise(resolve => setTimeout(resolve, 2000));
}
// Use isEdit flag that was determined at the start
// Pass the sandbox data from the promise if it's different from the state
await applyGeneratedCode(generatedCode, isEdit, activeSandboxData !== sandboxData ? activeSandboxData : undefined);
}
}
// Show completion status briefly then switch to preview
setGenerationProgress(prev => ({
...prev,
isGenerating: false,
isStreaming: false,
status: 'Generation complete!',
isEdit: prev.isEdit,
// Clear thinking state on completion
isThinking: false,
thinkingText: undefined,
thinkingDuration: undefined
}));
setTimeout(() => {
// Switch to preview but keep files for display
setActiveTab('preview');
}, 1000); // Reduced from 3000ms to 1000ms
} catch (error: any) {
setChatMessages(prev => prev.filter(msg => msg.content !== 'Thinking...'));
addChatMessage(`Error: ${error.message}`, 'system');
// Reset generation progress and switch back to preview on error
setGenerationProgress({
isGenerating: false,
status: '',
components: [],
currentComponent: 0,
streamedCode: '',
isStreaming: false,
isThinking: false,
thinkingText: undefined,
thinkingDuration: undefined,
files: [],
currentFile: undefined,
lastProcessedPosition: 0
});
setActiveTab('preview');
}
};
const downloadZip = async () => {
if (!sandboxData) {
addChatMessage('Please wait for the sandbox to be created before downloading.', 'system');
return;
}
setLoading(true);
log('Creating zip file...');
addChatMessage('Creating ZIP file of your Vite app...', 'system');
try {
const response = await fetch('/api/create-zip', {
method: 'POST',
headers: { 'Content-Type': 'application/json' }
});
const data = await response.json();
if (data.success) {
log('Zip file created!');
addChatMessage('ZIP file created! Download starting...', 'system');
const link = document.createElement('a');
link.href = data.dataUrl;
link.download = data.fileName || 'e2b-project.zip';
document.body.appendChild(link);
link.click();
document.body.removeChild(link);
addChatMessage(
'Your Vite app has been downloaded! To run it locally:\n' +
'1. Unzip the file\n' +
'2. Run: npm install\n' +
'3. Run: npm run dev\n' +
'4. Open http://localhost:5173',
'system'
);
} else {
throw new Error(data.error);
}
} catch (error: any) {
log(`Failed to create zip: ${error.message}`, 'error');
addChatMessage(`Failed to create ZIP: ${error.message}`, 'system');
} finally {
setLoading(false);
}
};
const reapplyLastGeneration = async () => {
if (!conversationContext.lastGeneratedCode) {
addChatMessage('No previous generation to re-apply', 'system');
return;
}
if (!sandboxData) {
addChatMessage('Please create a sandbox first', 'system');
return;
}
addChatMessage('Re-applying last generation...', 'system');
const isEdit = conversationContext.appliedCode.length > 0;
await applyGeneratedCode(conversationContext.lastGeneratedCode, isEdit);
};
// Auto-scroll code display to bottom when streaming
useEffect(() => {
if (codeDisplayRef.current && generationProgress.isStreaming) {
codeDisplayRef.current.scrollTop = codeDisplayRef.current.scrollHeight;
}
}, [generationProgress.streamedCode, generationProgress.isStreaming]);
const toggleFolder = (folderPath: string) => {
const newExpanded = new Set(expandedFolders);
if (newExpanded.has(folderPath)) {
newExpanded.delete(folderPath);
} else {
newExpanded.add(folderPath);
}
setExpandedFolders(newExpanded);
};
const handleFileClick = async (filePath: string) => {
setSelectedFile(filePath);
// TODO: Add file content fetching logic here
};
const getFileIcon = (fileName: string) => {
const ext = fileName.split('.').pop()?.toLowerCase();
if (ext === 'jsx' || ext === 'js') {
return <SiJavascript style={{ width: '16px', height: '16px' }} className="text-yellow-500" />;
} else if (ext === 'tsx' || ext === 'ts') {
return <SiReact style={{ width: '16px', height: '16px' }} className="text-blue-500" />;
} else if (ext === 'css') {
return <SiCss3 style={{ width: '16px', height: '16px' }} className="text-blue-500" />;
} else if (ext === 'json') {
return <SiJson style={{ width: '16px', height: '16px' }} className="text-gray-600" />;
} else {
return <FiFile style={{ width: '16px', height: '16px' }} className="text-gray-600" />;
}
};
// const clearChatHistory = () => {
// setChatMessages([{
// content: 'Chat history cleared. How can I help you?',
// type: 'system',
// timestamp: new Date()
// }]);
// };
//
// const cloneWebsite = async () => {
// let url = urlInput.trim();
// if (!url) {
// setUrlStatus(prev => [...prev, 'Please enter a URL']);
// return;
// }
//
// if (!url.match(/^https?:\/\//i)) {
// url = 'https://' + url;
// }
//
// setUrlStatus([`Using: ${url}`, 'Starting to scrape...']);
//
// setUrlOverlayVisible(false);
//
// // Remove protocol for cleaner display
// const cleanUrl = url.replace(/^https?:\/\//i, '');
// addChatMessage(`Starting to clone ${cleanUrl}...`, 'system');
//
// // Capture screenshot immediately and switch to preview tab
// captureUrlScreenshot(url);
//
// try {
// addChatMessage('Scraping website content...', 'system');
// const scrapeResponse = await fetch('/api/scrape-url-enhanced', {
// method: 'POST',
// headers: { 'Content-Type': 'application/json' },
// body: JSON.stringify({ url })
// });
//
// if (!scrapeResponse.ok) {
// throw new Error(`Scraping failed: ${scrapeResponse.status}`);
// }
//
// const scrapeData = await scrapeResponse.json();
//
// if (!scrapeData.success) {
// throw new Error(scrapeData.error || 'Failed to scrape website');
// }
//
// addChatMessage(`Scraped ${scrapeData.content.length} characters from ${url}`, 'system');
//
// // Clear preparing design state and switch to generation tab
// setIsPreparingDesign(false);
// setActiveTab('generation');
//
// setConversationContext(prev => ({
// ...prev,
// scrapedWebsites: [...prev.scrapedWebsites, {
// url,
// content: scrapeData,
// timestamp: new Date()
// }],
// currentProject: `Clone of ${url}`
// }));
//
// // Start sandbox creation in parallel with code generation
// let sandboxPromise: Promise<any> | null = null;
// if (!sandboxData) {
// addChatMessage('Creating sandbox while generating your React app...', 'system');
// sandboxPromise = createSandbox(true);
// }
//
// addChatMessage('Analyzing and generating React recreation...', 'system');
//
// const recreatePrompt = `I scraped this website and want you to recreate it as a modern React application.
//
// URL: ${url}
//
// SCRAPED CONTENT:
// ${scrapeData.content}
//
// ${homeContextInput ? `ADDITIONAL CONTEXT/REQUIREMENTS FROM USER:
// ${homeContextInput}
//
// Please incorporate these requirements into the design and implementation.` : ''}
//
// REQUIREMENTS:
// 1. Create a COMPLETE React application with App.jsx as the main component
// 2. App.jsx MUST import and render all other components
// 3. Recreate the main sections and layout from the scraped content
// 4. ${homeContextInput ? `Apply the user's context/theme: "${homeContextInput}"` : `Use a modern dark theme with excellent contrast:
// - Background: #0a0a0a
// - Text: #ffffff
// - Links: #60a5fa
// - Accent: #3b82f6`}
// 5. Make it fully responsive
// 6. Include hover effects and smooth transitions
// 7. Create separate components for major sections (Header, Hero, Features, etc.)
// 8. Use semantic HTML5 elements
//
// IMPORTANT CONSTRAINTS:
// - DO NOT use React Router or any routing libraries
// - Use regular <a> tags with href="#section" for navigation, NOT Link or NavLink components
// - This is a single-page application, no routing needed
// - ALWAYS create src/App.jsx that imports ALL components
// - Each component should be in src/components/
// - Use Tailwind CSS for ALL styling (no custom CSS files)
// - Make sure the app actually renders visible content
// - Create ALL components that you reference in imports
//
// IMAGE HANDLING RULES:
// - When the scraped content includes images, USE THE ORIGINAL IMAGE URLS whenever appropriate
// - Keep existing images from the scraped site (logos, product images, hero images, icons, etc.)
// - Use the actual image URLs provided in the scraped content, not placeholders
// - Only use placeholder images or generic services when no real images are available
// - For company logos and brand images, ALWAYS use the original URLs to maintain brand identity
// - If scraped data contains image URLs, include them in your img tags
// - Example: If you see "https://example.com/logo.png" in the scraped content, use that exact URL
//
// Focus on the key sections and content, making it clean and modern while preserving visual assets.`;
//
// setGenerationProgress(prev => ({
// isGenerating: true,
// status: 'Initializing AI...',
// components: [],
// currentComponent: 0,
// streamedCode: '',
// isStreaming: true,
// isThinking: false,
// thinkingText: undefined,
// thinkingDuration: undefined,
// // Keep previous files until new ones are generated
// files: prev.files || [],
// currentFile: undefined,
// lastProcessedPosition: 0
// }));
//
// // Switch to generation tab when starting
// setActiveTab('generation');
//
// const aiResponse = await fetch('/api/generate-ai-code-stream', {
// method: 'POST',
// headers: { 'Content-Type': 'application/json' },
// body: JSON.stringify({
// prompt: recreatePrompt,
// model: aiModel,
// context: {
// sandboxId: sandboxData?.id,
// structure: structureContent,
// conversationContext: conversationContext
// }
// })
// });
//
// if (!aiResponse.ok) {
// throw new Error(`AI generation failed: ${aiResponse.status}`);
// }
//
// const reader = aiResponse.body?.getReader();
// const decoder = new TextDecoder();
// let generatedCode = '';
// let explanation = '';
//
// if (reader) {
// while (true) {
// const { done, value } = await reader.read();
// if (done) break;
//
// const chunk = decoder.decode(value);
// const lines = chunk.split('\n');
//
// for (const line of lines) {
// if (line.startsWith('data: ')) {
// try {
// const data = JSON.parse(line.slice(6));
//
// if (data.type === 'status') {
// setGenerationProgress(prev => ({ ...prev, status: data.message }));
// } else if (data.type === 'thinking') {
// setGenerationProgress(prev => ({
// ...prev,
// isThinking: true,
// thinkingText: (prev.thinkingText || '') + data.text
// }));
// } else if (data.type === 'thinking_complete') {
// setGenerationProgress(prev => ({
// ...prev,
// isThinking: false,
// thinkingDuration: data.duration
// }));
// } else if (data.type === 'conversation') {
// // Add conversational text to chat only if it's not code
// let text = data.text || '';
//
// // Remove package tags from the text
// text = text.replace(/<package>[^<]*<\/package>/g, '');
// text = text.replace(/<packages>[^<]*<\/packages>/g, '');
//
// // Filter out any XML tags and file content that slipped through
// if (!text.includes('<file') && !text.includes('import React') &&
// !text.includes('export default') && !text.includes('className=') &&
// text.trim().length > 0) {
// addChatMessage(text.trim(), 'ai');
// }
// } else if (data.type === 'stream' && data.raw) {
// setGenerationProgress(prev => ({
// ...prev,
// streamedCode: prev.streamedCode + data.text,
// lastProcessedPosition: prev.lastProcessedPosition || 0
// }));
// } else if (data.type === 'component') {
// setGenerationProgress(prev => ({
// ...prev,
// status: `Generated ${data.name}`,
// components: [...prev.components, {
// name: data.name,
// path: data.path,
// completed: true
// }],
// currentComponent: prev.currentComponent + 1
// }));
// } else if (data.type === 'complete') {
// generatedCode = data.generatedCode;
// explanation = data.explanation;
//
// // Save the last generated code
// setConversationContext(prev => ({
// ...prev,
// lastGeneratedCode: generatedCode
// }));
// }
// } catch (e) {
// console.error('Error parsing streaming data:', e);
// }
// }
// }
// }
// }
//
// setGenerationProgress(prev => ({
// ...prev,
// isGenerating: false,
// isStreaming: false,
// status: 'Generation complete!',
// isEdit: prev.isEdit
// }));
//
// if (generatedCode) {
// addChatMessage('AI recreation generated!', 'system');
//
// // Add the explanation to chat if available
// if (explanation && explanation.trim()) {
// addChatMessage(explanation, 'ai');
// }
//
// setPromptInput(generatedCode);
// // Don't show the Generated Code panel by default
// // setLeftPanelVisible(true);
//
// // Wait for sandbox creation if it's still in progress
// let activeSandboxData = sandboxData;
// if (sandboxPromise) {
// addChatMessage('Waiting for sandbox to be ready...', 'system');
// try {
// const newSandboxData = await sandboxPromise;
// if (newSandboxData) {
// activeSandboxData = newSandboxData;
// }
// // Remove the waiting message
// setChatMessages(prev => prev.filter(msg => msg.content !== 'Waiting for sandbox to be ready...'));
// } catch (error: any) {
// addChatMessage('Sandbox creation failed. Cannot apply code.', 'system');
// throw error;
// }
// }
//
// // Only apply code if we have sandbox data
// if (activeSandboxData) {
// // First application for cloned site should not be in edit mode
// await applyGeneratedCode(generatedCode, false);
// }
//
// addChatMessage(
// `Successfully recreated ${url} as a modern React app${homeContextInput ? ` with your requested context: "${homeContextInput}"` : ''}! The scraped content is now in my context, so you can ask me to modify specific sections or add features based on the original site.`,
// 'ai',
// {
// scrapedUrl: url,
// scrapedContent: scrapeData,
// generatedCode: generatedCode
// }
// );
//
// setUrlInput('');
// setUrlStatus([]);
// setHomeContextInput('');
//
// // Clear generation progress and all screenshot/design states
// setGenerationProgress(prev => ({
// ...prev,
// isGenerating: false,
// isStreaming: false,
// status: 'Generation complete!'
// }));
//
// // Clear screenshot and preparing design states to prevent them from showing on next run
// setUrlScreenshot(null);
// setIsPreparingDesign(false);
// setTargetUrl('');
// setScreenshotError(null);
// setLoadingStage(null); // Clear loading stage
// setShowLoadingBackground(false); // Clear loading background
//
// setTimeout(() => {
// // Switch back to preview tab but keep files
// setActiveTab('preview');
// }, 1000); // Show completion briefly then switch
// } else {
// throw new Error('Failed to generate recreation');
// }
//
// } catch (error: any) {
// addChatMessage(`Failed to clone website: ${error.message}`, 'system');
// setUrlStatus([]);
// setIsPreparingDesign(false);
// // Clear all states on error
// setUrlScreenshot(null);
// setTargetUrl('');
// setScreenshotError(null);
// setLoadingStage(null);
// setGenerationProgress(prev => ({
// ...prev,
// isGenerating: false,
// isStreaming: false,
// status: '',
// // Keep files to display in sidebar
// files: prev.files
// }));
// setActiveTab('preview');
// }
// };
const captureUrlScreenshot = async (url: string) => {
setIsCapturingScreenshot(true);
setScreenshotError(null);
try {
const response = await fetch('/api/scrape-screenshot', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ url })
});
const data = await response.json();
if (data.success && data.screenshot) {
setIsScreenshotLoaded(false); // Reset loaded state for new screenshot
setUrlScreenshot(data.screenshot);
// Set preparing design state
setIsPreparingDesign(true);
// Store the clean URL for display
const cleanUrl = url.replace(/^https?:\/\//i, '');
setTargetUrl(cleanUrl);
// Switch to preview tab to show the screenshot
if (activeTab !== 'preview') {
setActiveTab('preview');
}
} else {
setScreenshotError(data.error || 'Failed to capture screenshot');
}
} catch (error) {
console.error('Failed to capture screenshot:', error);
setScreenshotError('Network error while capturing screenshot');
} finally {
setIsCapturingScreenshot(false);
}
};
const handleHomeScreenSubmit = async (e: React.FormEvent) => {
e.preventDefault();
await startGeneration();
};
const startGeneration = async () => {
if (!homeUrlInput.trim()) return;
setHomeScreenFading(true);
// Set immediate loading state for better UX
setIsStartingNewGeneration(true);
setLoadingStage('gathering');
// Immediately switch to preview tab to show loading
setActiveTab('preview');
// Set loading background to ensure proper visual feedback
setShowLoadingBackground(true);
// Clear messages and immediately show the initial message
setChatMessages([]);
let displayUrl = homeUrlInput.trim();
if (!displayUrl.match(/^https?:\/\//i)) {
displayUrl = 'https://' + displayUrl;
}
// Remove protocol for cleaner display
const cleanUrl = displayUrl.replace(/^https?:\/\//i, '');
// Check if we're in brand extension mode
const brandExtensionMode = sessionStorage.getItem('brandExtensionMode') === 'true';
addChatMessage(
brandExtensionMode
? `Analyzing brand from ${cleanUrl}...`
: `Starting to clone ${cleanUrl}...`,
'system'
);
// Start creating sandbox and capturing screenshot immediately in parallel
const sandboxPromise = !sandboxData ? createSandbox(true) : Promise.resolve(null);
// Set loading stage immediately before hiding home screen
setLoadingStage('gathering');
// Also ensure we're on preview tab to show the loading overlay
setActiveTab('preview');
// Always capture screenshot for new URLs, even if sandbox exists
// This ensures the loading screen shows properly
captureUrlScreenshot(displayUrl);
setTimeout(async () => {
setShowHomeScreen(false);
setHomeScreenFading(false);
// Clear the starting flag after transition
setTimeout(() => {
setIsStartingNewGeneration(false);
}, 1000);
// Wait for sandbox to be ready (if it's still creating)
const createdSandbox = await sandboxPromise;
// Now start the clone process which will stream the generation
setUrlInput(homeUrlInput);
setUrlOverlayVisible(false); // Make sure overlay is closed
setUrlStatus(['Scraping website content...']);
try {
// Scrape the website
let url = homeUrlInput.trim();
if (!url.match(/^https?:\/\//i)) {
url = 'https://' + url;
}
// Check if we're in brand extension mode
const brandExtensionMode = sessionStorage.getItem('brandExtensionMode') === 'true';
const brandExtensionPrompt = sessionStorage.getItem('brandExtensionPrompt') || '';
// Screenshot is already being captured in parallel above
let scrapeData: ScrapeData | undefined;
let brandGuidelines: any;
if (brandExtensionMode) {
// === BRAND EXTENSION MODE ===
addChatMessage('Extracting brand styles from the website...', 'system');
// Call the brand extraction endpoint
const extractResponse = await fetch('/api/extract-brand-styles', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
url,
prompt: brandExtensionPrompt
})
});
if (!extractResponse.ok) {
throw new Error('Failed to extract brand styles');
}
brandGuidelines = await extractResponse.json();
if (!brandGuidelines.success) {
throw new Error(brandGuidelines.error || 'Failed to extract brand styles');
}
// Display branding summary with visual UI
addChatMessage(`Acquired branding format from ${cleanUrl}`, 'system', {
brandingData: brandGuidelines.guidelines,
sourceUrl: cleanUrl
});
addChatMessage(`Building your custom component using these brand guidelines...`, 'system');
// Clear the flags after use
sessionStorage.removeItem('brandExtensionMode');
sessionStorage.removeItem('brandExtensionPrompt');
} else {
// === NORMAL CLONE MODE ===
// Check if we have pre-scraped markdown content from search results
const storedMarkdown = sessionStorage.getItem('siteMarkdown');
if (storedMarkdown) {
// Use the pre-scraped content
scrapeData = {
success: true,
content: storedMarkdown,
title: new URL(url).hostname,
source: 'search-result'
};
sessionStorage.removeItem('siteMarkdown'); // Clear after use
addChatMessage('Using cached content from search results...', 'system');
} else {
// Perform fresh scraping
const scrapeResponse = await fetch('/api/scrape-url-enhanced', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ url })
});
if (!scrapeResponse.ok) {
throw new Error('Failed to scrape website');
}
scrapeData = await scrapeResponse.json() as ScrapeData;
if (!scrapeData.success) {
throw new Error(scrapeData.error || 'Failed to scrape website');
}
}
}
setUrlStatus(brandExtensionMode ? ['Brand styles extracted!', 'Building your component...'] : ['Website scraped successfully!', 'Generating React app...']);
// Clear preparing design state and switch to generation tab
setIsPreparingDesign(false);
setIsScreenshotLoaded(false); // Reset loaded state
setUrlScreenshot(null); // Clear screenshot when starting generation
setTargetUrl(''); // Clear target URL
// Update loading stage to planning
setLoadingStage('planning');
// Brief pause before switching to generation tab
setTimeout(() => {
setLoadingStage('generating');
setActiveTab('generation');
}, 1500);
// Build the appropriate prompt based on mode
let prompt;
if (brandExtensionMode && brandGuidelines) {
// === BRAND EXTENSION PROMPT ===
// Store brand guidelines in conversation context
setConversationContext(prev => ({
...prev,
scrapedWebsites: [...prev.scrapedWebsites, {
url: url,
content: { brandGuidelines },
timestamp: new Date()
}],
currentProject: `Custom build using ${url} brand`
}));
// Extract comprehensive brand data
const branding = brandGuidelines.guidelines;
// Build detailed brand instruction string
const brandInstructions = `
BRAND GUIDELINES FROM ${url}:
COLOR SYSTEM:
- Color Scheme: ${branding.colorScheme || 'light'} mode
- Primary Color: ${branding.colors?.primary || 'not specified'}
- Accent Color: ${branding.colors?.accent || 'not specified'}
- Background: ${branding.colors?.background || 'not specified'}
- Text Primary: ${branding.colors?.textPrimary || 'not specified'}
- Link Color: ${branding.colors?.link || 'not specified'}
TYPOGRAPHY:
- Primary Font: ${branding.typography?.fontFamilies?.primary || 'system default'}
- Heading Font: ${branding.typography?.fontFamilies?.heading || 'system default'}
- Font Stack (Body): ${branding.typography?.fontStacks?.body?.join(', ') || 'system-ui, sans-serif'}
- Font Stack (Heading): ${branding.typography?.fontStacks?.heading?.join(', ') || 'system-ui, sans-serif'}
- H1 Size: ${branding.typography?.fontSizes?.h1 || '36px'}
- H2 Size: ${branding.typography?.fontSizes?.h2 || '30px'}
- Body Size: ${branding.typography?.fontSizes?.body || '16px'}
SPACING & LAYOUT:
- Base Spacing Unit: ${branding.spacing?.baseUnit || '4'}px
- Border Radius: ${branding.spacing?.borderRadius || '6px'}
BUTTON STYLES:
Primary Button:
- Background: ${branding.components?.buttonPrimary?.background || branding.colors?.primary}
- Text Color: ${branding.components?.buttonPrimary?.textColor || '#FFFFFF'}
- Border Radius: ${branding.components?.buttonPrimary?.borderRadius || branding.spacing?.borderRadius || '8px'}
- Shadow: ${branding.components?.buttonPrimary?.shadow || 'none'}
Secondary Button:
- Background: ${branding.components?.buttonSecondary?.background || '#F9F9F9'}
- Text Color: ${branding.components?.buttonSecondary?.textColor || branding.colors?.textPrimary}
- Border Radius: ${branding.components?.buttonSecondary?.borderRadius || branding.spacing?.borderRadius || '8px'}
- Shadow: ${branding.components?.buttonSecondary?.shadow || 'none'}
INPUT FIELDS:
- Border Color: ${branding.components?.input?.borderColor || '#CCCCCC'}
- Border Radius: ${branding.components?.input?.borderRadius || branding.spacing?.borderRadius || '6px'}
BRAND PERSONALITY:
- Tone: ${branding.personality?.tone || 'professional'}
- Energy: ${branding.personality?.energy || 'medium'}
- Target Audience: ${branding.personality?.targetAudience || 'general'}
DESIGN SYSTEM:
- Framework: ${branding.designSystem?.framework || 'tailwind'}
- Component Library: ${branding.designSystem?.componentLibrary || 'custom'}
ASSETS:
${branding.images?.logo ? `- Logo Available: Yes (use carefully if needed)` : '- Logo: Not available'}
${branding.images?.favicon ? `- Favicon: ${branding.images.favicon}` : ''}`;
prompt = `I want you to build a NEW React component/application based on these brand guidelines and the user's requirements.
<branding-format source="${url}">
${brandInstructions}
RAW BRAND DATA (for reference):
${JSON.stringify(branding, null, 2)}
</branding-format>
USER'S REQUEST:
${brandExtensionPrompt || 'Build a modern web component using these brand guidelines'}
IMPORTANT: The content above in the <branding-format> tags contains the extracted brand guidelines from ${url}.
Use these guidelines (colors, fonts, spacing, design patterns) to build what the user requested.
CRITICAL REQUIREMENTS:
- DO NOT recreate the original website at ${url}
- DO create a COMPLETELY NEW component that fulfills the user's request
- The user wants: "${brandExtensionPrompt}"
- Build ONLY what the user requested - nothing more
- App.jsx should render ONLY the requested component - no extra Header/Footer/Hero unless specifically requested
- Make it a minimal, focused implementation of the user's request
STYLING REQUIREMENTS:
- Apply the EXACT colors from the brand palette (primary, accent, background, text colors)
- Use the EXACT typography (font families, font sizes for h1, h2, body)
- Apply the spacing system (base unit: ${branding.spacing?.baseUnit || '4'}px)
- Use the specified border radius (${branding.spacing?.borderRadius || '6px'}) consistently
- Implement button styles EXACTLY as specified (colors, shadows, border radius)
- Style input fields with the exact border color and border radius
- Match the brand's ${branding.colorScheme || 'light'} color scheme
- Apply the brand personality: ${branding.personality?.tone || 'professional'} tone with ${branding.personality?.energy || 'medium'} energy
- Use Tailwind CSS with inline color values matching the brand palette EXACTLY
- If fonts need to be imported, add @import or @font-face rules to index.css
- Create custom CSS classes in index.css for complex shadows/effects that can't be done with Tailwind
FONT SETUP:
${branding.typography?.fontFamilies?.primary ? `
- Add font family "${branding.typography.fontFamilies.primary}" to your CSS
- Use font stack: ${branding.typography?.fontStacks?.body?.join(', ') || 'system-ui, sans-serif'}
- Set body font size to ${branding.typography?.fontSizes?.body || '16px'}` : '- Use system fonts'}
COMPONENT STRUCTURE:
- src/index.css - Include brand fonts, custom shadows/effects, and base styling
- src/App.jsx - Should ONLY render the requested component (e.g., just <PricingPage /> if user wants pricing)
- src/components/[RequestedComponent].jsx - The actual component fulfilling the user's request
TECHNICAL REQUIREMENTS:
- Create a WORKING, self-contained application
- DO NOT import components that don't exist
- Make sure the app renders immediately with visible content
- All colors must match the brand palette EXACTLY
- All spacing must use the ${branding.spacing?.baseUnit || '4'}px base unit
- Buttons must have the exact styling specified in the guidelines
Focus on building something NEW, minimal, and functional that perfectly matches the ${brandGuidelines.styleName || 'brand'} aesthetic and design system.`;
} else {
// === NORMAL CLONE MODE PROMPT ===
// Store scraped data in conversation context
if (!scrapeData) {
throw new Error('Scrape data is missing');
}
setConversationContext(prev => ({
...prev,
scrapedWebsites: [...prev.scrapedWebsites, {
url: url,
content: scrapeData,
timestamp: new Date()
}],
currentProject: `${url} Clone`
}));
// Filter out style-related context when using screenshot/URL-based generation
// Only keep user's explicit instructions, not inherited styles
let filteredContext = homeContextInput;
if (homeUrlInput && homeContextInput) {
// Check if the context contains default style names that shouldn't be inherited
const stylePatterns = [
'Glassmorphism style design',
'Neumorphism style design',
'Brutalism style design',
'Minimalist style design',
'Dark Mode style design',
'Gradient Rich style design',
'3D Depth style design',
'Retro Wave style design',
'Modern clean and minimalist style design',
'Fun colorful and playful style design',
'Corporate professional and sleek style design',
'Creative artistic and unique style design'
];
// If the context exactly matches or starts with a style pattern, filter it out
const startsWithStyle = stylePatterns.some(pattern =>
homeContextInput.trim().startsWith(pattern)
);
if (startsWithStyle) {
// Extract only the additional instructions part after the style
const additionalMatch = homeContextInput.match(/\. (.+)$/);
filteredContext = additionalMatch ? additionalMatch[1] : '';
}
}
prompt = `I want to recreate the ${url} website as a complete React application based on the scraped content below.
${JSON.stringify(scrapeData, null, 2)}
${filteredContext ? `ADDITIONAL CONTEXT/REQUIREMENTS FROM USER:
${filteredContext}
Please incorporate these requirements into the design and implementation.` : ''}
IMPORTANT INSTRUCTIONS:
- Create a COMPLETE, working React application
- Implement ALL sections and features from the original site
- Use Tailwind CSS for all styling (no custom CSS files)
- Make it responsive and modern
- Ensure all text content matches the original
- Create proper component structure
- Make sure the app actually renders visible content
- Create ALL components that you reference in imports
${filteredContext ? '- Apply the user\'s context/theme requirements throughout the application' : ''}
Focus on the key sections and content, making it clean and modern.`;
}
setGenerationProgress(prev => ({
isGenerating: true,
status: 'Initializing AI...',
components: [],
currentComponent: 0,
streamedCode: '',
isStreaming: true,
isThinking: false,
thinkingText: undefined,
thinkingDuration: undefined,
// Keep previous files until new ones are generated
files: prev.files || [],
currentFile: undefined,
lastProcessedPosition: 0
}));
const aiResponse = await fetch('/api/generate-ai-code-stream', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
prompt,
model: aiModel,
context: {
sandboxId: sandboxData?.sandboxId,
structure: structureContent,
conversationContext: conversationContext
}
})
});
if (!aiResponse.ok || !aiResponse.body) {
throw new Error('Failed to generate code');
}
const reader = aiResponse.body.getReader();
const decoder = new TextDecoder();
let generatedCode = '';
let explanation = '';
while (true) {
const { done, value } = await reader.read();
if (done) break;
const chunk = decoder.decode(value);
const lines = chunk.split('\n');
for (const line of lines) {
if (line.startsWith('data: ')) {
try {
const data = JSON.parse(line.slice(6));
if (data.type === 'status') {
setGenerationProgress(prev => ({ ...prev, status: data.message }));
} else if (data.type === 'thinking') {
setGenerationProgress(prev => ({
...prev,
isThinking: true,
thinkingText: (prev.thinkingText || '') + data.text
}));
} else if (data.type === 'thinking_complete') {
setGenerationProgress(prev => ({
...prev,
isThinking: false,
thinkingDuration: data.duration
}));
} else if (data.type === 'conversation') {
// Add conversational text to chat only if it's not code
let text = data.text || '';
// Remove package tags from the text
text = text.replace(/<package>[^<]*<\/package>/g, '');
text = text.replace(/<packages>[^<]*<\/packages>/g, '');
// Filter out any XML tags and file content that slipped through
if (!text.includes('<file') && !text.includes('import React') &&
!text.includes('export default') && !text.includes('className=') &&
text.trim().length > 0) {
addChatMessage(text.trim(), 'ai');
}
} else if (data.type === 'stream' && data.raw) {
setGenerationProgress(prev => {
const newStreamedCode = prev.streamedCode + data.text;
// Tab is already switched after scraping
const updatedState = {
...prev,
streamedCode: newStreamedCode,
isStreaming: true,
isThinking: false,
status: 'Generating code...'
};
// Process complete files from the accumulated stream
const fileRegex = /<file path="([^"]+)">([^]*?)<\/file>/g;
let match;
const processedFiles = new Set(prev.files.map(f => f.path));
while ((match = fileRegex.exec(newStreamedCode)) !== null) {
const filePath = match[1];
const fileContent = match[2];
// Only add if we haven't processed this file yet
if (!processedFiles.has(filePath)) {
const fileExt = filePath.split('.').pop() || '';
const fileType = fileExt === 'jsx' || fileExt === 'js' ? 'javascript' :
fileExt === 'css' ? 'css' :
fileExt === 'json' ? 'json' :
fileExt === 'html' ? 'html' : 'text';
// Check if file already exists
const existingFileIndex = updatedState.files.findIndex(f => f.path === filePath);
if (existingFileIndex >= 0) {
// Update existing file and mark as edited
updatedState.files = [
...updatedState.files.slice(0, existingFileIndex),
{
...updatedState.files[existingFileIndex],
content: fileContent.trim(),
type: fileType,
completed: true,
edited: true
},
...updatedState.files.slice(existingFileIndex + 1)
];
} else {
// Add new file
updatedState.files = [...updatedState.files, {
path: filePath,
content: fileContent.trim(),
type: fileType,
completed: true,
edited: false
}];
}
// Only show file status if not in edit mode
if (!prev.isEdit) {
updatedState.status = `Completed ${filePath}`;
}
processedFiles.add(filePath);
}
}
// Check for current file being generated (incomplete file at the end)
const lastFileMatch = newStreamedCode.match(/<file path="([^"]+)">([^]*?)$/);
if (lastFileMatch && !lastFileMatch[0].includes('</file>')) {
const filePath = lastFileMatch[1];
const partialContent = lastFileMatch[2];
if (!processedFiles.has(filePath)) {
const fileExt = filePath.split('.').pop() || '';
const fileType = fileExt === 'jsx' || fileExt === 'js' ? 'javascript' :
fileExt === 'css' ? 'css' :
fileExt === 'json' ? 'json' :
fileExt === 'html' ? 'html' : 'text';
updatedState.currentFile = {
path: filePath,
content: partialContent,
type: fileType
};
// Only show file status if not in edit mode
if (!prev.isEdit) {
updatedState.status = `Generating ${filePath}`;
}
}
} else {
updatedState.currentFile = undefined;
}
return updatedState;
});
} else if (data.type === 'complete') {
generatedCode = data.generatedCode;
explanation = data.explanation;
// Save the last generated code
setConversationContext(prev => ({
...prev,
lastGeneratedCode: generatedCode
}));
}
} catch (e) {
console.error('Failed to parse SSE data:', e);
}
}
}
}
setGenerationProgress(prev => ({
...prev,
isGenerating: false,
isStreaming: false,
status: 'Generation complete!'
}));
if (generatedCode) {
addChatMessage('AI recreation generated!', 'system');
// Add the explanation to chat if available
if (explanation && explanation.trim()) {
addChatMessage(explanation, 'ai');
}
setPromptInput(generatedCode);
// Apply the code (first time is not edit mode)
await applyGeneratedCode(generatedCode, false);
addChatMessage(
brandExtensionMode
? `Successfully built your custom component using ${cleanUrl}'s brand guidelines! You can now ask me to modify it or add more features.`
: `Successfully recreated ${url} as a modern React app${homeContextInput ? ` with your requested context: "${homeContextInput}"` : ''}! The scraped content is now in my context, so you can ask me to modify specific sections or add features based on the original site.`,
'ai',
{
scrapedUrl: url,
scrapedContent: brandExtensionMode ? { brandGuidelines } : scrapeData,
generatedCode: generatedCode
}
);
setConversationContext(prev => ({
...prev,
generatedComponents: [],
appliedCode: [...prev.appliedCode, {
files: [],
timestamp: new Date()
}]
}));
} else {
throw new Error('Failed to generate recreation');
}
setUrlInput('');
setUrlStatus([]);
setHomeContextInput('');
// Clear generation progress and all screenshot/design states
setGenerationProgress(prev => ({
...prev,
isGenerating: false,
isStreaming: false,
status: 'Generation complete!'
}));
// Clear screenshot and preparing design states to prevent them from showing on next run
setIsScreenshotLoaded(false); // Reset loaded state
setUrlScreenshot(null);
setIsPreparingDesign(false);
setTargetUrl('');
setScreenshotError(null);
setLoadingStage(null); // Clear loading stage
setIsStartingNewGeneration(false); // Clear new generation flag
setShowLoadingBackground(false); // Clear loading background
setTimeout(() => {
// Switch back to preview tab but keep files
setActiveTab('preview');
}, 1000); // Show completion briefly then switch
} catch (error: any) {
addChatMessage(`Failed to clone website: ${error.message}`, 'system');
setUrlStatus([]);
setIsPreparingDesign(false);
setIsStartingNewGeneration(false); // Clear new generation flag on error
setLoadingStage(null);
// Also clear generation progress on error
setGenerationProgress(prev => ({
...prev,
isGenerating: false,
isStreaming: false,
status: '',
// Keep files to display in sidebar
files: prev.files
}));
}
}, 500);
};
return (
<HeaderProvider>
<div className="font-sans bg-background text-foreground h-screen flex flex-col">
<div className="bg-white py-[15px] py-[8px] border-b border-border-faint flex items-center justify-between shadow-sm">
<div className="flex items-center gap-4">
<HeaderBrandKit />
<div className="bg-black-alpha-4 p-2 rounded-8 flex gap-2 ml-4">
<button
onClick={() => {
if (mode !== 'website') {
setMode('website');
setSandboxData(null); // Reset sandbox when switching modes
}
}}
className={`px-12 py-4 rounded-6 text-xs font-medium transition-all ${mode === 'website' ? 'bg-white shadow-sm text-accent-black' : 'text-black-alpha-48 hover:text-black-alpha-72'}`}
>
Website2Code
</button>
<button
onClick={() => {
if (mode !== 'paper') {
setMode('paper');
setSandboxData(null); // Reset sandbox when switching modes
}
}}
className={`px-12 py-4 rounded-6 text-xs font-medium transition-all ${mode === 'paper' ? 'bg-white shadow-sm text-accent-black' : 'text-black-alpha-48 hover:text-black-alpha-72'}`}
>
Paper2Code
</button>
</div>
</div>
<div className="flex items-center gap-2">
{/* Model Selector - Left side */}
<select
value={aiModel}
onChange={(e) => {
const newModel = e.target.value;
setAiModel(newModel);
const params = new URLSearchParams(searchParams);
params.set('model', newModel);
if (sandboxData?.sandboxId) {
params.set('sandbox', sandboxData.sandboxId);
}
router.push(`/generation?${params.toString()}`);
}}
className="px-3 py-1.5 text-sm text-gray-900 bg-gray-50 border border-gray-200 rounded-lg focus:outline-none focus:border-gray-300 transition-colors"
>
{appConfig.ai.availableModels.map(model => (
<option key={model} value={model}>
{appConfig.ai.modelDisplayNames?.[model] || model}
</option>
))}
</select>
<button
onClick={() => createSandbox()}
className="p-8 rounded-lg transition-colors bg-gray-50 border border-gray-200 text-gray-700 hover:bg-gray-100"
title="Create new sandbox"
>
<svg width="16" height="16" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M12 4v16m8-8H4" />
</svg>
</button>
<button
onClick={reapplyLastGeneration}
className="p-8 rounded-lg transition-colors bg-gray-50 border border-gray-200 text-gray-700 hover:bg-gray-100 disabled:opacity-50 disabled:cursor-not-allowed"
title="Re-apply last generation"
disabled={!conversationContext.lastGeneratedCode || !sandboxData}
>
<svg width="16" height="16" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M4 4v5h.582m15.356 2A8.001 8.001 0 004.582 9m0 0H9m11 11v-5h-.581m0 0a8.003 8.003 0 01-15.357-2m15.357 2H15" />
</svg>
</button>
<button
onClick={downloadZip}
disabled={!sandboxData}
className="p-8 rounded-lg transition-colors bg-gray-50 border border-gray-200 text-gray-700 hover:bg-gray-100 disabled:opacity-50 disabled:cursor-not-allowed"
title="Download your Vite app as ZIP"
>
<svg width="16" height="16" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M7 16a4 4 0 01-.88-7.903A5 5 0 1115.9 6L16 6a5 5 0 011 9.9M9 19l3 3m0 0l3-3m-3 3V10" />
</svg>
</button>
</div>
</div>
<div className="flex-1 flex overflow-hidden">
{/* Center Panel - AI Chat (1/3 of remaining width) */}
<div className="flex-1 max-w-[400px] flex flex-col border-r border-border bg-background">
{/* Sidebar Input Component */}
{!hasInitialSubmission ? (
<div className="p-4 border-b border-border">
<SidebarInput
onSubmit={(url, style, model, instructions) => {
// Mark that we've had an initial submission
setHasInitialSubmission(true);
// Store the configuration in sessionStorage (same as home page)
sessionStorage.setItem('targetUrl', url);
sessionStorage.setItem('selectedStyle', style);
sessionStorage.setItem('selectedModel', model);
if (instructions) {
sessionStorage.setItem('additionalInstructions', instructions);
}
sessionStorage.setItem('autoStart', 'true');
// Start generation using the existing logic
setHomeUrlInput(url);
setHomeContextInput(instructions || '');
startGeneration();
}}
disabled={loading || generationProgress.isGenerating}
/>
</div>
) : null}
{conversationContext.scrapedWebsites.length > 0 && (
<div className="p-4 bg-card border-b border-gray-200">
<div className="flex flex-col gap-4">
{conversationContext.scrapedWebsites.map((site, idx) => {
// Extract favicon and site info from the scraped data
const metadata = site.content?.metadata || {};
const sourceURL = metadata.sourceURL || site.url;
const favicon = metadata.favicon || `https://www.google.com/s2/favicons?domain=${new URL(sourceURL).hostname}&sz=128`;
const siteName = metadata.ogSiteName || metadata.title || new URL(sourceURL).hostname;
const screenshot = site.content?.screenshot || sessionStorage.getItem('websiteScreenshot');
return (
<div key={idx} className="flex flex-col gap-3">
{/* Site info with favicon */}
<div className="flex items-center gap-4 text-sm">
{/* eslint-disable-next-line @next/next/no-img-element */}
<img
src={favicon}
alt={siteName}
className="w-16 h-16 rounded"
onError={(e) => {
e.currentTarget.src = `https://www.google.com/s2/favicons?domain=${new URL(sourceURL).hostname}&sz=128`;
}}
/>
<a
href={sourceURL}
target="_blank"
rel="noopener noreferrer"
className="text-black hover:text-gray-700 truncate max-w-[250px] font-medium"
title={sourceURL}
>
{siteName}
</a>
</div>
{/* Pinned screenshot */}
{screenshot && (
<div className="w-full">
<div className="flex items-center justify-between mb-2">
<span className="text-xs font-medium text-gray-600">Screenshot Preview</span>
<button
onClick={() => setScreenshotCollapsed(!screenshotCollapsed)}
className="text-gray-500 hover:text-gray-700 transition-colors p-1"
aria-label={screenshotCollapsed ? 'Expand screenshot' : 'Collapse screenshot'}
>
<svg
width="16"
height="16"
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
className={`transition-transform duration-300 ${screenshotCollapsed ? 'rotate-180' : ''}`}
>
<path d="M4 6L8 10L12 6" stroke="currentColor" strokeWidth="1.5" strokeLinecap="round" strokeLinejoin="round"/>
</svg>
</button>
</div>
<div
className="w-full rounded-lg overflow-hidden border border-gray-200 transition-all duration-300"
style={{
opacity: screenshotCollapsed ? 0 : 1,
transform: screenshotCollapsed ? 'translateY(-20px)' : 'translateY(0)',
pointerEvents: screenshotCollapsed ? 'none' : 'auto',
maxHeight: screenshotCollapsed ? '0' : '200px'
}}
>
{/* eslint-disable-next-line @next/next/no-img-element */}
<img
src={screenshot}
alt={`${siteName} preview`}
className="w-full h-auto object-cover"
style={{ maxHeight: '200px' }}
/>
</div>
</div>
)}
</div>
);
})}
</div>
</div>
)}
<div
className="flex-1 overflow-y-auto p-6 flex flex-col gap-4 scrollbar-hide"
ref={chatMessagesRef}>
{chatMessages.map((msg, idx) => {
// Check if this message is from a successful generation
const isGenerationComplete = msg.content.includes('Successfully recreated') ||
msg.content.includes('AI recreation generated!') ||
msg.content.includes('Code generated!');
// Get the files from metadata if this is a completion message
// const completedFiles = msg.metadata?.appliedFiles || [];
return (
<div key={idx} className="block">
<div className={`flex ${msg.type === 'user' ? 'justify-end' : 'justify-start'}`}>
<div className="block">
<div className={`block rounded-[10px] px-14 py-8 ${
msg.type === 'user' ? 'bg-[#36322F] text-white ml-auto max-w-[80%]' :
msg.type === 'ai' ? 'bg-gray-100 text-gray-900 mr-auto max-w-[80%]' :
msg.type === 'system' ? 'bg-[#36322F] text-white text-sm' :
msg.type === 'command' ? 'bg-[#36322F] text-white font-mono text-sm' :
msg.type === 'error' ? 'bg-red-900 text-red-100 text-sm border border-red-700' :
'bg-[#36322F] text-white text-sm'
}`}>
{msg.type === 'command' ? (
<div className="flex items-start gap-2">
<span className={`text-xs ${
msg.metadata?.commandType === 'input' ? 'text-blue-400' :
msg.metadata?.commandType === 'error' ? 'text-red-400' :
msg.metadata?.commandType === 'success' ? 'text-green-400' :
'text-gray-400'
}`}>
{msg.metadata?.commandType === 'input' ? '$' : '>'}
</span>
<span className="flex-1 whitespace-pre-wrap text-white">{msg.content}</span>
</div>
) : msg.type === 'error' ? (
<div className="flex items-start gap-3">
<div className="flex-shrink-0">
<div className="w-8 h-8 bg-red-800 rounded-full flex items-center justify-center">
<svg className="w-6 h-6 text-red-200" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-3L13.732 4c-.77-1.333-2.694-1.333-3.464 0L3.34 16c-.77 1.333.192 3 1.732 3z" />
</svg>
</div>
</div>
<div className="flex-1">
<div className="font-semibold mb-1">Build Errors Detected</div>
<div className="whitespace-pre-wrap text-sm">{msg.content}</div>
<div className="mt-2 text-xs opacity-70">Press 'F' or click the Fix button above to resolve</div>
</div>
</div>
) : (
<span className="text-sm">{msg.content}</span>
)}
</div>
{/* Show branding data if this is a brand extraction message */}
{msg.metadata?.brandingData && (
<div className="mt-3 bg-gradient-to-br from-gray-50 to-white border-2 border-gray-200 rounded-xl overflow-hidden max-w-[500px] shadow-sm">
<div className="bg-[#36322F] px-16 py-12">
<div className="flex items-center gap-8">
<Image
src={`https://www.google.com/s2/favicons?domain=${msg.metadata.sourceUrl}&sz=32`}
alt=""
width={64}
height={64}
className="w-16 h-16"
/>
<div className="text-sm font-semibold text-white">
Brand Guidelines
</div>
</div>
</div>
<div className="p-16">
{/* Color Scheme Mode */}
{msg.metadata.brandingData.colorScheme && (
<div className="mb-16">
<div className="text-sm">
<span className="text-gray-600 font-medium">Mode:</span>{' '}
<span className="font-semibold text-gray-900 capitalize">{msg.metadata.brandingData.colorScheme}</span>
</div>
</div>
)}
{/* Colors */}
{msg.metadata.brandingData.colors && (
<div className="mb-16">
<div className="text-sm font-semibold text-gray-900 mb-8">Colors</div>
<div className="flex flex-wrap gap-12">
{msg.metadata.brandingData.colors.primary && (
<div className="flex items-center gap-8">
<div className="w-32 h-32 rounded border border-gray-300" style={{ backgroundColor: msg.metadata.brandingData.colors.primary }} />
<div className="text-sm">
<div className="font-semibold text-gray-900">Primary</div>
<div className="text-gray-600 font-mono text-xs">{msg.metadata.brandingData.colors.primary}</div>
</div>
</div>
)}
{msg.metadata.brandingData.colors.accent && (
<div className="flex items-center gap-8">
<div className="w-32 h-32 rounded border border-gray-300" style={{ backgroundColor: msg.metadata.brandingData.colors.accent }} />
<div className="text-sm">
<div className="font-semibold text-gray-900">Accent</div>
<div className="text-gray-600 font-mono text-xs">{msg.metadata.brandingData.colors.accent}</div>
</div>
</div>
)}
{msg.metadata.brandingData.colors.background && (
<div className="flex items-center gap-8">
<div className="w-32 h-32 rounded border border-gray-300" style={{ backgroundColor: msg.metadata.brandingData.colors.background }} />
<div className="text-sm">
<div className="font-semibold text-gray-900">Background</div>
<div className="text-gray-600 font-mono text-xs">{msg.metadata.brandingData.colors.background}</div>
</div>
</div>
)}
{msg.metadata.brandingData.colors.textPrimary && (
<div className="flex items-center gap-8">
<div className="w-32 h-32 rounded border border-gray-300" style={{ backgroundColor: msg.metadata.brandingData.colors.textPrimary }} />
<div className="text-sm">
<div className="font-semibold text-gray-900">Text</div>
<div className="text-gray-600 font-mono text-xs">{msg.metadata.brandingData.colors.textPrimary}</div>
</div>
</div>
)}
</div>
</div>
)}
{/* Typography */}
{msg.metadata.brandingData.typography && (
<div className="mb-16">
<div className="text-sm font-semibold text-gray-900 mb-8">Typography</div>
<div className="grid grid-cols-2 gap-12 text-sm">
{msg.metadata.brandingData.typography.fontFamilies?.primary && (
<div>
<span className="text-gray-600 font-medium">Primary:</span>{' '}
<span className="font-semibold text-gray-900">{msg.metadata.brandingData.typography.fontFamilies.primary}</span>
</div>
)}
{msg.metadata.brandingData.typography.fontFamilies?.heading && (
<div>
<span className="text-gray-600 font-medium">Heading:</span>{' '}
<span className="font-semibold text-gray-900">{msg.metadata.brandingData.typography.fontFamilies.heading}</span>
</div>
)}
{msg.metadata.brandingData.typography.fontSizes?.h1 && (
<div>
<span className="text-gray-600 font-medium">H1 Size:</span>{' '}
<span className="font-semibold text-gray-900">{msg.metadata.brandingData.typography.fontSizes.h1}</span>
</div>
)}
{msg.metadata.brandingData.typography.fontSizes?.h2 && (
<div>
<span className="text-gray-600 font-medium">H2 Size:</span>{' '}
<span className="font-semibold text-gray-900">{msg.metadata.brandingData.typography.fontSizes.h2}</span>
</div>
)}
{msg.metadata.brandingData.typography.fontSizes?.body && (
<div>
<span className="text-gray-600 font-medium">Body Size:</span>{' '}
<span className="font-semibold text-gray-900">{msg.metadata.brandingData.typography.fontSizes.body}</span>
</div>
)}
</div>
</div>
)}
{/* Spacing */}
{msg.metadata.brandingData.spacing && (
<div className="mb-16">
<div className="text-sm font-semibold text-gray-900 mb-8">Spacing</div>
<div className="flex flex-wrap gap-16 text-sm">
{msg.metadata.brandingData.spacing.baseUnit && (
<div>
<span className="text-gray-600 font-medium">Base Unit:</span>{' '}
<span className="font-semibold text-gray-900">{msg.metadata.brandingData.spacing.baseUnit}px</span>
</div>
)}
{msg.metadata.brandingData.spacing.borderRadius && (
<div>
<span className="text-gray-600 font-medium">Border Radius:</span>{' '}
<span className="font-semibold text-gray-900">{msg.metadata.brandingData.spacing.borderRadius}</span>
</div>
)}
</div>
</div>
)}
{/* Button Styles */}
{msg.metadata.brandingData.components?.buttonPrimary && (
<div className="mb-16">
<div className="text-sm font-semibold text-gray-900 mb-8">Button Styles</div>
<div className="flex flex-wrap gap-12">
<div>
<div className="text-xs text-gray-600 mb-6 font-medium">Primary Button</div>
<button
className="px-16 py-8 text-sm font-medium"
style={{
backgroundColor: msg.metadata.brandingData.components.buttonPrimary.background,
color: msg.metadata.brandingData.components.buttonPrimary.textColor,
borderRadius: msg.metadata.brandingData.components.buttonPrimary.borderRadius,
boxShadow: msg.metadata.brandingData.components.buttonPrimary.shadow
}}
>
Sample Button
</button>
</div>
{msg.metadata.brandingData.components?.buttonSecondary && (
<div>
<div className="text-xs text-gray-600 mb-6 font-medium">Secondary Button</div>
<button
className="px-16 py-8 text-sm font-medium"
style={{
backgroundColor: msg.metadata.brandingData.components.buttonSecondary.background,
color: msg.metadata.brandingData.components.buttonSecondary.textColor,
borderRadius: msg.metadata.brandingData.components.buttonSecondary.borderRadius,
boxShadow: msg.metadata.brandingData.components.buttonSecondary.shadow
}}
>
Sample Button
</button>
</div>
)}
</div>
</div>
)}
{/* Personality */}
{msg.metadata.brandingData.personality && (
<div className="text-sm">
<span className="text-gray-600 font-medium">Personality:</span>{' '}
<span className="font-semibold text-gray-900 capitalize">
{msg.metadata.brandingData.personality.tone} tone, {msg.metadata.brandingData.personality.energy} energy
</span>
</div>
)}
{/* Target Audience */}
{msg.metadata.brandingData.personality?.targetAudience && (
<div className="text-sm mt-8">
<span className="text-gray-600 font-medium">Target:</span>{' '}
<span className="text-gray-900">{msg.metadata.brandingData.personality.targetAudience}</span>
</div>
)}
</div>
</div>
)}
{/* Show applied files if this is an apply success message */}
{msg.metadata?.appliedFiles && msg.metadata.appliedFiles.length > 0 && (
<div className="mt-3 inline-block bg-gray-100 rounded-[10px] p-5">
<div className="text-sm font-medium mb-3 text-gray-700">
{msg.content.includes('Applied') ? 'Files Updated:' : 'Generated Files:'}
</div>
<div className="flex flex-wrap items-start gap-2">
{msg.metadata.appliedFiles.map((filePath, fileIdx) => {
const fileName = filePath.split('/').pop() || filePath;
const fileExt = fileName.split('.').pop() || '';
const fileType = fileExt === 'jsx' || fileExt === 'js' ? 'javascript' :
fileExt === 'css' ? 'css' :
fileExt === 'json' ? 'json' : 'text';
return (
<div
key={`applied-${fileIdx}`}
className="inline-flex items-center gap-1.5 px-6 py-1.5 bg-[#36322F] text-white rounded-[10px] text-sm animate-fade-in-up"
style={{ animationDelay: `${fileIdx * 30}ms` }}
>
<span className={`inline-block w-1.5 h-1.5 rounded-full ${
fileType === 'css' ? 'bg-blue-400' :
fileType === 'javascript' ? 'bg-yellow-400' :
fileType === 'json' ? 'bg-green-400' :
'bg-gray-400'
}`} />
{fileName}
</div>
);
})}
</div>
</div>
)}
{/* Show generated files for completion messages - but only if no appliedFiles already shown */}
{isGenerationComplete && generationProgress.files.length > 0 && idx === chatMessages.length - 1 && !msg.metadata?.appliedFiles && !chatMessages.some(m => m.metadata?.appliedFiles) && (
<div className="mt-2 inline-block bg-gray-100 rounded-[10px] p-3">
<div className="text-xs font-medium mb-1 text-gray-700">Generated Files:</div>
<div className="flex flex-wrap items-start gap-1">
{generationProgress.files.map((file, fileIdx) => (
<div
key={`complete-${fileIdx}`}
className="inline-flex items-center gap-1.5 px-6 py-1.5 bg-[#36322F] text-white rounded-[10px] text-xs animate-fade-in-up"
style={{ animationDelay: `${fileIdx * 30}ms` }}
>
<span className={`inline-block w-1.5 h-1.5 rounded-full ${
file.type === 'css' ? 'bg-blue-400' :
file.type === 'javascript' ? 'bg-yellow-400' :
file.type === 'json' ? 'bg-green-400' :
'bg-gray-400'
}`} />
{file.path.split('/').pop()}
</div>
))}
</div>
</div>
)}
</div>
</div>
</div>
);
})}
{/* Code application progress */}
{codeApplicationState.stage && (
<CodeApplicationProgress state={codeApplicationState} />
)}
{/* File generation progress - inline display (during generation) */}
{generationProgress.isGenerating && (
<div className="inline-block bg-gray-100 rounded-lg p-3">
<div className="text-sm font-medium mb-2 text-gray-700">
{generationProgress.status}
</div>
<div className="flex flex-wrap items-start gap-1">
{/* Show completed files */}
{generationProgress.files.map((file, idx) => (
<div
key={`file-${idx}`}
className="inline-flex items-center gap-1.5 px-6 py-1.5 bg-[#36322F] text-white rounded-[10px] text-xs animate-fade-in-up"
style={{ animationDelay: `${idx * 30}ms` }}
>
<svg width="16" height="16" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={3} d="M5 13l4 4L19 7" />
</svg>
{file.path.split('/').pop()}
</div>
))}
{/* Show current file being generated */}
{generationProgress.currentFile && (
<div className="flex items-center gap-1 px-2 py-1 bg-[#36322F]/70 text-white rounded-[10px] text-sm animate-pulse"
style={{ animationDelay: `${generationProgress.files.length * 30}ms` }}>
<div className="w-16 h-16 border-2 border-white border-t-transparent rounded-full animate-spin" />
{generationProgress.currentFile.path.split('/').pop()}
</div>
)}
</div>
{/* Live streaming response display */}
{generationProgress.streamedCode && (
<motion.div
initial={{ opacity: 0, height: 0 }}
animate={{ opacity: 1, height: 'auto' }}
exit={{ opacity: 0, height: 0 }}
transition={{ duration: 0.3 }}
className="mt-3 border-t border-gray-300 pt-3"
>
<div className="flex items-center gap-2 mb-2">
<div className="flex items-center gap-1">
<div className="w-3 h-3 bg-green-500 rounded-full animate-pulse" />
<span className="text-xs font-medium text-gray-600">AI Response Stream</span>
</div>
<div className="flex-1 h-px bg-gradient-to-r from-gray-300 to-transparent" />
</div>
<div className="bg-gray-900 border border-gray-700 rounded max-h-128 overflow-y-auto scrollbar-hide">
<SyntaxHighlighter
language="jsx"
style={vscDarkPlus}
customStyle={{
margin: 0,
padding: '0.75rem',
fontSize: '11px',
lineHeight: '1.5',
background: 'transparent',
maxHeight: '8rem',
overflow: 'hidden'
}}
>
{(() => {
const lastContent = generationProgress.streamedCode.slice(-1000);
// Show the last part of the stream, starting from a complete tag if possible
const startIndex = lastContent.indexOf('<');
return startIndex !== -1 ? lastContent.slice(startIndex) : lastContent;
})()}
</SyntaxHighlighter>
<span className="inline-block w-3 h-4 bg-orange-400 ml-3 mb-3 animate-pulse" />
</div>
</motion.div>
)}
</div>
)}
</div>
<div className="p-4 border-t border-border bg-background-base">
<HeroInput
value={aiChatInput}
onChange={setAiChatInput}
onSubmit={sendChatMessage}
placeholder="Describe what you want to build..."
showSearchFeatures={false}
/>
</div>
</div>
{/* Right Panel - Preview or Generation (2/3 of remaining width) */}
<div className="flex-1 flex flex-col overflow-hidden">
<div className="px-3 pt-4 pb-4 bg-white border-b border-gray-200 flex justify-between items-center">
<div className="flex items-center gap-2">
{/* Toggle-style Code/View switcher */}
<div className="inline-flex bg-gray-100 border border-gray-200 rounded-md p-0.5">
<button
onClick={() => setActiveTab('generation')}
className={`px-3 py-1 rounded transition-all text-xs font-medium ${
activeTab === 'generation'
? 'bg-white text-gray-900 shadow-sm'
: 'bg-transparent text-gray-600 hover:text-gray-900'
}`}
>
<div className="flex items-center gap-1.5">
<svg width="14" height="14" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M10 20l4-16m4 4l4 4-4 4M6 16l-4-4 4-4" />
</svg>
<span>Code</span>
</div>
</button>
<button
onClick={() => setActiveTab('preview')}
className={`px-3 py-1 rounded transition-all text-xs font-medium ${
activeTab === 'preview'
? 'bg-white text-gray-900 shadow-sm'
: 'bg-transparent text-gray-600 hover:text-gray-900'
}`}
>
<div className="flex items-center gap-1.5">
<svg width="14" height="14" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M15 12a3 3 0 11-6 0 3 3 0 016 0z" />
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M2.458 12C3.732 7.943 7.523 5 12 5c4.478 0 8.268 2.943 9.542 7-1.274 4.057-5.064 7-9.542 7-4.477 0-8.268-2.943-9.542-7z" />
</svg>
<span>View</span>
</div>
</button>
</div>
</div>
<div className="flex gap-2 items-center">
{/* Files generated count */}
{activeTab === 'generation' && !generationProgress.isEdit && generationProgress.files.length > 0 && (
<div className="text-gray-500 text-xs font-medium">
{generationProgress.files.length} files generated
</div>
)}
{/* Live Code Generation Status */}
{activeTab === 'generation' && generationProgress.isGenerating && (
<div className="inline-flex items-center gap-1.5 px-2.5 py-1 bg-gray-100 border border-gray-200 rounded-md text-xs font-medium text-gray-700">
<div className="w-1.5 h-1.5 bg-green-500 rounded-full animate-pulse" />
{generationProgress.isEdit ? 'Editing code' : 'Live generation'}
</div>
)}
{/* Sandbox Status Indicator */}
{sandboxData && (
<div className="inline-flex items-center gap-1.5 px-2.5 py-1 bg-gray-100 border border-gray-200 rounded-md text-xs font-medium text-gray-700">
<div className="w-1.5 h-1.5 bg-green-500 rounded-full" />
Sandbox active
</div>
)}
{/* Open in new tab button */}
{sandboxData && (
<a
href={sandboxData.url}
target="_blank"
rel="noopener noreferrer"
title="Open in new tab"
className="p-1.5 rounded-md transition-all text-gray-600 hover:text-gray-900 hover:bg-gray-100"
>
<svg width="14" height="14" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M10 6H6a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2v-4M14 4h6m0 0v6m0-6L10 14" />
</svg>
</a>
)}
</div>
</div>
<div className="flex-1 relative overflow-hidden">
{renderMainContent()}
</div>
</div>
</div>
</div>
</HeaderProvider>
);
}
export default function Page() {
return (
<Suspense fallback={<div className="flex items-center justify-center min-h-screen">Loading...</div>}>
<AISandboxPage />
</Suspense>
);
} |