File size: 59,241 Bytes
9d2d895 | 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 | import type { PanelConfig, MapLayers, DataSourceId } from '@/types';
import { SITE_VARIANT } from './variant';
// boundary-ignore: isDesktopRuntime is a pure env probe with no service dependencies
import { isDesktopRuntime } from '@/services/runtime';
// boundary-ignore: getSecretState is a pure env/keychain probe with no service dependencies
import { getSecretState } from '@/services/runtime-config';
// boundary-ignore: isEntitled is a pure state check with no side effects
import { isEntitled } from '@/services/entitlements';
const _desktop = isDesktopRuntime();
// Iran-events domain sunset (war ended 2026-07). Default OFF: iranAttacks is
// disabled in every variant default so DEFAULT_MAP_LAYERS agrees with the gated
// layer registry (getAllowedLayerKeys strips it). Guarded so node:test β where
// import.meta.env is undefined β resolves it OFF at module load. See
// map-layer-definitions.ts and tests/browser-bundle-secret-guard (allowlist).
const IRAN_ATTACKS_ENABLED = typeof window !== 'undefined' && import.meta.env.VITE_ENABLE_IRAN_ATTACKS === 'true';
// ============================================
// FULL VARIANT (Geopolitical)
// ============================================
// Panel order matters! First panels appear at top of grid.
// Desired order: live-news, AI Insights, AI Strategic Posture, cii, strategic-risk, then rest
const FULL_PANELS: Record<string, PanelConfig> = {
map: { name: 'Global Map', enabled: true, priority: 1 },
'live-news': { name: 'Live News', enabled: true, priority: 1 },
'live-webcams': { name: 'Live Webcams', enabled: true, priority: 1 },
'windy-webcams': { name: 'Windy Live Webcam', enabled: false, priority: 2 },
insights: { name: 'AI Insights', enabled: true, priority: 1 },
'threat-timeline': { name: 'Threat Timeline', enabled: true, priority: 1 },
'strategic-posture': { name: 'AI Strategic Posture', enabled: true, priority: 1 },
forecast: { name: 'AI Forecasts', enabled: true, priority: 1, ...(_desktop && { premium: 'locked' as const }) }, // trial: unlocked on web, locked on desktop
cii: { name: 'Country Instability', enabled: true, priority: 1, ...(_desktop && { premium: 'enhanced' as const }) },
'strategic-risk': { name: 'Strategic Risk Overview', enabled: true, priority: 1, ...(_desktop && { premium: 'enhanced' as const }) },
intel: { name: 'Intel Feed', enabled: true, priority: 1 },
'gdelt-intel': { name: 'Live Intelligence', enabled: true, priority: 1, ...(_desktop && { premium: 'enhanced' as const }) },
cascade: { name: 'Infrastructure Cascade', enabled: true, priority: 1 },
'military-correlation': { name: 'Force Posture', enabled: true, priority: 2 },
'escalation-correlation': { name: 'Escalation Monitor', enabled: true, priority: 2 },
'economic-correlation': { name: 'Economic Warfare', enabled: true, priority: 2 },
'disaster-correlation': { name: 'Disaster Cascade', enabled: true, priority: 2 },
politics: { name: 'World News', enabled: true, priority: 1 },
us: { name: 'United States', enabled: true, priority: 1 },
europe: { name: 'Europe', enabled: true, priority: 1 },
middleeast: { name: 'Middle East', enabled: true, priority: 1 },
africa: { name: 'Africa', enabled: true, priority: 1 },
latam: { name: 'Latin America', enabled: true, priority: 1 },
asia: { name: 'Asia-Pacific', enabled: true, priority: 1 },
energy: { name: 'Energy & Resources', enabled: true, priority: 1 },
gov: { name: 'Government', enabled: true, priority: 1 },
thinktanks: { name: 'Think Tanks', enabled: true, priority: 1 },
polymarket: { name: 'Predictions', enabled: true, priority: 1 },
commodities: { name: 'Metals & Materials', enabled: true, priority: 1 },
'energy-complex': { name: 'Energy Complex', enabled: true, priority: 1 },
'oil-inventories': { name: 'Oil Inventories', enabled: true, priority: 60 },
markets: { name: 'Markets', enabled: true, priority: 1 },
'stock-analysis': { name: 'Stock Analysis', enabled: true, priority: 1, premium: 'locked' as const },
'stock-backtest': { name: 'Backtesting', enabled: true, priority: 1, premium: 'locked' as const },
'daily-market-brief': { name: 'Daily Market Brief', enabled: true, priority: 1, premium: 'locked' as const },
'chat-analyst': { name: 'WM Analyst', enabled: true, priority: 1, premium: 'locked' as const },
economic: { name: 'Macro Stress', enabled: true, priority: 1 },
'global-procurement': { name: 'Global Procurement', enabled: true, priority: 1, premium: 'locked' as const },
'trade-policy': { name: 'Trade Policy', enabled: true, priority: 1, premium: 'locked' as const },
'supply-chain': { name: 'Supply Chain', enabled: true, priority: 1, ...(_desktop && { premium: 'enhanced' as const }) },
'china-corridors': { name: 'China Logistics Corridors', enabled: true, priority: 1 },
'china-activity-nowcast': { name: 'China Activity Nowcast', enabled: true, priority: 1 },
finance: { name: 'Financial', enabled: true, priority: 1 },
tech: { name: 'Technology', enabled: true, priority: 2 },
crypto: { name: 'Crypto', enabled: true, priority: 2 },
heatmap: { name: 'Sector Heatmap', enabled: true, priority: 2 },
ai: { name: 'AI/ML', enabled: true, priority: 2 },
layoffs: { name: 'Layoffs Tracker', enabled: true, priority: 2 },
monitors: { name: 'My Monitors', enabled: true, priority: 2 },
'latest-brief': { name: 'Latest Brief', enabled: true, priority: 1, premium: 'locked' as const },
'satellite-fires': { name: 'Fires', enabled: true, priority: 2 },
'macro-signals': { name: 'Market Regime', enabled: true, priority: 2 },
'fear-greed': { name: 'Fear & Greed', enabled: true, priority: 2 },
'aaii-sentiment': { name: 'AAII Sentiment', enabled: false, priority: 2 },
'market-breadth': { name: 'Market Breadth', enabled: true, priority: 2 },
'macro-tiles': { name: 'Macro Indicators', enabled: false, priority: 2 },
'fsi': { name: 'Financial Stress', enabled: false, priority: 2 },
'yield-curve': { name: 'Yield Curve', enabled: false, priority: 2 },
'earnings-calendar': { name: 'Earnings Calendar', enabled: false, priority: 2 },
'economic-calendar': { name: 'Economic Calendar', enabled: false, priority: 2 },
'cot-positioning': { name: 'COT Positioning', enabled: false, priority: 2 },
'liquidity-shifts': { name: 'Liquidity Shifts', enabled: true, priority: 2 },
'positioning-247': { name: '24/7 Positioning', enabled: true, priority: 2 },
'gold-intelligence': { name: 'Gold Intelligence', enabled: true, priority: 60 },
'hormuz-tracker': { name: 'Hormuz Trade Tracker', enabled: true, priority: 2 },
'energy-crisis': { name: 'Energy Crisis Tracker', enabled: true, priority: 2 },
'pipeline-status': { name: 'Oil & Gas Pipeline Status', enabled: true, priority: 2 },
'storage-facility-map': { name: 'Strategic Storage Atlas', enabled: true, priority: 2 },
'fuel-shortages': { name: 'Global Fuel Shortage Registry', enabled: true, priority: 2 },
'energy-disruptions': { name: 'Energy Disruptions Log', enabled: true, priority: 2 },
'energy-risk-overview': { name: 'Global Energy Risk Overview', enabled: false, priority: 2 },
'gulf-economies': { name: 'Gulf Economies', enabled: false, priority: 2 },
'consumer-prices': { name: 'Consumer Prices', enabled: false, priority: 2 },
'grocery-basket': { name: 'Grocery Index', enabled: false, priority: 2 },
'bigmac': { name: 'Big Mac Index', enabled: false, priority: 2 },
'fuel-prices': { name: 'Fuel Prices', enabled: false, priority: 2 },
'fao-food-price-index': { name: 'FAO Food Price Index', enabled: false, priority: 2 },
'etf-flows': { name: 'BTC ETF Tracker', enabled: true, priority: 2 },
stablecoins: { name: 'Stablecoins', enabled: true, priority: 2 },
'ucdp-events': { name: 'UCDP Conflict Events', enabled: true, priority: 2 },
'disease-outbreaks': { name: 'Disease Outbreaks', enabled: true, priority: 2 },
'social-velocity': { name: 'Social Velocity', enabled: true, priority: 2 },
'wsb-ticker-scanner': { name: 'WSB Ticker Scanner', enabled: true, priority: 75, premium: 'locked' as const },
giving: { name: 'Global Giving', enabled: false, priority: 2 },
displacement: { name: 'UNHCR Displacement', enabled: true, priority: 2 },
climate: { name: 'Climate Anomalies', enabled: true, priority: 2 },
'climate-news': { name: 'Climate News', enabled: false, priority: 2 },
'population-exposure': { name: 'Population Exposure', enabled: true, priority: 2 },
'security-advisories': { name: 'Security Advisories', enabled: true, priority: 2 },
'sanctions-pressure': { name: 'Sanctions Pressure', enabled: true, priority: 2 },
'defense-patents': { name: 'R&D Signal', enabled: true, priority: 2 },
'radiation-watch': { name: 'Radiation Watch', enabled: true, priority: 2 },
'thermal-escalation': { name: 'Thermal Escalation', enabled: true, priority: 2 },
'oref-sirens': { name: 'Israel Sirens', enabled: true, priority: 2, ...(_desktop && { premium: 'locked' as const }) },
'telegram-intel': { name: 'Telegram Intel', enabled: true, priority: 2, ...(_desktop && { premium: 'locked' as const }) },
'airline-intel': { name: 'Airline Intelligence', enabled: true, priority: 2 },
'tech-readiness': { name: 'Tech Readiness Index', enabled: true, priority: 2 },
'world-clock': { name: 'World Clock', enabled: true, priority: 2 },
'national-debt': { name: 'Global Debt Clock', enabled: true, priority: 2 },
'cross-source-signals': { name: 'Cross-Source Signals', enabled: true, priority: 2 },
'market-implications': { name: 'AI Market Implications', enabled: true, priority: 1, premium: 'locked' as const },
'regional-intelligence': { name: 'Regional Intelligence', enabled: false, priority: 1, premium: 'locked' as const },
'deduction': { name: 'Deduct Situation', enabled: false, priority: 1, premium: 'locked' as const },
'geo-hubs': { name: 'Geopolitical Hubs', enabled: false, priority: 2 },
'tech-hubs': { name: 'Hot Tech Hubs', enabled: false, priority: 2 },
};
const FULL_MAP_LAYERS: MapLayers = {
iranAttacks: IRAN_ATTACKS_ENABLED && !_desktop,
gpsJamming: false,
satellites: false,
conflicts: true,
bases: !_desktop,
cables: false,
pipelines: false,
storageFacilities: false,
fuelShortages: false,
hotspots: true,
ais: false,
nuclear: true,
irradiators: false,
radiationWatch: false,
sanctions: true,
weather: true,
economic: true,
waterways: true,
outages: true,
cyberThreats: false,
datacenters: false,
protests: false,
flights: false,
military: true,
natural: true,
spaceports: false,
minerals: false,
fires: false,
// Data source layers
ucdpEvents: false,
displacement: false,
climate: false,
// Tech layers (disabled in full variant)
startupHubs: false,
cloudRegions: false,
accelerators: false,
techHQs: false,
techEvents: false,
// Finance layers (disabled in full variant)
stockExchanges: false,
financialCenters: false,
centralBanks: false,
commodityHubs: false,
gulfInvestments: false,
// Happy variant layers
positiveEvents: false,
kindness: false,
happiness: false,
speciesRecovery: false,
renewableInstallations: false,
tradeRoutes: false,
ciiChoropleth: false,
resilienceScore: false,
dayNight: false,
// Commodity layers (disabled in full variant)
miningSites: false,
processingPlants: false,
commodityPorts: false,
webcams: false,
diseaseOutbreaks: false,
};
const FULL_MOBILE_MAP_LAYERS: MapLayers = {
iranAttacks: IRAN_ATTACKS_ENABLED,
gpsJamming: false,
satellites: false,
conflicts: true,
bases: false,
cables: false,
pipelines: false,
storageFacilities: false,
fuelShortages: false,
hotspots: true,
ais: false,
nuclear: false,
irradiators: false,
radiationWatch: false,
sanctions: true,
weather: true,
economic: false,
waterways: false,
outages: true,
cyberThreats: false,
datacenters: false,
protests: false,
flights: false,
military: false,
natural: true,
spaceports: false,
minerals: false,
fires: false,
// Data source layers
ucdpEvents: false,
displacement: false,
climate: false,
// Tech layers (disabled in full variant)
startupHubs: false,
cloudRegions: false,
accelerators: false,
techHQs: false,
techEvents: false,
// Finance layers (disabled in full variant)
stockExchanges: false,
financialCenters: false,
centralBanks: false,
commodityHubs: false,
gulfInvestments: false,
// Happy variant layers
positiveEvents: false,
kindness: false,
happiness: false,
speciesRecovery: false,
renewableInstallations: false,
tradeRoutes: false,
ciiChoropleth: false,
resilienceScore: false,
dayNight: false,
// Commodity layers (disabled in full variant)
miningSites: false,
processingPlants: false,
commodityPorts: false,
webcams: false,
diseaseOutbreaks: false,
};
// ============================================
// TECH VARIANT (Tech/AI/Startups)
// ============================================
const TECH_PANELS: Record<string, PanelConfig> = {
map: { name: 'Global Tech Map', enabled: true, priority: 1 },
'live-news': { name: 'Tech Headlines', enabled: true, priority: 1 },
'live-webcams': { name: 'Live Webcams', enabled: true, priority: 2 },
'windy-webcams': { name: 'Windy Live Webcam', enabled: false, priority: 2 },
insights: { name: 'AI Insights', enabled: true, priority: 1 },
ai: { name: 'AI/ML News', enabled: true, priority: 1 },
tech: { name: 'Technology', enabled: true, priority: 1 },
startups: { name: 'Startups & VC', enabled: true, priority: 1 },
vcblogs: { name: 'VC Insights & Essays', enabled: true, priority: 1 },
regionalStartups: { name: 'Global Startup News', enabled: true, priority: 1 },
unicorns: { name: 'Unicorn Tracker', enabled: true, priority: 1 },
accelerators: { name: 'Accelerators & Demo Days', enabled: true, priority: 1 },
security: { name: 'Cybersecurity', enabled: true, priority: 1 },
policy: { name: 'AI Policy & Regulation', enabled: true, priority: 1 },
layoffs: { name: 'Layoffs Tracker', enabled: true, priority: 1 },
markets: { name: 'Tech Stocks', enabled: true, priority: 2 },
finance: { name: 'Financial News', enabled: true, priority: 2 },
crypto: { name: 'Crypto', enabled: true, priority: 2 },
hardware: { name: 'Semiconductors & Hardware', enabled: true, priority: 2 },
cloud: { name: 'Cloud & Infrastructure', enabled: true, priority: 2 },
dev: { name: 'Developer Community', enabled: true, priority: 2 },
github: { name: 'GitHub Trending', enabled: true, priority: 1 },
ipo: { name: 'IPO & SPAC', enabled: true, priority: 2 },
polymarket: { name: 'Tech Predictions', enabled: true, priority: 2 },
funding: { name: 'Funding & VC', enabled: true, priority: 1 },
producthunt: { name: 'Product Hunt', enabled: true, priority: 1 },
events: { name: 'Tech Events', enabled: true, priority: 1 },
'internet-disruptions': { name: 'Internet Disruptions', enabled: true, priority: 2 },
'service-status': { name: 'Service Status', enabled: true, priority: 2 },
economic: { name: 'Macro Stress', enabled: true, priority: 2 },
'global-procurement': { name: 'Global Procurement', enabled: true, priority: 1, premium: 'locked' as const },
'tech-readiness': { name: 'Tech Readiness Index', enabled: true, priority: 1 },
'macro-signals': { name: 'Market Regime', enabled: true, priority: 2 },
'etf-flows': { name: 'BTC ETF Tracker', enabled: true, priority: 2 },
stablecoins: { name: 'Stablecoins', enabled: true, priority: 2 },
'airline-intel': { name: 'Airline Intelligence', enabled: true, priority: 2 },
'world-clock': { name: 'World Clock', enabled: true, priority: 2 },
monitors: { name: 'My Monitors', enabled: true, priority: 2 },
'latest-brief': { name: 'Latest Brief', enabled: true, priority: 1, premium: 'locked' as const },
'tech-hubs': { name: 'Hot Tech Hubs', enabled: false, priority: 2 },
'ai-regulation': { name: 'AI Regulation Dashboard', enabled: false, priority: 2 },
};
const TECH_MAP_LAYERS: MapLayers = {
gpsJamming: false,
satellites: false,
conflicts: false,
bases: false,
cables: true,
pipelines: false,
hotspots: false,
ais: false,
nuclear: false,
irradiators: false,
sanctions: false,
weather: false,
economic: false,
waterways: false,
outages: true,
cyberThreats: false,
datacenters: true,
protests: false,
flights: false,
military: false,
natural: true,
spaceports: false,
minerals: false,
fires: false,
// Data source layers
ucdpEvents: false,
displacement: false,
climate: false,
// Tech layers (enabled in tech variant)
startupHubs: true,
cloudRegions: true,
accelerators: false,
techHQs: true,
techEvents: true,
// Finance layers (disabled in tech variant)
stockExchanges: false,
financialCenters: false,
centralBanks: false,
commodityHubs: false,
gulfInvestments: false,
// Happy variant layers
positiveEvents: false,
kindness: false,
happiness: false,
speciesRecovery: false,
renewableInstallations: false,
tradeRoutes: false,
iranAttacks: false,
ciiChoropleth: false,
resilienceScore: false,
dayNight: false,
// Commodity layers (disabled in tech variant)
miningSites: false,
processingPlants: false,
commodityPorts: false,
webcams: false,
diseaseOutbreaks: false,
};
const TECH_MOBILE_MAP_LAYERS: MapLayers = {
gpsJamming: false,
satellites: false,
conflicts: false,
bases: false,
cables: false,
pipelines: false,
hotspots: false,
ais: false,
nuclear: false,
irradiators: false,
sanctions: false,
weather: false,
economic: false,
waterways: false,
outages: true,
cyberThreats: false,
datacenters: true,
protests: false,
flights: false,
military: false,
natural: true,
spaceports: false,
minerals: false,
fires: false,
// Data source layers
ucdpEvents: false,
displacement: false,
climate: false,
// Tech layers (limited on mobile)
startupHubs: true,
cloudRegions: false,
accelerators: false,
techHQs: false,
techEvents: true,
// Finance layers (disabled in tech variant)
stockExchanges: false,
financialCenters: false,
centralBanks: false,
commodityHubs: false,
gulfInvestments: false,
// Happy variant layers
positiveEvents: false,
kindness: false,
happiness: false,
speciesRecovery: false,
renewableInstallations: false,
tradeRoutes: false,
iranAttacks: false,
ciiChoropleth: false,
resilienceScore: false,
dayNight: false,
// Commodity layers (disabled in tech variant)
miningSites: false,
processingPlants: false,
commodityPorts: false,
webcams: false,
diseaseOutbreaks: false,
};
// ============================================
// FINANCE VARIANT (Markets/Trading)
// ============================================
const FINANCE_PANELS: Record<string, PanelConfig> = {
map: { name: 'Global Markets Map', enabled: true, priority: 1 },
'live-news': { name: 'Market Headlines', enabled: true, priority: 1 },
'live-webcams': { name: 'Live Webcams', enabled: true, priority: 2 },
'windy-webcams': { name: 'Windy Live Webcam', enabled: false, priority: 2 },
insights: { name: 'AI Market Insights', enabled: true, priority: 1 },
markets: { name: 'Live Markets', enabled: true, priority: 1 },
'stock-analysis': { name: 'Premium Stock Analysis', enabled: true, priority: 1, premium: 'locked' },
'stock-backtest': { name: 'Premium Backtesting', enabled: true, priority: 1, premium: 'locked' },
'daily-market-brief': { name: 'Daily Market Brief', enabled: true, priority: 1, premium: 'locked' },
'markets-news': { name: 'Markets News', enabled: true, priority: 2 },
forex: { name: 'Forex & Currencies', enabled: true, priority: 1 },
bonds: { name: 'Fixed Income', enabled: true, priority: 1 },
commodities: { name: 'Metals & Materials', enabled: true, priority: 1 },
'energy-complex': { name: 'Energy Complex', enabled: true, priority: 1 },
// Required for finance variant's pipeline-click path. FINANCE_MAP_LAYERS
// has `pipelines: true`, and PR #3366 unified all variants on
// createEnergyPipelinesLayer which dispatches energy:open-pipeline-detail
// on click. The listener lives in PipelineStatusPanel β if the key is
// absent from this panel set, panel-layout never instantiates it and
// the click is a silent no-op. Default disabled so the panel slot
// doesn't auto-open; users invoke it by clicking a pipeline on the map
// (or via CMD+K). Codex P1.
'pipeline-status': { name: 'Oil & Gas Pipeline Status', enabled: false, priority: 2 },
'commodities-news': { name: 'Commodities News', enabled: true, priority: 2 },
crypto: { name: 'Crypto & Digital Assets', enabled: true, priority: 1 },
'crypto-news': { name: 'Crypto News', enabled: true, priority: 2 },
'crypto-heatmap': { name: 'Crypto Sectors', enabled: true, priority: 1 },
'defi-tokens': { name: 'DeFi Tokens', enabled: true, priority: 2 },
'ai-tokens': { name: 'AI Tokens', enabled: true, priority: 2 },
'other-tokens': { name: 'Alt Tokens', enabled: true, priority: 2 },
centralbanks: { name: 'Central Bank Watch', enabled: true, priority: 1 },
economic: { name: 'Macro Stress', enabled: true, priority: 1 },
'global-procurement': { name: 'Global Procurement', enabled: true, priority: 1, premium: 'locked' as const },
'trade-policy': { name: 'Trade Policy', enabled: true, priority: 1, premium: 'locked' as const },
'sanctions-pressure': { name: 'Sanctions Pressure', enabled: true, priority: 1 },
'supply-chain': { name: 'Supply Chain', enabled: true, priority: 1 },
'china-corridors': { name: 'China Logistics Corridors', enabled: false, priority: 2 },
'china-activity-nowcast': { name: 'China Activity Nowcast', enabled: false, priority: 2 },
'economic-news': { name: 'Economic News', enabled: true, priority: 2 },
ipo: { name: 'IPOs, Earnings & M&A', enabled: true, priority: 1 },
heatmap: { name: 'Sector Heatmap', enabled: true, priority: 1 },
'macro-signals': { name: 'Market Regime', enabled: true, priority: 1 },
'macro-tiles': { name: 'Macro Indicators', enabled: true, priority: 1 },
'fear-greed': { name: 'Fear & Greed', enabled: true, priority: 1 },
'aaii-sentiment': { name: 'AAII Sentiment', enabled: true, priority: 2 },
'market-breadth': { name: 'Market Breadth', enabled: true, priority: 1 },
'fsi': { name: 'Financial Stress', enabled: true, priority: 1 },
'yield-curve': { name: 'Yield Curve', enabled: true, priority: 1 },
'earnings-calendar': { name: 'Earnings Calendar', enabled: true, priority: 1 },
'economic-calendar': { name: 'Economic Calendar', enabled: true, priority: 1 },
'cot-positioning': { name: 'COT Positioning', enabled: true, priority: 2 },
'liquidity-shifts': { name: 'Liquidity Shifts', enabled: true, priority: 1 },
'positioning-247': { name: '24/7 Positioning', enabled: true, priority: 1 },
'gold-intelligence': { name: 'Gold Intelligence', enabled: true, priority: 60 },
derivatives: { name: 'Derivatives & Options', enabled: true, priority: 2 },
fintech: { name: 'Fintech & Trading Tech', enabled: true, priority: 2 },
'fin-regulation': { name: 'Financial Regulation', enabled: true, priority: 2 },
institutional: { name: 'Hedge Funds & PE', enabled: true, priority: 2 },
analysis: { name: 'Market Analysis', enabled: true, priority: 2 },
'etf-flows': { name: 'BTC ETF Tracker', enabled: true, priority: 2 },
stablecoins: { name: 'Stablecoins', enabled: true, priority: 2 },
'gcc-investments': { name: 'GCC Investments', enabled: true, priority: 2 },
gccNews: { name: 'GCC Business News', enabled: true, priority: 2 },
'gulf-economies': { name: 'Gulf Economies', enabled: true, priority: 1 },
'consumer-prices': { name: 'Consumer Prices', enabled: true, priority: 1 },
polymarket: { name: 'Predictions', enabled: true, priority: 2 },
'wsb-ticker-scanner': { name: 'WSB Ticker Scanner', enabled: true, priority: 75, premium: 'locked' },
'airline-intel': { name: 'Airline Intelligence', enabled: true, priority: 2 },
'world-clock': { name: 'World Clock', enabled: true, priority: 2 },
monitors: { name: 'My Monitors', enabled: true, priority: 2 },
'latest-brief': { name: 'Latest Brief', enabled: true, priority: 1, premium: 'locked' as const },
};
const FINANCE_MAP_LAYERS: MapLayers = {
gpsJamming: false,
satellites: false,
conflicts: false,
bases: false,
cables: true,
pipelines: true,
hotspots: false,
ais: false,
nuclear: false,
irradiators: false,
sanctions: true,
weather: true,
economic: true,
waterways: true,
outages: true,
cyberThreats: false,
datacenters: false,
protests: false,
flights: false,
military: false,
natural: true,
spaceports: false,
minerals: false,
fires: false,
// Data source layers
ucdpEvents: false,
displacement: false,
climate: false,
// Tech layers (disabled in finance variant)
startupHubs: false,
cloudRegions: false,
accelerators: false,
techHQs: false,
techEvents: false,
// Finance layers (enabled in finance variant)
stockExchanges: true,
financialCenters: true,
centralBanks: true,
commodityHubs: false,
gulfInvestments: false,
// Happy variant layers
positiveEvents: false,
kindness: false,
happiness: false,
speciesRecovery: false,
renewableInstallations: false,
tradeRoutes: true,
iranAttacks: false,
ciiChoropleth: false,
resilienceScore: false,
dayNight: false,
// Commodity layers (disabled in finance variant)
miningSites: false,
processingPlants: false,
commodityPorts: false,
webcams: false,
diseaseOutbreaks: false,
};
const FINANCE_MOBILE_MAP_LAYERS: MapLayers = {
gpsJamming: false,
satellites: false,
conflicts: false,
bases: false,
cables: false,
pipelines: false,
hotspots: false,
ais: false,
nuclear: false,
irradiators: false,
sanctions: false,
weather: false,
economic: true,
waterways: false,
outages: true,
cyberThreats: false,
datacenters: false,
protests: false,
flights: false,
military: false,
natural: true,
spaceports: false,
minerals: false,
fires: false,
// Data source layers
ucdpEvents: false,
displacement: false,
climate: false,
// Tech layers (disabled)
startupHubs: false,
cloudRegions: false,
accelerators: false,
techHQs: false,
techEvents: false,
// Finance layers (limited on mobile)
stockExchanges: true,
financialCenters: false,
centralBanks: true,
commodityHubs: false,
gulfInvestments: false,
// Happy variant layers
positiveEvents: false,
kindness: false,
happiness: false,
speciesRecovery: false,
renewableInstallations: false,
tradeRoutes: false,
iranAttacks: false,
ciiChoropleth: false,
resilienceScore: false,
dayNight: false,
// Commodity layers (disabled in finance variant)
miningSites: false,
processingPlants: false,
commodityPorts: false,
webcams: false,
diseaseOutbreaks: false,
};
// ============================================
// HAPPY VARIANT (Good News & Progress)
// ============================================
const HAPPY_PANELS: Record<string, PanelConfig> = {
map: { name: 'World Map', enabled: true, priority: 1 },
'positive-feed': { name: 'Good News Feed', enabled: true, priority: 1 },
progress: { name: 'Human Progress', enabled: true, priority: 1 },
counters: { name: 'Live Counters', enabled: true, priority: 1 },
spotlight: { name: "Today's Hero", enabled: true, priority: 1 },
breakthroughs: { name: 'Breakthroughs', enabled: true, priority: 1 },
digest: { name: '5 Good Things', enabled: true, priority: 1 },
species: { name: 'Conservation Wins', enabled: true, priority: 1 },
renewable: { name: 'Renewable Energy', enabled: true, priority: 1 },
giving: { name: 'Global Giving', enabled: true, priority: 1 },
};
const HAPPY_MAP_LAYERS: MapLayers = {
gpsJamming: false,
satellites: false,
conflicts: false,
bases: false,
cables: false,
pipelines: false,
hotspots: false,
ais: false,
nuclear: false,
irradiators: false,
sanctions: false,
weather: false,
economic: false,
waterways: false,
outages: false,
cyberThreats: false,
datacenters: false,
protests: false,
flights: false,
military: false,
natural: false,
spaceports: false,
minerals: false,
fires: false,
// Data source layers
ucdpEvents: false,
displacement: false,
climate: false,
// Tech layers (disabled)
startupHubs: false,
cloudRegions: false,
accelerators: false,
techHQs: false,
techEvents: false,
// Finance layers (disabled)
stockExchanges: false,
financialCenters: false,
centralBanks: false,
commodityHubs: false,
gulfInvestments: false,
// Happy variant layers
positiveEvents: true,
kindness: true,
happiness: true,
speciesRecovery: true,
renewableInstallations: true,
tradeRoutes: false,
iranAttacks: false,
ciiChoropleth: false,
resilienceScore: false,
dayNight: false,
// Commodity layers (disabled)
miningSites: false,
processingPlants: false,
commodityPorts: false,
webcams: false,
diseaseOutbreaks: false,
};
const HAPPY_MOBILE_MAP_LAYERS: MapLayers = {
gpsJamming: false,
satellites: false,
conflicts: false,
bases: false,
cables: false,
pipelines: false,
hotspots: false,
ais: false,
nuclear: false,
irradiators: false,
sanctions: false,
weather: false,
economic: false,
waterways: false,
outages: false,
cyberThreats: false,
datacenters: false,
protests: false,
flights: false,
military: false,
natural: false,
spaceports: false,
minerals: false,
fires: false,
// Data source layers
ucdpEvents: false,
displacement: false,
climate: false,
// Tech layers (disabled)
startupHubs: false,
cloudRegions: false,
accelerators: false,
techHQs: false,
techEvents: false,
// Finance layers (disabled)
stockExchanges: false,
financialCenters: false,
centralBanks: false,
commodityHubs: false,
gulfInvestments: false,
// Happy variant layers
positiveEvents: true,
kindness: true,
happiness: true,
speciesRecovery: true,
renewableInstallations: true,
tradeRoutes: false,
iranAttacks: false,
ciiChoropleth: false,
resilienceScore: false,
dayNight: false,
// Commodity layers (disabled)
miningSites: false,
processingPlants: false,
commodityPorts: false,
webcams: false,
diseaseOutbreaks: false,
};
// ============================================
// COMMODITY VARIANT (Mining, Metals, Energy)
// ============================================
const COMMODITY_PANELS: Record<string, PanelConfig> = {
map: { name: 'Commodity Map', enabled: true, priority: 1 },
'live-news': { name: 'Commodity Headlines', enabled: true, priority: 1 },
insights: { name: 'AI Commodity Insights', enabled: true, priority: 1 },
'commodity-news': { name: 'Commodity News', enabled: true, priority: 1 },
'liquidity-shifts': { name: 'Liquidity Shifts', enabled: true, priority: 1 },
'positioning-247': { name: '24/7 Positioning', enabled: true, priority: 1 },
'gold-silver': { name: 'Gold & Silver', enabled: true, priority: 1 },
energy: { name: 'Energy Markets', enabled: true, priority: 1 },
'mining-news': { name: 'Mining News', enabled: true, priority: 1 },
'critical-minerals': { name: 'Critical Minerals', enabled: true, priority: 1 },
'base-metals': { name: 'Base Metals', enabled: true, priority: 1 },
'mining-companies': { name: 'Mining Companies', enabled: true, priority: 1 },
'supply-chain': { name: 'Supply Chain & Logistics', enabled: true, priority: 1 },
'china-corridors': { name: 'China Logistics Corridors', enabled: false, priority: 2 },
'china-activity-nowcast': { name: 'China Activity Nowcast', enabled: false, priority: 2 },
'commodity-regulation': { name: 'Regulation & Policy', enabled: true, priority: 1 },
markets: { name: 'Commodity Markets', enabled: true, priority: 1 },
commodities: { name: 'Live Metals & Materials', enabled: true, priority: 1 },
'energy-complex': { name: 'Energy Complex', enabled: true, priority: 1 },
// Required for commodity variant's pipeline-click path β see FINANCE_PANELS
// for the same rationale: `pipelines: true` + unified Redis-backed layer +
// energy:open-pipeline-detail dispatch means the listener must be present
// for the click to do anything. Codex P1.
'pipeline-status': { name: 'Oil & Gas Pipeline Status', enabled: false, priority: 2 },
'oil-inventories': { name: 'Oil Inventories', enabled: true, priority: 60 },
'gold-intelligence': { name: 'Gold Intelligence', enabled: true, priority: 60 },
heatmap: { name: 'Sector Heatmap', enabled: true, priority: 1 },
'macro-signals': { name: 'Market Regime', enabled: true, priority: 1 },
'trade-policy': { name: 'Trade Policy', enabled: true, priority: 1, premium: 'locked' as const },
'sanctions-pressure': { name: 'Sanctions Pressure', enabled: true, priority: 1 },
economic: { name: 'Macro Stress', enabled: true, priority: 1 },
'gulf-economies': { name: 'Gulf & OPEC Economies', enabled: true, priority: 1 },
'gcc-investments': { name: 'GCC Resource Investments', enabled: true, priority: 2 },
'consumer-prices': { name: 'Consumer Prices', enabled: true, priority: 2 },
'airline-intel': { name: 'Airline Intelligence', enabled: true, priority: 2 },
polymarket: { name: 'Commodity Predictions', enabled: true, priority: 2 },
'world-clock': { name: 'World Clock', enabled: true, priority: 2 },
monitors: { name: 'My Monitors', enabled: true, priority: 2 },
'latest-brief': { name: 'Latest Brief', enabled: true, priority: 1, premium: 'locked' as const },
};
const COMMODITY_MAP_LAYERS: MapLayers = {
gpsJamming: false,
satellites: false,
conflicts: false,
bases: false,
cables: false,
pipelines: true,
hotspots: false,
ais: true,
nuclear: false,
irradiators: false,
sanctions: true,
weather: true,
economic: true,
waterways: true,
outages: true,
cyberThreats: false,
datacenters: false,
protests: false,
flights: false,
military: false,
natural: true,
spaceports: false,
minerals: true,
fires: true,
// Data source layers
ucdpEvents: false,
displacement: false,
climate: true, // Climate events disrupt supply chains
// Tech layers (disabled)
startupHubs: false,
cloudRegions: false,
accelerators: false,
techHQs: false,
techEvents: false,
// Finance layers (enabled for commodity hubs)
stockExchanges: false,
financialCenters: false,
centralBanks: false,
commodityHubs: true,
gulfInvestments: false,
// Happy variant layers (disabled)
positiveEvents: false,
kindness: false,
happiness: false,
speciesRecovery: false,
renewableInstallations: false,
tradeRoutes: true,
iranAttacks: false,
ciiChoropleth: false,
resilienceScore: false,
dayNight: false,
// Commodity layers (enabled)
miningSites: true,
processingPlants: true,
commodityPorts: true,
webcams: false,
diseaseOutbreaks: false,
};
const COMMODITY_MOBILE_MAP_LAYERS: MapLayers = {
gpsJamming: false,
satellites: false,
conflicts: false,
bases: false,
cables: false,
pipelines: false,
hotspots: false,
ais: false,
nuclear: false,
irradiators: false,
sanctions: false,
weather: false,
economic: true,
waterways: false,
outages: true,
cyberThreats: false,
datacenters: false,
protests: false,
flights: false,
military: false,
natural: true,
spaceports: false,
minerals: true,
fires: false,
// Data source layers
ucdpEvents: false,
displacement: false,
climate: false,
// Tech layers (disabled)
startupHubs: false,
cloudRegions: false,
accelerators: false,
techHQs: false,
techEvents: false,
// Finance layers (limited on mobile)
stockExchanges: false,
financialCenters: false,
centralBanks: false,
commodityHubs: true,
gulfInvestments: false,
// Happy variant layers (disabled)
positiveEvents: false,
kindness: false,
happiness: false,
speciesRecovery: false,
renewableInstallations: false,
tradeRoutes: false,
iranAttacks: false,
ciiChoropleth: false,
resilienceScore: false,
dayNight: false,
// Commodity layers (limited on mobile)
miningSites: true,
processingPlants: false,
commodityPorts: true,
webcams: false,
diseaseOutbreaks: false,
};
// ============================================
// ENERGY variant β energy.worldmonitor.app
// Pipelines, storage, chokepoints, fuel shortages, disruption timeline.
// See docs/internal/global-energy-flow-parity-and-surpass.md (not committed).
// ============================================
const ENERGY_PANELS: Record<string, PanelConfig> = {
map: { name: 'Energy Atlas Map', enabled: true, priority: 1 },
'energy-risk-overview': { name: 'Global Energy Risk Overview', enabled: true, priority: 1 },
'chokepoint-strip': { name: 'Chokepoint Status', enabled: true, priority: 1 },
'pipeline-status': { name: 'Oil & Gas Pipeline Status', enabled: true, priority: 1 },
'storage-facility-map': { name: 'Strategic Storage Atlas', enabled: true, priority: 1 },
'fuel-shortages': { name: 'Global Fuel Shortage Registry', enabled: true, priority: 1 },
'energy-disruptions': { name: 'Energy Disruptions Log', enabled: true, priority: 1 },
'live-news': { name: 'Energy Headlines', enabled: true, priority: 1 },
insights: { name: 'AI Energy Insights', enabled: true, priority: 1 },
// Energy complex β existing panels reused at launch
'energy-complex': { name: 'Oil & Gas Complex', enabled: true, priority: 1 },
'oil-inventories': { name: 'Oil & Gas Inventories', enabled: true, priority: 1 },
'hormuz-tracker': { name: 'Strait of Hormuz Tracker', enabled: true, priority: 1 },
'energy-crisis': { name: 'Energy Crisis Policy Tracker', enabled: true, priority: 1 },
'fuel-prices': { name: 'Retail Fuel Prices', enabled: true, priority: 1 },
renewable: { name: 'Renewable Energy', enabled: true, priority: 2 },
// Markets relevant to energy
commodities: { name: 'Energy Commodities (WTI, Brent, NatGas)', enabled: true, priority: 1 },
energy: { name: 'Energy Markets News', enabled: true, priority: 1 },
'macro-signals': { name: 'Market Regime', enabled: true, priority: 2 },
// Supply-chain & chokepoint context
'supply-chain': { name: 'Chokepoints & Routes', enabled: true, priority: 1 },
'china-corridors': { name: 'China Logistics Corridors', enabled: false, priority: 2 },
'china-activity-nowcast': { name: 'China Activity Nowcast', enabled: false, priority: 2 },
'sanctions-pressure': { name: 'Sanctions Pressure', enabled: true, priority: 2 },
// Gulf / OPEC
'gulf-economies': { name: 'Gulf & OPEC Economies', enabled: true, priority: 2 },
'gcc-investments': { name: 'GCC Energy Investments', enabled: true, priority: 2 },
// Climate β demand driver (HDD / CDD future use)
climate: { name: 'Climate & Weather Impact', enabled: true, priority: 2 },
// Tracking
monitors: { name: 'My Monitors', enabled: true, priority: 3 },
'world-clock': { name: 'World Clock', enabled: true, priority: 3 },
'latest-brief': { name: 'Latest Brief', enabled: true, priority: 1, premium: 'locked' as const },
};
const ENERGY_MAP_LAYERS: MapLayers = {
gpsJamming: false,
satellites: false,
conflicts: false,
bases: false,
cables: false,
pipelines: true, // First-class energy asset (Week 2 registry lands here)
hotspots: false,
ais: true, // Tanker positions at chokepoints
nuclear: false,
irradiators: false,
sanctions: true, // Energy sanctions flows
weather: true,
economic: false,
waterways: true, // Strategic chokepoints (Hormuz, Suez, Bab el-Mandeb, etc.)
outages: true, // Power / energy system status
cyberThreats: false,
datacenters: false,
protests: false,
flights: false,
military: false,
natural: true, // Earthquakes near energy infrastructure
spaceports: false,
minerals: true, // Critical-minerals + energy-transition overlap
fires: true, // Fires near energy infrastructure / oilfields
// Data source layers
ucdpEvents: false,
displacement: false,
climate: true,
// Tech layers (disabled)
startupHubs: false,
cloudRegions: false,
accelerators: false,
techHQs: false,
techEvents: false,
// Finance layers (energy hubs = commodity hubs for our purposes)
stockExchanges: false,
financialCenters: false,
centralBanks: false,
commodityHubs: true,
gulfInvestments: false,
// Happy variant layers (disabled)
positiveEvents: false,
kindness: false,
happiness: false,
speciesRecovery: false,
renewableInstallations: false,
tradeRoutes: true,
iranAttacks: false,
ciiChoropleth: false,
resilienceScore: false,
dayNight: false,
// Commodity layers β selected (energy-relevant subset)
miningSites: false,
processingPlants: false,
commodityPorts: true, // LNG import/export + crude terminals
webcams: false,
diseaseOutbreaks: false,
storageFacilities: true, // UGS / SPR / LNG / crude hubs (Day 9-10 registry)
fuelShortages: true, // Global fuel shortage alerts (Day 11-12 registry)
liveTankers: true, // AIS ship type 80-89 inside chokepoint bboxes (parity-push PR 3)
};
const ENERGY_MOBILE_MAP_LAYERS: MapLayers = {
gpsJamming: false,
satellites: false,
conflicts: false,
bases: false,
cables: false,
pipelines: true,
hotspots: false,
ais: false,
nuclear: false,
irradiators: false,
sanctions: false,
weather: false,
economic: false,
waterways: true,
outages: false,
cyberThreats: false,
datacenters: false,
protests: false,
flights: false,
military: false,
natural: true,
spaceports: false,
minerals: false,
fires: false,
ucdpEvents: false,
displacement: false,
climate: false,
startupHubs: false,
cloudRegions: false,
accelerators: false,
techHQs: false,
techEvents: false,
stockExchanges: false,
financialCenters: false,
centralBanks: false,
commodityHubs: false,
gulfInvestments: false,
positiveEvents: false,
kindness: false,
happiness: false,
speciesRecovery: false,
renewableInstallations: false,
tradeRoutes: false,
iranAttacks: false,
ciiChoropleth: false,
resilienceScore: false,
dayNight: false,
miningSites: false,
processingPlants: false,
commodityPorts: true,
webcams: false,
diseaseOutbreaks: false,
storageFacilities: true,
fuelShortages: true,
liveTankers: true,
};
// ============================================
// UNIFIED PANEL REGISTRY
// ============================================
type PanelVariant = 'full' | 'tech' | 'finance' | 'commodity' | 'energy' | 'happy';
const VARIANT_PANEL_CONFIGS: Record<PanelVariant, Record<string, PanelConfig>> = {
full: FULL_PANELS,
tech: TECH_PANELS,
finance: FINANCE_PANELS,
commodity: COMMODITY_PANELS,
energy: ENERGY_PANELS,
happy: HAPPY_PANELS,
};
function getVariantPanelConfigs(variant: string): Record<string, PanelConfig> | undefined {
return Object.prototype.hasOwnProperty.call(VARIANT_PANEL_CONFIGS, variant)
? VARIANT_PANEL_CONFIGS[variant as PanelVariant]
: undefined;
}
/** All panels from all variants β canonical cross-variant registry. */
export const ALL_PANELS: Record<string, PanelConfig> = {
...HAPPY_PANELS,
...COMMODITY_PANELS,
...ENERGY_PANELS,
...TECH_PANELS,
...FINANCE_PANELS,
...FULL_PANELS,
};
/** Per-variant canonical panel order (keys = which panels are enabled by default). */
export const VARIANT_DEFAULTS: Record<string, string[]> = {
full: Object.keys(VARIANT_PANEL_CONFIGS.full),
tech: Object.keys(VARIANT_PANEL_CONFIGS.tech),
finance: Object.keys(VARIANT_PANEL_CONFIGS.finance),
commodity: Object.keys(VARIANT_PANEL_CONFIGS.commodity),
energy: Object.keys(VARIANT_PANEL_CONFIGS.energy),
happy: Object.keys(VARIANT_PANEL_CONFIGS.happy),
};
/**
* Variant-specific label overrides for panels shared across variants.
* Applied at render time, not just at seed time.
*/
export const VARIANT_PANEL_OVERRIDES: Partial<Record<string, Partial<Record<string, Partial<PanelConfig>>>>> = {
finance: {
map: { name: 'Global Markets Map' },
'live-news': { name: 'Market Headlines' },
insights: { name: 'AI Market Insights' },
},
tech: {
map: { name: 'Global Tech Map' },
'live-news': { name: 'Tech Headlines' },
insights: { name: 'AI Insights' },
},
commodity: {
map: { name: 'Commodity Map' },
'live-news': { name: 'Commodity Headlines' },
insights: { name: 'AI Commodity Insights' },
},
energy: {
map: { name: 'Energy Atlas Map' },
'live-news': { name: 'Energy Headlines' },
insights: { name: 'AI Energy Insights' },
},
happy: {
map: { name: 'World Map' },
},
};
/**
* Returns the effective panel config for a given key and variant,
* applying variant-specific display overrides (name, premium, etc.).
*/
export function getEffectivePanelConfig(key: string, variant: string): PanelConfig {
const base = getVariantPanelConfigs(variant)?.[key] ?? ALL_PANELS[key];
if (!base) return { name: key, enabled: false, priority: 2 };
const override = VARIANT_PANEL_OVERRIDES[variant]?.[key] ?? {};
return { ...base, ...override };
}
/**
* Returns true if `key` is in the current variant's default panel set.
*
* App.ts:577-583 merges ALL_PANELS into panelSettings on every variant so
* users can cross-enable panels, which makes `shouldCreatePanel(key)`
* (which just checks `key in panelSettings`) true everywhere. Auto-refresh
* paths that fan out a fetch must instead gate on the variant defaults β
* otherwise variants whose backend doesn't seed the panel's bootstrap key
* (e.g. tech-readiness on commodity/finance/energy) blow their 5s fetch
* budget on a key that will never populate.
*/
export function isPanelInVariantDefaults(key: string): boolean {
return (VARIANT_DEFAULTS[SITE_VARIANT] ?? []).includes(key);
}
export const FREE_MAX_PANELS = 40;
export const FREE_MAX_SOURCES = 80;
export function isFreePanelCapCounted(key: string): boolean {
return key !== 'map' && !key.startsWith('cw-');
}
export function countFreePanelCapUsage(panelSettings: Record<string, PanelConfig>): number {
return Object.entries(panelSettings).filter(([key, panel]) =>
panel.enabled && isFreePanelCapCounted(key)
).length;
}
export function restoreFreeMapPanelAccess(
panelSettings: Record<string, PanelConfig>,
): Record<string, PanelConfig> {
const next: Record<string, PanelConfig> = {};
for (const [key, config] of Object.entries(panelSettings)) {
next[key] = { ...config };
}
if (next.map?.enabled === false && countFreePanelCapUsage(next) > FREE_MAX_PANELS) {
next.map = { ...next.map, enabled: true };
}
return next;
}
/**
* Returns true if the current user is entitled to enable/view this panel.
* Mirrors the entitlement checks in panel-layout.ts (single source of truth).
*/
export function isPanelEntitled(key: string, config: PanelConfig, isPro = false): boolean {
if (!config.premium) return true;
// Dodo entitlements unlock all premium panels
if (isEntitled()) return true;
const apiKeyPanels = ['stock-analysis', 'stock-backtest', 'daily-market-brief', 'market-implications', 'regional-intelligence', 'deduction', 'chat-analyst', 'wsb-ticker-scanner', 'trade-policy', 'global-procurement'];
if (apiKeyPanels.includes(key)) {
return getSecretState('WORLDMONITOR_API_KEY').present || isPro;
}
if (config.premium === 'locked') {
return isDesktopRuntime();
}
return true;
}
/**
* Clamp a panel-settings map to the free-tier panel cap. Single source of
* truth for the count limit so App boot, the settings/search add paths, and
* the dashboard-tab add/switch/load paths all enforce the SAME ceiling.
*
* Returns a NEW map; the input is never mutated. Pro users get the same
* panel eligibility, but still receive a copied map. For free users: cw-*
* custom-widget panels are a pro
* feature and are always disabled. The map is free baseline infrastructure
* and never consumes a capped panel slot. Among the remaining enabled panels
* the lowest-priority ones past FREE_MAX_PANELS are disabled (priority asc,
* key tiebreak β identical ordering to App.enforceFreeTierLimits).
*
* `isPro` is passed in (rather than read here) to keep this a pure config
* helper with no service-state dependency, matching isPanelEntitled above.
*/
export function enforceFreePanelLimit(
panelSettings: Record<string, PanelConfig>,
isPro: boolean,
): Record<string, PanelConfig> {
const next: Record<string, PanelConfig> = {};
for (const [key, config] of Object.entries(panelSettings)) {
next[key] = { ...config };
}
if (isPro) return next;
// cw-* custom widgets are pro-only β never enabled on the free tier.
for (const key of Object.keys(next)) {
if (key.startsWith('cw-') && next[key]?.enabled) {
next[key] = { ...next[key]!, enabled: false };
}
}
const enabledKeys = Object.entries(next)
.filter(([k, v]) => v.enabled && isFreePanelCapCounted(k))
.sort(([ka, a], [kb, b]) => (a.priority ?? 99) - (b.priority ?? 99) || ka.localeCompare(kb))
.map(([k]) => k);
for (const key of enabledKeys.slice(FREE_MAX_PANELS)) {
next[key] = { ...next[key]!, enabled: false };
}
return next;
}
// ============================================
// VARIANT-AWARE EXPORTS
// ============================================
export const DEFAULT_PANELS: Record<string, PanelConfig> = Object.fromEntries(
(VARIANT_DEFAULTS[SITE_VARIANT] ?? VARIANT_DEFAULTS['full'] ?? []).map(key =>
[key, getEffectivePanelConfig(key, SITE_VARIANT)]
)
);
export const DEFAULT_MAP_LAYERS = SITE_VARIANT === 'happy'
? HAPPY_MAP_LAYERS
: SITE_VARIANT === 'tech'
? TECH_MAP_LAYERS
: SITE_VARIANT === 'finance'
? FINANCE_MAP_LAYERS
: SITE_VARIANT === 'commodity'
? COMMODITY_MAP_LAYERS
: SITE_VARIANT === 'energy'
? ENERGY_MAP_LAYERS
: FULL_MAP_LAYERS;
export const MOBILE_DEFAULT_MAP_LAYERS = SITE_VARIANT === 'happy'
? HAPPY_MOBILE_MAP_LAYERS
: SITE_VARIANT === 'tech'
? TECH_MOBILE_MAP_LAYERS
: SITE_VARIANT === 'finance'
? FINANCE_MOBILE_MAP_LAYERS
: SITE_VARIANT === 'commodity'
? COMMODITY_MOBILE_MAP_LAYERS
: SITE_VARIANT === 'energy'
? ENERGY_MOBILE_MAP_LAYERS
: FULL_MOBILE_MAP_LAYERS;
/** Maps map-layer toggle keys to their data-freshness source IDs (single source of truth). */
export const LAYER_TO_SOURCE: Partial<Record<keyof MapLayers, DataSourceId[]>> = {
military: ['opensky', 'wingbits'],
ais: ['ais'],
natural: ['usgs'],
weather: ['weather'],
outages: ['outages'],
cyberThreats: ['cyber_threats'],
protests: ['acled', 'gdelt_doc'],
ucdpEvents: ['ucdp_events'],
displacement: ['unhcr'],
climate: ['climate'],
sanctions: ['sanctions_pressure'],
radiationWatch: ['radiation'],
};
// ============================================
// PANEL CATEGORY MAP
// ============================================
// Maps category keys to panel keys. Only categories with at least one
// matching panel in the user's active panel settings are shown.
export const PANEL_CATEGORY_MAP: Record<string, { labelKey: string; panelKeys: string[]; variants?: string[] }> = {
// All variants β essential panels
core: {
labelKey: 'header.panelCatCore',
panelKeys: ['map', 'live-news', 'live-webcams', 'windy-webcams', 'insights', 'strategic-posture', 'latest-brief'],
},
// Full (geopolitical) variant β marketsFinance/topical/dataTracking are
// shared with the energy variant, which has no dedicated category block.
intelligence: {
labelKey: 'header.panelCatIntelligence',
panelKeys: ['cii', 'strategic-risk', 'threat-timeline', 'intel', 'gdelt-intel', 'cascade', 'telegram-intel', 'forecast', 'cross-source-signals', 'regional-intelligence', 'deduction', 'chat-analyst', 'thermal-escalation', 'social-velocity', 'geo-hubs'],
variants: ['full'],
},
correlation: {
labelKey: 'header.panelCatCorrelation',
panelKeys: ['military-correlation', 'escalation-correlation', 'economic-correlation', 'disaster-correlation'],
variants: ['full'],
},
regionalNews: {
labelKey: 'header.panelCatRegionalNews',
panelKeys: ['politics', 'us', 'europe', 'middleeast', 'africa', 'latam', 'asia'],
variants: ['full'],
},
marketsFinance: {
labelKey: 'header.panelCatMarketsFinance',
panelKeys: ['commodities', 'energy-complex', 'energy-risk-overview', 'pipeline-status', 'storage-facility-map', 'oil-inventories', 'fuel-prices', 'chokepoint-strip', 'fuel-shortages', 'energy-disruptions', 'hormuz-tracker', 'energy-crisis', 'markets', 'economic', 'global-procurement', 'trade-policy', 'sanctions-pressure', 'supply-chain', 'china-corridors', 'china-activity-nowcast', 'finance', 'polymarket', 'macro-signals', 'gulf-economies', 'etf-flows', 'stablecoins', 'crypto', 'heatmap', 'aaii-sentiment', 'cot-positioning', 'earnings-calendar', 'economic-calendar', 'fear-greed', 'fsi', 'macro-tiles', 'market-breadth', 'liquidity-shifts', 'national-debt', 'positioning-247', 'wsb-ticker-scanner', 'yield-curve', 'gold-intelligence', 'bigmac', 'market-implications'],
variants: ['full', 'energy'],
},
topical: {
labelKey: 'header.panelCatTopical',
panelKeys: ['energy', 'gov', 'thinktanks', 'tech', 'ai', 'layoffs'],
variants: ['full', 'energy'],
},
dataTracking: {
labelKey: 'header.panelCatDataTracking',
panelKeys: ['monitors', 'satellite-fires', 'ucdp-events', 'displacement', 'climate', 'climate-news', 'population-exposure', 'security-advisories', 'radiation-watch', 'oref-sirens', 'world-clock', 'tech-readiness', 'disease-outbreaks', 'fao-food-price-index', 'grocery-basket', 'defense-patents'],
variants: ['full', 'energy'],
},
// Tech variant
techAi: {
labelKey: 'header.panelCatTechAi',
panelKeys: ['ai', 'tech', 'hardware', 'cloud', 'dev', 'github', 'producthunt', 'events', 'service-status', 'tech-readiness', 'internet-disruptions', 'tech-hubs'],
variants: ['tech'],
},
startupsVc: {
labelKey: 'header.panelCatStartupsVc',
panelKeys: ['startups', 'vcblogs', 'regionalStartups', 'unicorns', 'accelerators', 'funding', 'ipo'],
variants: ['tech'],
},
securityPolicy: {
labelKey: 'header.panelCatSecurityPolicy',
panelKeys: ['security', 'policy', 'ai-regulation'],
variants: ['tech'],
},
techMarkets: {
labelKey: 'header.panelCatMarkets',
panelKeys: ['markets', 'finance', 'crypto', 'economic', 'global-procurement', 'sanctions-pressure', 'polymarket', 'macro-signals', 'etf-flows', 'stablecoins', 'layoffs', 'monitors', 'world-clock'],
variants: ['tech'],
},
// Finance variant
finMarkets: {
labelKey: 'header.panelCatMarkets',
panelKeys: ['markets', 'stock-analysis', 'stock-backtest', 'daily-market-brief', 'markets-news', 'heatmap', 'macro-signals', 'analysis', 'polymarket'],
variants: ['finance'],
},
fixedIncomeFx: {
labelKey: 'header.panelCatFixedIncomeFx',
panelKeys: ['forex', 'bonds'],
variants: ['finance'],
},
finCommodities: {
labelKey: 'header.panelCatCommodities',
panelKeys: ['commodities', 'energy-complex', 'commodities-news'],
variants: ['finance'],
},
cryptoDigital: {
labelKey: 'header.panelCatCryptoDigital',
panelKeys: ['crypto', 'crypto-heatmap', 'defi-tokens', 'ai-tokens', 'other-tokens', 'crypto-news', 'etf-flows', 'stablecoins', 'fintech'],
variants: ['finance'],
},
centralBanksEcon: {
labelKey: 'header.panelCatCentralBanks',
panelKeys: ['centralbanks', 'economic', 'global-procurement', 'energy-complex', 'trade-policy', 'sanctions-pressure', 'supply-chain', 'china-corridors', 'china-activity-nowcast', 'economic-news'],
variants: ['finance'],
},
dealsInstitutional: {
labelKey: 'header.panelCatDeals',
panelKeys: ['ipo', 'derivatives', 'institutional', 'fin-regulation'],
variants: ['finance'],
},
gulfMena: {
labelKey: 'header.panelCatGulfMena',
panelKeys: ['gulf-economies', 'gcc-investments', 'gccNews', 'consumer-prices', 'monitors', 'world-clock'],
variants: ['finance'],
},
// Commodity variant
commodityPrices: {
labelKey: 'header.panelCatCommodityPrices',
panelKeys: ['commodities', 'energy-complex', 'gold-silver', 'energy', 'base-metals', 'critical-minerals', 'markets', 'heatmap', 'macro-signals'],
variants: ['commodity'],
},
miningIndustry: {
labelKey: 'header.panelCatMining',
panelKeys: ['commodity-news', 'mining-news', 'mining-companies', 'supply-chain', 'china-corridors', 'china-activity-nowcast', 'commodity-regulation'],
variants: ['commodity'],
},
commodityEcon: {
labelKey: 'header.panelCatCommodityEcon',
panelKeys: ['trade-policy', 'sanctions-pressure', 'economic', 'gulf-economies', 'gcc-investments', 'consumer-prices', 'finance', 'polymarket', 'airline-intel', 'world-clock', 'monitors'],
variants: ['commodity'],
},
// Happy variant
happyNews: {
labelKey: 'header.panelCatHappyNews',
panelKeys: ['positive-feed', 'progress', 'counters', 'spotlight', 'breakthroughs', 'digest'],
variants: ['happy'],
},
happyPlanet: {
labelKey: 'header.panelCatHappyPlanet',
panelKeys: ['species', 'renewable', 'giving'],
variants: ['happy'],
},
};
export interface VariantPanelCategory {
key: string;
labelKey: string;
panelKeys: string[];
}
// Categories applicable to `variant` that contain at least one enabled panel.
// Shared by the settings panel-tab filter and the mobile category nav β
// callers prepend their own "all" entry and localize labelKey via t().
export function getVariantPanelCategories(
panelSettings: Record<string, PanelConfig>,
variant: string,
): VariantPanelCategory[] {
return Object.entries(PANEL_CATEGORY_MAP)
.filter(([, def]) => !def.variants || def.variants.includes(variant))
.filter(([, def]) => def.panelKeys.some((pk) => panelSettings[pk]?.enabled))
.map(([key, def]) => ({ key, labelKey: def.labelKey, panelKeys: def.panelKeys }));
}
// Enabled panels that carry a premium gate on the current surface β drives
// the mobile nav's PRO chip. getEffectivePanelConfig folds in per-variant
// premium overrides; unknown keys (custom widgets, MCP panels) resolve to a
// premium-less stub and drop out.
export function getProPanelKeys(
panelSettings: Record<string, PanelConfig>,
variant: string,
): string[] {
return Object.keys(panelSettings).filter((key) =>
panelSettings[key]?.enabled && Boolean(getEffectivePanelConfig(key, variant).premium),
);
}
// Monitor palette β fixed category colors persisted to localStorage (not theme-dependent)
export const MONITOR_COLORS = [
'#44ff88',
'#ff8844',
'#4488ff',
'#ff44ff',
'#ffff44',
'#ff4444',
'#44ffff',
'#88ff44',
'#ff88ff',
'#88ffff',
];
export const STORAGE_KEYS = {
panels: 'worldmonitor-panels',
monitors: 'worldmonitor-monitors',
mapLayers: 'worldmonitor-layers',
disabledFeeds: 'worldmonitor-disabled-feeds',
} as const;
|