File size: 166,259 Bytes
fa9c65f | 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 | import type { AppContext, AppModule } from '@/app/app-context';
import { normalizeExclusiveChoropleths } from '@/components/resilience-choropleth-utils';
import { replayPendingCalls, clearAllPendingCalls } from '@/app/pending-panel-data';
import { hasPanelSettingEntry, newsPanelKeyForCategory, newsPanelKeyLookupsFor } from '@/app/news-panel-keys';
import {
createDeferredPanelShell,
getDeferredPanelShellFootprint as resolveDeferredPanelShellFootprint,
reconcileDeferredPanelShellColSpan,
shouldDeferInitialPanelMount,
type DeferredPanelShellFootprint,
} from '@/app/panel-mount-deferral';
import {
addResponsiveZoneListener,
removeResponsiveZoneListener,
type ResponsiveZoneListener,
} from '@/app/responsive-zone-listener';
import { getAlertsNearLocation } from '@/services/geo-convergence';
import { effectivePubDateMs } from '@/services/feed-date';
import type { ClusteredEvent, MapLayers, PanelConfig } from '@/types';
import type { RelatedAsset } from '@/types';
import type { TheaterPostureSummary } from '@/services/military-surge';
import type { NewsPanel } from '@/components/NewsPanel';
import type { AviationCommandBar } from '@/components/AviationCommandBar';
import { MobilePanelNav } from '@/components/MobilePanelNav';
import { debounce, loadFromStorage, saveToStorage } from '@/utils';
import { escapeHtml } from '@/utils/sanitize';
import {
CANONICAL_FEEDS,
STORAGE_KEYS,
SITE_VARIANT,
ALL_PANELS,
VARIANT_DEFAULTS,
isPanelInVariantDefaults,
getEffectivePanelConfig,
isPanelEntitled,
enforceFreePanelLimit,
} from '@/config';
import { BETA_MODE } from '@/config/beta';
import { t } from '@/services/i18n';
import { getCurrentTheme } from '@/utils';
import { trackCriticalBannerAction, trackCheckoutSuccess, trackCheckoutFailed, trackGateHit, replayPendingCheckoutSuccess, replayPendingProFunnelEvents } from '@/services/analytics';
import { getStoredMapModePreference } from '@/services/map-mode-preference';
import { loadWidgets, saveWidget, isProUser } from '@/services/widget-store';
import type { CustomWidgetSpec } from '@/services/widget-store';
import { initEntitlementSubscription, destroyEntitlementSubscription, isEntitlementActive, hasTier, getEntitlementState, onEntitlementChange } from '@/services/entitlements';
import { createEntitlementReloadController } from '@/services/entitlement-reload-controller';
import { initSubscriptionWatch, destroySubscriptionWatch, onSubscriptionChange } from '@/services/billing';
import { initPaymentFailureBanner } from '@/components/payment-failure-banner';
import { handleCheckoutReturn } from '@/services/checkout-return';
import { registerCheckoutSuccessCallback, destroyCheckoutOverlay, showCheckoutSuccess, consumePostCheckoutFlag, clearCheckoutAttempt, loadCheckoutAttempt } from '@/services/checkout';
import {
markProActivationPending,
ProActivationController,
} from '@/app/pro-activation-controller';
import { showCheckoutFailureBanner } from '@/components/checkout-failure-banner';
import { PanelTabBar, tabCapGateCopy } from '@/components/PanelTabBar';
import {
loadTabsState,
saveTabsState,
generateTabId,
buildDefaultTabPanels,
} from '@/services/tab-store';
import type { PanelTab, TabsState } from '@/services/tab-store';
import { showToast } from '@/utils';
import { loadMcpPanels, saveMcpPanel } from '@/services/mcp-store';
import type { McpPanelSpec } from '@/services/mcp-store';
import { getAuthState, subscribeAuthState } from '@/services/auth-state';
import type { AuthSession } from '@/services/auth-state';
import { PanelGateReason, evaluateTabCap, exportLockToGateReason, getPanelGateReason, hasPremiumAccess, resolveBillingAwareGateReason, resolveGateAction } from '@/services/panel-gating';
import { primeExportGateActivation } from '@/services/export-gate';
import type { TabCapVerdict } from '@/services/export-gate';
import { markLcpDebug } from '@/utils/lcp-debug';
import type { Panel } from '@/components/Panel';
import type { SupplyChainPanel } from '@/components/SupplyChainPanel';
import { setTrustedHtml, trustedHtml } from '@/utils/dom-utils';
import { loadPanelCollapsed, loadPanelColSpans, loadPanelSpans } from '@/utils/panel-storage';
import { measure, mutate } from '@/utils/layout-batch';
function readSessionStorageValue(key: string): string | null {
try {
return window.sessionStorage.getItem(key);
} catch {
return null;
}
}
function writeSessionStorageValue(key: string, value: string): void {
try {
window.sessionStorage.setItem(key, value);
} catch {
// Banner dismissal remains functional for this render even without persistence.
}
}
/**
* Panels that require premium access on web. Auth-based gating applies to
* these — `updatePanelGating()` calls `Panel.showGatedCta()` to render
* "Sign In to Unlock" / "Upgrade to Pro" for non-premium users.
*
* INVARIANT: every panel listed in `apiKeyPanels` (src/config/panels.ts
* `isPanelEntitled`) MUST appear here. If it's API-key-entitled but missing
* from this set, anonymous/free-Clerk users see the panel mount and run
* its loader (which writes empty/loading/error UI directly into the body)
* instead of the lock CTA. The PRO badge in the title still renders, so
* the symptom is "PRO badge + panel-internal loading or empty copy"
* which looks broken (e.g. Regional Intelligence rendering its empty-state
* "is being refreshed" message to anonymous users — see todo #257 item 8).
*
* The static test in tests/panel-config-guardrails.test.mjs enforces
* `apiKeyPanels ⊆ WEB_PREMIUM_PANELS` so this drift can't recur silently.
*/
const WEB_PREMIUM_PANELS = new Set([
'stock-analysis',
'stock-backtest',
'daily-market-brief',
'market-implications',
'deduction',
'chat-analyst',
'wsb-ticker-scanner',
'latest-brief',
'regional-intelligence',
'trade-policy',
'global-procurement',
]);
/**
* Panels that require a Clerk-authenticated PRO account specifically.
* Desktop API key / browser tester keys do NOT satisfy the gate because
* these panels are bound to a Clerk userId server-side (e.g. the Brief
* is stored at brief:{clerkUserId}:{date} in Redis — no Clerk user, no
* brief to fetch).
*
* Without this extra gate, API-key + free-Clerk users would see the
* panel "unlocked" by hasPremiumAccess() and then hit a 403 when the
* server re-checks entitlement from the JWT. This set promotes the
* inconsistency to the layout gating layer so the user sees the
* correct "Upgrade to Pro" CTA instead of a doomed fetch.
*/
const WEB_CLERK_PRO_ONLY_PANELS = new Set([
'latest-brief',
]);
/**
* Panel keys a dedicated panel owns but registers for AFTER the CANONICAL_FEEDS
* NewsPanel pass — the one thing that pass cannot derive for itself.
*
* Everything else it needs is live by the time it runs: `ctx.panels` and
* `lazyPanelRegistrations` already hold every panel registered above it, which is
* what lets the news/data key collision be derived instead of enumerated (#5871).
* A registration BELOW it is invisible to both.
*
* `live-news` is the only one. CANONICAL_FEEDS['live-news'] exists to seed the
* energy variant's headline sources, not to render a panel; the key belongs to
* LiveNewsPanel (24/7 video), registered near the end of createPanels(). Letting
* the pass claim it registers a generic NewsPanel first, and lazyPanel()'s dedup
* guard then blocks the real video panel — regression #4382, which shipped
* "LIVE NEWS / No items in the last 7 days" to the live dashboard. Declaring it
* claimed remaps it to `live-news-news`, which has no settings entry, so no panel
* is created on any variant. Guarded by tests/live-news-panel-guard.test.mts, and
* tests/news-panel-key-reachability.test.mts fails if a SECOND feed-category panel
* ever moves below the pass without being listed here.
*/
const LATE_REGISTERED_PANEL_KEYS = new Set(['live-news']);
const DASHBOARD_REFERENCE_LINKS = [
{ label: 'Countries', path: '/countries/' },
{ label: 'Chokepoints', path: '/chokepoints/' },
{ label: 'Crises', path: '/crises/' },
{ label: 'Tools', path: '/tools/' },
] as const;
// TEMPORARY MIRROR of each panel constructor's footprint (`defaultRowSpan` /
// `className: 'panel-wide'`, declared in src/components/*Panel.ts). A deferred
// shell never instantiates its component, so it cannot read that footprint
// directly and must reproduce it here to reserve the right grid space.
//
// This duplicates the authoritative per-component declaration. Two guards keep
// it honest: `tests/panel-config-guardrails.test.mjs` fails CI on drift, and
// `warnOnDeferredFootprintDrift` (below) logs in dev if a hydrated panel ends
// up wider/taller than its reserved shell. The intended long-term fix is to
// lift these defaults into one shared table imported by both the `Panel`
// constructor and this map, removing the duplication entirely (see #4490).
export const DEFERRED_PANEL_NATURAL_FOOTPRINTS: Readonly<Record<string, DeferredPanelShellFootprint>> = {
cii: { rowSpan: 2 },
'chat-analyst': { rowSpan: 2 },
'china-corridors': { rowSpan: 2, className: 'panel-wide' },
'china-activity-nowcast': { rowSpan: 2, className: 'panel-wide' },
'consumer-prices': { rowSpan: 2 },
displacement: { rowSpan: 2 },
economic: { rowSpan: 2 },
'global-procurement': { rowSpan: 2 },
'energy-complex': { rowSpan: 2 },
'energy-crisis': { rowSpan: 2 },
'energy-disruptions': { rowSpan: 2 },
'fuel-shortages': { rowSpan: 2 },
'gdelt-intel': { rowSpan: 2 },
'internet-disruptions': { rowSpan: 2 },
'live-news': { className: 'panel-wide' },
'live-webcams': { className: 'panel-wide' },
'oil-inventories': { rowSpan: 2 },
'pipeline-status': { rowSpan: 2 },
'sanctions-pressure': { rowSpan: 2 },
'security-advisories': { rowSpan: 2 },
'storage-facility-map': { rowSpan: 2 },
'strategic-posture': { rowSpan: 2 },
'supply-chain': { rowSpan: 2 },
'telegram-intel': { rowSpan: 2 },
'threat-timeline': { rowSpan: 2 },
'trade-policy': { rowSpan: 2 },
'ucdp-events': { rowSpan: 2 },
'windy-webcams': { className: 'panel-wide' },
};
const DEFERRED_DYNAMIC_PANEL_FOOTPRINTS: Readonly<Record<string, DeferredPanelShellFootprint>> = {
'cw-': { rowSpan: 2 },
'mcp-': { rowSpan: 2 },
};
const DEFERRED_PANEL_RETRY_DELAY_MS = 1_000;
const DEFERRED_PANEL_MAX_RETRY_ATTEMPTS = 3;
function readRowSpanClass(element: HTMLElement): number {
if (element.classList.contains('span-4')) return 4;
if (element.classList.contains('span-3')) return 3;
if (element.classList.contains('span-2')) return 2;
return 1;
}
function readColSpanFootprint(element: HTMLElement): number {
if (element.classList.contains('col-span-3')) return 3;
if (element.classList.contains('col-span-2')) return 2;
if (element.classList.contains('col-span-1')) return 1;
return element.classList.contains('panel-wide') ? 2 : 1;
}
// Dev-only guard: if a hydrated panel ends up taller/wider than the shell we
// reserved for it, the registry above drifted from the panel constructor and
// the deferred shell just caused the layout shift it exists to prevent. Surface
// it in the app (CI also catches drift via panel-config-guardrails).
function warnOnDeferredFootprintDrift(key: string, placeholder: HTMLElement, real: HTMLElement): void {
const reservedRows = readRowSpanClass(placeholder);
const reservedCols = readColSpanFootprint(placeholder);
const realRows = readRowSpanClass(real);
const realCols = readColSpanFootprint(real);
if (realRows > reservedRows || realCols > reservedCols) {
console.warn(
`[PanelLayoutManager] Deferred shell footprint drift for "${key}": reserved ` +
`${reservedCols}x${reservedRows} (col x row) but panel hydrated to ${realCols}x${realRows}. ` +
'Update DEFERRED_PANEL_NATURAL_FOOTPRINTS to match the panel constructor.',
);
}
}
type BootShellFootprintKey = 'header' | 'tabs' | 'main' | 'map' | 'grid';
type BootShellFootprintBox = {
height: number;
width: number;
x: number;
y: number;
};
type BootShellFootprintSnapshot = Partial<Record<BootShellFootprintKey, BootShellFootprintBox>>;
const BOOT_SHELL_FOOTPRINT_TARGETS: ReadonlyArray<{
key: BootShellFootprintKey;
shellSelector: string;
appSelector: string;
}> = [
{ key: 'header', shellSelector: '.skeleton-header', appSelector: '.header' },
{ key: 'tabs', shellSelector: '.skeleton-tabs', appSelector: '#panelTabsMount' },
{ key: 'main', shellSelector: '.skeleton-main', appSelector: '#main' },
{ key: 'map', shellSelector: '.skeleton-map', appSelector: '#mapSection' },
{ key: 'grid', shellSelector: '.skeleton-grid', appSelector: '#panelsGrid' },
];
function readFootprintBox(root: ParentNode, selector: string): BootShellFootprintBox | null {
const el = root.querySelector<Element>(selector);
if (!el) return null;
const rect = el.getBoundingClientRect();
return {
height: rect.height,
width: rect.width,
x: rect.x,
y: rect.y,
};
}
function captureBootShellFootprint(root: ParentNode): BootShellFootprintSnapshot | null {
if (!root.querySelector('.skeleton-shell')) return null;
const snapshot: BootShellFootprintSnapshot = {};
for (const target of BOOT_SHELL_FOOTPRINT_TARGETS) {
const box = readFootprintBox(root, target.shellSelector);
if (box) snapshot[target.key] = box;
}
return Object.keys(snapshot).length > 0 ? snapshot : null;
}
function formatFootprintDelta(before: BootShellFootprintBox, after: BootShellFootprintBox): string {
const delta = (field: keyof BootShellFootprintBox) => Math.round((after[field] - before[field]) * 10) / 10;
return `dx=${delta('x')}, dy=${delta('y')}, dw=${delta('width')}, dh=${delta('height')}`;
}
function warnOnBootShellFootprintDrift(snapshot: BootShellFootprintSnapshot): void {
requestAnimationFrame(() => {
requestAnimationFrame(() => {
const drifts: string[] = [];
for (const target of BOOT_SHELL_FOOTPRINT_TARGETS) {
const before = snapshot[target.key];
const after = readFootprintBox(document, target.appSelector);
if (!before || !after) continue;
const maxDelta = Math.max(
Math.abs(after.x - before.x),
Math.abs(after.y - before.y),
Math.abs(after.width - before.width),
Math.abs(after.height - before.height),
);
if (maxDelta > 2) {
drifts.push(`${target.key} ${formatFootprintDelta(before, after)}`);
}
}
if (drifts.length === 0) return;
console.warn(
'[PanelLayoutManager] Boot shell footprint drift during skeleton->app swap: ' +
`${drifts.join('; ')}. Keep index.html skeleton dimensions in parity with the first hydrated dashboard frame.`,
);
});
});
}
export interface PanelLayoutManagerCallbacks {
openCountryStory: (code: string, name: string) => void;
openCountryBrief: (code: string) => void;
openSearch: () => void;
loadAllData: (forceAll?: boolean) => Promise<void>;
updateMonitorResults: () => void;
loadSecurityAdvisories?: () => Promise<void>;
applyMapLayerChange?: (layer: keyof MapLayers, enabled: boolean, source: 'programmatic') => void;
}
interface DeferredPanelMount {
panel: Panel | null;
placeholder: HTMLElement | null;
observer: IntersectionObserver | null;
mounted: boolean;
loading: Promise<void> | null;
retryTimer: ReturnType<typeof setTimeout> | null;
retryAttempts: number;
failed: boolean;
}
interface LazyPanelRegistration {
load: () => Promise<Panel | null>;
loading: Promise<Panel | null> | null;
}
type AnyPanelConstructor = new (...args: any[]) => Panel;
type PanelExport<M, K extends keyof M> = M[K] extends AnyPanelConstructor ? M[K] : never;
type ImportedPanel<M, K extends keyof M> = InstanceType<PanelExport<M, K>>;
type HydrationSchedulePhase = 'visible' | 'near';
export class PanelLayoutManager implements AppModule {
private ctx: AppContext;
private callbacks: PanelLayoutManagerCallbacks;
private panelDragCleanupHandlers: Array<() => void> = [];
private deferredPanelMounts: Map<string, DeferredPanelMount> = new Map();
private lazyPanelRegistrations: Map<string, LazyPanelRegistration> = new Map();
private observedHydrationPanels = new WeakSet<Panel>();
private initiallyMountedEnabledPanelCount = 0;
private resolvedPanelOrder: string[] = [];
private bottomSetMemory: Set<string> = new Set();
private criticalBannerEl: HTMLElement | null = null;
private mobilePanelNav: MobilePanelNav | null = null;
private mobileMapCollapseBtn: HTMLButtonElement | null = null;
private panelTabBar: PanelTabBar | null = null;
private tabsState: TabsState | null = null;
private aviationCommandBar: AviationCommandBar | null = null;
private readonly applyTimeRangeFilterDebounced: (() => void) & { cancel(): void };
private unsubscribeAuth: (() => void) | null = null;
private proBlockUnsubscribe: (() => void) | null = null;
private proBlockEntitlementUnsubscribe: (() => void) | null = null;
private boundWidgetCreatorHandler: ((e: Event) => void) | null = null;
private unsubscribeEntitlementChange: (() => void) | null = null;
private unsubscribeSubscriptionChange: (() => void) | null = null;
private unsubscribePaymentFailureBanner: (() => void) | null = null;
private scheduledLoadAllRaf: number | null = null;
private scheduledLoadAllIdle: number | null = null;
private responsiveZoneListener: ResponsiveZoneListener | null = null;
private readonly proActivationController: ProActivationController;
constructor(ctx: AppContext, callbacks: PanelLayoutManagerCallbacks) {
this.ctx = ctx;
this.callbacks = callbacks;
this.applyTimeRangeFilterDebounced = debounce(() => {
this.applyTimeRangeFilterToNewsPanels();
}, 120);
// Dodo Payments: entitlement subscription + billing watch for ALL users.
// Free users need the subscription active so they receive real-time
// entitlement updates after purchasing (P1: newly upgraded users must
// see their premium access without a manual page reload).
//
// Two return paths need to seed the transition detector as post-checkout:
// 1. Full-page Dodo redirect — handleCheckoutReturn() reads
// subscription_id/status URL params and cleans them.
// 2. Dodo overlay success — setTimeout(reload) with no URL params;
// we stash a session flag before the reload and consume it here.
const returnResult = handleCheckoutReturn();
const returnedFromOverlay = consumePostCheckoutFlag();
const returnedFromCheckout = returnResult.kind === 'success' || returnedFromOverlay;
this.proActivationController = new ProActivationController(ctx, {
reloadPending: returnedFromCheckout,
openAiAnalyst: () => this.revealAnalystPanel(),
openSearch: callbacks.openSearch,
});
if (returnedFromCheckout) {
// Funnel (#4931): the purchase-complete signal on the client side.
// Queued by the analytics facade until Umami loads after first paint.
trackCheckoutSuccess(returnResult.kind === 'success' ? 'url-return' : 'overlay-flag');
// Pro Activation Onboarding: capture the plan identity from the attempt
// record and write the durable pending-onboarding marker BEFORE the
// clear below wipes the attempt. Success branch only (the `failed`
// branch structurally cannot reach here). An overlay-only return may
// carry no attempt record → the marker omits productId and the boot
// hook falls back to the live entitlement snapshot for plan identity
// (never a write-time frozen fallback — see decideActivationMount).
const activationProductId = loadCheckoutAttempt()?.productId ?? null;
markProActivationPending(activationProductId);
// Full-page return cleared its URL params; belt-and-braces clear
// of the attempt record here catches the success path where the
// overlay handler never ran (direct Dodo redirect).
clearCheckoutAttempt('success');
// waitForEntitlement: true keeps the banner mounted across the
// entitlement-watcher reload (post-PR-4 the watcher is the single
// reload source). If the user is already entitled on mount the
// banner goes straight to the "active" state; otherwise it waits
// up to 30s for the transition before surfacing a manual-refresh
// CTA. `email` is read from auth-state (authoritative on the main
// app) and masked in the banner before rendering to keep the raw
// address out of screenshots / screen-shares of the banner.
showCheckoutSuccess({
waitForEntitlement: true,
email: getAuthState().user?.email ?? null,
});
} else if (returnResult.kind === 'failed') {
trackCheckoutFailed(returnResult.rawStatus);
showCheckoutFailureBanner(returnResult.rawStatus);
}
if (!returnedFromCheckout) {
// #4934 round-2 F2: the entitlement watcher reloads the page the
// moment Pro lands — often before the deferred Umami queue flushes,
// which would silently drop the terminal checkout-success event.
// This boot-time replay re-queues it from the durable marker the
// pre-reload track left behind (no-op on ordinary loads).
replayPendingCheckoutSuccess();
}
// #4934 round-5: /pro checkout-start events that died with the Dodo
// redirect are mirrored in sessionStorage; the buyer lands back here
// in the same tab — on BOTH the checkout-return and ordinary branches —
// so this replay is unconditional (no-op when nothing is pending).
replayPendingProFunnelEvents();
// Always register the payment-failure-banner listener — onSubscriptionChange
// is an in-memory listener registry, doesn't open any network connection,
// and survives the destroy/reinit cycle on auth transitions (see
// billing.ts:124-126). Registering once here means the banner reacts when
// a user signs in mid-session and the App.ts auth-state subscription
// (App.ts:995-1006) starts the Convex subscription watch.
this.unsubscribePaymentFailureBanner = initPaymentFailureBanner();
// Defer Convex subscriptions until a real Clerk identity exists.
//
// `getUserId()` (user-identity.ts) always returns truthy for browser
// users — it falls back to an auto-generated `wm-anon-id` UUID — so the
// previous `if (userId)` gate never short-circuited. That meant every
// anonymous visitor opened a Convex WebSocket via getConvexClient()
// with `setAuth(getClerkToken)` returning null, which the Convex SDK
// could not authenticate, producing a constant
// `WebSocket connection to wss://…/api/1.34.0/sync failed`
// reconnect loop in DevTools (todo #257 item 4). The subscriptions
// themselves never delivered useful state for anon users either:
// - getEntitlementsForUser returns FREE_TIER_DEFAULTS without auth
// - getSubscriptionForUser returns null without auth
// — so the loop was pure noise.
//
// For users who sign in mid-session, App.ts:1003-1006 destroys and
// re-initializes both subscriptions against the real Clerk userId, so
// skipping here is a no-op for the signed-in path.
//
// Note: PanelLayoutManager is constructed before initAuthState() awaits
// Clerk, so getAuthState().user is null even for users who will silently
// restore a Clerk session on this page load. Those users are picked up
// by subscribeAuthState a few hundred ms later via the same App.ts
// rebind path. Constructor-time anon is the common case.
if (getAuthState().user) {
const userId = getAuthState().user!.id;
initEntitlementSubscription(userId).catch(() => {});
initSubscriptionWatch(userId).catch(() => {});
}
// Overlay success fires BEFORE the entitlement-watcher reload. The
// banner stays mounted through the reload via waitForEntitlement so
// the user sees visual continuity from "Payment received!" through
// "Premium activated" without a blank intermediate state. Read the
// email lazily at fire-time (not at register-time) so a just-signed-
// in buyer who completes checkout in the same session still sees
// the receipt acknowledgement.
registerCheckoutSuccessCallback(() => showCheckoutSuccess({
waitForEntitlement: true,
email: getAuthState().user?.email ?? null,
}));
// Reload at most once per account and browser tab on a free→pro
// transition. Legacy-pro users whose first snapshot is already pro must
// not reload, while a newly upgraded user gets one clean boot with every
// premium panel initialized against the paid entitlement.
//
// When we just returned from a Dodo full-page redirect checkout, seed
// lastEntitled = false instead of null. The webhook may have already
// landed by the time the user's browser comes back, so the first
// entitlement snapshot can arrive as pro. Without this seed the
// transition detector would swallow that snapshot as "legacy-pro" and
// the user would see locked panels until a manual refresh — exactly the
// symptom that caused the 2026-04-17/18 duplicate-subscription incident.
//
// The guard is persisted and verified BEFORE navigation. If storage is
// blocked, we fail closed to updatePanelGating() without reloading. This
// prevents the customer-visible failure where each new page boot receives
// another transient free→pro sequence and reloads again every ~500ms.
//
// REQUIRES_SKIP_INITIAL_SNAPSHOT_BEHAVIOR — this remains the sole
// automatic reload source for post-checkout success (the overlay handler
// in checkout.ts deliberately does NOT reload). Regression guards:
// tests/entitlement-transition.test.mts locks the raw transition semantics;
// tests/entitlement-reload-controller.test.mts locks the cross-boot
// one-navigation invariant from the daypesta customer recording.
const entitlementReloadController = createEntitlementReloadController({
returnedFromCheckout,
onSnapshot: () => this.updatePanelGating(getAuthState()),
reload: () => {
console.log('[entitlements] Subscription activated — reloading once to unlock panels');
window.location.reload();
},
});
this.unsubscribeEntitlementChange = onEntitlementChange((state) => {
entitlementReloadController.handleSnapshot(
state === null ? null : isEntitlementActive(state, Date.now()),
getAuthState().user?.id ?? null,
);
});
// #4771: billing-state transitions can arrive on the SUBSCRIPTION row
// alone (webhook flips to on_hold, renewal verification records a
// verdict) with no entitlement snapshot change. Re-run gating so the
// billing-aware CTA copy tracks the current state, not just the banner.
this.unsubscribeSubscriptionChange = onSubscriptionChange(() => {
this.updatePanelGating(getAuthState());
});
}
async init(): Promise<void> {
await this.renderLayout();
if (this.ctx.isDestroyed) return;
// Subscribe to auth state for reactive panel gating on web
this.unsubscribeAuth = subscribeAuthState((state) => {
this.updatePanelGating(state);
});
// Handle analyst action chip "Create chart widget →" click
this.boundWidgetCreatorHandler = ((e: CustomEvent<{ initialMessage?: string }>) => {
void import('@/components/WidgetChatModal').then((m) => m.openWidgetChatModal({
mode: 'create',
tier: 'pro',
initialMessage: e.detail.initialMessage,
onComplete: (spec) => {
void this.addCustomWidget(spec).catch((error) => {
console.error('[widget-builder] failed to add widget', error);
showToast(t('widgets.saveFailed'));
});
},
})).catch((err) => console.error('[widget-chat] failed to lazy-load WidgetChatModal', err));
}) as EventListener;
this.ctx.container.addEventListener('wm:open-widget-creator', this.boundWidgetCreatorHandler);
// Pro Activation Onboarding: after the dashboard settles, evaluate whether
// a pending-onboarding marker should open the interstitial (or surface the
// finish-setup chip). Deferred off the boot critical path like the panel
// hydration scheduler above.
this.proActivationController.init();
}
/**
* Open + scroll the WM Analyst (chat-analyst) panel into view. The panel is a
* lazy/deferred premium panel, so it may not be in `ctx.panels` yet at click
* time; scrolling to its reserved grid slot trips the mount observer, and we
* retry briefly until the element appears (mirrors search-manager's
* scrollToPanelWhenReady contract).
*/
private revealAnalystPanel(attemptsLeft = 12): void {
if (this.ctx.isDestroyed || typeof document === 'undefined') return;
const key = 'chat-analyst';
this.ctx.panels[key]?.show();
const el = document.querySelector(`[data-panel="${key}"]`);
if (el) {
el.scrollIntoView({ behavior: 'smooth', block: 'center' });
return;
}
if (attemptsLeft <= 0) return;
window.setTimeout(() => this.revealAnalystPanel(attemptsLeft - 1), 80);
}
destroy(): void {
clearAllPendingCalls();
this.applyTimeRangeFilterDebounced.cancel();
this.unsubscribeAuth?.();
this.unsubscribeAuth = null;
this.proBlockUnsubscribe?.();
this.proBlockUnsubscribe = null;
this.proBlockEntitlementUnsubscribe?.();
this.proBlockEntitlementUnsubscribe = null;
const destroyedTargets = new Set<{ destroy?: () => void }>();
const destroyOnce = (target: { destroy?: () => void } | null | undefined): void => {
if (!target || destroyedTargets.has(target)) return;
destroyedTargets.add(target);
// Isolate each destroy(): teardown runs over every registered panel, so a
// single panel throwing must not abort the remaining panel/subscription/
// overlay cleanup below (nor the rest of App.destroy(), which iterates
// modules without its own try/catch).
try {
target.destroy?.();
} catch (err) {
console.error('[panel] destroy() threw during teardown', err);
}
};
if (this.boundWidgetCreatorHandler) {
this.ctx.container.removeEventListener('wm:open-widget-creator', this.boundWidgetCreatorHandler);
this.boundWidgetCreatorHandler = null;
}
this.panelDragCleanupHandlers.forEach((cleanup) => cleanup());
this.panelDragCleanupHandlers = [];
for (const deferred of this.deferredPanelMounts.values()) {
deferred.observer?.disconnect();
if (deferred.retryTimer !== null) {
clearTimeout(deferred.retryTimer);
}
}
this.deferredPanelMounts.clear();
this.lazyPanelRegistrations.clear();
this.initiallyMountedEnabledPanelCount = 0;
this.cancelScheduledLoadAllIdle();
if (this.scheduledLoadAllRaf !== null) {
cancelAnimationFrame(this.scheduledLoadAllRaf);
this.scheduledLoadAllRaf = null;
}
if (this.criticalBannerEl) {
this.criticalBannerEl.remove();
this.criticalBannerEl = null;
}
this.mobilePanelNav?.destroy();
this.mobilePanelNav = null;
this.mobileMapCollapseBtn = null;
this.panelTabBar?.destroy();
this.panelTabBar = null;
// Clean up happy variant panels
destroyOnce(this.ctx.tvMode);
this.ctx.tvMode = null;
destroyOnce(this.ctx.countersPanel);
this.ctx.countersPanel = null;
destroyOnce(this.ctx.progressPanel);
this.ctx.progressPanel = null;
destroyOnce(this.ctx.breakthroughsPanel);
this.ctx.breakthroughsPanel = null;
destroyOnce(this.ctx.heroPanel);
this.ctx.heroPanel = null;
destroyOnce(this.ctx.digestPanel);
this.ctx.digestPanel = null;
destroyOnce(this.ctx.speciesPanel);
this.ctx.speciesPanel = null;
destroyOnce(this.ctx.positivePanel);
this.ctx.positivePanel = null;
destroyOnce(this.ctx.renewablePanel);
this.ctx.renewablePanel = null;
// Clean up aviation components
destroyOnce(this.aviationCommandBar);
this.aviationCommandBar = null;
// Destroy every registered panel exactly once, including lazy-created
// and self-fetching panels that own subscriptions, intervals, or aborts.
for (const panel of Object.values(this.ctx.panels)) {
destroyOnce(panel);
}
for (const key of Object.keys(this.ctx.panels)) {
delete this.ctx.panels[key];
}
// News panels are the same instances just destroyed above; drop the
// secondary index so it never hands out a torn-down panel post-destroy.
for (const key of Object.keys(this.ctx.newsPanels)) {
delete this.ctx.newsPanels[key];
}
// lazyPanelRegistrations was cleared above, so the category→panel-key registry
// must reset too: a re-init re-registers from scratch and would otherwise skip
// recording keys it believes are already mapped.
this.ctx.newsCategoryPanelKeys.clear();
// Clean up billing subscription watch + entitlement subscription
destroySubscriptionWatch();
destroyEntitlementSubscription();
// Clean up entitlement change listener
this.unsubscribeEntitlementChange?.();
this.unsubscribeEntitlementChange = null;
// Clean up subscription-change gating listener (#4771)
this.unsubscribeSubscriptionChange?.();
this.unsubscribeSubscriptionChange = null;
// Clean up payment failure banner subscription
this.unsubscribePaymentFailureBanner?.();
this.unsubscribePaymentFailureBanner = null;
this.proActivationController.destroy();
// Reset checkout overlay so next layout init can register its callback
destroyCheckoutOverlay();
removeResponsiveZoneListener(this.responsiveZoneListener);
this.responsiveZoneListener = null;
}
/** Reactively update premium panel gating based on auth state. */
private updatePanelGating(state: AuthSession): void {
// #4771: resolve the billing-aware refinement of FREE_TIER once per pass
// — the inputs (subscription/entitlement snapshots, now) are invariant
// across the panel loop, and a single Date.now() keeps every panel on
// the same verdict at a period-end boundary.
const billingAwareFreeTier = resolveBillingAwareGateReason(PanelGateReason.FREE_TIER);
for (const [key, panel] of Object.entries(this.ctx.panels)) {
const isPremium = WEB_PREMIUM_PANELS.has(key);
let reason = getPanelGateReason(state, isPremium);
// Clerk-pro-only panels: even when hasPremiumAccess() returns
// true via API/tester key, these panels need a Clerk userId
// bound to a PRO entitlement. We DO NOT trust client-side
// entitlement state as an authoritative gate — the server-side
// /api/latest-brief check is authoritative. We only downgrade
// the gate reason here as AFFIRMATIVE DENIAL: when we KNOW
// (snapshot loaded AND tier < 1) the user is free. In every
// other case — snapshot not yet loaded, Convex subscription
// skipped, transient failure — we leave the panel unlocked
// and let the server 403 path drive the upgrade CTA inside
// the panel's refresh() catch block.
//
// Prior iterations of this code tried the opposite — gating
// positively on hasTier(1) — and locked legitimate Pro users
// out whenever the Convex snapshot was late, skipped, or
// failed. Affirmative-denial-only is the right shape: never
// over-gate, accept the one-doomed-fetch-per-session cost
// for API-key-only + free-Clerk users as the lesser harm.
if (
reason === PanelGateReason.NONE &&
WEB_CLERK_PRO_ONLY_PANELS.has(key) &&
getEntitlementState() !== null &&
!hasTier(1)
) {
reason = state.user ? PanelGateReason.FREE_TIER : PanelGateReason.ANONYMOUS;
}
// #4771: a FREE_TIER verdict for a customer with stale paid evidence
// becomes a billing-state reason (verifying renewal / update payment /
// resubscribe) so we never push a paying user toward duplicate checkout.
if (reason === PanelGateReason.FREE_TIER) reason = billingAwareFreeTier;
if (reason === PanelGateReason.NONE) {
// User has access -- unlock if previously locked
(panel as Panel).unlockPanel();
} else {
// User does NOT have access -- show appropriate CTA
const onAction = resolveGateAction(reason, {
openAuthModal: () => this.ctx.authModal?.open(),
});
(panel as Panel).showGatedCta(reason, onAction);
}
}
// KTD8: the tab cap rides the SAME pass, so it re-evaluates on both
// subscribeAuthState and onEntitlementChange (plus onSubscriptionChange).
// An auth-only subscription would miss the post-checkout snapshot — the
// bug documented at the proBlock wiring below.
this.updateTabCapLock();
}
/** #5159/#5205 review: storage access can throw (blocked cookies, sandboxed
* iframe) and this runs BEFORE the shell installs — an uncaught throw would
* strand users on the boot skeleton. loadFromStorage is try/catch-guarded;
* default is expanded. Wire format stays 'true'/'false' (JSON booleans),
* identical to the previous String(isCollapsed) writes. */
private static isMobileMapCollapsedPreferred(): boolean {
return loadFromStorage<boolean>('mobile-map-collapsed', false) === true;
}
async renderLayout(): Promise<void> {
const isGlobeMode = getStoredMapModePreference() === 'globe';
// #5159: the collapsed-map cohort's #mapSection must be CREATED with
// .collapsed — main.css sets the expanded mobile height with !important
// inside a cascade layer, and layered !important beats any unlayered
// pre-paint override (inverse of the normal-declaration rule), so the
// html.wm-map-collapsed critical CSS can only cover the boot SKELETON.
// Seeding the class here makes the runtime collapsed rule apply from the
// section's first frame instead of ~150ms later via setupMobileMapToggle
// (which shoved #panelsGrid up 698px, field CLS ~0.62 for this cohort).
const mapStartsCollapsed = this.ctx.isMobile && PanelLayoutManager.isMobileMapCollapsedPreferred();
const bootShellFootprint = import.meta.env.DEV ? captureBootShellFootprint(this.ctx.container) : null;
const referenceLinksHtml = DASHBOARD_REFERENCE_LINKS.map(({ label, path }) => {
const href = this.ctx.isDesktopApp ? `https://www.worldmonitor.app${path}` : path;
return `<a href="${href}" target="_blank" rel="noopener">${label}</a>`;
}).join('');
markLcpDebug('wm:layout:render-start');
document.documentElement.classList.add('wm-layout-hydrated');
setTrustedHtml(this.ctx.container, trustedHtml(`
${this.ctx.isDesktopApp ? '<div class="tauri-titlebar" data-tauri-drag-region></div>' : ''}
<a href="#main" class="skip-link">Skip to main content</a>
<div id="proBannerSlot" class="pro-banner-slot" aria-live="polite"></div>
<div class="header">
<div class="header-left">
<button class="hamburger-btn" id="hamburgerBtn" aria-label="Menu">
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><line x1="3" y1="6" x2="21" y2="6"/><line x1="3" y1="12" x2="21" y2="12"/><line x1="3" y1="18" x2="21" y2="18"/></svg>
</button>
<div class="variant-switcher">${(() => {
const local = this.ctx.isDesktopApp || location.hostname === 'localhost' || location.hostname === '127.0.0.1';
const inIframe = window.self !== window.top;
const vHref = (v: string, prod: string) => local || SITE_VARIANT === v ? '#' : prod;
const vTarget = (v: string) => !local && SITE_VARIANT !== v && inIframe ? 'target="_blank" rel="noopener"' : '';
return `
<a href="${vHref('full', 'https://worldmonitor.app/dashboard')}"
class="variant-option ${SITE_VARIANT === 'full' ? 'active' : ''}"
data-variant="full"
${vTarget('full')}
title="${t('header.world')}${SITE_VARIANT === 'full' ? ` ${t('common.currentVariant')}` : ''}">
<span class="variant-icon">🌍</span>
<span class="variant-label">${t('header.world')}</span>
</a>
<span class="variant-divider"></span>
<a href="${vHref('tech', 'https://tech.worldmonitor.app')}"
class="variant-option ${SITE_VARIANT === 'tech' ? 'active' : ''}"
data-variant="tech"
${vTarget('tech')}
title="${t('header.tech')}${SITE_VARIANT === 'tech' ? ` ${t('common.currentVariant')}` : ''}">
<span class="variant-icon">💻</span>
<span class="variant-label">${t('header.tech')}</span>
</a>
<span class="variant-divider"></span>
<a href="${vHref('finance', 'https://finance.worldmonitor.app')}"
class="variant-option ${SITE_VARIANT === 'finance' ? 'active' : ''}"
data-variant="finance"
${vTarget('finance')}
title="${t('header.finance')}${SITE_VARIANT === 'finance' ? ` ${t('common.currentVariant')}` : ''}">
<span class="variant-icon">📈</span>
<span class="variant-label">${t('header.finance')}</span>
</a>
<span class="variant-divider"></span>
<a href="${vHref('commodity', 'https://commodity.worldmonitor.app')}"
class="variant-option ${SITE_VARIANT === 'commodity' ? 'active' : ''}"
data-variant="commodity"
${vTarget('commodity')}
title="${t('header.commodity')}${SITE_VARIANT === 'commodity' ? ` ${t('common.currentVariant')}` : ''}">
<span class="variant-icon">⛏️</span>
<span class="variant-label">${t('header.commodity')}</span>
</a>
<span class="variant-divider"></span>
<a href="${vHref('energy', 'https://energy.worldmonitor.app')}"
class="variant-option ${SITE_VARIANT === 'energy' ? 'active' : ''}"
data-variant="energy"
${vTarget('energy')}
title="${t('header.energy')}${SITE_VARIANT === 'energy' ? ` ${t('common.currentVariant')}` : ''}">
<span class="variant-icon">⚡</span>
<span class="variant-label">${t('header.energy')}</span>
</a>
<span class="variant-divider"></span>
<a href="${vHref('happy', 'https://happy.worldmonitor.app')}"
class="variant-option ${SITE_VARIANT === 'happy' ? 'active' : ''}"
data-variant="happy"
${vTarget('happy')}
title="Good News${SITE_VARIANT === 'happy' ? ` ${t('common.currentVariant')}` : ''}">
<span class="variant-icon">☀️</span>
<span class="variant-label">Good News</span>
</a>`;
})()}</div>
<span class="logo">MONITOR</span><span class="logo-mobile">World Monitor</span><span class="version">v${__APP_VERSION__}</span>${BETA_MODE ? '<span class="beta-badge">BETA</span>' : ''}
<a href="https://x.com/eliehabib" target="_blank" rel="noopener" class="credit-link">
<svg class="x-logo" width="14" height="14" viewBox="0 0 24 24" fill="currentColor"><path d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z"/></svg>
<span class="credit-text">@eliehabib</span>
</a>
<a href="https://github.com/koala73/worldmonitor" target="_blank" rel="noopener" class="github-link" title="${t('header.viewOnGitHub')}">
<svg width="16" height="16" viewBox="0 0 16 16" fill="currentColor"><path d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.013 8.013 0 0016 8c0-4.42-3.58-8-8-8z"/></svg>
</a>
<button class="mobile-settings-btn" id="mobileSettingsBtn" title="${t('header.settings')}">
<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="3"/><path d="M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1-2.83 2.83l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-4 0v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83-2.83l.06-.06A1.65 1.65 0 0 0 4.68 15a1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1 0-4h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 2.83-2.83l.06.06A1.65 1.65 0 0 0 9 4.68a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 4 0v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 2.83l-.06.06A1.65 1.65 0 0 0 19.4 9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 0 4h-.09a1.65 1.65 0 0 0-1.51 1z"/></svg>
</button>
<div class="status-indicator">
<span class="status-dot"></span>
<span>${t('header.live')}</span>
</div>
<div class="region-selector">
<select id="regionSelect" class="region-select" aria-label="${t('header.selectRegion')}">
<option value="global">${t('components.deckgl.views.global')}</option>
<option value="america">${t('components.deckgl.views.americas')}</option>
<option value="mena">${t('components.deckgl.views.mena')}</option>
<option value="eu">${t('components.deckgl.views.europe')}</option>
<option value="asia">${t('components.deckgl.views.asia')}</option>
<option value="latam">${t('components.deckgl.views.latam')}</option>
<option value="africa">${t('components.deckgl.views.africa')}</option>
<option value="oceania">${t('components.deckgl.views.oceania')}</option>
</select>
</div>
<span id="missionPresetMount" class="mission-preset-mount"></span>
<button class="mobile-search-btn" id="mobileSearchBtn" aria-label="${t('header.search')}">
<svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="11" cy="11" r="8"/><line x1="21" y1="21" x2="16.65" y2="16.65"/></svg>
</button>
</div>
<div class="header-right">
<button class="search-btn" id="searchBtn"><kbd>⌘K</kbd> ${t('header.search')}</button>
${this.ctx.isDesktopApp ? '' : `<button class="copy-link-btn" id="copyLinkBtn">${t('header.copyLink')}</button>`}
${this.ctx.isDesktopApp ? '' : `<button class="copy-link-btn embed-link-btn" id="embedLinkBtn">${t('header.embed')}</button>`}
${this.ctx.isDesktopApp ? '' : `<button class="fullscreen-btn" id="fullscreenBtn" title="${t('header.fullscreen')}">⛶</button>`}
${SITE_VARIANT === 'happy' ? `<button class="tv-mode-btn" id="tvModeBtn" title="TV Mode (Shift+T)"><svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="2" y="3" width="20" height="14" rx="2" ry="2"/><line x1="8" y1="21" x2="16" y2="21"/><line x1="12" y1="17" x2="12" y2="21"/></svg></button>` : ''}
<span id="unifiedSettingsMount"></span>
<span id="authWidgetMount" class="auth-widget-mount"></span>
</div>
</div>
<div class="mobile-menu-overlay" id="mobileMenuOverlay"></div>
<nav class="mobile-menu" id="mobileMenu">
<div class="mobile-menu-header">
<span class="mobile-menu-title">WORLD MONITOR</span>
<button class="mobile-menu-close" id="mobileMenuClose" aria-label="Close menu">
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><line x1="18" y1="6" x2="6" y2="18"/><line x1="6" y1="6" x2="18" y2="18"/></svg>
</button>
</div>
<div class="mobile-menu-divider"></div>
${(() => {
const variants = [
{ key: 'full', icon: '🌍', label: t('header.world') },
{ key: 'tech', icon: '💻', label: t('header.tech') },
{ key: 'finance', icon: '📈', label: t('header.finance') },
{ key: 'commodity', icon: '⛏️', label: t('header.commodity') },
{ key: 'energy', icon: '⚡', label: t('header.energy') },
{ key: 'happy', icon: '☀️', label: 'Good News' },
];
return variants.map(v =>
`<button class="mobile-menu-item mobile-menu-variant ${v.key === SITE_VARIANT ? 'active' : ''}" data-variant="${v.key}">
<span class="mobile-menu-item-icon">${v.icon}</span>
<span class="mobile-menu-item-label">${v.label}</span>
${v.key === SITE_VARIANT ? '<span class="mobile-menu-check">✓</span>' : ''}
</button>`
).join('');
})()}
<div class="mobile-menu-divider"></div>
<button class="mobile-menu-item" id="mobileMenuRegion">
<span class="mobile-menu-item-icon">🌐</span>
<span class="mobile-menu-item-label">${t('components.deckgl.views.global')}</span>
<span class="mobile-menu-chevron">▸</span>
</button>
<button class="mobile-menu-item" id="mobileMenuMission">
<span class="mobile-menu-item-icon">◎</span>
<span class="mobile-menu-item-label">Mission</span>
<span class="mobile-menu-chevron">▸</span>
</button>
<div class="mobile-menu-divider"></div>
<button class="mobile-menu-item" id="mobileMenuSettings">
<span class="mobile-menu-item-icon">⚙️</span>
<span class="mobile-menu-item-label">${t('header.settings')}</span>
</button>
<button class="mobile-menu-item" id="mobileMenuTheme">
<span class="mobile-menu-item-icon">${getCurrentTheme() === 'dark' ? '☀️' : '🌙'}</span>
<span class="mobile-menu-item-label">${getCurrentTheme() === 'dark' ? 'Light Mode' : 'Dark Mode'}</span>
</button>
<a class="mobile-menu-item" href="https://x.com/eliehabib" target="_blank" rel="noopener">
<span class="mobile-menu-item-icon"><svg class="x-logo" width="14" height="14" viewBox="0 0 24 24" fill="currentColor"><path d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z"/></svg></span>
<span class="mobile-menu-item-label">@eliehabib</span>
</a>
<div class="mobile-menu-divider"></div>
<div class="mobile-menu-footer-links">
${referenceLinksHtml}
<a href="${this.ctx.isDesktopApp ? 'https://www.worldmonitor.app/pro#pricing' : '/pro#pricing'}" target="_blank" rel="noopener">Pricing</a>
<a href="${this.ctx.isDesktopApp ? 'https://worldmonitor.app/blog/' : 'https://www.worldmonitor.app/blog/'}" target="_blank" rel="noopener">Blog</a>
<a href="${this.ctx.isDesktopApp ? 'https://worldmonitor.app/docs' : 'https://www.worldmonitor.app/docs'}" target="_blank" rel="noopener">Docs</a>
<a href="https://status.worldmonitor.app/" target="_blank" rel="noopener">Status</a>
</div>
<div class="mobile-menu-version">v${__APP_VERSION__}</div>
</nav>
<div class="region-sheet-backdrop" id="regionSheetBackdrop"></div>
<div class="region-bottom-sheet" id="regionBottomSheet">
<div class="region-sheet-header">${t('header.selectRegion')}</div>
<div class="region-sheet-divider"></div>
${[
{ value: 'global', label: t('components.deckgl.views.global') },
{ value: 'america', label: t('components.deckgl.views.americas') },
{ value: 'mena', label: t('components.deckgl.views.mena') },
{ value: 'eu', label: t('components.deckgl.views.europe') },
{ value: 'asia', label: t('components.deckgl.views.asia') },
{ value: 'latam', label: t('components.deckgl.views.latam') },
{ value: 'africa', label: t('components.deckgl.views.africa') },
{ value: 'oceania', label: t('components.deckgl.views.oceania') },
].map(r =>
`<button class="region-sheet-option ${r.value === 'global' ? 'active' : ''}" data-region="${r.value}">
<span>${r.label}</span>
<span class="region-sheet-check">${r.value === 'global' ? '✓' : ''}</span>
</button>`
).join('')}
</div>
<div class="dashboard-tabs-mount" id="panelTabsMount"></div>
<main id="main" tabindex="-1" class="main-content${this.ctx.isDesktopApp ? ' desktop-grid' : ''}">
<div class="map-section${mapStartsCollapsed ? ' collapsed' : ''}" id="mapSection">
<div class="panel-header">
<div class="panel-header-left">
<span class="panel-title">${SITE_VARIANT === 'tech' ? t('panels.techMap') : SITE_VARIANT === 'happy' ? 'Good News Map' : t('panels.map')}</span>
</div>
<span class="header-clock" id="headerClock" translate="no"></span>
<div class="map-header-actions">
<div class="map-dimension-toggle" id="mapDimensionToggle">
<button class="map-dim-btn${isGlobeMode ? '' : ' active'}" data-mode="flat" title="2D Map">2D</button>
<button class="map-dim-btn${isGlobeMode ? ' active' : ''}" data-mode="globe" title="3D Globe">3D</button>
</div>
<button class="map-pin-btn" id="mapFullscreenBtn" title="Fullscreen">
<svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><path d="M8 3H5a2 2 0 0 0-2 2v3"/><path d="M21 8V5a2 2 0 0 0-2-2h-3"/><path d="M3 16v3a2 2 0 0 0 2 2h3"/><path d="M16 21h3a2 2 0 0 0 2-2v-3"/></svg>
</button>
<button class="map-pin-btn" id="mapPinBtn" title="${t('header.pinMap')}">
<svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round">
<path d="M12 17v5M9 10.76a2 2 0 01-1.11 1.79l-1.78.9A2 2 0 005 15.24V16a1 1 0 001 1h12a1 1 0 001-1v-.76a2 2 0 00-1.11-1.79l-1.78-.9A2 2 0 0115 10.76V7a1 1 0 011-1 1 1 0 001-1V4a1 1 0 00-1-1H8a1 1 0 00-1 1v1a1 1 0 001 1 1 1 0 011 1v3.76z"/>
</svg>
</button>
</div>
</div>
<div class="map-container" id="mapContainer"></div>
${SITE_VARIANT === 'happy' ? '<button class="tv-exit-btn" id="tvExitBtn">Exit TV Mode</button>' : ''}
<div class="map-resize-handle" id="mapResizeHandle"></div>
<div class="map-bottom-grid" id="mapBottomGrid"></div>
</div>
<div class="map-width-resize-handle" id="mapWidthResizeHandle"></div>
<div class="panels-grid" id="panelsGrid" role="tabpanel"></div>
<button class="search-mobile-fab" id="searchMobileFab" aria-label="Search">\u{1F50D}</button>
</main>
<footer class="site-footer">
<div class="site-footer-brand">
<img src="/favico/android-chrome-96x96.png" alt="" width="28" height="28" loading="lazy" decoding="async" class="site-footer-icon" />
<div class="site-footer-brand-text">
<span class="site-footer-name">WORLD MONITOR</span>
<span class="site-footer-sub">v${__APP_VERSION__} · <a href="https://x.com/eliehabib" target="_blank" rel="noopener" class="site-footer-credit">@eliehabib</a></span>
</div>
</div>
<nav>
${referenceLinksHtml}
<a href="${this.ctx.isDesktopApp ? 'https://www.worldmonitor.app/pro#pricing' : '/pro#pricing'}" target="_blank" rel="noopener">Pricing</a>
<a href="${this.ctx.isDesktopApp ? 'https://worldmonitor.app/blog/' : 'https://www.worldmonitor.app/blog/'}" target="_blank" rel="noopener">Blog</a>
<a href="${this.ctx.isDesktopApp ? 'https://worldmonitor.app/docs' : 'https://www.worldmonitor.app/docs'}" target="_blank" rel="noopener">Docs</a>
<a href="https://status.worldmonitor.app/" target="_blank" rel="noopener">Status</a>
<a href="https://github.com/koala73/worldmonitor" target="_blank" rel="noopener">GitHub</a>
<a href="https://discord.gg/re63kWKxaz" target="_blank" rel="noopener">Discord</a>
<a href="https://x.com/worldmonitorai" target="_blank" rel="noopener">X</a>
${this.ctx.isDesktopApp ? '' : `<span id="footerDownloadMount"></span>`}
</nav>
<span class="site-footer-copy">© ${new Date().getFullYear()} World Monitor</span>
</footer>
`, "legacy direct innerHTML migration"));
// Mark AFTER the innerHTML swap so the timestamp reflects when the new shell
// DOM is actually live — placing it before setTrustedHtml recorded a time
// earlier than any LCP candidate in the new shell, making it useless for
// ordering the LCP element against the shell swap (PR #4512 review).
markLcpDebug('wm:layout:shell-replaced');
// Skip link: explicitly move focus to <main> on activation. Native
// fragment focus on a tabindex="-1" target is inconsistent across
// browsers, so drive it directly to guarantee keyboard users land in the
// main content (WCAG 2.4.1).
this.ctx.container.querySelector('.skip-link')?.addEventListener('click', (e) => {
e.preventDefault();
const main = document.getElementById('main');
if (main) {
main.focus();
main.scrollIntoView({ block: 'start' });
}
});
await this.createPanels();
this.initPanelTabs();
if (import.meta.env.DEV && bootShellFootprint) warnOnBootShellFootprintDrift(bootShellFootprint);
if (this.ctx.isMobile) {
this.setupMobileMapToggle();
this.setupMobilePanelNav();
}
}
// ============================================
// Dashboard tabs — named, persistent panel workspaces
// ============================================
private initPanelTabs(): void {
const mount = document.getElementById('panelTabsMount');
if (!mount) return;
let state = loadTabsState();
if (!state) {
// First run — wrap the user's current layout in an initial tab so
// nothing changes visually until they create a second tab.
const initial: PanelTab = {
id: generateTabId(),
name: t('dashboardTabs.defaultName'),
...this.captureCurrentTabState(),
};
state = { activeTabId: initial.id, tabs: [initial] };
saveTabsState(state);
} else {
// Clamp stored snapshots to the current free-tier cap so a workspace
// saved while Pro (or persisted before the cap existed) can't re-enable
// an over-cap layout when the user later switches to it. applyTabPanelState
// re-clamps on apply too; this keeps the persisted store self-healing.
const pro = isProUser();
let healedSnapshots = false;
for (const tab of state.tabs) {
const clamped = enforceFreePanelLimit(tab.panelSettings, pro);
if (this.panelSettingsEnabledStateChanged(tab.panelSettings, clamped)) {
healedSnapshots = true;
}
tab.panelSettings = clamped;
}
if (healedSnapshots) saveTabsState(state);
}
this.tabsState = state;
this.panelTabBar = new PanelTabBar(() => this.tabsState!, {
onSelect: (id) => this.switchToTab(id),
onAdd: () => this.addTab(),
onRename: (id, name) => this.renameTab(id, name),
onDelete: (id) => this.deleteTab(id),
});
mount.appendChild(this.panelTabBar.getElement());
this.updateTabCapLock();
}
private panelSettingsEnabledStateChanged(
before: Record<string, PanelConfig>,
after: Record<string, PanelConfig>,
): boolean {
const keys = new Set([...Object.keys(before), ...Object.keys(after)]);
for (const key of keys) {
if (before[key]?.enabled !== after[key]?.enabled) return true;
}
return false;
}
/** Capture the live panel state (settings + order) for a tab snapshot. */
private captureCurrentTabState(): Pick<PanelTab, 'panelSettings' | 'panelOrder' | 'bottomSet'> {
// Persist the live DOM order first so the snapshot reflects any drags.
this.savePanelOrder();
return {
panelSettings: JSON.parse(JSON.stringify(this.ctx.panelSettings)) as Record<string, PanelConfig>,
panelOrder: [...this.resolvedPanelOrder],
bottomSet: Array.from(this.bottomSetMemory),
};
}
/** Refresh the active tab's snapshot from live state (called on switch-away). */
private snapshotActiveTab(): void {
if (!this.tabsState) return;
const active = this.tabsState.tabs.find((t) => t.id === this.tabsState!.activeTabId);
if (!active) return;
Object.assign(active, this.captureCurrentTabState());
}
private switchToTab(tabId: string): void {
if (!this.tabsState || tabId === this.tabsState.activeTabId) return;
const target = this.tabsState.tabs.find((t) => t.id === tabId);
if (!target) return;
this.snapshotActiveTab();
this.tabsState.activeTabId = tabId;
saveTabsState(this.tabsState);
this.applyTabPanelState(target.panelSettings, target.panelOrder, target.bottomSet);
this.panelTabBar?.refresh();
}
/**
* Tab-cap state for the CURRENT tab count (plan 2026-07-25-001, KTD8).
* Pushes the locked/unlocked state into the tab bar and returns the verdict
* so `addTab` can enforce it without resolving twice.
*
* CREATION-ONLY: nothing here removes a tab. A user sitting above their cap
* (downgrade, lowered allowance, tabs created during a null-snapshot window)
* keeps every tab they have — only the "+" locks.
*/
private updateTabCapLock(): TabCapVerdict {
const verdict = evaluateTabCap(getAuthState(), this.tabsState?.tabs.length ?? 0);
if (verdict.allowed) {
// Only a would-be-capped user pays for the catalog probe; the cap stays
// inactive until Pro Business is provably purchasable, so the limit and
// the tier flip together (R10). Single-flight and shared with U5.
if (verdict.pendingActivation) {
void primeExportGateActivation().then((active) => {
if (active && !this.ctx.isDestroyed) this.updateTabCapLock();
});
}
this.panelTabBar?.setAddLock(null);
return verdict;
}
const reason = exportLockToGateReason(verdict.reason);
this.panelTabBar?.setAddLock({
copy: tabCapGateCopy(reason, verdict.cap),
onAction: resolveGateAction(reason, { openAuthModal: () => this.ctx.authModal?.open() }),
});
return verdict;
}
private addTab(): void {
if (!this.tabsState) return;
const verdict = this.updateTabCapLock();
if (!verdict.allowed) {
// The metric fires on a blocked CLICK, never on render — a control
// nobody reached for is not a gate hit.
trackGateHit('dashboard-tab');
this.panelTabBar?.showAddLockNotice();
return;
}
this.snapshotActiveTab();
const defaults = buildDefaultTabPanels(this.ctx.panelSettings);
// The variant default set can exceed FREE_MAX_PANELS (e.g. 81 panels in the
// full variant); clamp it to the free-tier cap so a new tab can't bypass
// the limit that settings/search/boot all enforce.
const tab: PanelTab = {
id: generateTabId(),
name: t('dashboardTabs.newTabName'),
panelSettings: enforceFreePanelLimit(defaults.panelSettings, isProUser()),
panelOrder: defaults.panelOrder,
bottomSet: [],
};
this.tabsState.tabs.push(tab);
this.tabsState.activeTabId = tab.id;
saveTabsState(this.tabsState);
this.applyTabPanelState(tab.panelSettings, tab.panelOrder, tab.bottomSet);
this.panelTabBar?.refresh();
// The new tab may have consumed the last slot — lock the control now
// rather than on the next entitlement emission.
this.updateTabCapLock();
showToast(t('dashboardTabs.newTabCreated'));
}
private renameTab(tabId: string, name: string): void {
if (!this.tabsState) return;
const tab = this.tabsState.tabs.find((t) => t.id === tabId);
if (!tab) return;
tab.name = name;
saveTabsState(this.tabsState);
this.panelTabBar?.refresh();
}
private deleteTab(tabId: string): void {
if (!this.tabsState || this.tabsState.tabs.length <= 1) return;
const idx = this.tabsState.tabs.findIndex((t) => t.id === tabId);
if (idx === -1) return;
const wasActive = this.tabsState.activeTabId === tabId;
const [removed] = this.tabsState.tabs.splice(idx, 1);
if (wasActive) {
const fallback = this.tabsState.tabs[Math.max(0, idx - 1)]!;
this.tabsState.activeTabId = fallback.id;
saveTabsState(this.tabsState);
this.applyTabPanelState(fallback.panelSettings, fallback.panelOrder, fallback.bottomSet);
} else {
saveTabsState(this.tabsState);
}
this.panelTabBar?.refresh();
// Deleting frees a slot: a capped user drops back under the limit.
this.updateTabCapLock();
showToast(t('dashboardTabs.tabDeleted', { name: removed!.name }));
}
/**
* Load a tab's panel snapshot into the live global state and re-apply
* the layout. Mirrors the mission-preset apply pipeline (panels only —
* map layers, view, and time range stay global across tabs).
*/
private applyTabPanelState(
panelSettings: Record<string, PanelConfig>,
panelOrder: string[],
bottomSet: string[],
): void {
const isDynamicPanel = (k: string) =>
!ALL_PANELS[k] && (k === 'runtime-config' || k.startsWith('cw-') || k.startsWith('mcp-'));
const next: Record<string, PanelConfig> = {};
for (const [key, config] of Object.entries(panelSettings)) {
next[key] = { ...config };
}
// Carry over panels missing from the snapshot: dynamic panels (custom
// widgets / MCP / desktop config created after the snapshot) keep their
// current config so they don't get orphaned visible-but-untracked;
// panels added to the app since the snapshot seed from variant defaults
// (same formula as the App.ts settings merge).
for (const [key, config] of Object.entries(this.ctx.panelSettings)) {
if (next[key]) continue;
if (isDynamicPanel(key)) {
next[key] = { ...config };
} else {
const effective = getEffectivePanelConfig(key, SITE_VARIANT);
next[key] = { ...effective, enabled: isPanelInVariantDefaults(key) && effective.enabled };
}
}
// Final free-tier guarantee: this is the only path that writes a tab's
// panel selection into STORAGE_KEYS.panels, so clamping here means no tab
// operation (add / switch / delete-fallback) can ever persist an over-cap
// workspace, regardless of how the snapshot was produced.
const capped = enforceFreePanelLimit(next, isProUser());
this.ctx.panelSettings = capped;
saveToStorage(STORAGE_KEYS.panels, capped);
saveToStorage(this.ctx.PANEL_ORDER_KEY, panelOrder);
saveToStorage(this.ctx.PANEL_ORDER_KEY + '-bottom-set', bottomSet);
this.applyPanelSettings();
this.applySavedPanelOrder();
this.ctx.unifiedSettings?.refreshPanelToggles();
this.mountLiveNewsIfReady();
this.scheduleLoadAllData();
}
private setupMobilePanelNav(): void {
const grid = document.getElementById('panelsGrid');
if (!grid) return;
this.mobilePanelNav = new MobilePanelNav(() => this.ctx.panelSettings);
grid.before(this.mobilePanelNav.getElement());
this.mobilePanelNav.refresh();
}
private updateMobileMapCollapseBtn(isCollapsed: boolean): void {
if (!this.mobileMapCollapseBtn) return;
this.mobileMapCollapseBtn.textContent = isCollapsed
? `▶ ${t('components.map.showMap')}`
: `▼ ${t('components.map.hideMap')}`;
}
private setupMobileMapToggle(): void {
// This is a boot-shell-only marker. The hydrated map owns the persistent
// collapsed state on #mapSection, so do not leak it into runtime styling.
document.documentElement.classList.remove('wm-map-collapsed');
const mapSection = document.getElementById('mapSection');
const headerLeft = mapSection?.querySelector('.panel-header-left');
if (!mapSection || !headerLeft) return;
const collapsed = PanelLayoutManager.isMobileMapCollapsedPreferred();
if (collapsed) mapSection.classList.add('collapsed');
const btn = document.createElement('button');
btn.className = 'map-collapse-btn';
headerLeft.after(btn);
this.mobileMapCollapseBtn = btn;
this.updateMobileMapCollapseBtn(collapsed);
btn.addEventListener('click', () => {
const isCollapsed = mapSection.classList.toggle('collapsed');
this.updateMobileMapCollapseBtn(isCollapsed);
saveToStorage('mobile-map-collapsed', isCollapsed);
if (!isCollapsed) window.dispatchEvent(new Event('resize'));
});
}
/** Expand the mobile map (no-op if already expanded) so a banner's
* "View Region" fly-to is actually visible, then scroll it into view. */
private revealMobileMap(): void {
const mapSection = document.getElementById('mapSection');
if (!mapSection) return;
// Map panel disabled in settings — nothing to reveal; scrolling to an
// empty top would read as the tap doing nothing.
if (mapSection.classList.contains('hidden')) return;
if (mapSection.classList.contains('collapsed')) {
mapSection.classList.remove('collapsed');
saveToStorage('mobile-map-collapsed', false);
this.updateMobileMapCollapseBtn(false);
window.dispatchEvent(new Event('resize'));
}
document.querySelector('.main-content')?.scrollTo({ top: 0 });
}
renderCriticalBanner(postures: TheaterPostureSummary[]): void {
const dismissedAt = readSessionStorageValue('banner-dismissed');
if (dismissedAt && Date.now() - parseInt(dismissedAt, 10) < 30 * 60 * 1000) {
return;
}
const critical = postures.filter(
(p) => p.postureLevel === 'critical' || (p.postureLevel === 'elevated' && p.strikeCapable)
);
if (critical.length === 0) {
if (this.criticalBannerEl) {
this.criticalBannerEl.remove();
this.criticalBannerEl = null;
document.body.classList.remove('has-critical-banner');
}
return;
}
const top = critical[0]!;
const isCritical = top.postureLevel === 'critical';
if (!this.criticalBannerEl) {
this.criticalBannerEl = document.createElement('div');
this.criticalBannerEl.className = 'critical-posture-banner';
const header = document.querySelector('.header');
if (header) header.insertAdjacentElement('afterend', this.criticalBannerEl);
}
document.body.classList.add('has-critical-banner');
this.criticalBannerEl.className = `critical-posture-banner ${isCritical ? 'severity-critical' : 'severity-elevated'}`;
setTrustedHtml(this.criticalBannerEl, trustedHtml(`
<div class="banner-content">
<span class="banner-icon">${isCritical ? '🚨' : '⚠️'}</span>
<span class="banner-headline">${escapeHtml(top.headline)}</span>
<span class="banner-stats">${top.totalAircraft} aircraft • ${escapeHtml(top.summary)}</span>
${top.strikeCapable ? '<span class="banner-strike">STRIKE CAPABLE</span>' : ''}
</div>
<button class="banner-view" data-lat="${top.centerLat}" data-lon="${top.centerLon}">View Region</button>
<button class="banner-dismiss">×</button>
`, "legacy direct innerHTML migration"));
this.criticalBannerEl.querySelector('.banner-view')?.addEventListener('click', () => {
console.log('[Banner] View Region clicked:', top.theaterId, 'lat:', top.centerLat, 'lon:', top.centerLon);
trackCriticalBannerAction('view', top.theaterId);
if (typeof top.centerLat === 'number' && typeof top.centerLon === 'number') {
if (this.ctx.isMobile) this.revealMobileMap();
this.ctx.map?.setCenter(top.centerLat, top.centerLon, 4);
} else {
console.error('[Banner] Missing coordinates for', top.theaterId);
}
});
this.criticalBannerEl.querySelector('.banner-dismiss')?.addEventListener('click', () => {
trackCriticalBannerAction('dismiss', top.theaterId);
this.criticalBannerEl?.classList.add('dismissed');
document.body.classList.remove('has-critical-banner');
writeSessionStorageValue('banner-dismissed', Date.now().toString());
});
}
applyPanelSettings(): void {
Object.entries(this.ctx.panelSettings).forEach(([key, config]) => {
if (key === 'map') {
const mapSection = document.getElementById('mapSection');
if (mapSection) {
mapSection.classList.toggle('hidden', !config.enabled);
const mainContent = document.querySelector('.main-content');
if (mainContent) {
mainContent.classList.toggle('map-hidden', !config.enabled);
}
this.ensureCorrectZones();
}
return;
}
const deferred = this.deferredPanelMounts.get(key);
const placeholderWasHidden = deferred?.placeholder?.classList.contains('hidden') ?? false;
let mountedFromDeferred = false;
if (config.enabled && deferred && !deferred.mounted && (!deferred.placeholder || placeholderWasHidden)) {
mountedFromDeferred = this.mountDeferredPanel(key);
}
// Reconcile placeholder visibility even when the mount attempt no-ops
// (an in-flight load sets deferred.loading, so mountDeferredPanel
// returns false): a re-enable during that window must unhide the shell
// or the panel vanishes until the chunk resolves — and forever if the
// load then fails, since a hidden shell can never intersect the retry
// observer.
if (!mountedFromDeferred && deferred?.placeholder) {
deferred.placeholder.classList.toggle('hidden', !config.enabled);
}
const panel = this.ctx.panels[key];
const liveMediaPanel = panel as { stopLiveMediaForClose?: () => void; resumeLiveMediaForShow?: () => void } | undefined;
if (!config.enabled) {
liveMediaPanel?.stopLiveMediaForClose?.();
}
if (!mountedFromDeferred) {
panel?.toggle(config.enabled);
}
if (config.enabled) {
liveMediaPanel?.resumeLiveMediaForShow?.();
}
});
this.mobilePanelNav?.refresh();
}
/**
* Lazily instantiates and mounts LiveNewsPanel when channels become available
* mid-session (e.g. user adds channels via the standalone manager on a variant
* whose defaults are empty). No-op if the panel already exists or still has no
* channels. Called from the liveChannels storage event handler.
*/
mountLiveNewsIfReady(): void {
if (this.ctx.panels['live-news']) return;
const grid = document.getElementById('panelsGrid');
if (this.lazyPanelRegistrations.has('live-news') && grid) {
this.mountLazyPanel('live-news', grid);
return;
}
void this.importPanel(
'live-news',
() => import('@/components/LiveNewsPanel'),
'LiveNewsPanel',
(LiveNewsPanel, module) => {
const liveNewsModule = module as typeof import('@/components/LiveNewsPanel');
if (liveNewsModule.getDefaultLiveChannels().length === 0 && liveNewsModule.loadChannelsFromStorage().length === 0) return null;
return new LiveNewsPanel();
},
).then((panel) => {
if (this.ctx.isDestroyed) return;
if (this.ctx.panels['live-news'] || !panel) return;
this.ctx.panels['live-news'] = panel;
const el = panel.getElement();
this.makeDraggable(el, 'live-news');
if (grid) {
const addBlock = grid.querySelector('.add-panel-block');
if (addBlock) grid.insertBefore(el, addBlock);
else grid.appendChild(el);
}
this.applyPanelSettings();
this.afterPanelMounted('live-news', panel);
}).catch((err) => {
console.error('[panel] failed to lazy-load "live-news"', err);
});
}
private shouldCreatePanel(key: string): boolean {
return hasPanelSettingEntry(this.ctx.panelSettings, key);
}
private static readonly NEWS_PANEL_TOOLTIPS: Record<string, string> = {
centralbanks: t('components.centralBankWatch.infoTooltip'),
};
private createNewsPanel(key: string, labelKey: string): void {
this.createNewsPanelWithLabel(key, t(labelKey), PanelLayoutManager.NEWS_PANEL_TOOLTIPS[key], key);
}
private createNewsPanelWithLabel(
panelKey: string,
label: string,
tooltip?: string,
categoryKey = panelKey,
): void {
if (!this.shouldCreatePanel(panelKey)) return;
// Record the category→panel-key mapping ONLY when the lazy registration
// actually took `panelKey`. A key already claimed by a non-news panel
// (CommoditiesPanel, SupplyChainPanel, LiveNewsPanel …) makes lazyPanel a
// no-op, and the category must then stay out of the registry so the data
// layer never resolves it as a news category — there is no NewsPanel to
// render into and every feed it fetches is waste (#5376).
const registered = this.lazyImportedPanel(panelKey, () => import('@/components/NewsPanel'), 'NewsPanel', (NewsPanel) => {
const panel = new NewsPanel(panelKey, label, tooltip);
this.attachRelatedAssetHandlers(panel);
panel.setRiskScoreGetter(PanelLayoutManager.computeEventRisk);
this.ctx.newsPanels[categoryKey] = panel;
// Backfill on PRESENCE, not length. A category that resolved to `[]` is a
// routine outcome — the digest simply carried no bucket for it — and this is
// the only chance a late-mounting panel gets to clear the skeleton its
// constructor installed. Skipping a cached `[]` used to be harmless because
// the second news load re-rendered every category; now that the load runs
// once per work-list that second chance is gone and the panel spins until the
// 20-minute refresh (#5376). `renderNews([])` is what shows the empty state.
const existingItems = this.ctx.newsByCategory[categoryKey];
if (existingItems) {
const filteredItems = this.filterItemsByTimeRange(existingItems);
if (filteredItems.length === 0 && existingItems.length > 0) {
panel.renderFilteredEmpty(`No items in ${this.getTimeRangeLabel()}`);
} else {
panel.renderNews(filteredItems);
}
}
return panel;
});
if (registered) this.ctx.newsCategoryPanelKeys.set(categoryKey, panelKey);
}
// 0-100 event risk score: 0.40×severity + 0.30×geoConvergence + 0.30×CII
// CII component omitted until lat/lon→country lookup is added; weights rebalanced to 0.57+0.43
private static computeEventRisk(cluster: ClusteredEvent): number | null {
if (!cluster.threat) return null;
const levelScore: Record<string, number> = { critical: 95, high: 75, medium: 50, low: 25, info: 10 };
const severity = (levelScore[cluster.threat.level] ?? 10) * (cluster.threat.confidence ?? 1);
const geoAlert = (cluster.lat != null && cluster.lon != null)
? getAlertsNearLocation(cluster.lat, cluster.lon, 500)
: null;
const geoScore = geoAlert?.score ?? 0;
// Rebalanced (CII pending): 0.57×severity + 0.43×geoConvergence
return Math.round(0.57 * severity + 0.43 * geoScore);
}
private shouldMountPanelImmediately(key: string): boolean {
const config = this.ctx.panelSettings[key];
if (!config?.enabled) return false;
if (shouldDeferInitialPanelMount({
enabled: config.enabled,
mountedEnabledCount: this.initiallyMountedEnabledPanelCount,
isMobile: this.ctx.isMobile,
})) {
return false;
}
this.initiallyMountedEnabledPanelCount += 1;
return true;
}
private insertInitialPanel(grid: HTMLElement, key: string, panel: Panel): void {
if (this.shouldMountPanelImmediately(key)) {
if (this.mountPanelElement(grid, key, panel)) {
this.afterPanelMounted(key, panel);
}
return;
}
this.deferPanelMount(key, panel, grid, this.ctx.panelSettings[key]?.enabled === true);
}
private insertInitialPanelByKey(grid: HTMLElement, key: string): void {
const panel = this.ctx.panels[key];
if (panel && !panel.getElement().parentElement) {
this.insertInitialPanel(grid, key, panel);
return;
}
if (panel || !this.lazyPanelRegistrations.has(key)) return;
// Immediate-tier lazy panels go through the same slot-reserving shell
// contract as deferred ones (#5332): the shell occupies the panel's grid
// slot during this synchronous boot pass and the async chunk arrival
// replaces it in place. The previous placeholder-less mountLazyPanel path
// inserted a brand-new grid item whenever the import resolved — field
// mover data named those insertions as the dominant desktop CLS source.
this.deferPanelMount(key, null, grid, this.ctx.panelSettings[key]?.enabled === true);
if (this.shouldMountPanelImmediately(key)) {
this.mountDeferredPanel(key);
}
}
private mountPanelElement(grid: HTMLElement, key: string, panel: Panel, placeholder?: HTMLElement | null): boolean {
const el = panel.getElement();
if (el.parentElement) return false;
this.makeDraggable(el, key);
if (placeholder?.parentNode) {
if (import.meta.env.DEV) warnOnDeferredFootprintDrift(key, placeholder, el);
placeholder.parentNode.replaceChild(el, placeholder);
} else {
this.insertByOrder(grid, el, key);
}
this.mobilePanelNav?.applyToNewPanel(el);
panel.notifyConnected();
return true;
}
private getDeferredPanelShellFootprint(key: string): DeferredPanelShellFootprint {
return resolveDeferredPanelShellFootprint({
panelId: key,
naturalFootprints: DEFERRED_PANEL_NATURAL_FOOTPRINTS,
dynamicFootprints: DEFERRED_DYNAMIC_PANEL_FOOTPRINTS,
savedRowSpans: loadPanelSpans(),
savedColSpans: loadPanelColSpans(),
savedCollapsed: loadPanelCollapsed(),
});
}
private deferPanelMount(key: string, panel: Panel | null, grid: HTMLElement | null, withShell: boolean): void {
const placeholder = withShell && grid
? createDeferredPanelShell(key, this.ctx.panelSettings[key]?.name ?? key, this.getDeferredPanelShellFootprint(key))
: null;
if (placeholder && grid) {
this.insertByOrder(grid, placeholder, key);
reconcileDeferredPanelShellColSpan(placeholder);
this.mobilePanelNav?.applyToNewPanel(placeholder);
}
const existing = this.deferredPanelMounts.get(key);
existing?.observer?.disconnect();
if (existing?.retryTimer !== null && existing?.retryTimer !== undefined) {
clearTimeout(existing.retryTimer);
}
if (existing?.placeholder && existing.placeholder !== placeholder) {
existing.placeholder.remove();
}
const deferred: DeferredPanelMount = {
panel,
placeholder,
observer: null,
mounted: false,
loading: null,
retryTimer: null,
retryAttempts: 0,
failed: false,
};
this.deferredPanelMounts.set(key, deferred);
if (placeholder) {
this.observeDeferredPanelShell(key, deferred);
}
}
private observeDeferredPanelShell(key: string, deferred: DeferredPanelMount): void {
const { placeholder } = deferred;
if (!placeholder) return;
if (deferred.retryTimer !== null) {
clearTimeout(deferred.retryTimer);
deferred.retryTimer = null;
}
if (typeof window === 'undefined' || typeof IntersectionObserver === 'undefined') {
const ric = typeof window !== 'undefined'
? (window as unknown as { requestIdleCallback?: (cb: () => void) => number }).requestIdleCallback
: undefined;
if (typeof ric === 'function') ric(() => this.mountDeferredPanel(key));
else setTimeout(() => this.mountDeferredPanel(key), 0);
return;
}
const rootMargin = this.ctx.isMobile ? '700px 0px' : '900px 0px';
deferred.observer = new IntersectionObserver((entries) => {
if (entries.some((entry) => entry.isIntersecting)) {
this.mountDeferredPanel(key);
}
}, { rootMargin });
deferred.observer.observe(placeholder);
}
private getPanelMountGrid(key: string): HTMLElement | null {
const bottomGrid = document.getElementById('mapBottomGrid');
if (bottomGrid && this.getEffectiveUltraWide() && this.bottomSetMemory.has(key)) {
return bottomGrid;
}
return document.getElementById('panelsGrid');
}
private scheduleDeferredPanelRetry(key: string, deferred: DeferredPanelMount): void {
if (this.ctx.isDestroyed || deferred.mounted || deferred.failed || deferred.retryTimer !== null) return;
if (!deferred.placeholder?.parentNode) return;
if (!deferred.panel && !this.lazyPanelRegistrations.has(key)) return;
if (deferred.retryAttempts >= DEFERRED_PANEL_MAX_RETRY_ATTEMPTS) {
// Give up after a bounded number of attempts so a permanently failing
// dynamic import (offline, stale chunk) cannot spin a 1s retry loop forever.
// The shell stays in place as a quiet fallback, and a one-shot 'online'
// listener re-arms the retry budget so a connectivity blip during boot
// doesn't strand the skeleton until a manual reload — a genuinely broken
// chunk fails its retries again and lands back here.
deferred.failed = true;
if (typeof window !== 'undefined') {
window.addEventListener('online', () => {
if (this.deferredPanelMounts.get(key) !== deferred || deferred.mounted || this.ctx.isDestroyed) return;
deferred.failed = false;
deferred.retryAttempts = 0;
this.observeDeferredPanelShell(key, deferred);
}, { once: true });
}
return;
}
deferred.retryAttempts += 1;
deferred.retryTimer = setTimeout(() => {
deferred.retryTimer = null;
if (this.deferredPanelMounts.get(key) !== deferred || deferred.mounted || this.ctx.isDestroyed) return;
this.observeDeferredPanelShell(key, deferred);
}, DEFERRED_PANEL_RETRY_DELAY_MS);
}
private mountDeferredPanel(key: string): boolean {
const deferred = this.deferredPanelMounts.get(key);
if (!deferred || deferred.mounted || deferred.loading || deferred.failed) return false;
const grid = this.getPanelMountGrid(key);
if (!grid && !deferred.placeholder?.parentNode) return false;
markLcpDebug('wm:panel:deferred-mount-start', { panel: key });
deferred.observer?.disconnect();
deferred.observer = null;
if (deferred.retryTimer !== null) {
clearTimeout(deferred.retryTimer);
deferred.retryTimer = null;
}
const targetGrid = grid ?? (deferred.placeholder!.parentNode as HTMLElement);
const finish = (panel: Panel | null): void => {
const current = this.deferredPanelMounts.get(key);
if (current !== deferred || deferred.mounted) return;
deferred.loading = null;
if (!panel || this.ctx.isDestroyed) {
markLcpDebug('wm:panel:deferred-mount-unavailable', { panel: key });
this.scheduleDeferredPanelRetry(key, deferred);
return;
}
const placeholder = deferred.placeholder;
const mounted = this.mountPanelElement(targetGrid, key, panel, placeholder);
if (mounted) {
this.afterPanelMounted(key, panel);
}
deferred.mounted = true;
deferred.placeholder = null;
this.deferredPanelMounts.delete(key);
markLcpDebug('wm:panel:deferred-mount-ready', { mounted, panel: key });
};
if (deferred.panel) {
finish(deferred.panel);
return true;
}
deferred.loading = this.loadRegisteredPanel(key).then(finish, () => finish(null));
return true;
}
private mountLazyPanel(key: string, grid: HTMLElement): void {
void this.loadRegisteredPanel(key).then((panel) => {
if (!panel || this.ctx.isDestroyed) return;
if (this.mountPanelElement(grid, key, panel)) {
this.afterPanelMounted(key, panel);
}
});
}
private scheduleHydrationForPanelElement(element: HTMLElement, fallbackPhase: HydrationSchedulePhase = 'near'): void {
if (typeof window === 'undefined') {
this.scheduleLoadAllData(fallbackPhase);
return;
}
measure(() => {
const rect = element.getBoundingClientRect();
const viewportHeight = window.innerHeight || document.documentElement.clientHeight || 0;
const phase: HydrationSchedulePhase = rect.top < viewportHeight && rect.bottom > 0 ? 'visible' : 'near';
mutate(() => {
if (this.ctx.isDestroyed) return;
this.scheduleLoadAllData(phase);
});
});
}
private observePanelForHydration(panel: Panel): void {
if (this.observedHydrationPanels.has(panel)) return;
this.observedHydrationPanels.add(panel);
panel.observeNearViewport(() => {
this.scheduleHydrationForPanelElement(panel.getElement(), 'near');
}, 200);
}
private afterPanelMounted(key: string, panel: Panel): void {
const config = this.ctx.panelSettings[key];
if (config) panel.toggle(config.enabled);
this.observePanelForHydration(panel);
if (config?.enabled) {
this.scheduleHydrationForPanelElement(panel.getElement(), 'near');
}
}
private getPanelElementForOrdering(key: string): HTMLElement | null {
const deferred = this.deferredPanelMounts.get(key);
if (deferred && !deferred.mounted) {
if (deferred.placeholder) return deferred.placeholder;
if (!this.ctx.panelSettings[key]?.enabled) return null;
this.mountDeferredPanel(key);
}
return this.ctx.panels[key]?.getElement() ?? null;
}
private async createPanels(): Promise<void> {
const panelsGrid = document.getElementById('panelsGrid')!;
this.initiallyMountedEnabledPanelCount = 0;
const mapContainer = document.getElementById('mapContainer') as HTMLElement;
const preferGlobe = getStoredMapModePreference() === 'globe';
// Dynamic import: keeps maplibre-gl + @deck.gl/* + @loaders.gl + @luma.gl out of
// the entry chunk.
//
// U3 (#4459): kick off the map chunk fetch HERE but await it only after the ~730
// lines of panel registration below, so registration runs concurrently with the
// fetch instead of serialized behind it. This is the restructure the prior canary
// comment called for: panel setup is map-tolerant: callback uses are `?.`-guarded,
// and the one eager bridge (SupplyChainPanel -> MapContainer) is replayed below.
// ctx.currentTimeRange already defaults to '7d' (App.ts:899). The map's direct
// uses — construction, the supply-chain bridge replay, the resilienceScore tweak,
// initEscalationGetters/getTimeRange and onTimeRangeChanged — are grouped together
// after the registration block (just before the onTimeRangeChanged wiring).
// Failed-fetch reload guard: src/main.ts:285-290 (installChunkReloadGuard).
const mapModulePromise = import('@/components/MapContainer');
this.createNewsPanel('politics', 'panels.politics');
this.createNewsPanel('tech', 'panels.tech');
this.createNewsPanel('finance', 'panels.finance');
this.lazyDefaultPanel('heatmap', () => import('@/components/MarketPanel'), 'HeatmapPanel');
this.lazyDefaultPanel('markets', () => import('@/components/MarketPanel'), 'MarketPanel');
this.lazyDefaultPanel('stock-analysis', () => import('@/components/StockAnalysisPanel'), 'StockAnalysisPanel');
this.lazyDefaultPanel('stock-backtest', () => import('@/components/StockBacktestPanel'), 'StockBacktestPanel');
// Web premium gating for stock-analysis and stock-backtest is handled
// reactively by updatePanelGating() via auth state subscription.
this.lazyImportedPanel('monitors', () => import('@/components/MonitorPanel'), 'MonitorPanel', (MonitorPanel) => {
const monitorPanel = new MonitorPanel(this.ctx.monitors);
monitorPanel.onChanged((monitors) => {
this.ctx.monitors = monitors;
saveToStorage(STORAGE_KEYS.monitors, monitors);
this.callbacks.updateMonitorResults();
});
return monitorPanel;
});
// Latest Brief — reads /api/latest-brief and opens the hosted
// magazine on click. Self-fetching (no data-loader integration);
// PRO gating handled by the base Panel class via premium: 'locked'.
this.lazyDefaultPanel('latest-brief', () => import('@/components/LatestBriefPanel'), 'LatestBriefPanel');
this.lazyDefaultPanel('commodities', () => import('@/components/MarketPanel'), 'CommoditiesPanel');
this.lazyDefaultPanel('energy-complex', () => import('@/components/EnergyComplexPanel'), 'EnergyComplexPanel');
this.lazyDefaultPanel('oil-inventories', () => import('@/components/OilInventoriesPanel'), 'OilInventoriesPanel');
this.lazyDefaultPanel('energy-crisis', () => import('@/components/EnergyCrisisPanel'), 'EnergyCrisisPanel');
this.lazyDefaultPanel('chokepoint-strip', () => import('@/components/ChokepointStripPanel'), 'ChokepointStripPanel');
this.lazyPanel('pipeline-status', () =>
this.importPanel('pipeline-status', () => import('@/components/PipelineStatusPanel'), 'PipelineStatusPanel', (PipelineStatusPanel) => new PipelineStatusPanel()),
);
this.lazyPanel('storage-facility-map', () =>
this.importPanel('storage-facility-map', () => import('@/components/StorageFacilityMapPanel'), 'StorageFacilityMapPanel', (StorageFacilityMapPanel) => new StorageFacilityMapPanel()),
);
this.lazyPanel('fuel-shortages', () =>
this.importPanel('fuel-shortages', () => import('@/components/FuelShortagePanel'), 'FuelShortagePanel', (FuelShortagePanel) => new FuelShortagePanel()),
);
this.lazyPanel('energy-disruptions', () =>
this.importPanel('energy-disruptions', () => import('@/components/EnergyDisruptionsPanel'), 'EnergyDisruptionsPanel', (EnergyDisruptionsPanel) => new EnergyDisruptionsPanel()),
);
this.lazyPanel('energy-risk-overview', () =>
this.importPanel('energy-risk-overview', () => import('@/components/EnergyRiskOverviewPanel'), 'EnergyRiskOverviewPanel', (EnergyRiskOverviewPanel) => new EnergyRiskOverviewPanel()),
);
this.lazyDefaultPanel('polymarket', () => import('@/components/PredictionPanel'), 'PredictionPanel');
this.createNewsPanel('gov', 'panels.gov');
this.createNewsPanel('intel', 'panels.intel');
this.lazyDefaultPanel('crypto', () => import('@/components/MarketPanel'), 'CryptoPanel');
this.lazyDefaultPanel('crypto-heatmap', () => import('@/components/MarketPanel'), 'CryptoHeatmapPanel');
this.lazyDefaultPanel('defi-tokens', () => import('@/components/MarketPanel'), 'DefiTokensPanel');
this.lazyDefaultPanel('ai-tokens', () => import('@/components/MarketPanel'), 'AiTokensPanel');
this.lazyDefaultPanel('other-tokens', () => import('@/components/MarketPanel'), 'OtherTokensPanel');
this.createNewsPanel('middleeast', 'panels.middleeast');
this.createNewsPanel('layoffs', 'panels.layoffs');
this.createNewsPanel('ai', 'panels.ai');
this.createNewsPanel('startups', 'panels.startups');
this.createNewsPanel('vcblogs', 'panels.vcblogs');
this.createNewsPanel('regionalStartups', 'panels.regionalStartups');
this.createNewsPanel('unicorns', 'panels.unicorns');
this.createNewsPanel('accelerators', 'panels.accelerators');
this.createNewsPanel('funding', 'panels.funding');
this.createNewsPanel('producthunt', 'panels.producthunt');
this.createNewsPanel('security', 'panels.security');
this.createNewsPanel('policy', 'panels.policy');
this.createNewsPanel('hardware', 'panels.hardware');
this.createNewsPanel('cloud', 'panels.cloud');
this.createNewsPanel('dev', 'panels.dev');
this.createNewsPanel('github', 'panels.github');
this.createNewsPanel('ipo', 'panels.ipo');
this.createNewsPanel('thinktanks', 'panels.thinktanks');
this.lazyDefaultPanel('economic', () => import('@/components/EconomicPanel'), 'EconomicPanel');
this.lazyDefaultPanel('global-procurement', () => import('@/components/GlobalProcurementPanel'), 'GlobalProcurementPanel');
this.lazyDefaultPanel('consumer-prices', () => import('@/components/ConsumerPricesPanel'), 'ConsumerPricesPanel');
this.lazyDefaultPanel('trade-policy', () => import('@/components/TradePolicyPanel'), 'TradePolicyPanel');
this.lazyDefaultPanel('sanctions-pressure', () => import('@/components/SanctionsPressurePanel'), 'SanctionsPressurePanel');
this.lazyImportedPanel('supply-chain', () => import('@/components/SupplyChainPanel'), 'SupplyChainPanel', (SupplyChainPanel) => {
const supplyChainPanel = new SupplyChainPanel();
supplyChainPanel.setOnScenarioActivate((id, result) => {
this.ctx.map?.activateScenario(id, result);
});
supplyChainPanel.setOnDismissScenario(() => {
this.ctx.map?.deactivateScenario();
});
this.ctx.map?.setSupplyChainPanel(supplyChainPanel);
return supplyChainPanel;
});
this.lazyImportedPanel('china-corridors', () => import('@/components/ChinaCorridorPanel'), 'ChinaCorridorPanel', (ChinaCorridorPanel) => {
const panel = new ChinaCorridorPanel();
panel.setOnCorridorSelect((corridor) => {
const rendererSupportsOverlay = this.ctx.map?.setChinaCorridorSelection(corridor);
if (this.ctx.isMobile) this.revealMobileMap();
return rendererSupportsOverlay;
});
this.ctx.map?.setOnChinaCorridorRendererCapabilityChange((supported) => {
panel.setRendererSupportsOverlay(supported);
});
return panel;
});
this.lazyDefaultPanel(
'china-activity-nowcast',
() => import('@/components/ChinaActivityNowcastPanel'),
'ChinaActivityNowcastPanel',
);
this.createNewsPanel('africa', 'panels.africa');
this.createNewsPanel('latam', 'panels.latam');
this.createNewsPanel('asia', 'panels.asia');
this.createNewsPanel('energy', 'panels.energy');
// Iterate CANONICAL_FEEDS (union of all variants), not just the active
// variant's FEEDS preset — so a news panel the user customized in from
// another variant (e.g. Finance `forex` added to a `full` session) still
// gets a NewsPanel created. The panelSettings gate inside
// newsPanelKeyForCategory ensures only panels the user actually has an entry
// for are instantiated.
//
// Every registration above has already run, so `isPanelKeyClaimed` is the
// live answer to "does a data panel already own this feed-category key?" —
// the fact the collision remap is derived from, instead of the hardcoded
// `markets`/`crypto`/`economic` set that silently omitted `commodities`
// (#5871). See src/app/news-panel-keys.ts.
const newsPanelKeyLookups = newsPanelKeyLookupsFor({
canonicalFeeds: CANONICAL_FEEDS,
panels: this.ctx.panels,
lazyPanelRegistrations: this.lazyPanelRegistrations,
newsCategoryPanelKeys: this.ctx.newsCategoryPanelKeys,
panelSettings: this.ctx.panelSettings,
lateRegisteredPanelKeys: LATE_REGISTERED_PANEL_KEYS,
});
for (const key of Object.keys(CANONICAL_FEEDS)) {
const panelKey = newsPanelKeyForCategory(key, newsPanelKeyLookups);
if (!panelKey) continue;
const panelConfig = this.ctx.panelSettings[panelKey];
const label = panelConfig?.name ?? key.charAt(0).toUpperCase() + key.slice(1);
const tooltip = PanelLayoutManager.NEWS_PANEL_TOOLTIPS[panelKey] ?? PanelLayoutManager.NEWS_PANEL_TOOLTIPS[key];
this.createNewsPanelWithLabel(panelKey, label, tooltip, key);
}
this.lazyDefaultPanel('gdelt-intel', () => import('@/components/GdeltIntelPanel'), 'GdeltIntelPanel');
this.lazyPanel('deduction', () =>
this.importPanel(
'deduction',
() => import('@/components/DeductionPanel'),
'DeductionPanel',
(DeductionPanel) => new DeductionPanel(() => this.ctx.allNews),
),
);
this.lazyPanel('regional-intelligence', () =>
this.importPanel(
'regional-intelligence',
() => import('@/components/RegionalIntelligenceBoard'),
'RegionalIntelligenceBoard',
(RegionalIntelligenceBoard) => new RegionalIntelligenceBoard(),
),
);
this.lazyImportedPanel('cii', () => import('@/components/CIIPanel'), 'CIIPanel', (CIIPanel) => {
const ciiPanel = new CIIPanel();
ciiPanel.setShareStoryHandler((code, name) => {
this.callbacks.openCountryStory(code, name);
});
ciiPanel.setCountryClickHandler((code) => {
this.callbacks.openCountryBrief(code);
});
return ciiPanel;
});
this.lazyDefaultPanel('cascade', () => import('@/components/CascadePanel'), 'CascadePanel');
this.lazyDefaultPanel('satellite-fires', () => import('@/components/SatelliteFiresPanel'), 'SatelliteFiresPanel');
this.lazyDefaultPanel('defense-patents', () => import('@/components/DefensePatentsPanel'), 'DefensePatentsPanel');
// Correlation engine panels
this.lazyImportedPanel('military-correlation', () => import('@/components/MilitaryCorrelationPanel'), 'MilitaryCorrelationPanel', (MilitaryCorrelationPanel) => {
const p = new MilitaryCorrelationPanel();
p.setMapNavigateHandler((lat, lon) => { this.ctx.map?.setCenter(lat, lon, 6); });
return p;
});
this.lazyImportedPanel('escalation-correlation', () => import('@/components/EscalationCorrelationPanel'), 'EscalationCorrelationPanel', (EscalationCorrelationPanel) => {
const p = new EscalationCorrelationPanel();
p.setMapNavigateHandler((lat, lon) => { this.ctx.map?.setCenter(lat, lon, 4); });
return p;
});
this.lazyImportedPanel('economic-correlation', () => import('@/components/EconomicCorrelationPanel'), 'EconomicCorrelationPanel', (EconomicCorrelationPanel) => {
const p = new EconomicCorrelationPanel();
p.setMapNavigateHandler((lat, lon) => { this.ctx.map?.setCenter(lat, lon, 4); });
return p;
});
this.lazyImportedPanel('disaster-correlation', () => import('@/components/DisasterCorrelationPanel'), 'DisasterCorrelationPanel', (DisasterCorrelationPanel) => {
const p = new DisasterCorrelationPanel();
p.setMapNavigateHandler((lat, lon) => { this.ctx.map?.setCenter(lat, lon, 5); });
return p;
});
this.lazyImportedPanel('strategic-risk', () => import('@/components/StrategicRiskPanel'), 'StrategicRiskPanel', (StrategicRiskPanel) => {
const strategicRiskPanel = new StrategicRiskPanel();
strategicRiskPanel.setLocationClickHandler((lat, lon) => {
this.ctx.map?.setCenter(lat, lon, 4);
});
return strategicRiskPanel;
});
this.lazyImportedPanel('strategic-posture', () => import('@/components/StrategicPosturePanel'), 'StrategicPosturePanel', (StrategicPosturePanel) => {
const strategicPosturePanel = new StrategicPosturePanel(() => this.ctx.allNews);
strategicPosturePanel.setLocationClickHandler((lat, lon) => {
this.ctx.map?.setCenter(lat, lon, 4);
});
return strategicPosturePanel;
});
this.lazyImportedPanel('ucdp-events', () => import('@/components/UcdpEventsPanel'), 'UcdpEventsPanel', (UcdpEventsPanel) => {
const ucdpEventsPanel = new UcdpEventsPanel();
ucdpEventsPanel.setEventClickHandler((lat, lon) => {
this.ctx.map?.setCenter(lat, lon, 5);
});
return ucdpEventsPanel;
});
this.lazyDefaultPanel('disease-outbreaks', () => import('@/components/DiseaseOutbreaksPanel'), 'DiseaseOutbreaksPanel');
this.lazyDefaultPanel('social-velocity', () => import('@/components/SocialVelocityPanel'), 'SocialVelocityPanel');
this.lazyDefaultPanel('wsb-ticker-scanner', () => import('@/components/WsbTickerScannerPanel'), 'WsbTickerScannerPanel');
this.lazyImportedPanel('displacement', () => import('@/components/DisplacementPanel'), 'DisplacementPanel', (DisplacementPanel) => {
const p = new DisplacementPanel();
p.setCountryClickHandler((lat: number, lon: number) => { this.ctx.map?.setCenter(lat, lon, 4); });
return p;
});
this.lazyImportedPanel('climate', () => import('@/components/ClimateAnomalyPanel'), 'ClimateAnomalyPanel', (ClimateAnomalyPanel) => {
const p = new ClimateAnomalyPanel();
p.setZoneClickHandler((lat: number, lon: number) => { this.ctx.map?.setCenter(lat, lon, 4); });
return p;
});
this.lazyDefaultPanel('population-exposure', () => import('@/components/PopulationExposurePanel'), 'PopulationExposurePanel');
this.lazyImportedPanel('security-advisories', () => import('@/components/SecurityAdvisoriesPanel'), 'SecurityAdvisoriesPanel', (SecurityAdvisoriesPanel) => {
const p = new SecurityAdvisoriesPanel();
p.setRefreshHandler(() => { void this.callbacks.loadSecurityAdvisories?.(); });
return p;
});
this.lazyImportedPanel('radiation-watch', () => import('@/components/RadiationWatchPanel'), 'RadiationWatchPanel', (RadiationWatchPanel) => {
const p = new RadiationWatchPanel();
p.setLocationClickHandler((lat: number, lon: number) => { this.ctx.map?.setCenter(lat, lon, 4); });
return p;
});
this.lazyImportedPanel('thermal-escalation', () => import('@/components/ThermalEscalationPanel'), 'ThermalEscalationPanel', (ThermalEscalationPanel) => {
const p = new ThermalEscalationPanel();
p.setLocationClickHandler((lat: number, lon: number) => { this.ctx.map?.setCenter(lat, lon, 4); });
return p;
});
const _lockPanels = this.ctx.isDesktopApp && !hasPremiumAccess();
this.lazyDefaultPanel('daily-market-brief', () => import('@/components/DailyMarketBriefPanel'), 'DailyMarketBriefPanel');
this.lazyDefaultPanel('market-implications', () => import('@/components/MarketImplicationsPanel'), 'MarketImplicationsPanel');
// Gating for daily-market-brief, market-implications, and chat-analyst is handled
// reactively by updatePanelGating() via auth state subscription (all in WEB_PREMIUM_PANELS).
this.lazyImportedPanel('chat-analyst', () => import('@/components/ChatAnalystPanel'), 'ChatAnalystPanel', (ChatAnalystPanel) => {
// agent-bus-applier (and its zod-backed shared/agent-bus-actions schemas, ~69KB)
// is only reachable through this lazy panel's action handler. Start loading it
// here so it stays off the eager main entry, but do not make plain chat depend
// on the optional dashboard-control chunk being available.
const panel = new ChatAnalystPanel();
void import('@/app/agent-bus-applier')
.then(({ applyAgentBusAction }) => {
panel.setDashboardActionHandler((action) => applyAgentBusAction(this.ctx, action, {
getPanelConfig: (panelId) => getEffectivePanelConfig(panelId, SITE_VARIANT),
isPanelAllowed: (panelId, config) => isPanelEntitled(panelId, config, hasPremiumAccess(getAuthState())),
hasPremiumAccess: () => hasPremiumAccess(getAuthState()),
applyLayerChange: this.callbacks.applyMapLayerChange,
}));
})
.catch((err) => {
console.error('[panel] failed to lazy-load "chat-analyst" dashboard action handler', err);
});
return panel;
});
this.lazyDefaultPanel(
'forecast',
() => import('@/components/ForecastPanel'),
'ForecastPanel',
undefined,
_lockPanels ? ['AI-powered geopolitical forecasts', 'Cross-domain cascade predictions', 'Prediction market calibration'] : undefined,
);
this.lazyDefaultPanel(
'oref-sirens',
() => import('@/components/OrefSirensPanel'),
'OrefSirensPanel',
undefined,
_lockPanels ? [t('premium.features.orefSirens1'), t('premium.features.orefSirens2')] : undefined,
);
this.lazyDefaultPanel(
'telegram-intel',
() => import('@/components/TelegramIntelPanel'),
'TelegramIntelPanel',
undefined,
_lockPanels ? [t('premium.features.telegramIntel1'), t('premium.features.telegramIntel2')] : undefined,
);
this.lazyPanel('gcc-investments', async () => {
const { focusInvestmentOnMap } = await import('@/services/investments-focus');
return this.importPanel('gcc-investments', () => import('@/components/InvestmentsPanel'), 'InvestmentsPanel', (InvestmentsPanel) =>
new InvestmentsPanel((inv) => {
focusInvestmentOnMap(this.ctx.map, this.ctx.mapLayers, inv.lat, inv.lon);
}),
);
});
this.lazyDefaultPanel('world-clock', () => import('@/components/WorldClockPanel'), 'WorldClockPanel');
this.lazyImportedPanel('airline-intel', () => import('@/components/AirlineIntelPanel'), 'AirlineIntelPanel', (AirlineIntelPanel) => {
const panel = new AirlineIntelPanel();
void import('@/components/AviationCommandBar')
.then(({ AviationCommandBar }) => {
if (!this.ctx.isDestroyed) this.aviationCommandBar = new AviationCommandBar();
})
.catch((err) => {
console.error('[panel] failed to lazy-load "airline-intel" command bar', err);
});
return panel;
});
this.lazyPanel('gulf-economies', () =>
this.importPanel('gulf-economies', () => import('@/components/GulfEconomiesPanel'), 'GulfEconomiesPanel', (GulfEconomiesPanel) => new GulfEconomiesPanel()),
);
this.lazyPanel('grocery-basket', () =>
this.importPanel('grocery-basket', () => import('@/components/GroceryBasketPanel'), 'GroceryBasketPanel', (GroceryBasketPanel) => new GroceryBasketPanel()),
);
this.lazyPanel('bigmac', () =>
this.importPanel('bigmac', () => import('@/components/BigMacPanel'), 'BigMacPanel', (BigMacPanel) => new BigMacPanel()),
);
this.lazyPanel('fuel-prices', () =>
this.importPanel('fuel-prices', () => import('@/components/FuelPricesPanel'), 'FuelPricesPanel', (FuelPricesPanel) => new FuelPricesPanel()),
);
this.lazyPanel('fao-food-price-index', () =>
this.importPanel('fao-food-price-index', () => import('@/components/FaoFoodPriceIndexPanel'), 'FaoFoodPriceIndexPanel', (FaoFoodPriceIndexPanel) => new FaoFoodPriceIndexPanel()),
);
this.lazyPanel('climate-news', () =>
this.importPanel('climate-news', () => import('@/components/ClimateNewsPanel'), 'ClimateNewsPanel', (ClimateNewsPanel) => new ClimateNewsPanel()),
);
this.lazyImportedPanel('live-news', () => import('@/components/LiveNewsPanel'), 'LiveNewsPanel', (LiveNewsPanel, module) => {
const liveNewsModule = module as typeof import('@/components/LiveNewsPanel');
if (liveNewsModule.getDefaultLiveChannels().length === 0 && liveNewsModule.loadChannelsFromStorage().length === 0) return null;
return new LiveNewsPanel();
});
this.lazyDefaultPanel('live-webcams', () => import('@/components/LiveWebcamsPanel'), 'LiveWebcamsPanel');
this.lazyDefaultPanel('windy-webcams', () => import('@/components/PinnedWebcamsPanel'), 'PinnedWebcamsPanel');
this.lazyPanel('events', () =>
this.importPanel(
'events',
() => import('@/components/TechEventsPanel'),
'TechEventsPanel',
(TechEventsPanel) => new TechEventsPanel('events', () => this.ctx.allNews),
),
);
this.lazyDefaultPanel('internet-disruptions', () => import('@/components/InternetDisruptionsPanel'), 'InternetDisruptionsPanel');
this.lazyDefaultPanel('service-status', () => import('@/components/ServiceStatusPanel'), 'ServiceStatusPanel');
this.lazyImportedPanel('tech-readiness', () => import('@/components/TechReadinessPanel'), 'TechReadinessPanel', (TechReadinessPanel) => {
const p = new TechReadinessPanel();
// Only auto-refresh on variants whose bootstrap seeds techReadiness
// (full + tech). On commodity/finance/energy the seed key is empty
// and the 5s fetch at services/economic/index.ts:694 just times out.
// The panel is still created so users who opt-in via settings can
// trigger a manual refresh from its UI.
if (isPanelInVariantDefaults('tech-readiness')) {
void p.refresh();
}
return p;
});
this.lazyImportedPanel('national-debt', () => import('@/components/NationalDebtPanel'), 'NationalDebtPanel', (NationalDebtPanel) => {
const p = new NationalDebtPanel();
void p.refresh();
return p;
});
this.lazyDefaultPanel('cross-source-signals', () => import('@/components/CrossSourceSignalsPanel'), 'CrossSourceSignalsPanel');
this.lazyImportedPanel('geo-hubs', () => import('@/components/GeoHubsPanel'), 'GeoHubsPanel', (GeoHubsPanel) => {
const p = new GeoHubsPanel();
p.setOnHubClick((hub) => { this.ctx.map?.setCenter(hub.lat, hub.lon, 4); });
return p;
});
this.lazyImportedPanel('tech-hubs', () => import('@/components/TechHubsPanel'), 'TechHubsPanel', (TechHubsPanel) => {
const p = new TechHubsPanel();
p.setOnHubClick((hub) => { this.ctx.map?.setCenter(hub.lat, hub.lon, 4); });
return p;
});
this.lazyImportedPanel('ai-regulation', () => import('@/components/RegulationPanel'), 'RegulationPanel', (RegulationPanel) => new RegulationPanel('ai-regulation'));
this.lazyPanel('macro-signals', () =>
this.importPanel('macro-signals', () => import('@/components/MacroSignalsPanel'), 'MacroSignalsPanel', (MacroSignalsPanel) => new MacroSignalsPanel()),
);
this.lazyDefaultPanel('fear-greed', () => import('@/components/FearGreedPanel'), 'FearGreedPanel');
this.lazyDefaultPanel('aaii-sentiment', () => import('@/components/AAIISentimentPanel'), 'AAIISentimentPanel');
this.lazyDefaultPanel('market-breadth', () => import('@/components/MarketBreadthPanel'), 'MarketBreadthPanel');
this.lazyDefaultPanel('macro-tiles', () => import('@/components/MacroTilesPanel'), 'MacroTilesPanel');
this.lazyDefaultPanel('fsi', () => import('@/components/FSIPanel'), 'FSIPanel');
this.lazyDefaultPanel('yield-curve', () => import('@/components/YieldCurvePanel'), 'YieldCurvePanel');
this.lazyDefaultPanel('earnings-calendar', () => import('@/components/EarningsCalendarPanel'), 'EarningsCalendarPanel');
this.lazyDefaultPanel('economic-calendar', () => import('@/components/EconomicCalendarPanel'), 'EconomicCalendarPanel');
this.lazyDefaultPanel('cot-positioning', () => import('@/components/CotPositioningPanel'), 'CotPositioningPanel');
this.lazyDefaultPanel('liquidity-shifts', () => import('@/components/LiquidityShiftsPanel'), 'LiquidityShiftsPanel');
this.lazyDefaultPanel('positioning-247', () => import('@/components/PositioningPanel'), 'PositioningPanel');
this.lazyDefaultPanel('gold-intelligence', () => import('@/components/GoldIntelligencePanel'), 'GoldIntelligencePanel');
this.lazyDefaultPanel('hormuz-tracker', () => import('@/components/HormuzPanel'), 'HormuzPanel');
this.lazyDefaultPanel('etf-flows', () => import('@/components/ETFFlowsPanel'), 'ETFFlowsPanel');
this.lazyDefaultPanel('stablecoins', () => import('@/components/StablecoinPanel'), 'StablecoinPanel');
if (this.ctx.isDesktopApp) {
this.lazyImportedPanel('runtime-config', () => import('@/components/RuntimeConfigPanel'), 'RuntimeConfigPanel', (RuntimeConfigPanel) => new RuntimeConfigPanel({ mode: 'alert' }));
}
this.lazyDefaultPanel('insights', () => import('@/components/InsightsPanel'), 'InsightsPanel');
if (isPanelInVariantDefaults('threat-timeline')) {
this.lazyDefaultPanel('threat-timeline', () => import('@/components/ThreatTimelinePanel'), 'ThreatTimelinePanel');
}
// Global Giving panel (all variants)
this.lazyDefaultPanel('giving', () => import('@/components/GivingPanel'), 'GivingPanel');
// Happy variant panels (lazy-loaded — only relevant for happy variant)
if (SITE_VARIANT === 'happy') {
this.lazyImportedPanel('positive-feed', () => import('@/components/PositiveNewsFeedPanel'), 'PositiveNewsFeedPanel', (PositiveNewsFeedPanel) => {
const p = new PositiveNewsFeedPanel();
this.ctx.positivePanel = p;
return p;
});
this.lazyImportedPanel('counters', () => import('@/components/CountersPanel'), 'CountersPanel', (CountersPanel) => {
const p = new CountersPanel();
p.startTicking();
this.ctx.countersPanel = p;
return p;
});
this.lazyImportedPanel('progress', () => import('@/components/ProgressChartsPanel'), 'ProgressChartsPanel', (ProgressChartsPanel) => {
const p = new ProgressChartsPanel();
this.ctx.progressPanel = p;
return p;
});
this.lazyImportedPanel('breakthroughs', () => import('@/components/BreakthroughsTickerPanel'), 'BreakthroughsTickerPanel', (BreakthroughsTickerPanel) => {
const p = new BreakthroughsTickerPanel();
this.ctx.breakthroughsPanel = p;
return p;
});
this.lazyImportedPanel('spotlight', () => import('@/components/HeroSpotlightPanel'), 'HeroSpotlightPanel', (HeroSpotlightPanel) => {
const p = new HeroSpotlightPanel();
p.onLocationRequest = (lat: number, lon: number) => {
this.ctx.map?.setCenter(lat, lon, 4);
this.ctx.map?.flashLocation(lat, lon, 3000);
};
this.ctx.heroPanel = p;
return p;
});
this.lazyImportedPanel('digest', () => import('@/components/GoodThingsDigestPanel'), 'GoodThingsDigestPanel', (GoodThingsDigestPanel) => {
const p = new GoodThingsDigestPanel();
this.ctx.digestPanel = p;
return p;
});
this.lazyImportedPanel('species', () => import('@/components/SpeciesComebackPanel'), 'SpeciesComebackPanel', (SpeciesComebackPanel) => {
const p = new SpeciesComebackPanel();
this.ctx.speciesPanel = p;
return p;
});
}
// Renewable Energy is shared by happy and energy variants.
if (this.shouldCreatePanel('renewable')) {
this.lazyImportedPanel('renewable', () => import('@/components/RenewableEnergyPanel'), 'RenewableEnergyPanel', (RenewableEnergyPanel) => {
const p = new RenewableEnergyPanel();
this.ctx.renewablePanel = p;
return p;
});
}
// Always load custom widgets — Pro gating is handled reactively by auth state.
for (const spec of loadWidgets()) {
if (!this.ctx.panelSettings[spec.id]) {
this.ctx.panelSettings[spec.id] = { name: spec.title, enabled: true, priority: 3 };
}
const capturedSpec = spec;
this.lazyPanel(spec.id, () =>
this.importPanel(
spec.id,
() => import('@/components/CustomWidgetPanel'),
'CustomWidgetPanel',
(CustomWidgetPanel) => new CustomWidgetPanel(capturedSpec),
),
);
}
for (const spec of loadMcpPanels()) {
if (!this.ctx.panelSettings[spec.id]) {
this.ctx.panelSettings[spec.id] = { name: spec.title, enabled: true, priority: 3 };
}
const capturedSpec = spec;
this.lazyPanel(spec.id, () =>
this.importPanel(
spec.id,
() => import('@/components/McpDataPanel'),
'McpDataPanel',
(McpDataPanel) => new McpDataPanel(capturedSpec),
),
);
}
const variantOrder = (VARIANT_DEFAULTS[SITE_VARIANT] ?? VARIANT_DEFAULTS['full'] ?? []).filter(k => k !== 'map');
const activePanelSet = new Set(Object.keys(this.ctx.panelSettings));
const crossVariantKeys = Object.keys(this.ctx.panelSettings).filter(k => !variantOrder.includes(k) && k !== 'map');
const defaultOrder = [...variantOrder.filter(k => activePanelSet.has(k)), ...crossVariantKeys];
const activePanelKeys = Object.keys(this.ctx.panelSettings).filter(k => k !== 'map');
const bottomSet = this.getSavedBottomSet();
const savedOrder = this.getSavedPanelOrder();
this.bottomSetMemory = bottomSet;
const effectiveUltraWide = this.getEffectiveUltraWide();
this.wasUltraWide = effectiveUltraWide;
const hasSavedOrder = savedOrder.length > 0;
let allOrder: string[];
if (hasSavedOrder) {
const valid = savedOrder.filter(k => activePanelKeys.includes(k));
const missing = activePanelKeys.filter(k => !valid.includes(k));
missing.forEach(k => {
if (k === 'monitors') return;
const defaultIdx = defaultOrder.indexOf(k);
if (defaultIdx === -1) { valid.push(k); return; }
let inserted = false;
for (let i = defaultIdx + 1; i < defaultOrder.length; i++) {
const afterIdx = valid.indexOf(defaultOrder[i]!);
if (afterIdx !== -1) { valid.splice(afterIdx, 0, k); inserted = true; break; }
}
if (!inserted) valid.push(k);
});
const monitorsIdx = valid.indexOf('monitors');
if (monitorsIdx !== -1) valid.splice(monitorsIdx, 1);
if (SITE_VARIANT !== 'happy') valid.push('monitors');
allOrder = valid;
} else {
allOrder = [...defaultOrder];
if (SITE_VARIANT !== 'happy') {
const liveNewsIdx = allOrder.indexOf('live-news');
if (liveNewsIdx > 0) {
allOrder.splice(liveNewsIdx, 1);
allOrder.unshift('live-news');
}
const webcamsIdx = allOrder.indexOf('live-webcams');
if (webcamsIdx !== -1 && webcamsIdx !== allOrder.indexOf('live-news') + 1) {
allOrder.splice(webcamsIdx, 1);
const afterNews = allOrder.indexOf('live-news') + 1;
allOrder.splice(afterNews, 0, 'live-webcams');
}
}
if (this.ctx.isDesktopApp) {
const runtimeIdx = allOrder.indexOf('runtime-config');
if (runtimeIdx > 1) {
allOrder.splice(runtimeIdx, 1);
allOrder.splice(1, 0, 'runtime-config');
} else if (runtimeIdx === -1) {
allOrder.splice(1, 0, 'runtime-config');
}
}
}
this.resolvedPanelOrder = allOrder;
const sidebarOrder = effectiveUltraWide
? allOrder.filter(k => !this.bottomSetMemory.has(k))
: allOrder;
const bottomOrder = effectiveUltraWide
? allOrder.filter(k => this.bottomSetMemory.has(k))
: [];
sidebarOrder.forEach((key: string) => {
this.insertInitialPanelByKey(panelsGrid, key);
});
// "+" Add Panel block at the end of the grid
const addPanelBlock = document.createElement('button');
addPanelBlock.className = 'add-panel-block';
addPanelBlock.dataset.clsMover = 'add-panel';
addPanelBlock.setAttribute('aria-label', t('components.panel.addPanel'));
const addIcon = document.createElement('span');
addIcon.className = 'add-panel-block-icon';
addIcon.textContent = '+';
const addLabel = document.createElement('span');
addLabel.className = 'add-panel-block-label';
addLabel.textContent = t('components.panel.addPanel');
addPanelBlock.appendChild(addIcon);
addPanelBlock.appendChild(addLabel);
addPanelBlock.addEventListener('click', () => {
this.ctx.unifiedSettings?.open('panels');
});
panelsGrid.appendChild(addPanelBlock);
// Always create Pro and MCP add-panel blocks — show/hide reactively via auth state.
const proBlock = document.createElement('button');
proBlock.className = 'add-panel-block ai-widget-block ai-widget-block-pro';
proBlock.dataset.clsMover = 'pro-widget-cta';
proBlock.setAttribute('aria-label', t('widgets.createInteractive'));
const proIcon = document.createElement('span');
proIcon.className = 'add-panel-block-icon';
proIcon.textContent = '\u26a1';
const proLabel = document.createElement('span');
proLabel.className = 'add-panel-block-label';
proLabel.textContent = t('widgets.createInteractive');
const proBadge = document.createElement('span');
proBadge.className = 'widget-pro-badge';
proBadge.textContent = t('widgets.proBadge');
proBlock.appendChild(proIcon);
proBlock.appendChild(proLabel);
proBlock.appendChild(proBadge);
proBlock.addEventListener('click', () => {
void import('@/components/WidgetChatModal').then((m) => m.openWidgetChatModal({
mode: 'create',
tier: 'pro',
onComplete: (spec) => {
void this.addCustomWidget(spec).catch((error) => {
console.error('[widget-builder] failed to add widget', error);
showToast(t('widgets.saveFailed'));
});
},
})).catch((err) => console.error('[widget-chat] failed to lazy-load WidgetChatModal', err));
});
panelsGrid.appendChild(proBlock);
const mcpBlock = document.createElement('button');
mcpBlock.className = 'add-panel-block mcp-panel-block';
mcpBlock.dataset.clsMover = 'mcp-cta';
mcpBlock.setAttribute('aria-label', t('mcp.connectPanel'));
const mcpIcon = document.createElement('span');
mcpIcon.className = 'add-panel-block-icon';
mcpIcon.textContent = '\u26a1';
const mcpLabel = document.createElement('span');
mcpLabel.className = 'add-panel-block-label';
mcpLabel.textContent = t('mcp.connectPanel');
const mcpBadge = document.createElement('span');
mcpBadge.className = 'widget-pro-badge';
mcpBadge.textContent = t('widgets.proBadge');
mcpBlock.appendChild(mcpIcon);
mcpBlock.appendChild(mcpLabel);
mcpBlock.appendChild(mcpBadge);
mcpBlock.addEventListener('click', () => {
void import('@/components/McpConnectModal').then((m) => m.openMcpConnectModal({
onComplete: (spec) => this.addMcpPanel(spec),
})).catch((err) => console.error('[mcp-connect] failed to lazy-load McpConnectModal', err));
});
panelsGrid.appendChild(mcpBlock);
// Reactively show/hide Pro-only UI blocks ("Create Interactive Widget" +
// "Connect MCP" CTAs) based on premium access.
//
// hasPremiumAccess() folds in isEntitled() (Convex Dodo entitlement) per
// panel-gating.ts:11-27 — so a paying subscriber whose Clerk publicMetadata
// is never written by the webhook still resolves to true once the Convex
// snapshot lands. BUT: the snapshot lands AFTER auth state stabilises, and
// Convex updates do NOT necessarily fire a fresh subscribeAuthState event.
// Subscribing only to subscribeAuthState meant these CTAs stayed
// display:none for the whole page lifetime for paying users — exactly the
// shape PR #3505 chased on the server side, repeated here on the client.
//
// Subscribe to BOTH auth state and entitlement changes; whichever fires
// last (typically entitlements) is the one that flips the CTAs visible.
// Mirrors the same dual-subscription wiring used by updatePanelGating
// for existing panels (see lines ~259 and ~282).
const proBlocks = [proBlock, mcpBlock];
const applyProBlockGating = (isPro: boolean) => {
for (const block of proBlocks) {
block.style.display = isPro ? '' : 'none';
}
};
const reapply = () => applyProBlockGating(hasPremiumAccess(getAuthState()));
reapply();
this.proBlockUnsubscribe = subscribeAuthState(reapply);
this.proBlockEntitlementUnsubscribe = onEntitlementChange(reapply);
const bottomGrid = document.getElementById('mapBottomGrid');
if (bottomGrid) {
bottomOrder.forEach(key => {
this.insertInitialPanelByKey(bottomGrid, key);
});
}
removeResponsiveZoneListener(this.responsiveZoneListener);
this.responsiveZoneListener = addResponsiveZoneListener(
window,
this.getUltraWideMinWidth(),
() => this.ensureCorrectZones(),
);
// Map's direct-deref block (kept here, after panel registration, by U3 #4459):
// awaited only after registration so the chunk fetch overlaps it. Everything above
// that touches the map does so via `?.` at mount/click time, so the map can be
// constructed here without breaking registration. The responsive zone listener is
// wired above (before this await) so a destroy() during the fetch tears it down;
// the isDestroyed guard below also stops a destroyed manager from building a map.
const { MapContainer } = await mapModulePromise;
if (this.ctx.isDestroyed) return;
markLcpDebug('wm:map:container-construct');
this.ctx.map = new MapContainer(mapContainer, {
zoom: this.ctx.isMobile ? 2.5 : 1.0,
pan: { x: 0, y: 0 },
view: this.ctx.isMobile ? this.ctx.resolvedLocation : 'global',
layers: this.ctx.mapLayers,
timeRange: '7d',
}, preferGlobe);
const eagerSupplyChainPanel = this.ctx.panels['supply-chain'] as SupplyChainPanel | undefined;
if (eagerSupplyChainPanel) {
this.ctx.map.setSupplyChainPanel(eagerSupplyChainPanel);
}
if (this.ctx.mapLayers.resilienceScore && !this.ctx.map.isDeckGLActive?.()) {
this.ctx.mapLayers = { ...this.ctx.mapLayers, resilienceScore: false };
saveToStorage(STORAGE_KEYS.mapLayers, this.ctx.mapLayers);
}
this.ctx.map.initEscalationGetters();
this.ctx.currentTimeRange = this.ctx.map.getTimeRange();
markLcpDebug('wm:map:container-ready');
this.ctx.map.onTimeRangeChanged((range) => {
this.ctx.currentTimeRange = range;
this.applyTimeRangeFilterDebounced();
});
this.applyPanelSettings();
this.applyInitialUrlState();
// Observe each panel for viewport entry. As soon as a panel scrolls
// within ~200px of the viewport it fires loadAllData() once
// (debounced via rAF to coalesce above-the-fold panels that all
// intersect on the first tick), so below-fold panels get their
// viewport-gated data without waiting on the scroll listener.
// Bootstrap already ran loadAllData() with forceAll=false, so this
// is purely the lazy-scroll trigger. (#3990)
this.observePanelsForViewport();
if (import.meta.env.DEV) {
const configured = new Set(Object.keys(ALL_PANELS).filter(k => k !== 'map'));
const created = new Set(Object.keys(this.ctx.panels));
const extra = [...created].filter(k => !configured.has(k) && k !== 'runtime-config' && !k.startsWith('cw-') && !k.startsWith('mcp-'));
if (extra.length) console.warn('[PanelLayoutManager] Panels created but not in ALL_PANELS:', extra);
}
}
private cancelScheduledLoadAllIdle(): void {
if (this.scheduledLoadAllIdle === null || typeof window === 'undefined') return;
const cancelIdle = window.cancelIdleCallback as ((handle: number) => void) | undefined;
cancelIdle?.(this.scheduledLoadAllIdle);
this.scheduledLoadAllIdle = null;
}
private scheduleLoadAllData(phase: HydrationSchedulePhase = 'near'): void {
if (typeof window === 'undefined') {
void this.callbacks.loadAllData();
return;
}
const mark = (label: string) => {
if (typeof performance !== 'undefined' && typeof performance.mark === 'function') {
performance.mark(label);
}
};
if (phase === 'near') {
if (this.scheduledLoadAllIdle !== null || this.scheduledLoadAllRaf !== null) return;
const idle = window.requestIdleCallback as ((cb: IdleRequestCallback, opts?: IdleRequestOptions) => number) | undefined;
if (idle) {
this.scheduledLoadAllIdle = idle(() => {
this.scheduledLoadAllIdle = null;
mark('wm:hydration:near-trigger');
void this.callbacks.loadAllData();
}, { timeout: 300 });
return;
}
} else {
this.cancelScheduledLoadAllIdle();
if (this.scheduledLoadAllRaf !== null) return;
}
if (this.scheduledLoadAllRaf !== null) {
return;
}
this.scheduledLoadAllRaf = window.requestAnimationFrame(() => {
this.scheduledLoadAllRaf = null;
mark(`wm:hydration:${phase}-trigger`);
void this.callbacks.loadAllData();
});
}
private observePanelsForViewport(): void {
for (const panel of Object.values(this.ctx.panels)) {
this.observePanelForHydration(panel);
}
}
private applyTimeRangeFilterToNewsPanels(): void {
Object.entries(this.ctx.newsByCategory).forEach(([category, items]) => {
const panel = this.ctx.newsPanels[category];
if (!panel) return;
const filtered = this.filterItemsByTimeRange(items);
if (filtered.length === 0 && items.length > 0) {
panel.renderFilteredEmpty(`No items in ${this.getTimeRangeLabel()}`);
return;
}
panel.renderNews(filtered);
});
}
private filterItemsByTimeRange(items: import('@/types').NewsItem[], range: import('@/components/MapContainer').TimeRange = this.ctx.currentTimeRange): import('@/types').NewsItem[] {
if (range === 'all') return items;
const ranges: Record<string, number> = {
'1h': 60 * 60 * 1000, '6h': 6 * 60 * 60 * 1000,
'24h': 24 * 60 * 60 * 1000, '48h': 48 * 60 * 60 * 1000,
'7d': 7 * 24 * 60 * 60 * 1000, 'all': Infinity,
};
const cutoff = Date.now() - (ranges[range] ?? Infinity);
return items.filter((item) => {
// Recency gate routed through effectivePubDateMs so pubDateMissing
// items fail the cutoff check rather than falsely claiming freshness.
// Items with NaN/Infinity/Invalid Date pubDates are ALSO excluded
// (the helper sanitizes them to 0); previous behavior fell through
// to `true` on non-finite, which included corrupt-stamp items in
// narrow time windows. Treating untrustworthy timestamps uniformly
// is the intentional shift — see data-loader.filterItemsByTimeRange.
return effectivePubDateMs(item) >= cutoff;
});
}
private getTimeRangeLabel(): string {
const labels: Record<string, string> = {
'1h': 'the last hour', '6h': 'the last 6 hours',
'24h': 'the last 24 hours', '48h': 'the last 48 hours',
'7d': 'the last 7 days', 'all': 'all time',
};
return labels[this.ctx.currentTimeRange] ?? 'the last 7 days';
}
private applyInitialUrlState(): void {
if (!this.ctx.initialUrlState || !this.ctx.map) return;
const { view, zoom, lat, lon, timeRange, layers } = this.ctx.initialUrlState;
if (view) {
// Pass URL zoom so the preset's default zoom doesn't overwrite it.
this.ctx.map.setView(view, zoom);
}
if (timeRange) {
this.ctx.map.setTimeRange(timeRange);
}
if (layers) {
let normalized = normalizeExclusiveChoropleths(layers, this.ctx.mapLayers);
if (normalized.resilienceScore && !this.ctx.map.isDeckGLActive?.()) {
normalized = { ...normalized, resilienceScore: false };
}
this.ctx.mapLayers = normalized;
saveToStorage(STORAGE_KEYS.mapLayers, normalized);
this.ctx.map.setLayers(normalized);
}
if (lat !== undefined && lon !== undefined) {
// Always honour URL lat/lon regardless of zoom level.
this.ctx.map.setCenter(lat, lon, zoom);
} else if (!view && zoom !== undefined) {
// zoom-only without a view preset: apply directly.
this.ctx.map.setZoom(zoom);
}
const regionSelect = document.getElementById('regionSelect') as HTMLSelectElement;
const currentView = this.ctx.map.getState().view;
if (regionSelect && currentView) {
regionSelect.value = currentView;
}
}
private addDynamicPanel(key: string, panel: Panel): void {
this.ctx.panels[key] = panel;
const el = panel.getElement();
this.makeDraggable(el, key);
const grid = document.getElementById('panelsGrid');
if (grid) {
const addBlock = grid.querySelector('.add-panel-block');
if (addBlock) {
grid.insertBefore(el, addBlock);
} else {
grid.appendChild(el);
}
this.mobilePanelNav?.applyToNewPanel(el);
panel.notifyConnected();
this.afterPanelMounted(key, panel);
}
this.savePanelOrder();
this.applyPanelSettings();
}
async addCustomWidget(spec: CustomWidgetSpec): Promise<void> {
await saveWidget(spec);
this.ctx.panelSettings[spec.id] = { name: spec.title, enabled: true, priority: 3 };
saveToStorage(STORAGE_KEYS.panels, this.ctx.panelSettings);
void this.importPanel(
spec.id,
() => import('@/components/CustomWidgetPanel'),
'CustomWidgetPanel',
(CustomWidgetPanel) => new CustomWidgetPanel(spec),
).then((panel) => {
if (panel) this.addDynamicPanel(spec.id, panel);
});
}
addMcpPanel(spec: McpPanelSpec): void {
saveMcpPanel(spec);
this.ctx.panelSettings[spec.id] = { name: spec.title, enabled: true, priority: 3 };
saveToStorage(STORAGE_KEYS.panels, this.ctx.panelSettings);
void this.importPanel(
spec.id,
() => import('@/components/McpDataPanel'),
'McpDataPanel',
(McpDataPanel) => new McpDataPanel(spec),
).then((panel) => {
if (panel) this.addDynamicPanel(spec.id, panel);
});
}
private getSavedPanelOrder(): string[] {
try {
const saved = localStorage.getItem(this.ctx.PANEL_ORDER_KEY);
if (!saved) return [];
const parsed = JSON.parse(saved);
if (!Array.isArray(parsed)) return [];
return parsed.filter((v: unknown) => typeof v === 'string') as string[];
} catch {
return [];
}
}
public applySavedPanelOrder(panelOrder?: string[]): void {
const grid = document.getElementById('panelsGrid');
const bottomGrid = document.getElementById('mapBottomGrid');
if (!grid || !bottomGrid) return;
const activePanelKeys = Object.keys(this.ctx.panelSettings).filter(k => k !== 'map');
const savedOrder = (panelOrder ?? this.getSavedPanelOrder()).filter(k => activePanelKeys.includes(k));
if (savedOrder.length === 0) return;
const seen = new Set<string>();
const allOrder: string[] = [];
const appendUnique = (key: string) => {
if (seen.has(key) || !activePanelKeys.includes(key)) return;
seen.add(key);
allOrder.push(key);
};
savedOrder.forEach(appendUnique);
this.resolvedPanelOrder.forEach(appendUnique);
activePanelKeys.forEach(appendUnique);
this.bottomSetMemory = panelOrder ? new Set<string>() : this.getSavedBottomSet();
this.resolvedPanelOrder = allOrder;
const effectiveUltraWide = this.getEffectiveUltraWide();
this.wasUltraWide = effectiveUltraWide;
const sidebarOrder = effectiveUltraWide
? allOrder.filter(k => !this.bottomSetMemory.has(k))
: allOrder;
const bottomOrder = effectiveUltraWide
? allOrder.filter(k => this.bottomSetMemory.has(k))
: [];
const firstAddBlock = grid.querySelector('.add-panel-block');
sidebarOrder.forEach((key) => {
const el = this.getPanelElementForOrdering(key);
if (!el) return;
if (firstAddBlock) grid.insertBefore(el, firstAddBlock);
else grid.appendChild(el);
});
bottomOrder.forEach((key) => {
const el = this.getPanelElementForOrdering(key);
if (el) bottomGrid.appendChild(el);
});
}
savePanelOrder(): void {
const grid = document.getElementById('panelsGrid');
const bottomGrid = document.getElementById('mapBottomGrid');
if (!grid || !bottomGrid) return;
const sidebarIds = Array.from(grid.children)
.map((el) => (el as HTMLElement).dataset.panel)
.filter((key): key is string => !!key);
const bottomIds = Array.from(bottomGrid.children)
.map((el) => (el as HTMLElement).dataset.panel)
.filter((key): key is string => !!key);
const allOrder = this.buildUnifiedOrder(sidebarIds, bottomIds);
this.resolvedPanelOrder = allOrder;
saveToStorage(this.ctx.PANEL_ORDER_KEY, allOrder);
saveToStorage(this.ctx.PANEL_ORDER_KEY + '-bottom-set', Array.from(this.bottomSetMemory));
}
private buildUnifiedOrder(sidebarIds: string[], bottomIds: string[]): string[] {
const presentIds = [...sidebarIds, ...bottomIds];
const uniqueIds: string[] = [];
const seen = new Set<string>();
presentIds.forEach((id) => {
if (seen.has(id)) return;
seen.add(id);
uniqueIds.push(id);
});
const previousOrder = new Map<string, number>();
this.resolvedPanelOrder.forEach((id, index) => {
if (seen.has(id) && !previousOrder.has(id)) {
previousOrder.set(id, index);
}
});
uniqueIds.forEach((id, index) => {
if (!previousOrder.has(id)) {
previousOrder.set(id, this.resolvedPanelOrder.length + index);
}
});
const edges = new Map<string, Set<string>>();
const indegree = new Map<string, number>();
uniqueIds.forEach((id) => {
edges.set(id, new Set());
indegree.set(id, 0);
});
const addConstraints = (ids: string[]) => {
for (let i = 1; i < ids.length; i++) {
const prev = ids[i - 1]!;
const next = ids[i]!;
if (prev === next || !seen.has(prev) || !seen.has(next)) continue;
const nextIds = edges.get(prev);
if (!nextIds || nextIds.has(next)) continue;
nextIds.add(next);
indegree.set(next, (indegree.get(next) ?? 0) + 1);
}
};
addConstraints(sidebarIds);
addConstraints(bottomIds);
const compareIds = (a: string, b: string) =>
(previousOrder.get(a) ?? Number.MAX_SAFE_INTEGER) - (previousOrder.get(b) ?? Number.MAX_SAFE_INTEGER);
const available = uniqueIds
.filter((id) => (indegree.get(id) ?? 0) === 0)
.sort(compareIds);
const merged: string[] = [];
while (available.length > 0) {
const current = available.shift()!;
merged.push(current);
edges.get(current)?.forEach((next) => {
const nextIndegree = (indegree.get(next) ?? 0) - 1;
indegree.set(next, nextIndegree);
if (nextIndegree === 0) {
available.push(next);
}
});
available.sort(compareIds);
}
return merged.length === uniqueIds.length
? merged
: uniqueIds.sort(compareIds);
}
private getSavedBottomSet(): Set<string> {
try {
const saved = localStorage.getItem(this.ctx.PANEL_ORDER_KEY + '-bottom-set');
if (saved) {
const parsed = JSON.parse(saved);
if (Array.isArray(parsed)) {
return new Set(parsed.filter((v: unknown) => typeof v === 'string'));
}
}
} catch { /* ignore */ }
try {
const legacy = localStorage.getItem(this.ctx.PANEL_ORDER_KEY + '-bottom');
if (legacy) {
const parsed = JSON.parse(legacy);
if (Array.isArray(parsed)) {
const bottomIds = parsed.filter((v: unknown) => typeof v === 'string') as string[];
const set = new Set(bottomIds);
// Merge old sidebar + bottom into unified PANEL_ORDER_KEY
const sidebarOrder = this.getSavedPanelOrder();
const seen = new Set(sidebarOrder);
const unified = [...sidebarOrder];
for (const id of bottomIds) {
if (!seen.has(id)) { unified.push(id); seen.add(id); }
}
localStorage.setItem(this.ctx.PANEL_ORDER_KEY, JSON.stringify(unified));
localStorage.setItem(this.ctx.PANEL_ORDER_KEY + '-bottom-set', JSON.stringify([...set]));
localStorage.removeItem(this.ctx.PANEL_ORDER_KEY + '-bottom');
return set;
}
}
} catch { /* ignore */ }
return new Set();
}
private getUltraWideMinWidth(): number {
return this.ctx.isDesktopApp ? 900 : 1600;
}
private getEffectiveUltraWide(): boolean {
const mapSection = document.getElementById('mapSection');
const mapEnabled = !mapSection?.classList.contains('hidden');
return window.innerWidth >= this.getUltraWideMinWidth() && mapEnabled;
}
private insertByOrder(grid: HTMLElement, el: HTMLElement, key: string): void {
const idx = this.resolvedPanelOrder.indexOf(key);
if (idx === -1) { grid.appendChild(el); return; }
for (let i = idx + 1; i < this.resolvedPanelOrder.length; i++) {
const nextKey = this.resolvedPanelOrder[i]!;
const nextEl = grid.querySelector(`[data-panel="${CSS.escape(nextKey)}"]`);
// `parentNode === grid` guard: querySelector returns nodes that match
// ANY descendant, but a concurrent DOM mutation (browser extension,
// overlapping resize event mid-iteration) can move/remove nextEl
// between this read and the insertBefore call below — at which point
// insertBefore throws `NotFoundError: The node before which the new
// node is to be inserted is not a child of this node.`
// (WORLDMONITOR-Q6). If the reference moved, fall through to the
// appendChild path so the panel still lands in the grid.
if (nextEl && nextEl.parentNode === grid) { grid.insertBefore(el, nextEl); return; }
}
grid.appendChild(el);
}
private wasUltraWide = false;
public ensureCorrectZones(): void {
const effectiveUltraWide = this.getEffectiveUltraWide();
if (effectiveUltraWide === this.wasUltraWide) return;
this.wasUltraWide = effectiveUltraWide;
const grid = document.getElementById('panelsGrid');
const bottomGrid = document.getElementById('mapBottomGrid');
if (!grid || !bottomGrid) return;
if (!effectiveUltraWide) {
const panelsInBottom = Array.from(bottomGrid.querySelectorAll('.panel')) as HTMLElement[];
panelsInBottom.forEach(panelEl => {
const id = panelEl.dataset.panel;
if (!id) return;
this.insertByOrder(grid, panelEl, id);
});
} else {
this.bottomSetMemory.forEach(id => {
const el = grid.querySelector(`[data-panel="${CSS.escape(id)}"]`);
if (el) {
this.insertByOrder(bottomGrid, el as HTMLElement, id);
}
});
}
}
private attachRelatedAssetHandlers(panel: NewsPanel): void {
panel.setRelatedAssetHandlers({
onRelatedAssetClick: (asset) => this.handleRelatedAssetClick(asset),
onRelatedAssetsFocus: (assets) => this.ctx.map?.highlightAssets(assets),
onRelatedAssetsClear: () => this.ctx.map?.highlightAssets(null),
});
}
private handleRelatedAssetClick(asset: RelatedAsset): void {
if (!this.ctx.map) return;
switch (asset.type) {
case 'pipeline':
this.ctx.map.enableLayer('pipelines');
this.ctx.mapLayers.pipelines = true;
saveToStorage(STORAGE_KEYS.mapLayers, this.ctx.mapLayers);
this.ctx.map.triggerPipelineClick(asset.id);
break;
case 'cable':
this.ctx.map.enableLayer('cables');
this.ctx.mapLayers.cables = true;
saveToStorage(STORAGE_KEYS.mapLayers, this.ctx.mapLayers);
this.ctx.map.triggerCableClick(asset.id);
break;
case 'datacenter':
this.ctx.map.enableLayer('datacenters');
this.ctx.mapLayers.datacenters = true;
saveToStorage(STORAGE_KEYS.mapLayers, this.ctx.mapLayers);
this.ctx.map.triggerDatacenterClick(asset.id);
break;
case 'base':
this.ctx.map.enableLayer('bases');
this.ctx.mapLayers.bases = true;
saveToStorage(STORAGE_KEYS.mapLayers, this.ctx.mapLayers);
this.ctx.map.triggerBaseClick(asset.id);
break;
case 'nuclear':
this.ctx.map.enableLayer('nuclear');
this.ctx.mapLayers.nuclear = true;
saveToStorage(STORAGE_KEYS.mapLayers, this.ctx.mapLayers);
this.ctx.map.triggerNuclearClick(asset.id);
break;
}
}
private importPanel<M extends object, K extends keyof M & string>(
key: string,
importer: () => Promise<M>,
exportName: K,
createPanel: (PanelClass: PanelExport<M, K>, module: M) => ImportedPanel<M, K> | null,
): Promise<ImportedPanel<M, K> | null> {
return importer().then((module) => {
const PanelClass = module[exportName];
if (typeof PanelClass !== 'function') {
console.error(`[panel] ${exportName} export unavailable for "${key}"`);
return null;
}
return createPanel(PanelClass as PanelExport<M, K>, module);
}, (err) => {
console.error(`[panel] failed to lazy-load "${key}"`, err);
return null;
});
}
private lazyImportedPanel<M extends object, K extends keyof M & string>(
key: string,
importer: () => Promise<M>,
exportName: K,
createPanel: (PanelClass: PanelExport<M, K>, module: M) => ImportedPanel<M, K> | null,
setup?: (panel: ImportedPanel<M, K>) => void,
lockedFeatures?: string[],
): boolean {
return this.lazyPanel(
key,
() => this.importPanel(key, importer, exportName, createPanel),
setup,
lockedFeatures,
);
}
private lazyDefaultPanel<M extends object, K extends keyof M & string>(
key: string,
importer: () => Promise<M>,
exportName: K,
setup?: (panel: ImportedPanel<M, K>) => void,
lockedFeatures?: string[],
): boolean {
return this.lazyImportedPanel(key, importer, exportName, (PanelClass) => new PanelClass() as ImportedPanel<M, K>, setup, lockedFeatures);
}
/**
* Register a lazily-loaded panel under `key`.
*
* Returns whether THIS call claimed the key: `false` means the key is unknown
* to `panelSettings`, or some earlier registration (often a non-news data
* panel) already owns it and this registration is a no-op. Callers that index
* a panel by something other than its panel key rely on that signal — see
* `createNewsPanelWithLabel`.
*/
private lazyPanel<T extends Panel>(
key: string,
loader: () => Promise<T | null>,
setup?: (panel: T) => void,
lockedFeatures?: string[],
): boolean {
if (!this.shouldCreatePanel(key)) return false;
if (this.ctx.panels[key] || this.lazyPanelRegistrations.has(key)) return false;
this.lazyPanelRegistrations.set(key, {
loading: null,
load: async () => {
if (this.ctx.isDestroyed) return null;
const panel = await loader();
if (!panel) return null;
const basePanel = panel;
if (this.ctx.isDestroyed) {
basePanel.destroy?.();
return null;
}
this.ctx.panels[key] = basePanel;
if (lockedFeatures) {
basePanel.showLocked(lockedFeatures);
} else {
// Re-apply auth gating for panels that load after the initial auth state fire.
this.updatePanelGating(getAuthState());
await replayPendingCalls(key, panel);
if (this.ctx.isDestroyed) {
basePanel.destroy?.();
return null;
}
if (setup) setup(panel);
}
return basePanel;
},
});
return true;
}
private async loadRegisteredPanel(key: string): Promise<Panel | null> {
const existing = this.ctx.panels[key];
if (existing) return existing;
const registration = this.lazyPanelRegistrations.get(key);
if (!registration) return null;
if (!registration.loading) {
registration.loading = registration.load()
.then((panel) => {
if (panel) {
this.lazyPanelRegistrations.delete(key);
} else {
registration.loading = null;
}
return panel;
})
.catch((err) => {
registration.loading = null;
console.error(`[panel] failed to lazy-load "${key}"`, err);
return null;
});
}
return registration.loading;
}
private makeDraggable(el: HTMLElement, key: string): void {
type DropPosition = {
grid: HTMLElement;
panel: HTMLElement | null;
insertBefore: boolean;
};
el.dataset.panel = key;
let isDragging = false;
let dragStarted = false;
let startX = 0;
let startY = 0;
let rafId = 0;
let ghostEl: HTMLElement | null = null;
let dropIndicator: HTMLElement | null = null;
let originalParent: HTMLElement | null = null;
let dragOffsetX = 0;
let dragOffsetY = 0;
let originalIndex = -1;
let originalRect: DOMRect | null = null;
let onKeyDown: ((e: KeyboardEvent) => void) | null = null;
const DRAG_THRESHOLD = 8;
const onMouseDown = (e: MouseEvent) => {
if (e.button !== 0) return;
const target = e.target as HTMLElement;
if (el.dataset.resizing === 'true') return;
if (
target.classList?.contains('panel-resize-handle') ||
target.closest?.('.panel-resize-handle') ||
target.classList?.contains('panel-col-resize-handle') ||
target.closest?.('.panel-col-resize-handle')
) return;
if (target.closest('button, a, input, select, textarea')) return;
isDragging = true;
dragStarted = false;
startX = e.clientX;
startY = e.clientY;
// Calculate offset within the element for smooth dragging
const rect = el.getBoundingClientRect();
dragOffsetX = e.clientX - rect.left;
dragOffsetY = e.clientY - rect.top;
e.preventDefault();
};
const createGhostElement = (): HTMLElement => {
const ghost = el.cloneNode(true) as HTMLElement;
// Strip iframes to prevent duplicate network requests and postMessage handlers
ghost.querySelectorAll('iframe').forEach(ifr => ifr.remove());
ghost.classList.add('panel-drag-ghost');
ghost.style.position = 'fixed';
ghost.style.pointerEvents = 'none';
ghost.style.zIndex = '10000';
ghost.style.opacity = '0.8';
ghost.style.boxShadow = '0 10px 40px rgba(0, 0, 0, 0.3)';
ghost.style.transform = 'scale(1.02)';
// Copy dimensions from original
const rect = el.getBoundingClientRect();
ghost.style.width = rect.width + 'px';
ghost.style.height = rect.height + 'px';
document.body.appendChild(ghost);
return ghost;
};
const createDropIndicator = (): HTMLElement => {
const indicator = document.createElement('div');
indicator.classList.add('panel-drop-indicator');
// overlay on body so it doesn't shift grid children
indicator.style.position = 'fixed';
indicator.style.pointerEvents = 'none';
indicator.style.zIndex = '9999';
document.body.appendChild(indicator);
return indicator;
};
const isWithinOriginalRect = (clientX: number, clientY: number) =>
!!originalRect &&
clientX >= originalRect.left &&
clientX <= originalRect.right &&
clientY >= originalRect.top &&
clientY <= originalRect.bottom;
const getAppendReference = (grid: HTMLElement): ChildNode | null => {
if (grid.id !== 'panelsGrid') return null;
return grid.querySelector('.add-panel-block');
};
const canAppendToGrid = (grid: HTMLElement, clientY: number): boolean => {
if (grid !== originalParent) return true;
const panelBottoms = Array.from(grid.children)
.filter((child): child is HTMLElement =>
child instanceof HTMLElement &&
child !== el &&
child.classList.contains('panel') &&
!child.classList.contains('hidden'),
)
.map((panel) => panel.getBoundingClientRect().bottom);
if (panelBottoms.length === 0) return false;
return clientY > Math.max(...panelBottoms);
};
const commitDrop = (dropPos: DropPosition, clientX: number, clientY: number): boolean => {
const { grid, panel, insertBefore } = dropPos;
if (panel) {
if (panel === el || panel.parentElement !== grid) return false;
if (insertBefore) {
if (el.nextSibling === panel) return false;
} else {
if (panel.nextSibling === el) return false;
}
const referenceNode = insertBefore ? panel : panel.nextSibling;
if (referenceNode && referenceNode.parentNode !== grid) return false;
grid.insertBefore(el, referenceNode);
return true;
}
if (grid === originalParent && isWithinOriginalRect(clientX, clientY)) {
return false;
}
if (!canAppendToGrid(grid, clientY)) return false;
const referenceNode = getAppendReference(grid);
if (referenceNode && referenceNode.parentNode !== grid) return false;
if (referenceNode === el) return false;
if (el.parentElement === grid && el.nextSibling === referenceNode) return false;
grid.insertBefore(el, referenceNode);
return true;
};
const updateGhostPosition = (clientX: number, clientY: number) => {
if (!ghostEl) return;
ghostEl.style.left = (clientX - dragOffsetX) + 'px';
ghostEl.style.top = (clientY - dragOffsetY) + 'px';
};
const findDropPosition = (clientX: number, clientY: number): DropPosition | null => {
const grid = document.getElementById('panelsGrid');
const bottomGrid = document.getElementById('mapBottomGrid');
if (!grid || !bottomGrid) return null;
// Temporarily hide the ghost to get accurate hit detection
const prevPointerEvents = ghostEl?.style.pointerEvents;
if (ghostEl) ghostEl.style.pointerEvents = 'none';
const target = document.elementFromPoint(clientX, clientY);
if (ghostEl && typeof prevPointerEvents === 'string') ghostEl.style.pointerEvents = prevPointerEvents;
if (!target) return null;
const targetGrid = (target.closest('.panels-grid') || target.closest('.map-bottom-grid')) as HTMLElement | null;
const targetPanel = target.closest('.panel') as HTMLElement | null;
if (!targetGrid && !targetPanel) return null;
const currentTargetGrid = targetGrid || (targetPanel ? targetPanel.parentElement as HTMLElement : null);
if (!currentTargetGrid || (currentTargetGrid !== grid && currentTargetGrid !== bottomGrid)) return null;
const panel = targetPanel && targetPanel !== el ? targetPanel : null;
let insertBefore = false;
if (panel) {
const panelRect = panel.getBoundingClientRect();
insertBefore = clientY < panelRect.top + panelRect.height / 2;
}
return {
grid: currentTargetGrid,
panel,
insertBefore,
};
};
let lastTargetPanel: HTMLElement | null = null;
const updateDropIndicator = (clientX: number, clientY: number) => {
const dropPos = findDropPosition(clientX, clientY);
if (!dropPos) {
if (dropIndicator) dropIndicator.style.opacity = '0';
if (lastTargetPanel) {
lastTargetPanel.classList.remove('panel-drop-target');
lastTargetPanel = null;
}
return;
}
const { grid, panel, insertBefore } = dropPos;
if (!dropIndicator) return;
const noOpEmptyDrop = !panel &&
((grid === originalParent && isWithinOriginalRect(clientX, clientY)) || !canAppendToGrid(grid, clientY));
if (noOpEmptyDrop) {
dropIndicator.style.opacity = '0';
if (lastTargetPanel) {
lastTargetPanel.classList.remove('panel-drop-target');
lastTargetPanel = null;
}
return;
}
// highlight hovered panel
if (panel !== lastTargetPanel) {
if (lastTargetPanel) lastTargetPanel.classList.remove('panel-drop-target');
if (panel) panel.classList.add('panel-drop-target');
lastTargetPanel = panel;
}
// compute absolute coordinates for the indicator
let top = 0;
let left = 0;
let width = 0;
if (panel) {
const panelRect = panel.getBoundingClientRect();
width = panelRect.width;
left = panelRect.left;
top = insertBefore ? panelRect.top - 4 : panelRect.bottom;
} else {
// dropping into empty grid: position at grid bottom
const gridRect = grid.getBoundingClientRect();
width = gridRect.width;
left = gridRect.left;
top = gridRect.bottom;
}
dropIndicator.style.width = width + 'px';
dropIndicator.style.left = left + 'px';
dropIndicator.style.top = top + 'px';
dropIndicator.style.opacity = '0.8';
};
let lastX = 0;
let lastY = 0;
const onMouseMove = (e: MouseEvent) => {
if (!isDragging) return;
if (!dragStarted) {
const dx = Math.abs(e.clientX - startX);
const dy = Math.abs(e.clientY - startY);
if (dx < DRAG_THRESHOLD && dy < DRAG_THRESHOLD) return;
dragStarted = true;
// Initialize drag visualization
document.body.classList.add('panel-drag-active');
el.classList.add('dragging-source');
originalParent = el.parentElement as HTMLElement;
originalIndex = Array.from(originalParent.children).indexOf(el);
originalRect = el.getBoundingClientRect();
ghostEl = createGhostElement();
dropIndicator = createDropIndicator();
onKeyDown = (e: KeyboardEvent) => {
if (e.key === 'Escape') {
// Cancel drag and restore original position
document.body.classList.remove('panel-drag-active');
el.classList.remove('dragging-source');
if (ghostEl) {
ghostEl.style.opacity = '0';
const g = ghostEl;
setTimeout(() => g.remove(), 200);
ghostEl = null;
}
if (dropIndicator) {
dropIndicator.style.opacity = '0';
const d = dropIndicator;
setTimeout(() => d.remove(), 200);
dropIndicator = null;
}
if (lastTargetPanel) {
lastTargetPanel.classList.remove('panel-drop-target');
lastTargetPanel = null;
}
if (originalParent && originalIndex >= 0) {
const children = Array.from(originalParent.children);
const insertBefore = children[originalIndex];
if (insertBefore) {
originalParent.insertBefore(el, insertBefore);
} else {
originalParent.appendChild(el);
}
}
document.removeEventListener('keydown', onKeyDown!, true);
onKeyDown = null;
isDragging = false;
dragStarted = false;
originalRect = null;
if (rafId) { cancelAnimationFrame(rafId); rafId = 0; }
}
};
document.addEventListener('keydown', onKeyDown, true);
}
lastX = e.clientX;
lastY = e.clientY;
const cx = e.clientX;
const cy = e.clientY;
if (rafId) cancelAnimationFrame(rafId);
rafId = requestAnimationFrame(() => {
if (dragStarted) {
updateGhostPosition(cx, cy);
updateDropIndicator(cx, cy);
}
rafId = 0;
});
};
const onMouseUp = () => {
if (!isDragging) return;
isDragging = false;
if (rafId) { cancelAnimationFrame(rafId); rafId = 0; }
if (dragStarted) {
// Find final drop position using most recent cursor coords
const dropPos = findDropPosition(lastX, lastY);
const moved = dropPos ? commitDrop(dropPos, lastX, lastY) : false;
// Clean up drag visualization (panel-drag-active is cleared unconditionally below)
el.classList.remove('dragging-source');
if (ghostEl) {
ghostEl.style.opacity = '0';
const g = ghostEl;
setTimeout(() => g.remove(), 200);
ghostEl = null;
}
if (dropIndicator) {
dropIndicator.style.opacity = '0';
const d = dropIndicator;
setTimeout(() => d.remove(), 200);
dropIndicator = null;
}
if (lastTargetPanel) {
lastTargetPanel.classList.remove('panel-drop-target');
lastTargetPanel = null;
}
if (moved) {
const isInBottom = !!el.closest('.map-bottom-grid');
if (isInBottom) {
this.bottomSetMemory.add(key);
} else {
this.bottomSetMemory.delete(key);
}
this.savePanelOrder();
}
}
dragStarted = false;
document.body.classList.remove('panel-drag-active');
originalRect = null;
if (onKeyDown) {
document.removeEventListener('keydown', onKeyDown, true);
onKeyDown = null;
}
};
el.addEventListener('mousedown', onMouseDown);
document.addEventListener('mousemove', onMouseMove);
document.addEventListener('mouseup', onMouseUp);
this.panelDragCleanupHandlers.push(() => {
el.removeEventListener('mousedown', onMouseDown);
document.removeEventListener('mousemove', onMouseMove);
document.removeEventListener('mouseup', onMouseUp);
if (onKeyDown) {
document.removeEventListener('keydown', onKeyDown, true);
onKeyDown = null;
}
if (rafId) {
cancelAnimationFrame(rafId);
rafId = 0;
}
if (ghostEl) ghostEl.remove();
if (dropIndicator) dropIndicator.remove();
isDragging = false;
dragStarted = false;
document.body.classList.remove('panel-drag-active');
originalRect = null;
el.classList.remove('dragging-source');
});
}
getLocalizedPanelName(panelKey: string, fallback: string): string {
if (panelKey === 'runtime-config') {
return t('modals.runtimeConfig.title');
}
const key = panelKey.replace(/-([a-z])/g, (_match, group: string) => group.toUpperCase());
const lookup = `panels.${key}`;
const localized = t(lookup);
return localized === lookup ? fallback : localized;
}
}
|