Press n or j to go to the next uncovered block, b, p or k for the previous block.
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 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 2x 2x 2x 2x 1x 1x 1x 1x 1x 1x 1x 2x 2x 1x 1x 1x 1x 1x 1x 1x 1x 2x 2x 2x 1x 1x 1x 1x 1x 1x 1x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 1x 1x 1x 1x 2x 2x 2x 2x 2x 2x 1x 1x 1x 1x 2x 2x 2x 1x 1x 1x 1x 2x 2x 2x 1x 1x 1x 1x 1x 1x 1x 1x 4x 4x 4x 4x 4x 4x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 2x 2x 2x 2x 2x 2x 2x 2x 2x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 2x 1x 1x 1x 2x 2x 2x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 2x 2x 2x 1x 1x 2x 2x 2x 2x 2x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 2x 2x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 1x 1x 1x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 1x 1x 1x 2x 2x 2x 2x 2x 2x 2x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 4x 4x 4x 4x 4x 4x 4x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | /** * Component System for Coherent.js * Provides component definition, lifecycle, composition, and state management */ import { deepClone, validateComponent } from '../core/object-utils.js'; import { performanceMonitor } from '../performance/monitor.js'; /** * Component registry for global component management */ const COMPONENT_REGISTRY = new Map(); // eslint-disable-next-line no-unused-vars -- kept for future devtools/features const COMPONENT_INSTANCES = new WeakMap(); const COMPONENT_METADATA = new WeakMap(); /** * Component lifecycle hooks */ // eslint-disable-next-line no-unused-vars -- lifecycle map kept for planned hooks const LIFECYCLE_HOOKS = { beforeCreate: 'beforeCreate', created: 'created', beforeMount: 'beforeMount', mounted: 'mounted', beforeUpdate: 'beforeUpdate', updated: 'updated', beforeDestroy: 'beforeDestroy', destroyed: 'destroyed', errorCaptured: 'errorCaptured' }; /** * Component state management class * * @class ComponentState * @description Manages component state with reactive updates and listener notifications. * Provides immutable state updates with change detection. * * @param {Object} [initialState={}] - Initial state object * * @example * const state = new ComponentState({ count: 0 }); * state.set({ count: 1 }); * const count = state.get('count'); // 1 */ class ComponentState { constructor(initialState = {}) { this.state = {...initialState}; this.listeners = new Set(); this.isUpdating = false; } /** * Get state value by key or entire state * * @param {string} [key] - State key to retrieve * @returns {*} State value or entire state object */ get(key) { return key ? this.state[key] : {...this.state}; } /** * Update state with new values * * @param {Object} updates - State updates to apply * @returns {ComponentState} This instance for chaining */ set(updates) { if (this.isUpdating) return this; const oldState = {...this.state}; if (typeof updates === 'function') { updates = updates(oldState); } this.state = {...this.state, ...updates}; // Notify listeners this.notifyListeners(oldState, this.state); return this; } subscribe(listener) { this.listeners.add(listener); return () => this.listeners.delete(listener); } notifyListeners(oldState, newState) { if (this.listeners.size === 0) return; this.isUpdating = true; this.listeners.forEach(listener => { try { listener(newState, oldState); } catch (error) { console.error('State listener error:', error); } }); this.isUpdating = false; } } /** * Base Component class */ export class Component { constructor(definition = {}) { this.definition = definition; this.name = definition.name || 'AnonymousComponent'; this.props = {}; this.state = new ComponentState(definition.state || {}); this.children = []; this.parent = null; this.rendered = null; this.isMounted = false; this.isDestroyed = false; // Lifecycle hooks this.hooks = { beforeCreate: definition.beforeCreate || (() => { }), created: definition.created || (() => { }), beforeMount: definition.beforeMount || (() => { }), mounted: definition.mounted || (() => { }), beforeUpdate: definition.beforeUpdate || (() => { }), updated: definition.updated || (() => { }), beforeDestroy: definition.beforeDestroy || (() => { }), destroyed: definition.destroyed || (() => { }), errorCaptured: definition.errorCaptured || (() => { }) }; // Methods this.methods = definition.methods || {}; Object.keys(this.methods).forEach(methodName => { if (typeof this.methods[methodName] === 'function') { this[methodName] = this.methods[methodName].bind(this); } }); // Computed properties this.computed = definition.computed || {}; this.computedCache = new Map(); // Watch properties this.watchers = definition.watch || {}; this.setupWatchers(); // Store metadata COMPONENT_METADATA.set(this, { createdAt: Date.now(), updateCount: 0, renderCount: 0 }); // Initialize lifecycle this.callHook('beforeCreate'); this.initialize(); this.callHook('created'); } /** * Initialize component */ initialize() { // Set up state subscription for re-rendering this.unsubscribeState = this.state.subscribe((newState, oldState) => { this.onStateChange(newState, oldState); }); // Initialize computed properties this.initializeComputed(); } /** * Set up watchers for reactive data */ setupWatchers() { Object.keys(this.watchers).forEach(key => { const handler = this.watchers[key]; // Watch state changes this.state.subscribe((newState, oldState) => { if (newState[key] !== oldState[key]) { handler.call(this, newState[key], oldState[key]); } }); }); } /** * Initialize computed properties */ initializeComputed() { Object.keys(this.computed).forEach(key => { Object.defineProperty(this, key, { get: () => { if (!this.computedCache.has(key)) { const value = this.computed[key].call(this); this.computedCache.set(key, value); } return this.computedCache.get(key); }, enumerable: true }); }); } /** * Handle state changes */ onStateChange() { if (this.isDestroyed) return; // Clear computed cache this.computedCache.clear(); // Trigger update if mounted if (this.isMounted) { this.update(); } } /** * Call lifecycle hook */ callHook(hookName, ...args) { try { if (this.hooks[hookName]) { return this.hooks[hookName].call(this, ...args); } } catch (error) { this.handleError(error, `${hookName} hook`); } } /** * Handle component errors */ handleError(error) { console.error(`Component Error in ${this.name}:`, error); // Call error hook this.callHook('errorCaptured', error); // Propagate to parent if (this.parent && this.parent.handleError) { this.parent.handleError(error, `${this.name} -> ${context}`); } } /** * Render the component */ render(props = {}) { if (this.isDestroyed) { console.warn(`Attempting to render destroyed component: ${this.name}`); return null; } try { // Update metadata const metadata = COMPONENT_METADATA.get(this); if (metadata) { metadata.renderCount++; } // Set props this.props = {...props}; // Call render method if (typeof this.definition.render === 'function') { this.rendered = this.definition.render.call(this, this.props, this.state.get()); } else if (typeof this.definition.template !== 'undefined') { this.rendered = this.processTemplate(this.definition.template, this.props, this.state.get()); } else { throw new Error(`Component ${this.name} must have either render method or template`); } // Validate rendered output if (this.rendered !== null) { validateComponent(this.rendered, this.name); } return this.rendered; } catch (error) { this.handleError(error); return {div: {className: 'component-error', text: `Error in ${this.name}`}}; } } /** * Process template with data */ processTemplate(template, props, state) { if (typeof template === 'function') { return template.call(this, props, state); } if (typeof template === 'string') { // Simple string interpolation return template.replace(/\{\{(\w+)\}\}/g, (match, key) => { return props[key] || state[key] || ''; }); } // Clone template object and process const processed = deepClone(template); this.interpolateObject(processed, {...props, ...state}); return processed; } /** * Interpolate object with data */ interpolateObject(obj, data) { if (typeof obj === 'string') { return obj.replace(/\{\{(\w+)\}\}/g, (match, key) => data[key] || ''); } if (Array.isArray(obj)) { return obj.map(item => this.interpolateObject(item, data)); } if (obj && typeof obj === 'object') { Object.keys(obj).forEach(key => { obj[key] = this.interpolateObject(obj[key], data); }); } return obj; } /** * Mount the component */ mount() { if (this.isMounted || this.isDestroyed) return this; this.callHook('beforeMount'); this.isMounted = true; this.callHook('mounted'); return this; } /** * Update the component */ update() { if (!this.isMounted || this.isDestroyed) return this; const metadata = COMPONENT_METADATA.get(this); if (metadata) { metadata.updateCount++; } this.callHook('beforeUpdate'); // Re-render will happen automatically via state subscription this.callHook('updated'); return this; } /** * Destroy the component */ destroy() { if (this.isDestroyed) return this; this.callHook('beforeDestroy'); // Cleanup if (this.unsubscribeState) { this.unsubscribeState(); } // Destroy children this.children.forEach(child => { if (child.destroy) { child.destroy(); } }); this.isMounted = false; this.isDestroyed = true; this.children = []; this.parent = null; this.callHook('destroyed'); return this; } /** * Get component metadata */ getMetadata() { return COMPONENT_METADATA.get(this) || {}; } /** * Clone component with new props/state */ clone(overrides = {}) { const newDefinition = {...this.definition, ...overrides}; return new Component(newDefinition); } } /** * Create a functional component */ export function createComponent(definition) { if (typeof definition === 'function') { // Convert function to component definition definition = { name: definition.name || 'FunctionalComponent', render: definition }; } return new Component(definition); } /** * Create a component factory */ export function defineComponent(definition) { const componentFactory = (props) => { const component = new Component(definition); return component.render(props); }; // Add static properties componentFactory.componentName = definition.name || 'Component'; componentFactory.definition = definition; return componentFactory; } /** * Register a global component */ export function registerComponent(name, definition) { if (COMPONENT_REGISTRY.has(name)) { console.warn(`Component ${name} is already registered. Overriding.`); } const component = typeof definition === 'function' ? defineComponent({name, render: definition}) : defineComponent(definition); COMPONENT_REGISTRY.set(name, component); return component; } /** * Get a registered component */ export function getComponent(name) { return COMPONENT_REGISTRY.get(name); } /** * Get all registered components */ export function getRegisteredComponents() { return new Map(COMPONENT_REGISTRY); } /** * Create a higher-order component */ export function createHOC(enhancer) { return (WrappedComponent) => { return defineComponent({ name: `HOC(${WrappedComponent.componentName || 'Component'})`, render(props) { return enhancer(WrappedComponent, props); } }); }; } /** * Mixin functionality */ export function createMixin(mixin) { return (componentDefinition) => { return { ...mixin, ...componentDefinition, // Merge methods methods: { ...mixin.methods, ...componentDefinition.methods }, // Merge computed computed: { ...mixin.computed, ...componentDefinition.computed }, // Merge watchers watch: { ...mixin.watch, ...componentDefinition.watch }, // Merge state state: { ...mixin.state, ...componentDefinition.state } }; }; } /** * Component composition utilities */ export const compose = { /** * Combine multiple components */ combine: (...components) => { return defineComponent({ name: 'ComposedComponent', render(props) { return components.map(comp => typeof comp === 'function' ? comp(props) : comp ); } }); }, /** * Conditionally render components */ conditional: (condition, trueComponent, falseComponent = null) => { return defineComponent({ name: 'ConditionalComponent', render(props) { const shouldRender = typeof condition === 'function' ? condition(props) : condition; if (shouldRender) { return typeof trueComponent === 'function' ? trueComponent(props) : trueComponent; } else if (falseComponent) { return typeof falseComponent === 'function' ? falseComponent(props) : falseComponent; } return null; } }); }, /** * Loop over data to render components */ loop: (data, itemComponent, keyFn = (item, index) => index) => { return defineComponent({ name: 'LoopComponent', render(props) { const items = typeof data === 'function' ? data(props) : data; if (!Array.isArray(items)) { console.warn('Loop component expects array data'); return null; } return items.map((item, index) => { const key = keyFn(item, index); const itemProps = {...props, item, index, key}; return typeof itemComponent === 'function' ? itemComponent(itemProps) : itemComponent; }); } }); } }; /** * Component utilities */ export const componentUtils = { /** * Get component tree information */ getComponentTree: (component) => { const tree = { name: component.name || 'Unknown', props: component.props || {}, state: component.state ? component.state.get() : {}, children: [], metadata: component.getMetadata ? component.getMetadata() : {} }; if (component.children && component.children.length > 0) { tree.children = component.children.map(child => componentUtils.getComponentTree(child) ); } return tree; }, /** * Find component by name in tree */ findComponent: (component, name) => { if (component.name === name) { return component; } if (component.children) { for (const child of component.children) { const found = componentUtils.findComponent(child, name); if (found) return found; } } return null; }, /** * Get component performance metrics */ getPerformanceMetrics: (component) => { const metadata = component.getMetadata ? component.getMetadata() : {}; return { renderCount: metadata.renderCount || 0, updateCount: metadata.updateCount || 0, createdAt: metadata.createdAt || Date.now(), age: Date.now() - (metadata.createdAt || Date.now()) }; }, /** * Validate component definition */ validateDefinition: (definition) => { const errors = []; if (!definition || typeof definition !== 'object') { errors.push('Definition must be an object'); return errors; } if (!definition.render && !definition.template) { errors.push('Component must have either render method or template'); } if (definition.render && typeof definition.render !== 'function') { errors.push('render must be a function'); } if (definition.methods && typeof definition.methods !== 'object') { errors.push('methods must be an object'); } if (definition.computed && typeof definition.computed !== 'object') { errors.push('computed must be an object'); } if (definition.watch && typeof definition.watch !== 'object') { errors.push('watch must be an object'); } return errors; } }; /** * Performance monitoring for components */ if (performanceMonitor) { const originalRender = Component.prototype.render; Component.prototype.render = function(...args) { const start = performance.now(); const result = originalRender.apply(this, args); const duration = performance.now() - start; performanceMonitor.recordRender('component', duration, { name: this.name, propsSize: JSON.stringify(this.props || {}).length, hasState: Object.keys(this.state?.get() || {}).length > 0 }); return result; }; } /** * Development helpers */ export const dev = { /** * Get all component instances */ getAllComponents: () => { return Array.from(COMPONENT_REGISTRY.entries()).map(([name, factory]) => ({ name, factory, definition: factory.definition })); }, /** * Clear component registry */ clearRegistry: () => { COMPONENT_REGISTRY.clear(); }, /** * Get component registry stats */ getRegistryStats: () => ({ totalComponents: COMPONENT_REGISTRY.size, components: Array.from(COMPONENT_REGISTRY.keys()) }) }; /** * Create lazy-evaluated properties and components * Defers computation until actually needed, with optional caching */ export function lazy(factory, options = {}) { const { cache = true, // Cache the result after first evaluation timeout = null, // Optional timeout for evaluation fallback = null, // Fallback value if evaluation fails onError = null, // Error handler dependencies = [] // Dependencies that invalidate cache } = options; let cached = false; let cachedValue = null; let isEvaluating = false; let lastDependencyHash = null; const lazyWrapper = { // Mark as lazy for identification __isLazy: true, __factory: factory, __options: options, // Evaluation method evaluate(...args) { // Prevent recursive evaluation if (isEvaluating) { console.warn('Lazy evaluation cycle detected, returning fallback'); return fallback; } // Check dependency changes if (cache && dependencies.length > 0) { const currentHash = hashDependencies(dependencies); if (lastDependencyHash !== null && lastDependencyHash !== currentHash) { cached = false; cachedValue = null; } lastDependencyHash = currentHash; } // Return cached value if available if (cache && cached) { return cachedValue; } isEvaluating = true; try { let result; // Handle timeout if (timeout) { result = evaluateWithTimeout(factory, timeout, args, fallback); } else { result = typeof factory === 'function' ? factory(...args) : factory; } // Handle promises if (result && typeof result.then === 'function') { return result.catch(error => { if (onError) onError(error); return fallback; }); } // Cache successful result if (cache) { cached = true; cachedValue = result; } return result; } catch (error) { if (onError) { onError(error); } else { console.error('Lazy evaluation error:', error); } return fallback; } finally { isEvaluating = false; } }, // Force re-evaluation invalidate() { cached = false; cachedValue = null; lastDependencyHash = null; return this; }, // Check if evaluated isEvaluated() { return cached; }, // Get cached value without evaluation getCachedValue() { return cachedValue; }, // Transform the lazy value map(transform) { return lazy((...args) => { const value = this.evaluate(...args); return transform(value); }, {...options, cache: false}); // Don't double-cache }, // Chain lazy evaluations flatMap(transform) { return lazy((...args) => { const value = this.evaluate(...args); const transformed = transform(value); if (isLazy(transformed)) { return transformed.evaluate(...args); } return transformed; }, {...options, cache: false}); }, // Convert to string for debugging toString() { return `[Lazy${cached ? ' (cached)' : ''}]`; }, // JSON serialization toJSON() { return this.evaluate(); } }; return lazyWrapper; } /** * Check if value is lazy */ export function isLazy(value) { return value && typeof value === 'object' && value.__isLazy === true; } /** * Evaluate lazy values recursively in an object */ export function evaluateLazy(obj, ...args) { if (isLazy(obj)) { return obj.evaluate(...args); } if (Array.isArray(obj)) { return obj.map(item => evaluateLazy(item, ...args)); } if (obj && typeof obj === 'object') { const result = {}; for (const [key, value] of Object.entries(obj)) { result[key] = evaluateLazy(value, ...args); } return result; } return obj; } /** * Create lazy component */ export function lazyComponent(componentFactory, options = {}) { return lazy(componentFactory, { cache: true, fallback: {div: {text: 'Loading component...'}}, ...options }); } /** * Create lazy import for dynamic imports */ export function lazyImport(importPromise, options = {}) { return lazy(async () => { const module = await importPromise; return module.default || module; }, { cache: true, fallback: {div: {text: 'Loading...'}}, ...options }); } /** * Create lazy computed property */ export function lazyComputed(computeFn, dependencies = [], options = {}) { return lazy(computeFn, { cache: true, dependencies, ...options }); } /** * Batch evaluate multiple lazy values */ export function batchEvaluate(lazyValues, ...args) { const results = {}; const promises = []; Object.entries(lazyValues).forEach(([key, lazyValue]) => { if (isLazy(lazyValue)) { const result = lazyValue.evaluate(...args); if (result && typeof result.then === 'function') { promises.push( result.then(value => ({key, value})) .catch(error => ({key, error})) ); } else { results[key] = result; } } else { results[key] = lazyValue; } }); if (promises.length === 0) { return results; } return Promise.all(promises).then(asyncResults => { asyncResults.forEach(({key, value, error}) => { if (error) { console.error(`Batch evaluation error for ${key}:`, error); results[key] = null; } else { results[key] = value; } }); return results; }); } /** * Helper function to hash dependencies */ function hashDependencies(dependencies) { return dependencies.map(dep => { if (typeof dep === 'function') { return dep.toString(); } return JSON.stringify(dep); }).join('|'); } /** * Helper function to evaluate with timeout */ function evaluateWithTimeout(factory, timeout, args, fallback) { return new Promise((resolve, reject) => { const timer = setTimeout(() => { reject(new Error(`Lazy evaluation timeout after ${timeout}ms`)); }, timeout); try { const result = factory(...args); if (result && typeof result.then === 'function') { result .then(value => { clearTimeout(timer); resolve(value); }) .catch(error => { clearTimeout(timer); reject(error); }); } else { clearTimeout(timer); resolve(result); } } catch (error) { clearTimeout(timer); reject(error); } }).catch(() => fallback); } /** * Lazy evaluation utilities */ export const lazyUtils = { /** * Create a lazy chain of transformations */ chain: (...transformations) => { return lazy((initialValue) => { return transformations.reduce((value, transform) => { if (isLazy(value)) { value = value.evaluate(); } return transform(value); }, initialValue); }); }, /** * Create conditional lazy evaluation */ conditional: (condition, trueFactory, falseFactory) => { return lazy((...args) => { const shouldEvaluateTrue = typeof condition === 'function' ? condition(...args) : condition; const factory = shouldEvaluateTrue ? trueFactory : falseFactory; return typeof factory === 'function' ? factory(...args) : factory; }); }, /** * Memoize a function with lazy evaluation */ memoize: (fn, keyFn = (...args) => JSON.stringify(args)) => { const cache = new Map(); return lazy((...args) => { const key = keyFn(...args); if (cache.has(key)) { return cache.get(key); } const result = fn(...args); cache.set(key, result); return result; }, {cache: false}); // Handle caching internally }, /** * Create lazy value from async function */ async: (asyncFn, options = {}) => { return lazy(asyncFn, { cache: true, fallback: options.loading || {div: {text: 'Loading...'}}, onError: options.onError, ...options }); }, /** * Create lazy array with lazy items */ array: (items = []) => { return lazy(() => items.map(item => isLazy(item) ? item.evaluate() : item )); }, /** * Create lazy object with lazy properties */ object: (obj = {}) => { return lazy(() => { const result = {}; for (const [key, value] of Object.entries(obj)) { result[key] = isLazy(value) ? value.evaluate() : value; } return result; }); } }; /** * Memoization utilities for caching function results and component renders */ /** * Enhanced memoization with multiple caching strategies */ export function memo(fn, options = {}) { const { // Caching strategy strategy = 'lru', // 'lru', 'ttl', 'weak', 'simple' maxSize = 100, // Maximum cache entries ttl = null, // Time to live in milliseconds // Key generation keyFn = null, // Custom key function keySerializer = JSON.stringify, // Default serialization // Comparison // eslint-disable-next-line no-unused-vars compareFn = null, // Custom equality comparison // eslint-disable-next-line no-unused-vars shallow = false, // Shallow comparison for objects // Lifecycle hooks onHit = null, // Called on cache hit onMiss = null, // Called on cache miss onEvict = null, // Called when item evicted // Performance stats = false, // Track hit/miss statistics // Development debug = false // Debug logging } = options; // Choose cache implementation based on strategy let cache; const stats_data = stats ? {hits: 0, misses: 0, evictions: 0} : null; switch (strategy) { case 'lru': cache = new LRUCache(maxSize, {onEvict: onEvict}); break; case 'ttl': cache = new TTLCache(ttl, {onEvict: onEvict}); break; case 'weak': cache = new WeakMap(); break; default: cache = new Map(); } // Generate cache key const generateKey = keyFn || ((...args) => { if (args.length === 0) return '__empty__'; if (args.length === 1) return keySerializer(args[0]); return keySerializer(args); }); // Compare values for equality (inline via compareFn or defaults where used) const memoizedFn = (...args) => { const key = generateKey(...args); // Check cache hit if (cache.has(key)) { const cached = cache.get(key); // For TTL cache or custom validation if (cached && (!cached.expires || Date.now() < cached.expires)) { if (debug) console.log(`Memo cache hit for key: ${key}`); if (onHit) onHit(key, cached.value, args); if (stats_data) stats_data.hits++; return cached.value || cached; } else { // Expired entry cache.delete(key); } } // Cache miss - compute result if (debug) console.log(`Memo cache miss for key: ${key}`); if (onMiss) onMiss(key, args); if (stats_data) stats_data.misses++; const result = fn(...args); // Store in cache const cacheEntry = ttl ? {value: result, expires: Date.now() + ttl} : result; cache.set(key, cacheEntry); return result; }; // Attach utility methods memoizedFn.cache = cache; memoizedFn.clear = () => cache.clear(); memoizedFn.delete = (key) => cache.delete(key); memoizedFn.has = (key) => cache.has(key); memoizedFn.size = () => cache.size; if (stats_data) { memoizedFn.stats = () => ({...stats_data}); memoizedFn.resetStats = () => { stats_data.hits = 0; stats_data.misses = 0; stats_data.evictions = 0; }; } // Force recomputation for specific args memoizedFn.refresh = (...args) => { const key = generateKey(...args); cache.delete(key); return memoizedFn(...args); }; return memoizedFn; } /** * Component-specific memoization */ export function memoComponent(component, options = {}) { const { propsEqual = shallowEqual, stateEqual = shallowEqual, name = component.name || 'AnonymousComponent' } = options; return memo((props = {}, state = {}, context = {}) => { return typeof component === 'function' ? component(props, state, context) : component; }, { keyFn: (props, state) => { // Create key based on props and state return `${name}:${JSON.stringify(props)}:${JSON.stringify(state)}`; }, compareFn: (a, b) => { // Custom comparison for component args return propsEqual(a.props, b.props) && stateEqual(a.state, b.state); }, ...options }); } /** * Async memoization with promise caching */ export function memoAsync(asyncFn, options = {}) { const promiseCache = new Map(); const memoized = memo((...args) => { const key = options.keyFn ? options.keyFn(...args) : JSON.stringify(args); // Check if promise is already running if (promiseCache.has(key)) { return promiseCache.get(key); } // Start new async operation const promise = asyncFn(...args).catch(error => { // Remove failed promise from cache promiseCache.delete(key); throw error; }); promiseCache.set(key, promise); // Clean up resolved promise promise.finally(() => { setTimeout(() => promiseCache.delete(key), 0); }); return promise; }, options); // Clear both caches const originalClear = memoized.clear; memoized.clear = () => { originalClear(); promiseCache.clear(); }; return memoized; } /** * LRU Cache implementation */ class LRUCache { constructor(maxSize = 100, options = {}) { this.maxSize = maxSize; this.cache = new Map(); this.onEvict = options.onEvict; } get(key) { if (this.cache.has(key)) { // Move to end (most recently used) const value = this.cache.get(key); this.cache.delete(key); this.cache.set(key, value); return value; } return undefined; } set(key, value) { if (this.cache.has(key)) { // Update existing this.cache.delete(key); } else if (this.cache.size >= this.maxSize) { // Evict least recently used (first entry) const firstKey = this.cache.keys().next().value; const evicted = this.cache.get(firstKey); this.cache.delete(firstKey); if (this.onEvict) { this.onEvict(firstKey, evicted); } } this.cache.set(key, value); } has(key) { return this.cache.has(key); } delete(key) { return this.cache.delete(key); } clear() { this.cache.clear(); } get size() { return this.cache.size; } } /** * TTL Cache implementation */ class TTLCache { constructor(ttl, options = {}) { this.ttl = ttl; this.cache = new Map(); this.timers = new Map(); this.onEvict = options.onEvict; } get(key) { if (this.cache.has(key)) { const entry = this.cache.get(key); if (Date.now() < entry.expires) { return entry.value; } else { // Expired this.delete(key); } } return undefined; } set(key, value) { // Clear existing timer if (this.timers.has(key)) { clearTimeout(this.timers.get(key)); } const expires = Date.now() + this.ttl; this.cache.set(key, {value, expires}); // Set expiration timer const timer = setTimeout(() => { this.delete(key); }, this.ttl); this.timers.set(key, timer); } has(key) { if (this.cache.has(key)) { const entry = this.cache.get(key); return Date.now() < entry.expires; } return false; } delete(key) { const had = this.cache.has(key); if (had) { const entry = this.cache.get(key); this.cache.delete(key); if (this.timers.has(key)) { clearTimeout(this.timers.get(key)); this.timers.delete(key); } if (this.onEvict) { this.onEvict(key, entry.value); } } return had; } clear() { // Clear all timers this.timers.forEach(timer => clearTimeout(timer)); this.timers.clear(); this.cache.clear(); } get size() { return this.cache.size; } } /** * Shallow equality check for objects */ function shallowEqual(a, b) { if (a === b) return true; if (!a || !b) return false; if (typeof a !== typeof b) return false; if (Array.isArray(a) && Array.isArray(b)) { if (a.length !== b.length) return false; return a.every((item, index) => item === b[index]); } if (typeof a === 'object') { const keysA = Object.keys(a); const keysB = Object.keys(b); if (keysA.length !== keysB.length) return false; return keysA.every(key => a[key] === b[key]); } return false; } /** * Memoization utilities */ export const memoUtils = { /** * Create a memo with automatic dependency tracking */ auto: (fn, dependencies = []) => { let lastDeps = null; let cached = null; let hasCached = false; return (...args) => { const currentDeps = dependencies.map(dep => typeof dep === 'function' ? dep() : dep ); if (!hasCached || !shallowEqual(lastDeps, currentDeps)) { cached = fn(...args); lastDeps = currentDeps; hasCached = true; } return cached; }; }, /** * Memo with size-based eviction */ sized: (fn, maxSize = 50) => memo(fn, {strategy: 'lru', maxSize}), /** * Memo with time-based eviction */ timed: (fn, ttl = 5000) => memo(fn, {strategy: 'ttl', ttl}), /** * Weak memo (garbage collected with keys) */ weak: (fn) => memo(fn, {strategy: 'weak'}), /** * Create multiple memoized variants */ variants: (fn, configs) => { const variants = {}; Object.entries(configs).forEach(([name, config]) => { variants[name] = memo(fn, config); }); return variants; }, /** * Conditional memoization */ conditional: (fn, shouldMemo = () => true) => { const memoized = memo(fn); return (...args) => { if (shouldMemo(...args)) { return memoized(...args); } return fn(...args); }; }, /** * Memo with custom storage */ custom: (fn, storage) => { return (...args) => { const key = JSON.stringify(args); if (storage.has(key)) { return storage.get(key); } const result = fn(...args); storage.set(key, result); return result; }; } }; /** * Higher-order function utilities for component composition and prop manipulation */ /** * Enhanced withProps utility for component prop transformation and injection */ export function withProps(propsTransform, options = {}) { const { // Transformation options merge = true, // Merge with existing props vs replace override = false, // Allow overriding existing props validate = null, // Validation function for props // Caching and performance memoize = false, // Memoize the transformation memoOptions = {}, // Memoization options // Error handling onError = null, // Error handler for transformation fallbackProps = {}, // Fallback props on error // Development displayName = null, // Component name for debugging debug = false, // Debug logging // Lifecycle onPropsChange = null, // Called when props change shouldUpdate = null // Custom update logic } = options; return function withPropsHOC(WrappedComponent) { // Create the enhanced component function WithPropsComponent(originalProps = {}, state = {}, context = {}) { try { // Transform props let transformedProps; if (typeof propsTransform === 'function') { transformedProps = propsTransform(originalProps, state, context); } else if (typeof propsTransform === 'object') { transformedProps = propsTransform; } else { transformedProps = {}; } // Handle async transformations if (transformedProps && typeof transformedProps.then === 'function') { return transformedProps.then(resolved => { return processProps(resolved, originalProps, WrappedComponent, state, context); }).catch(error => { if (onError) onError(error, originalProps); return processProps(fallbackProps, originalProps, WrappedComponent, state, context); }); } return processProps(transformedProps, originalProps, WrappedComponent, state, context); } catch (error) { if (debug) console.error('withProps error:', error); if (onError) onError(error, originalProps); // Use fallback props return processProps(fallbackProps, originalProps, WrappedComponent, state, context); } } // Process and merge props function processProps(transformed, original, component, state, context) { let finalProps; if (merge) { if (override) { finalProps = {...original, ...transformed}; } else { // Don't override existing props finalProps = {...transformed, ...original}; } } else { finalProps = transformed; } // Validate final props if (validate && !validate(finalProps)) { if (debug) console.warn('Props validation failed:', finalProps); finalProps = {...finalProps, ...fallbackProps}; } // Check if should update if (shouldUpdate && !shouldUpdate(finalProps, original, state)) { return null; // Skip update } // Notify props change if (onPropsChange) { onPropsChange(finalProps, original, transformed); } if (debug) { console.log('withProps transformation:', { original, transformed, final: finalProps }); } // Render wrapped component return typeof component === 'function' ? component(finalProps, state, context) : component; } // Set display name for debugging WithPropsComponent.displayName = displayName || `withProps(${WrappedComponent.displayName || WrappedComponent.name || 'Component'})`; // Add metadata WithPropsComponent.__isHOC = true; WithPropsComponent.__wrappedComponent = WrappedComponent; WithPropsComponent.__transform = propsTransform; // Apply memoization if requested if (memoize) { return memo(WithPropsComponent, { keyFn: (props, state) => JSON.stringify({props, state}), ...memoOptions }); } return WithPropsComponent; }; } /** * Specialized withProps variants */ export const withPropsUtils = { /** * Add static props to component */ static: (staticProps) => withProps(() => staticProps), /** * Transform props based on conditions */ conditional: (condition, trueProps, falseProps = {}) => withProps((props, state, context) => { const shouldApply = typeof condition === 'function' ? condition(props, state, context) : condition; return shouldApply ? trueProps : falseProps; }), /** * Map specific props to new names/values */ map: (mapping) => withProps((props) => { const result = {}; Object.entries(mapping).forEach(([newKey, mapper]) => { if (typeof mapper === 'string') { // Simple property rename result[newKey] = props[mapper]; } else if (typeof mapper === 'function') { // Transform function result[newKey] = mapper(props); } else { // Static value result[newKey] = mapper; } }); return result; }), /** * Pick only specific props */ pick: (keys) => withProps((props) => { const result = {}; keys.forEach(key => { if (props.hasOwnProperty(key)) { result[key] = props[key]; } }); return result; }), /** * Omit specific props */ omit: (keys) => withProps((props) => { const result = {...props}; keys.forEach(key => delete result[key]); return result; }), /** * Default values for missing props */ defaults: (defaultProps) => withProps((props) => ({ ...defaultProps, ...props }), {merge: false}), /** * Transform props with validation */ validated: (transform, validator) => withProps(transform, { validate: validator, onError: (error) => console.warn('Prop validation failed:', error) }), /** * Async prop transformation */ async: (asyncTransform, loadingProps = {}) => withProps(async (props, state, context) => { try { return await asyncTransform(props, state, context); } catch (error) { console.error('Async prop transform failed:', error); return loadingProps; } }, { fallbackProps: loadingProps }), /** * Computed props based on other props */ computed: (computedProps) => withProps((props) => { const computed = {}; Object.entries(computedProps).forEach(([key, compute]) => { computed[key] = typeof compute === 'function' ? compute(props) : compute; }); return computed; }), /** * Props with context injection */ withContext: (contextKeys) => withProps((props, state, context) => { const contextProps = {}; contextKeys.forEach(key => { if (context && context[key] !== undefined) { contextProps[key] = context[key]; } }); return contextProps; }), /** * Props with state injection */ withState: (stateMapping) => withProps((props, state) => { if (typeof stateMapping === 'function') { return stateMapping(state, props); } const stateProps = {}; Object.entries(stateMapping).forEach(([propKey, stateKey]) => { stateProps[propKey] = state[stateKey]; }); return stateProps; }), /** * Memoized prop transformation */ memoized: (transform, memoOptions = {}) => withProps(transform, { memoize: true, memoOptions: { maxSize: 50, ...memoOptions } }), /** * Props with performance measurement */ timed: (transform, name = 'PropTransform') => withProps((props, state, context) => { const start = performance.now(); const result = transform(props, state, context); const end = performance.now(); if (end - start > 1) { // Log if > 1ms console.log(`${name} took ${(end - start).toFixed(2)}ms`); } return result; }), /** * Chain multiple prop transformations */ chain: (...transforms) => withProps((props, state, context) => { return transforms.reduce((acc, transform) => { if (typeof transform === 'function') { return {...acc, ...transform(acc, state, context)}; } return {...acc, ...transform}; }, props); }) }; /** * Create a reusable prop transformer */ export function createPropTransformer(config) { const { transforms = [], validators = [], defaults = {}, options = {} } = config; return withProps((props, state, context) => { let result = {...defaults, ...props}; // Apply transforms in sequence for (const transform of transforms) { if (typeof transform === 'function') { result = {...result, ...transform(result, state, context)}; } else { result = {...result, ...transform}; } } // Run validators for (const validator of validators) { if (!validator(result)) { throw new Error('Prop validation failed'); } } return result; }, options); } /** * Props debugging utility */ export function withPropsDebug(component, debugOptions = {}) { const { logProps = true, logChanges = true, breakOnError = false } = debugOptions; return withProps((props, state, context) => { if (logProps) { console.group(`Props Debug: ${component.name || 'Component'}`); console.log('Props:', props); console.log('State:', state); console.log('Context:', context); console.groupEnd(); } return props; }, { debug: true, onError: breakOnError ? () => { // eslint-disable-next-line no-debugger debugger; } : undefined, onPropsChange: logChanges ? (finalProps, original) => { console.log('Props changed:', {from: original, to: finalProps}); } : undefined })(component); } /** * State management utilities for component state injection and management */ /** * Enhanced withState utility for component state management and injection */ export function withState(initialState = {}, options = {}) { const { // State options persistent = false, // Persist state across component unmounts storageKey = null, // Key for persistent storage storage = typeof localStorage !== 'undefined' ? localStorage : { // Fallback storage for Node.js environments _data: new Map(), setItem(key, value) { this._data.set(key, value); }, getItem(key) { return this._data.get(key) || null; }, removeItem(key) { this._data.delete(key); }, clear() { this._data.clear(); } }, // Storage mechanism // State transformation stateTransform = null, // Transform state before injection propName = 'state', // Prop name for state injection actionsName = 'actions', // Prop name for action injection // Reducers and actions reducer = null, // State reducer function actions = {}, // Action creators middleware = [], // State middleware // Performance memoizeState = false, // Memoize state transformations // eslint-disable-next-line no-unused-vars shallow = false, // Shallow state comparison // Development // eslint-disable-next-line no-unused-vars devTools = false, // Connect to dev tools debug = false, // Debug logging displayName = null, // Component name for debugging // Lifecycle hooks onStateChange = null, // Called when state changes onMount = null, // Called when component mounts onUnmount = null, // Called when component unmounts // Validation validator = null, // State validator function // Async state supportAsync = false // Support async state updates } = options; return function withStateHOC(WrappedComponent) { // Create state container const stateContainer = createStateContainer(initialState, { persistent, storageKey: storageKey || `${getComponentName(WrappedComponent)}_state`, storage, reducer, middleware, validator, onStateChange, debug }); function WithStateComponent(props = {}, globalState = {}, context = {}) { // Initialize component state if not exists if (!stateContainer.initialized) { stateContainer.initialize(); if (onMount) { onMount(stateContainer.getState(), props, context); } } // Get current state const currentState = stateContainer.getState(); // Transform state if needed let transformedState = currentState; if (stateTransform) { transformedState = stateTransform(currentState, props, context); } // Create actions bound to this state container const boundActions = createBoundActions(actions, stateContainer, { props, context, supportAsync, debug }); // Create state management utilities const stateUtils = { // Basic state operations setState: stateContainer.setState.bind(stateContainer), getState: stateContainer.getState.bind(stateContainer), resetState: () => stateContainer.setState(initialState), // Advanced operations updateState: (updater) => { const current = stateContainer.getState(); const next = typeof updater === 'function' ? updater(current) : updater; stateContainer.setState(next); }, // Batch updates batchUpdate: (updates) => { stateContainer.batch(() => { updates.forEach(update => { if (typeof update === 'function') { update(stateContainer); } else { stateContainer.setState(update); } }); }); }, // Computed state computed: (computeFn) => { return memoizeState ? memo(computeFn)(transformedState) : computeFn(transformedState); }, // State subscription subscribe: stateContainer.subscribe.bind(stateContainer), unsubscribe: stateContainer.unsubscribe.bind(stateContainer), // Async state operations ...(supportAsync && { setStateAsync: async (stateOrPromise) => { const resolved = await Promise.resolve(stateOrPromise); stateContainer.setState(resolved); }, updateStateAsync: async (asyncUpdater) => { const current = stateContainer.getState(); const next = await Promise.resolve(asyncUpdater(current)); stateContainer.setState(next); } }) }; // Prepare enhanced props const enhancedProps = { ...props, [propName]: transformedState, [actionsName]: boundActions, stateUtils }; if (debug) { console.log('withState render:', { component: getComponentName(WrappedComponent), state: transformedState, props: enhancedProps }); } // Render wrapped component return typeof WrappedComponent === 'function' ? WrappedComponent(enhancedProps, globalState, context) : WrappedComponent; } // Set display name WithStateComponent.displayName = displayName || `withState(${getComponentName(WrappedComponent)})`; // Add metadata WithStateComponent.__isHOC = true; WithStateComponent.__hasState = true; WithStateComponent.__stateContainer = stateContainer; WithStateComponent.__wrappedComponent = WrappedComponent; // Cleanup on unmount WithStateComponent.cleanup = () => { if (onUnmount) { onUnmount(stateContainer.getState()); } if (!persistent) { stateContainer.destroy(); } }; return WithStateComponent; }; } /** * Create a centralized state container */ function createStateContainer(initialState, options) { const { persistent, storageKey, storage, reducer, middleware, validator, onStateChange, debug } = options; let state = deepClone(initialState); let listeners = new Set(); const middlewareStack = [...middleware]; const container = { initialized: false, initialize() { // Load persisted state if (persistent && storageKey) { try { const saved = storage.getItem(storageKey); if (saved) { const parsed = JSON.parse(saved); state = {...state, ...parsed}; } } catch (error) { if (debug) console.warn('Failed to load persisted state:', error); } } container.initialized = true; }, getState() { return deepClone(state); }, setState(newState) { const prevState = state; // Apply reducer if provided if (reducer) { state = reducer(state, {type: 'SET_STATE', payload: newState}); } else { state = typeof newState === 'function' ? newState(state) : {...state, ...newState}; } // Validate state if (validator && !validator(state)) { if (debug) console.warn('State validation failed, reverting:', state); state = prevState; return false; } // Apply middleware state = middlewareStack.reduce((acc, middleware) => middleware(acc, prevState) || acc, state ); // Persist state if (persistent && storageKey) { try { storage.setItem(storageKey, JSON.stringify(state)); } catch (error) { if (debug) console.warn('Failed to persist state:', error); } } // Notify listeners if (state !== prevState) { listeners.forEach(listener => { try { listener(state, prevState); } catch (error) { if (debug) console.error('State listener error:', error); } }); if (onStateChange) { onStateChange(state, prevState); } } return true; }, subscribe(listener) { listeners.add(listener); return () => listeners.delete(listener); }, unsubscribe(listener) { return listeners.delete(listener); }, batch(batchFn) { const originalListeners = listeners; listeners = new Set(); // Temporarily disable listeners try { batchFn(); } finally { listeners = originalListeners; // Notify once after batch listeners.forEach(listener => listener(state)); } }, destroy() { listeners.clear(); if (persistent && storageKey) { try { storage.removeItem(storageKey); } catch (error) { if (debug) console.warn('Failed to remove persisted state:', error); } } } }; return container; } /** * Create bound action creators */ function createBoundActions(actions, stateContainer, options) { const {props, context, supportAsync, debug} = options; const boundActions = {}; Object.entries(actions).forEach(([actionName, actionCreator]) => { boundActions[actionName] = (...args) => { try { const result = actionCreator( stateContainer.getState(), stateContainer.setState.bind(stateContainer), {props, context, args} ); // Handle async actions if (supportAsync && result && typeof result.then === 'function') { return result.catch(error => { if (debug) console.error(`Async action ${actionName} failed:`, error); throw error; }); } return result; } catch (error) { if (debug) console.error(`Action ${actionName} failed:`, error); throw error; } }; }); return boundActions; } /** * Specialized withState variants */ export const withStateUtils = { /** * Simple local state */ local: (initialState) => withState(initialState), /** * Persistent state with localStorage */ persistent: (initialState, key) => withState(initialState, { persistent: true, storageKey: key }), /** * State with reducer pattern */ reducer: (initialState, reducer, actions = {}) => withState(initialState, { reducer, actions }), /** * Async state management */ async: (initialState, asyncActions = {}) => withState(initialState, { supportAsync: true, actions: asyncActions }), /** * State with validation */ validated: (initialState, validator) => withState(initialState, { validator, debug: true }), /** * Shared state across components */ shared: (initialState, sharedKey) => { const sharedStates = withStateUtils._shared || (withStateUtils._shared = new Map()); if (!sharedStates.has(sharedKey)) { sharedStates.set(sharedKey, createStateContainer(initialState, {})); } return (WrappedComponent) => { const sharedContainer = sharedStates.get(sharedKey); function SharedStateComponent(props, globalState, context) { const currentState = sharedContainer.getState(); const enhancedProps = { ...props, state: currentState, setState: sharedContainer.setState.bind(sharedContainer), subscribe: sharedContainer.subscribe.bind(sharedContainer) }; return typeof WrappedComponent === 'function' ? WrappedComponent(enhancedProps, globalState, context) : WrappedComponent; } SharedStateComponent.displayName = `withSharedState(${getComponentName(WrappedComponent)})`; return SharedStateComponent; }; }, /** * State with form utilities */ form: (initialFormState) => withState(initialFormState, { actions: { updateField: (state, setState, {args: [field, value]}) => { setState({[field]: value}); }, updateMultiple: (state, setState, {args: [updates]}) => { setState(updates); }, resetForm: (state, setState) => { setState(initialFormState); }, validateForm: (state, setState, {args: [validator]}) => { const errors = validator(state); setState({_errors: errors}); return Object.keys(errors).length === 0; } } }), /** * State with loading/error handling */ withLoading: async (initialState) => withState({ ...initialState, _loading: false, _error: null }, { supportAsync: true, actions: { setLoading: (state, setState, {args: [loading]}) => { setState({_loading: loading}); }, setError: (state, setState, {args: [error]}) => { setState({_error: error, _loading: false}); }, clearError: (state, setState) => { setState({_error: null}); }, asyncAction: async (state, setState, {args: [asyncFn]}) => { setState({_loading: true, _error: null}); try { const result = await asyncFn(state); setState({_loading: false}); return result; } catch (error) { setState({_loading: false, _error: error}); throw error; } } } }), /** * State with undo/redo functionality */ withHistory: (initialState, maxHistory = 10) => { const historyState = { present: initialState, past: [], future: [] }; return withState(historyState, { actions: { undo: (state, setState) => { if (state.past.length === 0) return; const previous = state.past[state.past.length - 1]; const newPast = state.past.slice(0, state.past.length - 1); setState({ past: newPast, present: previous, future: [state.present, ...state.future] }); }, redo: (state, setState) => { if (state.future.length === 0) return; const next = state.future[0]; const newFuture = state.future.slice(1); setState({ past: [...state.past, state.present], present: next, future: newFuture }); }, updatePresent: (state, setState, {args: [newPresent]}) => { setState({ past: [...state.past, state.present].slice(-maxHistory), present: newPresent, future: [] }); }, canUndo: (state) => state.past.length > 0, canRedo: (state) => state.future.length > 0 } }); }, /** * Computed state properties */ computed: (initialState, computedProps) => withState(initialState, { stateTransform: (state) => { const computed = {}; Object.entries(computedProps).forEach(([key, computeFn]) => { computed[key] = computeFn(state); }); return {...state, ...computed}; }, memoizeState: true }) }; /** * Create a compound state manager */ export function createStateManager(config) { const { initialState = {}, reducers = {}, actions = {}, middleware = [], plugins = [] } = config; // Combine reducers const rootReducer = (state, action) => { let nextState = state; Object.entries(reducers).forEach(([key, reducer]) => { nextState = { ...nextState, [key]: reducer(nextState[key], action) }; }); return nextState; }; // Apply plugins const enhancedConfig = plugins.reduce( (acc, plugin) => plugin(acc), {initialState, reducer: rootReducer, actions, middleware} ); return withState(enhancedConfig.initialState, { reducer: enhancedConfig.reducer, actions: enhancedConfig.actions, middleware: enhancedConfig.middleware }); } // Utility to get component name function getComponentName(component) { if (!component) return 'Component'; return component.displayName || component.name || component.constructor?.name || 'Component'; } export default { Component, createComponent, defineComponent, registerComponent, getComponent, getRegisteredComponents, createHOC, createMixin, compose, componentUtils, dev, lazy, lazyUtils, evaluateLazy, evaluateWithTimeout, batchEvaluate, hashDependencies, memo, memoUtils, withProps, withPropsUtils, withPropsDebug, withState, createStateManager, getComponentName, withStateUtils }; |