File size: 45,955 Bytes
d705bb5 | 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 | # Panel System Documentation
> **World Monitor** β Config-driven panel architecture powering three site variants.
>
> Source of truth: [`src/config/panels.ts`](../src/config/panels.ts) Β· Panel base class: [`src/components/Panel.ts`](../src/components/Panel.ts) Β· App wiring: [`src/App.ts`](../src/App.ts)
---
## Table of Contents
1. [Overview](#1-overview)
2. [Panel Configuration](#2-panel-configuration)
3. [Panel Base Class](#3-panel-base-class)
4. [Full Variant Panels](#4-full-variant-panels-worldmonitorio)
5. [Tech Variant Panels](#5-tech-variant-panels-techworldmonitorio)
6. [Finance Variant Panels](#6-finance-variant-panels-financeworldmonitorio)
7. [Variant Comparison Matrix](#7-variant-comparison-matrix)
8. [Map Layers](#8-map-layers)
9. [Panel Persistence](#9-panel-persistence)
10. [Panel Lifecycle](#10-panel-lifecycle)
11. [Adding a New Panel](#11-adding-a-new-panel)
12. [Diagrams](#12-diagrams)
---
## 1. Overview
World Monitor uses a **config-driven panel system** where every dashboard tile β from live news feeds to AI insights to market data β is declared as a `PanelConfig` entry inside a variant-specific configuration object. The system is designed around three principles:
1. **Variant isolation** β Each site variant (`full`, `tech`, `finance`) declares its own panel set with variant-appropriate display names and priorities. The build-time environment variable `VITE_VARIANT` selects which set is exported.
2. **User customization** β Users can toggle panel visibility, reorder panels via drag-and-drop, and resize panels via a drag handle. All preferences persist to `localStorage`.
3. **No framework** β Panels are vanilla TypeScript classes extending a shared `Panel` base class. There is no React/Vue/Angular; DOM construction and updates are imperative.
### Variant Domains
| Variant | Domain | Focus | Panel Count |
|---------|--------|-------|-------------|
| `full` | worldmonitor.app | Geopolitical intelligence, OSINT, defense | 44 |
| `tech` | tech.worldmonitor.app | Technology, AI/ML, startups, VC | Tech-focused |
| `finance` | finance.worldmonitor.app | Markets, trading, macro, commodities | Finance-focused |
| `commodity` | commodity.worldmonitor.app | Mining, metals, energy, supply chains | Commodity-focused |
| `happy` | happy.worldmonitor.app | Positive news, breakthroughs, conservation | Happy-focused |
| `energy` | energy.worldmonitor.app | Oil, gas, chokepoints, energy security | Energy-focused |
### Key Files
| File | Purpose |
|------|---------|
| [`src/config/panels.ts`](../src/config/panels.ts) | Central panel & map-layer definitions for all six variants |
| [`src/config/variants/base.ts`](../src/config/variants/base.ts) | Shared `VariantConfig` interface, `STORAGE_KEYS`, `MONITOR_COLORS`, API URLs |
| [`src/config/variants/full.ts`](../src/config/variants/full.ts) | Full variant config with panels, layers, and feeds |
| [`src/config/variants/tech.ts`](../src/config/variants/tech.ts) | Tech variant config |
| [`src/config/variants/finance.ts`](../src/config/variants/finance.ts) | Finance variant config |
| [`src/config/variants/commodity.ts`](../src/config/variants/commodity.ts) | Commodity variant config |
| [`src/config/variants/happy.ts`](../src/config/variants/happy.ts) | Happy variant config |
| [`src/config/variants/energy.ts`](../src/config/variants/energy.ts) | Energy variant config |
| [`src/components/Panel.ts`](../src/components/Panel.ts) | Base `Panel` class (440 lines) β DOM, resize, badges, lifecycle |
| [`src/components/NewsPanel.ts`](../src/components/NewsPanel.ts) | `NewsPanel` extending `Panel` β RSS-driven news tiles |
| [`src/App.ts`](../src/App.ts) | Application shell β panel instantiation, data loading, settings modal |
| [`src/types/index.ts`](../src/types/index.ts) | `PanelConfig`, `MapLayers`, `AppState` type definitions |
---
## 2. Panel Configuration
### 2.1 PanelConfig Type
Every panel is described by a `PanelConfig` object defined in [`src/types/index.ts`](../src/types/index.ts):
```typescript
export interface PanelConfig {
name: string; // Display name shown in panel header and settings modal
enabled: boolean; // Whether the panel is visible (toggled by user)
priority?: number; // 1 = core (shown early), 2 = supplementary (shown later)
}
```
- **`name`** β Variant-specific. The same panel ID (e.g. `map`) can have different display names across variants: *"Global Map"* (full), *"Global Tech Map"* (tech), *"Global Markets Map"* (finance).
- **`enabled`** β Defaults to `true` for all shipped panels. Users can disable panels via the Settings modal; the toggled state is persisted.
- **`priority`** β Informational grouping. Priority 1 panels are considered core to the variant's mission; priority 2 panels are supplementary. This does not affect rendering orderβorder is determined by declaration order in the config object and user drag-and-drop overrides.
### 2.2 Variant Selection
Panel sets are selected at build time via the `SITE_VARIANT` constant (derived from `VITE_VARIANT` env var):
```typescript
// src/config/panels.ts β variant-aware exports
export const DEFAULT_PANELS =
SITE_VARIANT === 'tech' ? TECH_PANELS :
SITE_VARIANT === 'finance' ? FINANCE_PANELS :
FULL_PANELS;
export const DEFAULT_MAP_LAYERS =
SITE_VARIANT === 'tech' ? TECH_MAP_LAYERS :
SITE_VARIANT === 'finance' ? FINANCE_MAP_LAYERS :
FULL_MAP_LAYERS;
export const MOBILE_DEFAULT_MAP_LAYERS =
SITE_VARIANT === 'tech' ? TECH_MOBILE_MAP_LAYERS :
SITE_VARIANT === 'finance' ? FINANCE_MOBILE_MAP_LAYERS :
FULL_MOBILE_MAP_LAYERS;
```
Vite tree-shakes the unused variant objects from the production bundle.
### 2.3 VariantConfig Interface
Each variant file exports a full `VariantConfig` object:
```typescript
// src/config/variants/base.ts
export interface VariantConfig {
name: string; // 'full' | 'tech' | 'finance'
description: string; // Human-readable variant description
panels: Record<string, PanelConfig>; // Panel ID β config
mapLayers: MapLayers; // Desktop default layer toggles
mobileMapLayers: MapLayers; // Mobile default layer toggles
}
```
The variant config also defines its own `FEEDS` object (`Record<string, Feed[]>`) mapping panel IDs to their RSS feed sources. Feeds that don't have a registered panel ID result in auto-generated `NewsPanel` instances (see [Panel Lifecycle](#10-panel-lifecycle)).
### 2.4 Storage Keys
All persistence keys are centralized in `STORAGE_KEYS`:
```typescript
// src/config/variants/base.ts (also re-exported from src/config/panels.ts)
export const STORAGE_KEYS = {
panels: 'worldmonitor-panels', // Panel visibility toggles
monitors: 'worldmonitor-monitors', // Monitor keyword configs
mapLayers: 'worldmonitor-layers', // Map layer toggles
disabledFeeds: 'worldmonitor-disabled-feeds', // Per-source feed disabling
} as const;
```
Additional keys used outside `STORAGE_KEYS`:
| Key | Purpose | Managed By |
|-----|---------|------------|
| `worldmonitor-panel-spans` | Panel height/span sizes (1β4) | `Panel.ts` |
| `panel-order` | Drag-and-drop panel ordering | `App.ts` |
| `worldmonitor-variant` | Last-active variant (triggers reset on change) | `App.ts` |
| `worldmonitor-panel-order-v1.9` | Migration flag for v1.9 panel layout | `App.ts` |
### 2.5 Monitor Colors
The monitor palette provides 10 fixed category colors used for user-defined keyword monitors:
```typescript
export const MONITOR_COLORS = [
'#44ff88', '#ff8844', '#4488ff', '#ff44ff', '#ffff44',
'#ff4444', '#44ffff', '#88ff44', '#ff88ff', '#88ffff',
];
```
These colors are theme-independent and persist alongside monitor definitions in `localStorage`.
---
## 3. Panel Base Class
All panels extend the `Panel` class defined in [`src/components/Panel.ts`](../src/components/Panel.ts) (440 lines). This base class provides the shared DOM structure, interaction patterns, and lifecycle methods.
### 3.1 Constructor Options
```typescript
export interface PanelOptions {
id: string; // Unique panel identifier (matches config key)
title: string; // Display name rendered in header
showCount?: boolean; // Show item count badge in header
className?: string; // Additional CSS class on root element
trackActivity?: boolean; // Enable "new items" badge (default: true)
infoTooltip?: string; // HTML content for methodology tooltip (βΉοΈ button)
}
```
### 3.2 DOM Structure
Every panel renders the following DOM tree:
```
div.panel[data-panel="{id}"]
βββ div.panel-header
β βββ div.panel-header-left
β β βββ span.panel-title β Display name
β β βββ div.panel-info-wrapper β (optional) βΉοΈ tooltip
β β βββ span.panel-new-badge β (optional) "N new" badge
β βββ span.panel-data-badge β live/cached/unavailable indicator
β βββ span.panel-count β (optional) item count
βββ div.panel-content#${id}Content β Main content area
βββ div.panel-resize-handle β Drag-to-resize handle
```
### 3.3 Features
| Feature | Description |
|---------|-------------|
| **Drag-to-resize** | Bottom handle supports mouse + touch. Height maps to span classes (`span-1` through `span-4`). Double-click resets to default. |
| **Collapsible** | Click header to toggle `hidden` class on content (handled by CSS). |
| **Loading state** | `showLoading(message?)` renders a radar sweep animation with text. Shown by default on construction. |
| **Error state** | `showError(message?)` renders error text. `showConfigError(message)` adds a "Open Settings" button (Tauri desktop). |
| **Data badge** | `setDataBadge(state, detail?)` shows `live`, `cached`, or `unavailable` with optional detail text. |
| **New badge** | `setNewBadge(count, pulse?)` shows a blue dot with count in the header. Pulses for important updates. |
| **Count badge** | `setCount(n)` updates the numeric count in the header (when `showCount` is enabled). |
| **Info tooltip** | Hover/click on βΉοΈ icon shows methodology explanation. Dismissed on outside click. |
| **Throttled content** | `setContentThrottled(html)` buffers DOM writes to one per animation frame (PERF-009). |
| **Header error state** | `setErrorState(hasError, tooltip?)` toggles a red header accent for degraded panels. |
### 3.4 Span System (Sizing)
Panel height is quantized into 4 span levels:
| Span | Min Height | CSS Class | Description |
|------|-----------|-----------|-------------|
| 1 | default | `span-1` | Standard single-row height |
| 2 | 250px | `span-2` | Medium β 50px drag triggers |
| 3 | 350px | `span-3` | Large β 150px drag triggers |
| 4 | 500px | `span-4` | Extra-large β 300px drag triggers |
Span values are persisted per-panel in the `worldmonitor-panel-spans` localStorage key as a JSON object `{ [panelId]: spanNumber }`.
### 3.5 Public Methods
| Method | Signature | Description |
|--------|-----------|-------------|
| `getElement()` | `(): HTMLElement` | Returns the root DOM element |
| `show()` | `(): void` | Remove `hidden` class |
| `hide()` | `(): void` | Add `hidden` class |
| `toggle(visible)` | `(boolean): void` | Show or hide |
| `showLoading(msg?)` | `(string?): void` | Render loading spinner |
| `showError(msg?)` | `(string?): void` | Render error message |
| `showConfigError(msg)` | `(string): void` | Render config error with settings button |
| `setContent(html)` | `(string): void` | Set content innerHTML directly |
| `setContentThrottled(html)` | `(string): void` | Buffered content update (rAF) |
| `setCount(n)` | `(number): void` | Update count badge |
| `setNewBadge(count, pulse?)` | `(number, boolean?): void` | Update new-items badge |
| `clearNewBadge()` | `(): void` | Hide new badge |
| `setDataBadge(state, detail?)` | `(string, string?): void` | Update data freshness badge |
| `clearDataBadge()` | `(): void` | Hide data badge |
| `setErrorState(err, tip?)` | `(boolean, string?): void` | Toggle header error styling |
| `getId()` | `(): string` | Return panel ID |
| `resetHeight()` | `(): void` | Clear saved span, remove span classes |
| `destroy()` | `(): void` | Remove all event listeners |
---
## 4. Full Variant Panels (worldmonitor.io)
The full (geopolitical) variant ships **37 panels** focused on OSINT, defense intelligence, geopolitical risk, and global situational awareness.
| # | Panel ID | Display Name | Priority | Component Class | Data Source |
|---|----------|-------------|----------|-----------------|-------------|
| 1 | `map` | Global Map | 1 | `MapContainer` | MapLibre + deck.gl |
| 2 | `live-news` | Live News | 1 | `LiveNewsPanel` | Multi-source RSS aggregation |
| 3 | `live-webcams` | Live Webcams | 1 | `LiveWebcamsPanel` | Curated webcam streams |
| 4 | `insights` | AI Insights | 1 | `InsightsPanel` | Groq/OpenRouter LLM summarization |
| 5 | `strategic-posture` | AI Strategic Posture | 1 | `StrategicPosturePanel` | Theater posture API |
| 6 | `cii` | Country Instability | 1 | `CIIPanel` | Composite instability index |
| 7 | `strategic-risk` | Strategic Risk Overview | 1 | `StrategicRiskPanel` | Risk scores API |
| 8 | `intel` | Intel Feed | 1 | `NewsPanel` | Intelligence RSS feeds |
| 9 | `gdelt-intel` | Live Intelligence | 1 | `GdeltIntelPanel` | GDELT event database |
| 10 | `cascade` | Infrastructure Cascade | 1 | `CascadePanel` | Multi-domain cascade analysis |
| 11 | `politics` | World News | 1 | `NewsPanel` | Political RSS feeds |
| 12 | `middleeast` | Middle East | 1 | `NewsPanel` | Regional RSS feeds |
| 13 | `africa` | Africa | 1 | `NewsPanel` | Regional RSS feeds |
| 14 | `latam` | Latin America | 1 | `NewsPanel` | Regional RSS feeds |
| 15 | `asia` | Asia-Pacific | 1 | `NewsPanel` | Regional RSS feeds |
| 16 | `energy` | Energy & Resources | 1 | `NewsPanel` | Energy RSS feeds |
| 17 | `gov` | Government | 1 | `NewsPanel` | Government RSS feeds |
| 18 | `thinktanks` | Think Tanks | 1 | `NewsPanel` | Think tank RSS feeds |
| 19 | `polymarket` | Predictions | 1 | `PredictionPanel` | Polymarket API |
| 20 | `commodities` | Commodities | 1 | `CommoditiesPanel` | Yahoo Finance / commodity APIs |
| 21 | `markets` | Markets | 1 | `MarketPanel` | Finnhub / Yahoo Finance |
| 22 | `economic` | Economic Indicators | 1 | `EconomicPanel` | FRED API |
| 23 | `finance` | Financial | 1 | `NewsPanel` | Financial RSS feeds |
| 24 | `tech` | Technology | 2 | `NewsPanel` | Technology RSS feeds |
| 25 | `crypto` | Crypto | 2 | `CryptoPanel` | CoinGecko API |
| 26 | `heatmap` | Sector Heatmap | 2 | `HeatmapPanel` | Market sector data |
| 27 | `ai` | AI/ML | 2 | `NewsPanel` | AI/ML RSS feeds |
| 28 | `layoffs` | Layoffs Tracker | 2 | `NewsPanel` | Layoffs RSS feeds |
| 29 | `monitors` | My Monitors | 2 | `MonitorPanel` | User-defined keyword monitors |
| 30 | `satellite-fires` | Fires | 2 | `SatelliteFiresPanel` | NASA FIRMS API |
| 31 | `macro-signals` | Market Radar | 2 | `MacroSignalsPanel` | Macro signals API |
| 32 | `etf-flows` | BTC ETF Tracker | 2 | `ETFFlowsPanel` | ETF flows API |
| 33 | `stablecoins` | Stablecoins | 2 | `StablecoinPanel` | Stablecoin markets API |
| 34 | `ucdp-events` | UCDP Conflict Events | 2 | `UcdpEventsPanel` | UCDP API |
| 35 | `displacement` | UNHCR Displacement | 2 | `DisplacementPanel` | UNHCR population API |
| 36 | `climate` | Climate Anomalies | 2 | `ClimateAnomalyPanel` | Climate anomalies API |
| 37 | `population-exposure` | Population Exposure | 2 | `PopulationExposurePanel` | WorldPop exposure API |
**Full variant exclusive panels**: `strategic-posture`, `cii`, `strategic-risk`, `gdelt-intel`, `cascade`, `satellite-fires`, `ucdp-events`, `displacement`, `climate`, `population-exposure`, and the regional panels (`middleeast`, `africa`, `latam`, `asia`).
---
## 5. Tech Variant Panels (tech.worldmonitor.io)
The tech variant ships **34 panels** focused on technology news, AI/ML, startup ecosystems, and developer tooling.
| # | Panel ID | Display Name | Priority | Component Class | Data Source |
|---|----------|-------------|----------|-----------------|-------------|
| 1 | `map` | Global Tech Map | 1 | `MapContainer` | MapLibre + deck.gl |
| 2 | `live-news` | Tech Headlines | 1 | `LiveNewsPanel` | Tech RSS aggregation |
| 3 | `live-webcams` | Live Webcams | 2 | `LiveWebcamsPanel` | Curated webcam streams |
| 4 | `insights` | AI Insights | 1 | `InsightsPanel` | Groq/OpenRouter LLM summarization |
| 5 | `ai` | AI/ML News | 1 | `NewsPanel` | AI/ML RSS feeds |
| 6 | `tech` | Technology | 1 | `NewsPanel` | Technology RSS feeds |
| 7 | `startups` | Startups & VC | 1 | `NewsPanel` | Startup RSS feeds |
| 8 | `vcblogs` | VC Insights & Essays | 1 | `NewsPanel` | VC blog RSS feeds |
| 9 | `regionalStartups` | Global Startup News | 1 | `NewsPanel` | Regional startup RSS feeds |
| 10 | `unicorns` | Unicorn Tracker | 1 | `NewsPanel` | Unicorn RSS feeds |
| 11 | `accelerators` | Accelerators & Demo Days | 1 | `NewsPanel` | Accelerator RSS feeds |
| 12 | `security` | Cybersecurity | 1 | `NewsPanel` | Cybersecurity RSS feeds |
| 13 | `policy` | AI Policy & Regulation | 1 | `NewsPanel` | AI policy RSS feeds |
| 14 | `regulation` | AI Regulation Dashboard | 1 | `RegulationPanel` | Regulation data |
| 15 | `layoffs` | Layoffs Tracker | 1 | `NewsPanel` | Layoffs RSS feeds |
| 16 | `markets` | Tech Stocks | 2 | `MarketPanel` | Finnhub / Yahoo Finance |
| 17 | `finance` | Financial News | 2 | `NewsPanel` | Financial RSS feeds |
| 18 | `crypto` | Crypto | 2 | `CryptoPanel` | CoinGecko API |
| 19 | `hardware` | Semiconductors & Hardware | 2 | `NewsPanel` | Hardware RSS feeds |
| 20 | `cloud` | Cloud & Infrastructure | 2 | `NewsPanel` | Cloud RSS feeds |
| 21 | `dev` | Developer Community | 2 | `NewsPanel` | Developer RSS feeds |
| 22 | `github` | GitHub Trending | 1 | `NewsPanel` | GitHub trending API |
| 23 | `ipo` | IPO & SPAC | 2 | `NewsPanel` | IPO RSS feeds |
| 24 | `polymarket` | Tech Predictions | 2 | `PredictionPanel` | Polymarket API |
| 25 | `funding` | Funding & VC | 1 | `NewsPanel` | Funding RSS feeds |
| 26 | `producthunt` | Product Hunt | 1 | `NewsPanel` | Product Hunt RSS |
| 27 | `events` | Tech Events | 1 | `TechEventsPanel` | Tech events API |
| 28 | `service-status` | Service Status | 2 | `ServiceStatusPanel` | Service status API |
| 29 | `economic` | Economic Indicators | 2 | `EconomicPanel` | FRED API |
| 30 | `tech-readiness` | Tech Readiness Index | 1 | `TechReadinessPanel` | World Bank API |
| 31 | `macro-signals` | Market Radar | 2 | `MacroSignalsPanel` | Macro signals API |
| 32 | `etf-flows` | BTC ETF Tracker | 2 | `ETFFlowsPanel` | ETF flows API |
| 33 | `stablecoins` | Stablecoins | 2 | `StablecoinPanel` | Stablecoin markets API |
| 34 | `monitors` | My Monitors | 2 | `MonitorPanel` | User-defined keyword monitors |
**Tech variant exclusive panels**: `startups`, `vcblogs`, `regionalStartups`, `unicorns`, `accelerators`, `security`, `policy`, `regulation`, `hardware`, `cloud`, `dev`, `github`, `funding`, `producthunt`, `events`, `service-status`, `tech-readiness`.
---
## 6. Finance Variant Panels (finance.worldmonitor.io)
The finance variant ships **29 panels** focused on markets, trading, macro indicators, and financial data.
| # | Panel ID | Display Name | Priority | Component Class | Data Source |
|---|----------|-------------|----------|-----------------|-------------|
| 1 | `map` | Global Markets Map | 1 | `MapContainer` | MapLibre + deck.gl |
| 2 | `live-news` | Market Headlines | 1 | `LiveNewsPanel` | Financial RSS aggregation |
| 3 | `live-webcams` | Live Webcams | 2 | `LiveWebcamsPanel` | Curated webcam streams |
| 4 | `insights` | AI Market Insights | 1 | `InsightsPanel` | Groq/OpenRouter LLM summarization |
| 5 | `markets` | Live Markets | 1 | `MarketPanel` | Finnhub / Yahoo Finance |
| 6 | `markets-news` | Markets News | 2 | `NewsPanel` | Markets RSS feeds |
| 7 | `forex` | Forex & Currencies | 1 | `NewsPanel` | Forex RSS feeds |
| 8 | `bonds` | Fixed Income | 1 | `NewsPanel` | Fixed income RSS feeds |
| 9 | `commodities` | Commodities & Futures | 1 | `CommoditiesPanel` | Yahoo Finance / commodity APIs |
| 10 | `commodities-news` | Commodities News | 2 | `NewsPanel` | Commodities RSS feeds |
| 11 | `crypto` | Crypto & Digital Assets | 1 | `CryptoPanel` | CoinGecko API |
| 12 | `crypto-news` | Crypto News | 2 | `NewsPanel` | Crypto RSS feeds |
| 13 | `centralbanks` | Central Bank Watch | 1 | `NewsPanel` | Central bank RSS feeds |
| 14 | `economic` | Economic Data | 1 | `EconomicPanel` | FRED API |
| 15 | `economic-news` | Economic News | 2 | `NewsPanel` | Economic RSS feeds |
| 16 | `ipo` | IPOs, Earnings & M&A | 1 | `NewsPanel` | IPO/M&A RSS feeds |
| 17 | `heatmap` | Sector Heatmap | 1 | `HeatmapPanel` | Market sector data |
| 18 | `macro-signals` | Market Radar | 1 | `MacroSignalsPanel` | Macro signals API |
| 19 | `derivatives` | Derivatives & Options | 2 | `NewsPanel` | Derivatives RSS feeds |
| 20 | `fintech` | Fintech & Trading Tech | 2 | `NewsPanel` | Fintech RSS feeds |
| 21 | `regulation` | Financial Regulation | 2 | `NewsPanel` | Regulation RSS feeds |
| 22 | `institutional` | Hedge Funds & PE | 2 | `NewsPanel` | Institutional RSS feeds |
| 23 | `analysis` | Market Analysis | 2 | `NewsPanel` | Analysis RSS feeds |
| 24 | `etf-flows` | BTC ETF Tracker | 2 | `ETFFlowsPanel` | ETF flows API |
| 25 | `stablecoins` | Stablecoins | 2 | `StablecoinPanel` | Stablecoin markets API |
| 26 | `gcc-investments` | GCC Investments | 2 | `InvestmentsPanel` | GCC investment data |
| 27 | `gccNews` | GCC Business News | 2 | `NewsPanel` | GCC news RSS feeds |
| 28 | `polymarket` | Predictions | 2 | `PredictionPanel` | Polymarket API |
| 29 | `monitors` | My Monitors | 2 | `MonitorPanel` | User-defined keyword monitors |
**Finance variant exclusive panels**: `markets-news`, `forex`, `bonds`, `commodities-news`, `crypto-news`, `centralbanks`, `economic-news`, `derivatives`, `fintech`, `institutional`, `analysis`, `gcc-investments`, `gccNews`.
---
## 7. Variant Comparison Matrix
This matrix shows which panel IDs are available in each variant. Panels that appear in multiple variants may have different display names (see individual variant sections above).
| Panel ID | Full | Tech | Finance | Notes |
|----------|:----:|:----:|:-------:|-------|
| `map` | β
| β
| β
| Different names per variant |
| `live-news` | β
| β
| β
| Different names per variant |
| `live-webcams` | β
| β
| β
| Priority 1 in full, priority 2 in tech/finance |
| `insights` | β
| β
| β
| Different names per variant |
| `markets` | β
| β
| β
| "Markets" / "Tech Stocks" / "Live Markets" |
| `economic` | β
| β
| β
| "Economic Indicators" / "Economic Indicators" / "Economic Data" |
| `crypto` | β
| β
| β
| "Crypto" / "Crypto" / "Crypto & Digital Assets" |
| `polymarket` | β
| β
| β
| "Predictions" / "Tech Predictions" / "Predictions" |
| `monitors` | β
| β
| β
| Identical across all variants |
| `macro-signals` | β
| β
| β
| P2 in full/tech, P1 in finance |
| `etf-flows` | β
| β
| β
| P2 in all variants |
| `stablecoins` | β
| β
| β
| P2 in all variants |
| `layoffs` | β
| β
| β | P2 in full, P1 in tech |
| `finance` | β
| β
| β | "Financial" / "Financial News" |
| `tech` | β
| β
| β | P2 in full, P1 in tech |
| `ai` | β
| β
| β | "AI/ML" / "AI/ML News" |
| `heatmap` | β
| β | β
| P2 in full, P1 in finance |
| `commodities` | β
| β | β
| "Commodities" / "Commodities & Futures" |
| `ipo` | β | β
| β
| "IPO & SPAC" / "IPOs, Earnings & M&A" |
| `regulation` | β | β
| β
| "AI Regulation Dashboard" / "Financial Regulation" |
| `politics` | β
| β | β | Full only β World News |
| `middleeast` | β
| β | β | Full only |
| `africa` | β
| β | β | Full only |
| `latam` | β
| β | β | Full only |
| `asia` | β
| β | β | Full only |
| `energy` | β
| β | β | Full only |
| `gov` | β
| β | β | Full only |
| `thinktanks` | β
| β | β | Full only |
| `intel` | β
| β | β | Full only |
| `gdelt-intel` | β
| β | β | Full only |
| `cascade` | β
| β | β | Full only |
| `strategic-posture` | β
| β | β | Full only |
| `cii` | β
| β | β | Full only |
| `strategic-risk` | β
| β | β | Full only |
| `satellite-fires` | β
| β | β | Full only |
| `ucdp-events` | β
| β | β | Full only |
| `displacement` | β
| β | β | Full only |
| `climate` | β
| β | β | Full only |
| `population-exposure` | β
| β | β | Full only |
| `startups` | β | β
| β | Tech only |
| `vcblogs` | β | β
| β | Tech only |
| `regionalStartups` | β | β
| β | Tech only |
| `unicorns` | β | β
| β | Tech only |
| `accelerators` | β | β
| β | Tech only |
| `security` | β | β
| β | Tech only |
| `policy` | β | β
| β | Tech only |
| `hardware` | β | β
| β | Tech only |
| `cloud` | β | β
| β | Tech only |
| `dev` | β | β
| β | Tech only |
| `github` | β | β
| β | Tech only |
| `funding` | β | β
| β | Tech only |
| `producthunt` | β | β
| β | Tech only |
| `events` | β | β
| β | Tech only |
| `service-status` | β | β
| β | Tech only |
| `tech-readiness` | β | β
| β | Tech only |
| `markets-news` | β | β | β
| Finance only |
| `forex` | β | β | β
| Finance only |
| `bonds` | β | β | β
| Finance only |
| `commodities-news` | β | β | β
| Finance only |
| `crypto-news` | β | β | β
| Finance only |
| `centralbanks` | β | β | β
| Finance only |
| `economic-news` | β | β | β
| Finance only |
| `derivatives` | β | β | β
| Finance only |
| `fintech` | β | β | β
| Finance only |
| `institutional` | β | β | β
| Finance only |
| `analysis` | β | β | β
| Finance only |
| `gcc-investments` | β | β | β
| Finance only |
| `gccNews` | β | β | β
| Finance only |
---
## 8. Map Layers
The map is a specialized panel (`map` ID) rendered in its own `#mapSection` container rather than the `#panelsGrid`. Each variant defines both desktop and mobile default layer sets.
### 8.1 MapLayers Interface
```typescript
// src/types/index.ts
export interface MapLayers {
// Geopolitical layers
conflicts: boolean; bases: boolean; hotspots: boolean;
nuclear: boolean; sanctions: boolean; military: boolean;
// Infrastructure layers
cables: boolean; pipelines: boolean; waterways: boolean;
outages: boolean; datacenters: boolean; spaceports: boolean;
// Threat layers
cyberThreats: boolean; protests: boolean; fires: boolean;
// Environmental layers
weather: boolean; economic: boolean; natural: boolean;
minerals: boolean; irradiators: boolean;
// Transport layers
ais: boolean; flights: boolean;
// Data source layers
ucdpEvents: boolean; displacement: boolean; climate: boolean;
// Tech variant layers
startupHubs: boolean; cloudRegions: boolean; accelerators: boolean;
techHQs: boolean; techEvents: boolean;
// Finance variant layers
stockExchanges: boolean; financialCenters: boolean; centralBanks: boolean;
commodityHubs: boolean; gulfInvestments: boolean;
}
```
### 8.2 Full Variant Layers
| Layer | Desktop Default | Mobile Default | Description |
|-------|:--------------:|:--------------:|-------------|
| `conflicts` | β
ON | β
ON | Armed conflict zones |
| `bases` | β
ON | OFF | Military bases |
| `hotspots` | β
ON | β
ON | Geopolitical hotspots |
| `nuclear` | β
ON | OFF | Nuclear facilities |
| `sanctions` | β
ON | β
ON | Sanctioned entities/regions |
| `weather` | β
ON | β
ON | Weather alerts |
| `economic` | β
ON | OFF | Economic indicators overlay |
| `waterways` | β
ON | OFF | Strategic waterways |
| `outages` | β
ON | β
ON | Internet/infrastructure outages |
| `military` | β
ON | OFF | Military deployments |
| `natural` | β
ON | β
ON | Natural disasters |
| `cables` | OFF | OFF | Undersea fiber cables |
| `pipelines` | OFF | OFF | Oil/gas pipelines |
| `ais` | OFF | OFF | AIS vessel tracking |
| `irradiators` | OFF | OFF | Gamma irradiators |
| `cyberThreats` | OFF | OFF | Cyber threat indicators |
| `datacenters` | OFF | OFF | AI data centers |
| `protests` | OFF | OFF | Social unrest events |
| `flights` | OFF | OFF | Military flights |
| `spaceports` | OFF | OFF | Space launch facilities |
| `minerals` | OFF | OFF | Critical mineral deposits |
| `fires` | OFF | OFF | Active fires (FIRMS) |
| `ucdpEvents` | OFF | OFF | UCDP conflict data |
| `displacement` | OFF | OFF | UNHCR displacement data |
| `climate` | OFF | OFF | Climate anomalies |
| All tech layers | OFF | OFF | β |
| All finance layers | OFF | OFF | β |
**Desktop default ON: 11 layers** Β· **Mobile default ON: 5 layers**
### 8.3 Tech Variant Layers
| Layer | Desktop Default | Mobile Default | Description |
|-------|:--------------:|:--------------:|-------------|
| `cables` | β
ON | OFF | Undersea fiber cables |
| `weather` | β
ON | OFF | Weather alerts |
| `economic` | β
ON | OFF | Economic indicators overlay |
| `outages` | β
ON | β
ON | Internet outages |
| `datacenters` | β
ON | β
ON | AI data centers |
| `natural` | β
ON | β
ON | Natural disasters |
| `startupHubs` | β
ON | β
ON | Startup ecosystem hubs |
| `cloudRegions` | β
ON | OFF | Cloud provider regions |
| `techHQs` | β
ON | OFF | Major tech company HQs |
| `techEvents` | β
ON | β
ON | Tech conferences and events |
| All geopolitical | OFF | OFF | β |
| All military | OFF | OFF | β |
| All finance layers | OFF | OFF | β |
**Desktop default ON: 10 layers** Β· **Mobile default ON: 5 layers**
### 8.4 Finance Variant Layers
| Layer | Desktop Default | Mobile Default | Description |
|-------|:--------------:|:--------------:|-------------|
| `cables` | β
ON | OFF | Undersea fiber cables |
| `pipelines` | β
ON | OFF | Oil/gas pipelines |
| `sanctions` | β
ON | OFF | Sanctioned entities |
| `weather` | β
ON | OFF | Weather alerts |
| `economic` | β
ON | β
ON | Economic indicators overlay |
| `waterways` | β
ON | OFF | Strategic waterways |
| `outages` | β
ON | β
ON | Internet outages |
| `natural` | β
ON | β
ON | Natural disasters |
| `stockExchanges` | β
ON | β
ON | Global stock exchanges |
| `financialCenters` | β
ON | OFF | Financial centers |
| `centralBanks` | β
ON | β
ON | Central bank locations |
| All geopolitical | OFF | OFF | β |
| All military | OFF | OFF | β |
| All tech layers | OFF | OFF | β |
**Desktop default ON: 11 layers** Β· **Mobile default ON: 5 layers**
### 8.5 Mobile Layer Strategy
Mobile defaults enable fewer layers to preserve performance on constrained devices. The pattern:
- Each variant enables ~5 layers on mobile (vs 10β11 on desktop)
- Environmental critical layers (`natural`, `outages`) are always on
- Variant-signature layers stay on (e.g. `startupHubs` for tech, `stockExchanges` for finance)
- Heavy overlay layers (`cables`, `pipelines`, `weather`) are off by default on mobile
---
## 9. Panel Persistence
All user preferences survive page reload via `localStorage`. The following table enumerates every persisted setting:
### 9.1 Persistence Map
| Setting | localStorage Key | Format | Default Source | Survives Reload |
|---------|-----------------|--------|----------------|:--------------:|
| Panel visibility | `worldmonitor-panels` | `Record<string, PanelConfig>` JSON | `DEFAULT_PANELS` | β
|
| Panel ordering | `panel-order` | `string[]` JSON | Config declaration order | β
|
| Panel sizes/spans | `worldmonitor-panel-spans` | `Record<string, number>` JSON | All span-1 | β
|
| Map layer toggles | `worldmonitor-layers` | `MapLayers` JSON | `DEFAULT_MAP_LAYERS` | β
|
| Monitor keywords | `worldmonitor-monitors` | `Monitor[]` JSON | `[]` | β
|
| Disabled sources | `worldmonitor-disabled-feeds` | `string[]` JSON | `[]` | β
|
| Active variant | `worldmonitor-variant` | Plain string | `SITE_VARIANT` | β
|
| Banner dismissal | `banner-dismissed` (sessionStorage) | Timestamp string | β | Session only |
### 9.2 Variant Change Reset
When the stored variant (`worldmonitor-variant`) differs from the current `SITE_VARIANT`, the App constructor performs a full reset:
```typescript
if (storedVariant !== currentVariant) {
localStorage.setItem('worldmonitor-variant', currentVariant);
localStorage.removeItem(STORAGE_KEYS.mapLayers);
localStorage.removeItem(STORAGE_KEYS.panels);
localStorage.removeItem(this.PANEL_ORDER_KEY);
localStorage.removeItem(this.PANEL_SPANS_KEY);
this.mapLayers = { ...defaultLayers };
this.panelSettings = { ...DEFAULT_PANELS };
}
```
This ensures users switching between variant domains (e.g. from worldmonitor.io to tech.worldmonitor.io) get a clean default experience for the new variant.
### 9.3 Full Reset
Users can clear all panel preferences by clearing `localStorage` for the domain. There is no in-app "reset to defaults" button β the variant change mechanism serves as an implicit reset.
### 9.4 Merge Strategy for New Panels
When the application adds new panels (in a code update), the saved panel order is merged with the current defaults:
1. Start with the saved order (from `panel-order` key)
2. Remove any panels that no longer exist in `DEFAULT_PANELS`
3. Find panels present in `DEFAULT_PANELS` but missing from saved order
4. Insert missing panels after the `politics` panel position (or at position 0)
5. Always place `monitors` panel last
6. Always place `live-news` panel first (CSS grid constraint β it spans 2 columns)
7. Always place `live-webcams` immediately after `live-news`
---
## 10. Panel Lifecycle
### 10.1 Initialization Flow
The panel lifecycle begins in `App.ts` constructor and flows through these phases:
1. **Config Loading** β `panelSettings` loaded from localStorage (or `DEFAULT_PANELS` on first visit / variant change)
2. **DOM Scaffolding** β `render()` builds the page shell including `#panelsGrid` container and settings modal
3. **Panel Instantiation** β `createPanels()` constructs all panel class instances and registers them in `this.panels` and `this.newsPanels`
4. **Grid Insertion** β Panels are appended to `#panelsGrid` in the resolved order (saved + merge)
5. **Drag-and-drop Binding** β Each panel element gets `makeDraggable()` handlers for reordering
6. **Visibility Application** β `applyPanelSettings()` calls `panel.toggle(config.enabled)` for every panel
7. **Data Loading** β `loadAllData()` fires parallel API calls; each handler updates its panel via `setContent()` / `setContentThrottled()`
8. **Refresh Scheduling** β Periodic refresh timers are set up per data source (2β60 min intervals)
### 10.2 Panel Type Hierarchy
```
Panel (base)
βββ NewsPanel β RSS-driven news feeds (most panels)
βββ MarketPanel β Live market tickers
βββ HeatmapPanel β Sector heatmap grid
βββ CryptoPanel β Cryptocurrency prices
βββ CommoditiesPanel β Commodity prices
βββ PredictionPanel β Polymarket predictions
βββ EconomicPanel β FRED economic indicators
βββ MonitorPanel β User keyword monitors
βββ CIIPanel β Country Instability Index
βββ CascadePanel β Infrastructure cascade analysis
βββ GdeltIntelPanel β GDELT intelligence feed
βββ SatelliteFiresPanelβ NASA FIRMS fire data
βββ StrategicRiskPanel β Risk score overview
βββ StrategicPosturePanel β Theater posture
βββ UcdpEventsPanel β UCDP conflict events
βββ DisplacementPanel β UNHCR displacement
βββ ClimateAnomalyPanelβ Climate anomaly data
βββ PopulationExposurePanel β Population exposure
βββ InvestmentsPanel β GCC investment tracker
βββ LiveNewsPanel β Breaking news aggregation
βββ LiveWebcamsPanel β Multi-stream webcam view
βββ TechEventsPanel β Technology events
βββ ServiceStatusPanel β Service uptime monitor
βββ TechReadinessPanel β World Bank tech index
βββ MacroSignalsPanel β Macro market signals
βββ ETFFlowsPanel β BTC ETF flow tracker
βββ StablecoinPanel β Stablecoin market data
βββ InsightsPanel β AI-generated insights
βββ RegulationPanel β Regulation dashboard
βββ RuntimeConfigPanel β Desktop runtime config (Tauri only)
βββ OrefSirensPanel β Israel alert sirens (full only)
βββ StatusPanel β System status (not in panel grid)
```
### 10.3 Auto-generated News Panels
`App.ts` iterates over all keys in the variant's `FEEDS` object. For any feed category that does not already have a manually instantiated `NewsPanel`, a new `NewsPanel` is created automatically:
```typescript
for (const key of Object.keys(FEEDS)) {
if (this.newsPanels[key]) continue; // Skip if already created
if (!Array.isArray((FEEDS as Record<string, unknown>)[key])) continue;
// If a data panel exists with this key, create a separate news panel with "-news" suffix
const panelKey = this.panels[key] && !this.newsPanels[key] ? `${key}-news` : key;
if (this.panels[panelKey]) continue;
const panelConfig = DEFAULT_PANELS[panelKey] ?? DEFAULT_PANELS[key];
const label = panelConfig?.name ?? key.charAt(0).toUpperCase() + key.slice(1);
const panel = new NewsPanel(panelKey, label);
this.attachRelatedAssetHandlers(panel);
this.newsPanels[key] = panel;
this.panels[panelKey] = panel;
}
```
This allows the finance variant to have paired panels like `markets` (data panel) + `markets-news` (RSS panel) without manual duplication.
### 10.4 Panel Toggle Flow
When a user clicks a panel toggle in the Settings modal:
1. `config.enabled` is flipped on the in-memory `panelSettings`
2. `saveToStorage(STORAGE_KEYS.panels, this.panelSettings)` persists to localStorage
3. `renderPanelToggles()` re-renders the toggle UI with updated checkmarks
4. `applyPanelSettings()` iterates all panels, calling `panel.toggle(config.enabled)`
5. The `Panel.toggle()` method adds/removes the `hidden` CSS class
### 10.5 Panel Destruction
Panels are destroyed when the App instance is torn down. The `Panel.destroy()` method removes global event listeners (tooltip close handlers, touch/mouse handlers for resize). Panel DOM elements are removed when their parent grid is cleared.
---
## 11. Adding a New Panel
Step-by-step guide to adding a new panel to World Monitor.
### Step 1: Define the Panel Config
Add the panel entry to the appropriate variant config in [`src/config/panels.ts`](../src/config/panels.ts):
```typescript
// In the FULL_PANELS (or TECH_PANELS, FINANCE_PANELS) object:
'my-panel': { name: 'My Panel', enabled: true, priority: 2 },
```
**Panel order matters** β panels are rendered in declaration order by default.
### Step 2: Create the Component Class
Create a new file in `src/components/`:
```typescript
// src/components/MyPanel.ts
import { Panel } from './Panel';
export class MyPanel extends Panel {
constructor() {
super({
id: 'my-panel',
title: 'My Panel',
showCount: true,
infoTooltip: 'Methodology: ...',
});
}
public async refresh(): Promise<void> {
this.showLoading();
try {
const data = await fetch('/api/my-data').then(r => r.json());
this.setContent(this.renderData(data));
this.setCount(data.length);
this.setDataBadge('live');
} catch (e) {
this.showError('Failed to load data');
this.setDataBadge('unavailable');
}
}
private renderData(data: unknown[]): string {
return `<div class="my-panel-content">...</div>`;
}
}
```
For RSS-based panels, use `NewsPanel` directly instead of creating a new class β just add feeds to the variant's `FEEDS` object and the panel will be auto-generated.
### Step 3: Register in App.ts
Import and instantiate the panel in the `createPanels()` method of [`src/App.ts`](../src/App.ts):
```typescript
import { MyPanel } from '@/components/MyPanel';
// Inside createPanels():
const myPanel = new MyPanel();
this.panels['my-panel'] = myPanel;
```
### Step 4: Wire Data Loading
Add a data loading task in `loadAllData()`:
```typescript
tasks.push({
name: 'myPanel',
task: runGuarded('myPanel', () => (this.panels['my-panel'] as MyPanel).refresh()),
});
```
### Step 5: Add Refresh Interval (Optional)
If the panel needs periodic refresh, add a timer in `setupRefreshTimers()` referencing `REFRESH_INTERVALS`.
### Step 6: Add Map Layer (Optional)
If the panel has an associated map layer:
1. Add the boolean field to `MapLayers` in `src/types/index.ts`
2. Set default values in all variant layer objects in `src/config/panels.ts`
3. Handle the layer in `MapContainer`
### Step 7: Add i18n Key
Add a translation key in `src/locales/en.json` (and other locale files):
```json
{
"panels": {
"myPanel": "My Panel"
}
}
```
### Step 8: Register in Variant Configs
If using the variant config system (`src/config/variants/`), add the panel to the appropriate variant file(s) alongside feeds if applicable.
---
## 12. Diagrams
### 12.1 Panel Registration Flow
```mermaid
flowchart TD
A[App Constructor] --> B{Variant Changed?}
B -->|Yes| C[Reset localStorage<br/>Use DEFAULT_PANELS]
B -->|No| D[Load panelSettings<br/>from localStorage]
C --> E[render: Build DOM Shell]
D --> E
E --> F[createPanels]
F --> G[Instantiate Panel Classes<br/>Register in this.panels]
G --> H[Auto-generate NewsPanels<br/>from FEEDS keys]
H --> I[Resolve Panel Order<br/>saved + merge missing]
I --> J[Append to #panelsGrid<br/>in resolved order]
J --> K[makeDraggable<br/>on each panel element]
K --> L[applyPanelSettings<br/>show/hide per config]
L --> M[renderPanelToggles<br/>build settings modal UI]
M --> N[loadAllData<br/>parallel API calls]
```
### 12.2 Variant Selection Flow
```mermaid
flowchart LR
ENV["VITE_VARIANT<br/>env variable"] --> VAR["SITE_VARIANT<br/>constant"]
VAR --> SW{Switch}
SW -->|"'tech'"| TP["TECH_PANELS<br/>TECH_MAP_LAYERS<br/>TECH_MOBILE_MAP_LAYERS"]
SW -->|"'finance'"| FP["FINANCE_PANELS<br/>FINANCE_MAP_LAYERS<br/>FINANCE_MOBILE_MAP_LAYERS"]
SW -->|default| GP["FULL_PANELS<br/>FULL_MAP_LAYERS<br/>FULL_MOBILE_MAP_LAYERS"]
TP --> EX["DEFAULT_PANELS<br/>DEFAULT_MAP_LAYERS<br/>MOBILE_DEFAULT_MAP_LAYERS"]
FP --> EX
GP --> EX
EX --> APP["App.ts<br/>imports DEFAULT_PANELS"]
APP --> TREE["Vite tree-shakes<br/>unused variants"]
```
### 12.3 Panel Toggle Persistence Flow
```mermaid
sequenceDiagram
participant User
participant SettingsModal
participant App
participant localStorage
participant Panel
User->>SettingsModal: Click panel toggle
SettingsModal->>App: panelKey identified
App->>App: config.enabled = !config.enabled
App->>localStorage: saveToStorage('worldmonitor-panels', panelSettings)
App->>SettingsModal: renderPanelToggles() β update checkmarks
App->>App: applyPanelSettings()
loop For each panel
App->>Panel: panel.toggle(config.enabled)
Panel->>Panel: add/remove 'hidden' CSS class
end
Note over localStorage: Survives page reload
User->>User: Refreshes page
App->>localStorage: loadFromStorage('worldmonitor-panels')
App->>App: applyPanelSettings() with restored state
```
---
## Appendix: Panel Component Files
Quick reference for locating panel component source files:
| Component | File |
|-----------|------|
| `Panel` (base) | `src/components/Panel.ts` |
| `NewsPanel` | `src/components/NewsPanel.ts` |
| `MarketPanel` / `HeatmapPanel` | `src/components/MarketPanel.ts` |
| `CryptoPanel` | `src/components/CryptoPanel.ts` |
| `CommoditiesPanel` | `src/components/CommoditiesPanel.ts` |
| `PredictionPanel` | `src/components/PredictionPanel.ts` |
| `EconomicPanel` | `src/components/EconomicPanel.ts` |
| `MonitorPanel` | `src/components/MonitorPanel.ts` |
| `CIIPanel` | `src/components/CIIPanel.ts` |
| `CascadePanel` | `src/components/CascadePanel.ts` |
| `GdeltIntelPanel` | `src/components/GdeltIntelPanel.ts` |
| `SatelliteFiresPanel` | `src/components/SatelliteFiresPanel.ts` |
| `StrategicRiskPanel` | `src/components/StrategicRiskPanel.ts` |
| `StrategicPosturePanel` | `src/components/StrategicPosturePanel.ts` |
| `UcdpEventsPanel` | `src/components/UcdpEventsPanel.ts` |
| `DisplacementPanel` | `src/components/DisplacementPanel.ts` |
| `ClimateAnomalyPanel` | `src/components/ClimateAnomalyPanel.ts` |
| `PopulationExposurePanel` | `src/components/PopulationExposurePanel.ts` |
| `InvestmentsPanel` | `src/components/InvestmentsPanel.ts` |
| `LiveNewsPanel` | `src/components/LiveNewsPanel.ts` |
| `LiveWebcamsPanel` | `src/components/LiveWebcamsPanel.ts` |
| `TechEventsPanel` | `src/components/TechEventsPanel.ts` |
| `ServiceStatusPanel` | `src/components/ServiceStatusPanel.ts` |
| `TechReadinessPanel` | `src/components/TechReadinessPanel.ts` |
| `MacroSignalsPanel` | `src/components/MacroSignalsPanel.ts` |
| `ETFFlowsPanel` | `src/components/ETFFlowsPanel.ts` |
| `StablecoinPanel` | `src/components/StablecoinPanel.ts` |
| `InsightsPanel` | `src/components/InsightsPanel.ts` |
| `RegulationPanel` | `src/components/RegulationPanel.ts` |
| `RuntimeConfigPanel` | `src/components/RuntimeConfigPanel.ts` |
| `OrefSirensPanel` | `src/components/OrefSirensPanel.ts` |
| `StatusPanel` | `src/components/StatusPanel.ts` |
|