leptos-store 0.11.0

Enterprise-grade, type-enforced state management for Leptos
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
// SPDX-License-Identifier: Apache-2.0
// Copyright 2026 nyvorin

//! Devtools integration for leptos-store.
//!
//! This module provides three tiers of debugging support:
//!
//! 1. **Console API**: Exposes `window.__LEPTOS_STORE__` for browser console access
//! 2. **WASM Inspector**: A floating debug panel component
//! 3. **Browser Extension Protocol**: Redux DevTools compatible messaging
//!
//! # Feature
//!
//! Requires the `devtools` feature.
//!
//! # Console API
//!
//! ```javascript
//! // In browser console:
//! __LEPTOS_STORE__.getStores()     // List all registered stores
//! __LEPTOS_STORE__.getState("auth") // Get state of a specific store
//! __LEPTOS_STORE__.subscribe(cb)    // Subscribe to state changes
//! ```

use crate::middleware::{EventSubscriber, StoreEvent};
use crate::store::Store;
use leptos::prelude::*;
use std::collections::HashMap;
use std::sync::{Arc, RwLock};

#[cfg(target_arch = "wasm32")]
use wasm_bindgen::prelude::*;

// ============================================================================
// Devtools State
// ============================================================================

/// Global devtools state.
static DEVTOOLS: std::sync::OnceLock<Arc<RwLock<DevtoolsState>>> = std::sync::OnceLock::new();

/// State getter function type (WASM only - uses Rc since signals aren't Send+Sync).
#[cfg(target_arch = "wasm32")]
type StateGetter = std::rc::Rc<dyn Fn() -> String>;

/// Thread-local storage for state getters (WASM only).
/// Kept separate from DEVTOOLS because Rc is not Sync.
#[cfg(target_arch = "wasm32")]
thread_local! {
    static STATE_GETTERS: std::cell::RefCell<HashMap<String, StateGetter>> = std::cell::RefCell::new(HashMap::new());
}

/// Internal devtools state (must be Sync for static storage).
#[derive(Default)]
struct DevtoolsState {
    /// Registered stores by name.
    stores: HashMap<String, StoreInfo>,
    /// Event history.
    events: Vec<DevtoolsEvent>,
    /// Maximum events to keep.
    max_events: usize,
    /// Whether devtools is enabled.
    enabled: bool,
    /// Subscribers for state changes.
    subscribers: Vec<DevtoolsSubscriber>,
}

/// Information about a registered store.
#[derive(Clone, Debug)]
pub struct StoreInfo {
    /// Store name.
    pub name: String,
    /// Store key (for lookup).
    pub key: String,
    /// Type name.
    pub type_name: &'static str,
    /// When registered.
    pub registered_at: u64,
}

/// A devtools event.
#[derive(Clone, Debug)]
pub struct DevtoolsEvent {
    /// Event type.
    pub event_type: String,
    /// Store name.
    pub store_name: Option<String>,
    /// Event payload (JSON).
    pub payload: String,
    /// Timestamp.
    pub timestamp: u64,
}

/// A devtools subscriber.
type DevtoolsSubscriber = Box<dyn Fn(&DevtoolsEvent) + Send + Sync>;

// ============================================================================
// Devtools Initialization
// ============================================================================

/// Initialize the devtools system.
///
/// Call this once at application startup to enable devtools.
///
/// # Example
///
/// ```rust,ignore
/// use leptos_store::devtools::*;
///
/// fn main() {
///     init_devtools(DevtoolsConfig::default());
///     // ... rest of app
/// }
/// ```
pub fn init_devtools(config: DevtoolsConfig) {
    let state = DevtoolsState {
        stores: HashMap::new(),
        events: Vec::new(),
        max_events: config.max_events,
        enabled: config.enabled,
        subscribers: Vec::new(),
    };

    let _ = DEVTOOLS.set(Arc::new(RwLock::new(state)));

    #[cfg(target_arch = "wasm32")]
    if config.enabled && config.expose_console_api {
        init_console_api();
    }
}

/// Configuration for devtools.
#[derive(Debug, Clone)]
pub struct DevtoolsConfig {
    /// Whether devtools is enabled.
    pub enabled: bool,
    /// Maximum events to keep in history.
    pub max_events: usize,
    /// Whether to expose the console API.
    pub expose_console_api: bool,
    /// Whether to connect to browser extension.
    pub connect_extension: bool,
}

impl Default for DevtoolsConfig {
    fn default() -> Self {
        Self {
            enabled: true,
            max_events: 1000,
            expose_console_api: true,
            connect_extension: true,
        }
    }
}

// ============================================================================
// Console API (Tier 1)
// ============================================================================

/// Initialize the console API (WASM only).
#[cfg(target_arch = "wasm32")]
fn init_console_api() {
    use wasm_bindgen::JsCast;

    let window = match web_sys::window() {
        Some(w) => w,
        None => return,
    };

    // Create the API object
    let api = js_sys::Object::new();

    // Add getStores function - returns a JS object with store info
    let get_stores = Closure::wrap(Box::new(|| -> JsValue {
        match get_devtools_state() {
            Some(state) => {
                let result = js_sys::Object::new();
                for info in state.stores.values() {
                    let store_obj = js_sys::Object::new();
                    js_sys::Reflect::set(
                        &store_obj,
                        &JsValue::from_str("name"),
                        &JsValue::from_str(&info.name),
                    )
                    .ok();
                    js_sys::Reflect::set(
                        &store_obj,
                        &JsValue::from_str("type"),
                        &JsValue::from_str(info.type_name),
                    )
                    .ok();
                    js_sys::Reflect::set(
                        &store_obj,
                        &JsValue::from_str("registeredAt"),
                        &JsValue::from_f64(info.registered_at as f64),
                    )
                    .ok();
                    js_sys::Reflect::set(&result, &JsValue::from_str(&info.key), &store_obj).ok();
                }
                result.into()
            }
            None => JsValue::from_str("Devtools not initialized"),
        }
    }) as Box<dyn Fn() -> JsValue>);

    js_sys::Reflect::set(
        &api,
        &JsValue::from_str("getStores"),
        get_stores.as_ref().unchecked_ref(),
    )
    .ok();
    get_stores.forget();

    // Add getState function - returns a JS object with state info
    let get_state = Closure::wrap(Box::new(|key: String| -> JsValue {
        // Try to get state from thread_local getters
        let state_result =
            STATE_GETTERS.with(|getters| getters.borrow().get(&key).map(|getter| getter()));

        match state_result {
            Some(state_str) => {
                let obj = js_sys::Object::new();
                js_sys::Reflect::set(&obj, &JsValue::from_str("key"), &JsValue::from_str(&key))
                    .ok();

                // Add type info if available from devtools state
                if let Some(devtools_state) = get_devtools_state() {
                    if let Some(info) = devtools_state.stores.get(&key) {
                        js_sys::Reflect::set(
                            &obj,
                            &JsValue::from_str("type"),
                            &JsValue::from_str(info.type_name),
                        )
                        .ok();
                        js_sys::Reflect::set(
                            &obj,
                            &JsValue::from_str("name"),
                            &JsValue::from_str(&info.name),
                        )
                        .ok();
                    }
                }

                // Get state - check if it's JSON or Debug formatted
                if let Some(json_str) = state_str.strip_prefix("JSON:") {
                    // Parse as JSON for proper JS object
                    if let Ok(parsed) = js_sys::JSON::parse(json_str) {
                        js_sys::Reflect::set(&obj, &JsValue::from_str("state"), &parsed).ok();
                    } else {
                        js_sys::Reflect::set(
                            &obj,
                            &JsValue::from_str("state"),
                            &JsValue::from_str(json_str),
                        )
                        .ok();
                    }
                } else {
                    // Debug formatted string
                    js_sys::Reflect::set(
                        &obj,
                        &JsValue::from_str("state"),
                        &JsValue::from_str(&state_str),
                    )
                    .ok();
                }
                obj.into()
            }
            None => {
                // Return an error object
                let err = js_sys::Object::new();
                js_sys::Reflect::set(
                    &err,
                    &JsValue::from_str("error"),
                    &JsValue::from_str("Store not found"),
                )
                .ok();
                js_sys::Reflect::set(&err, &JsValue::from_str("key"), &JsValue::from_str(&key))
                    .ok();
                let available = js_sys::Array::new();
                if let Some(devtools_state) = get_devtools_state() {
                    for k in devtools_state.stores.keys() {
                        available.push(&JsValue::from_str(k));
                    }
                }
                js_sys::Reflect::set(&err, &JsValue::from_str("available"), &available).ok();
                err.into()
            }
        }
    }) as Box<dyn Fn(String) -> JsValue>);

    js_sys::Reflect::set(
        &api,
        &JsValue::from_str("getState"),
        get_state.as_ref().unchecked_ref(),
    )
    .ok();
    get_state.forget();

    // Add getEvents function - returns a JS array of event objects
    let get_events = Closure::wrap(Box::new(|count: Option<u32>| -> JsValue {
        let count = count.unwrap_or(10) as usize;
        match get_devtools_state() {
            Some(state) => {
                let arr = js_sys::Array::new();
                for event in state.events.iter().rev().take(count) {
                    let obj = js_sys::Object::new();
                    js_sys::Reflect::set(
                        &obj,
                        &JsValue::from_str("type"),
                        &JsValue::from_str(&event.event_type),
                    )
                    .ok();
                    js_sys::Reflect::set(
                        &obj,
                        &JsValue::from_str("store"),
                        &JsValue::from_str(event.store_name.as_deref().unwrap_or("-")),
                    )
                    .ok();
                    js_sys::Reflect::set(
                        &obj,
                        &JsValue::from_str("timestamp"),
                        &JsValue::from_f64(event.timestamp as f64),
                    )
                    .ok();
                    // Parse payload as JSON if possible
                    if let Ok(payload) = js_sys::JSON::parse(&event.payload) {
                        js_sys::Reflect::set(&obj, &JsValue::from_str("payload"), &payload).ok();
                    } else {
                        js_sys::Reflect::set(
                            &obj,
                            &JsValue::from_str("payload"),
                            &JsValue::from_str(&event.payload),
                        )
                        .ok();
                    }
                    arr.push(&obj);
                }
                arr.into()
            }
            None => JsValue::from_str("Devtools not initialized"),
        }
    }) as Box<dyn Fn(Option<u32>) -> JsValue>);

    js_sys::Reflect::set(
        &api,
        &JsValue::from_str("getEvents"),
        get_events.as_ref().unchecked_ref(),
    )
    .ok();
    get_events.forget();

    // Add help function
    let help = Closure::wrap(Box::new(|| -> JsValue {
        JsValue::from_str(
            r#"Leptos Store Devtools
=====================
Commands:
  getStores()      - List all registered stores
  getState(key)    - Get state of a specific store
  getEvents(count) - Get recent events (default: 10)
  help()           - Show this help message
"#,
        )
    }) as Box<dyn Fn() -> JsValue>);

    js_sys::Reflect::set(
        &api,
        &JsValue::from_str("help"),
        help.as_ref().unchecked_ref(),
    )
    .ok();
    help.forget();

    // Attach to window
    js_sys::Reflect::set(&window, &JsValue::from_str("__LEPTOS_STORE__"), &api).ok();

    leptos::logging::log!(
        "[Devtools] Console API initialized. Use __LEPTOS_STORE__.help() for commands."
    );
}

#[cfg(not(target_arch = "wasm32"))]
#[allow(dead_code)]
fn init_console_api() {
    // No-op on non-WASM
}

/// Get the devtools state.
fn get_devtools_state() -> Option<std::sync::RwLockReadGuard<'static, DevtoolsState>> {
    DEVTOOLS.get().and_then(|s| s.read().ok())
}

/// Get mutable devtools state.
fn get_devtools_state_mut() -> Option<std::sync::RwLockWriteGuard<'static, DevtoolsState>> {
    DEVTOOLS.get().and_then(|s| s.write().ok())
}

// ============================================================================
// Store Registration
// ============================================================================

/// Register a store with devtools using Debug formatting.
///
/// The store's state will be accessible via `__LEPTOS_STORE__.getState("key")`
/// in the browser console. State is shown as a formatted Debug string.
///
/// For proper JSON object output, use [`register_store_json`] instead.
pub fn register_store<S: Store>(store: &S, key: impl Into<String>)
where
    S::State: std::fmt::Debug + 'static,
{
    let key = key.into();
    let store_name = store.name().to_string();

    if let Some(mut devtools_state) = get_devtools_state_mut() {
        let info = StoreInfo {
            name: store_name.clone(),
            key: key.clone(),
            type_name: std::any::type_name::<S>(),
            registered_at: current_timestamp_ms(),
        };
        devtools_state.stores.insert(info.key.clone(), info);

        // Record a registration event
        devtools_state.events.push(DevtoolsEvent {
            event_type: "StoreRegistered".to_string(),
            store_name: Some(store_name.clone()),
            payload: format!(r#"{{"key":"{}"}}"#, key),
            timestamp: current_timestamp_ms(),
        });
    }

    // Store a Debug-based state getter (WASM only, in thread_local)
    #[cfg(target_arch = "wasm32")]
    {
        let state_signal = store.state();
        let getter: StateGetter =
            std::rc::Rc::new(move || format!("{:#?}", state_signal.get_untracked()));
        STATE_GETTERS.with(|getters| {
            getters.borrow_mut().insert(key.clone(), getter);
        });
    }

    // Set up automatic state change tracking with snapshots (WASM only)
    #[cfg(target_arch = "wasm32")]
    {
        let state_signal = store.state();
        let key_for_effect = key.clone();
        let name_for_effect = store_name;
        Effect::new(move |prev_state: Option<String>| {
            // Get current state as Debug string
            let current_state = format!("{:#?}", state_signal.get());

            // Record event with old and new state (skip first run)
            if let Some(old_state) = prev_state {
                // Escape strings for JSON
                let old_escaped = old_state
                    .replace('\\', "\\\\")
                    .replace('"', "\\\"")
                    .replace('\n', "\\n");
                let new_escaped = current_state
                    .replace('\\', "\\\\")
                    .replace('"', "\\\"")
                    .replace('\n', "\\n");

                record_event(DevtoolsEvent {
                    event_type: "StateChanged".to_string(),
                    store_name: Some(name_for_effect.clone()),
                    payload: format!(
                        r#"{{"store":"{}","old":"{}","new":"{}"}}"#,
                        key_for_effect, old_escaped, new_escaped
                    ),
                    timestamp: current_timestamp_ms(),
                });
            }

            current_state
        });
    }
}

/// Register a store with devtools using JSON serialization.
///
/// The store's state will be accessible via `__LEPTOS_STORE__.getState("key")`
/// in the browser console as a proper JavaScript object.
///
/// Requires `State: Serialize`. For types that only implement `Debug`,
/// use [`register_store`] instead.
pub fn register_store_json<S: Store>(store: &S, key: impl Into<String>)
where
    S::State: serde::Serialize + 'static,
{
    let key = key.into();
    let store_name = store.name().to_string();

    if let Some(mut devtools_state) = get_devtools_state_mut() {
        let info = StoreInfo {
            name: store_name.clone(),
            key: key.clone(),
            type_name: std::any::type_name::<S>(),
            registered_at: current_timestamp_ms(),
        };
        devtools_state.stores.insert(info.key.clone(), info);

        // Record a registration event
        devtools_state.events.push(DevtoolsEvent {
            event_type: "StoreRegistered".to_string(),
            store_name: Some(store_name.clone()),
            payload: format!(r#"{{"key":"{}"}}"#, key),
            timestamp: current_timestamp_ms(),
        });
    }

    // Store a JSON-based state getter (WASM only, in thread_local)
    #[cfg(target_arch = "wasm32")]
    {
        let state_signal = store.state();
        let getter: StateGetter = std::rc::Rc::new(move || {
            format!(
                "JSON:{}",
                serde_json::to_string(&state_signal.get_untracked())
                    .unwrap_or_else(|_| "{}".to_string())
            )
        });
        STATE_GETTERS.with(|getters| {
            getters.borrow_mut().insert(key.clone(), getter);
        });
    }

    // Set up automatic state change tracking with JSON snapshots (WASM only)
    #[cfg(target_arch = "wasm32")]
    {
        let state_signal = store.state();
        let key_for_effect = key.clone();
        let name_for_effect = store_name;
        Effect::new(move |prev_json: Option<String>| {
            // Serialize current state to JSON
            let current_json =
                serde_json::to_string(&state_signal.get()).unwrap_or_else(|_| "{}".to_string());

            // Record event with old and new JSON state (skip first run)
            if let Some(old_json) = prev_json {
                record_event(DevtoolsEvent {
                    event_type: "StateChanged".to_string(),
                    store_name: Some(name_for_effect.clone()),
                    payload: format!(
                        r#"{{"store":"{}","old":{},"new":{}}}"#,
                        key_for_effect, old_json, current_json
                    ),
                    timestamp: current_timestamp_ms(),
                });
            }

            current_json
        });
    }
}

/// Unregister a store from devtools.
pub fn unregister_store(key: &str) {
    if let Some(mut state) = get_devtools_state_mut() {
        state.stores.remove(key);
    }
}

/// Record a devtools event.
pub fn record_event(event: DevtoolsEvent) {
    if let Some(mut state) = get_devtools_state_mut() {
        if !state.enabled {
            return;
        }

        state.events.push(event.clone());

        // Trim if over limit
        if state.events.len() > state.max_events {
            state.events.remove(0);
        }

        // Notify subscribers
        for subscriber in &state.subscribers {
            subscriber(&event);
        }
    }
}

// ============================================================================
// Event Bus Integration
// ============================================================================

/// Devtools event subscriber that records events.
pub struct DevtoolsEventSubscriber;

impl EventSubscriber for DevtoolsEventSubscriber {
    fn on_event(&self, event: &StoreEvent) {
        let devtools_event = match event {
            StoreEvent::StateChanged {
                store_id: _,
                store_name,
                timestamp,
            } => DevtoolsEvent {
                event_type: "StateChanged".to_string(),
                store_name: Some(store_name.to_string()),
                payload: "{}".to_string(),
                timestamp: *timestamp,
            },
            StoreEvent::MutationStarted {
                store_id: _,
                name,
                timestamp,
            } => DevtoolsEvent {
                event_type: "MutationStarted".to_string(),
                store_name: Some(name.to_string()),
                payload: format!(r#"{{"mutation":"{}"}}"#, name),
                timestamp: *timestamp,
            },
            StoreEvent::MutationCompleted {
                store_id: _,
                name,
                duration_ms,
                success,
            } => DevtoolsEvent {
                event_type: "MutationCompleted".to_string(),
                store_name: Some(name.to_string()),
                payload: format!(
                    r#"{{"mutation":"{}","duration_ms":{},"success":{}}}"#,
                    name, duration_ms, success
                ),
                timestamp: current_timestamp_ms(),
            },
            StoreEvent::ActionDispatched {
                store_id: _,
                action_name,
                timestamp,
                ..
            } => DevtoolsEvent {
                event_type: "ActionDispatched".to_string(),
                store_name: Some(action_name.to_string()),
                payload: format!(r#"{{"action":"{}"}}"#, action_name),
                timestamp: *timestamp,
            },
            StoreEvent::ActionCompleted {
                store_id: _,
                action_name,
                duration_ms,
                success,
            } => DevtoolsEvent {
                event_type: "ActionCompleted".to_string(),
                store_name: Some(action_name.to_string()),
                payload: format!(
                    r#"{{"action":"{}","duration_ms":{},"success":{}}}"#,
                    action_name, duration_ms, success
                ),
                timestamp: current_timestamp_ms(),
            },
            StoreEvent::Error {
                store_id: _,
                message,
                source,
            } => DevtoolsEvent {
                event_type: "Error".to_string(),
                store_name: None,
                payload: format!(r#"{{"message":"{}","source":"{:?}"}}"#, message, source),
                timestamp: current_timestamp_ms(),
            },
            StoreEvent::CacheInvalidated {
                source_store_id: _,
                scope,
                timestamp,
            } => DevtoolsEvent {
                event_type: "CacheInvalidated".to_string(),
                store_name: scope.map(|s| s.to_string()),
                payload: format!(
                    r#"{{"scope":{}}}"#,
                    scope
                        .map(|s| format!(r#""{}""#, s))
                        .unwrap_or_else(|| "null".to_string())
                ),
                timestamp: *timestamp,
            },
        };

        record_event(devtools_event);
    }

    fn name(&self) -> &'static str {
        "DevtoolsEventSubscriber"
    }
}

// ============================================================================
// Store Inspector Component (Tier 2)
// ============================================================================

/// A floating debug panel for inspecting store state.
///
/// # Example
///
/// ```rust,ignore
/// use leptos::prelude::*;
/// use leptos_store::devtools::*;
///
/// #[component]
/// fn App() -> impl IntoView {
///     view! {
///         <StoreInspector />
///         <MainContent />
///     }
/// }
/// ```
#[component]
pub fn StoreInspector(
    /// Maximum events to show.
    #[prop(optional, default = 100)]
    max_events: usize,
) -> impl IntoView {
    let is_open = RwSignal::new(false);
    let selected_store = RwSignal::new(Option::<String>::None);
    let selected_event = RwSignal::new(Option::<usize>::None);
    let events = RwSignal::new(Vec::<DevtoolsEvent>::new());
    let active_tab = RwSignal::new("state"); // "state" or "events"
    let refresh_counter = RwSignal::new(0u32);

    // Get store list reactively
    let stores = move || {
        let _ = refresh_counter.get();
        get_devtools_state()
            .map(|s| s.stores.values().cloned().collect::<Vec<_>>())
            .unwrap_or_default()
    };

    // Auto-select first store if none selected
    Effect::new(move |_| {
        if selected_store.get().is_none()
            && let Some(first) = stores().first()
        {
            selected_store.set(Some(first.key.clone()));
        }
    });

    // Get current state for selected store
    #[cfg(target_arch = "wasm32")]
    let get_current_state = move || -> Option<String> {
        let _ = refresh_counter.get();
        let key = selected_store.get()?;
        STATE_GETTERS.with(|getters| getters.borrow().get(&key).map(|getter| getter()))
    };

    #[cfg(not(target_arch = "wasm32"))]
    let get_current_state = move || -> Option<String> { None };

    // Update events
    let update_events = move || {
        if let Some(state) = get_devtools_state() {
            events.set(
                state
                    .events
                    .iter()
                    .rev()
                    .take(max_events)
                    .cloned()
                    .collect(),
            );
        }
        refresh_counter.update(|c| *c = c.wrapping_add(1));
    };

    // Auto-refresh events on tab switch or open
    Effect::new(move |_| {
        if is_open.get() && active_tab.get() == "events" {
            update_events();
        }
    });

    view! {
        // Floating trigger button (when closed)
        <Show when=move || !is_open.get()>
            <button
                style="position: fixed; bottom: 20px; right: 20px; z-index: 99998; width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%); border: 2px solid #60a5fa; color: white; font-size: 22px; cursor: pointer; box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4); display: flex; align-items: center; justify-content: center;"
                on:click=move |_| is_open.set(true)
            >
                "🔍"
            </button>
        </Show>

        // Backdrop (click to close)
        <Show when=move || is_open.get()>
            <div
                style="position: fixed; inset: 0; background: rgba(0,0,0,0.3); z-index: 99998; transition: opacity 0.3s;"
                on:click=move |_| is_open.set(false)
            />
        </Show>

        // Slide-in panel
        <div
            style=move || format!(
                "position: fixed; top: 0; right: 0; bottom: 0; width: 600px; max-width: 90vw; z-index: 99999; \
                font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, monospace; font-size: 13px; \
                background: #111827; display: flex; flex-direction: column; box-shadow: -4px 0 20px rgba(0,0,0,0.3); \
                transform: translateX({}); transition: transform 0.3s ease-out;",
                if is_open.get() { "0" } else { "100%" }
            )
        >
            // Header
            <div style="background: linear-gradient(135deg, #1e3a5f 0%, #1a1a2e 100%); color: #fff; padding: 16px 20px; display: flex; justify-content: space-between; align-items: center; flex-shrink: 0;">
                <div style="display: flex; align-items: center; gap: 10px;">
                    <span style="font-size: 18px;">"🔍"</span>
                    <span style="font-weight: 600; font-size: 15px;">"Store Inspector"</span>
                    <span style="font-size: 11px; color: #9ca3af; background: #374151; padding: 2px 8px; border-radius: 10px;">
                        {move || format!("{} store(s)", stores().len())}
                    </span>
                </div>
                <button
                    style="background: #374151; border: none; color: #fff; font-size: 20px; cursor: pointer; padding: 4px 12px; border-radius: 4px; font-weight: 300;"
                    on:click=move |_| is_open.set(false)
                >
                    ""
                </button>
            </div>

            // Tab bar
            <div style="background: #1f2937; display: flex; border-bottom: 1px solid #374151; flex-shrink: 0;">
                <button
                    style=move || format!(
                        "flex: 1; padding: 12px 16px; border: none; cursor: pointer; font-size: 13px; transition: all 0.2s; background: {}; color: {}; border-bottom: 2px solid {};",
                        if active_tab.get() == "state" { "#111827" } else { "transparent" },
                        if active_tab.get() == "state" { "#60a5fa" } else { "#9ca3af" },
                        if active_tab.get() == "state" { "#3b82f6" } else { "transparent" }
                    )
                    on:click=move |_| active_tab.set("state")
                >
                    "📊 State"
                </button>
                <button
                    style=move || format!(
                        "flex: 1; padding: 12px 16px; border: none; cursor: pointer; font-size: 13px; transition: all 0.2s; background: {}; color: {}; border-bottom: 2px solid {};",
                        if active_tab.get() == "events" { "#111827" } else { "transparent" },
                        if active_tab.get() == "events" { "#60a5fa" } else { "#9ca3af" },
                        if active_tab.get() == "events" { "#3b82f6" } else { "transparent" }
                    )
                    on:click=move |_| { active_tab.set("events"); update_events(); }
                >
                    "📜 Events"
                    <span style="margin-left: 8px; background: #4b5563; padding: 2px 8px; border-radius: 10px; font-size: 11px;">
                        {move || events.get().len()}
                    </span>
                </button>
            </div>

            // Content area
            <div style="flex: 1; overflow: hidden; display: flex; flex-direction: column;">
                // State Tab
                <Show when=move || active_tab.get() == "state">
                    <div style="display: flex; flex: 1; overflow: hidden;">
                        // Store list sidebar
                        <div style="width: 160px; border-right: 1px solid #374151; overflow-y: auto; flex-shrink: 0;">
                            <div style="padding: 12px 16px; color: #6b7280; font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; border-bottom: 1px solid #1f2937;">
                                "Stores"
                            </div>
                            {move || {
                                stores()
                                    .into_iter()
                                    .map(|store| {
                                        let key = store.key.clone();
                                        let key2 = store.key.clone();
                                        let is_selected = move || selected_store.get().as_ref() == Some(&key);
                                        view! {
                                            <div
                                                style=move || format!(
                                                    "padding: 10px 16px; cursor: pointer; transition: all 0.15s; border-left: 3px solid {}; {}",
                                                    if is_selected() { "#3b82f6" } else { "transparent" },
                                                    if is_selected() { "background: #1f2937; color: #60a5fa;" } else { "color: #d1d5db;" }
                                                )
                                                on:click=move |_| {
                                                    selected_store.set(Some(key2.clone()));
                                                    refresh_counter.update(|c| *c = c.wrapping_add(1));
                                                }
                                            >
                                                {store.key.clone()}
                                            </div>
                                        }
                                    })
                                    .collect_view()
                            }}
                        </div>

                        // State viewer
                        <div style="flex: 1; display: flex; flex-direction: column; overflow: hidden;">
                            <div style="display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; border-bottom: 1px solid #1f2937; flex-shrink: 0;">
                                <span style="color: #9ca3af; font-size: 12px;">
                                    {move || selected_store.get().unwrap_or_else(|| "No store selected".to_string())}
                                </span>
                                <button
                                    style="background: #374151; border: none; color: #d1d5db; padding: 6px 12px; border-radius: 4px; cursor: pointer; font-size: 12px; transition: all 0.15s;"
                                    on:click=move |_| refresh_counter.update(|c| *c = c.wrapping_add(1))
                                >
                                    "↻ Refresh"
                                </button>
                            </div>

                            <div style="flex: 1; overflow: auto; padding: 16px;">
                                <div style="font-family: 'SF Mono', Monaco, 'Courier New', monospace; font-size: 12px; line-height: 1.6;">
                                    {move || {
                                        match get_current_state() {
                                            Some(state_str) => {
                                                if let Some(json_str) = state_str.strip_prefix("JSON:") {
                                                    view! { <JsonTreeView json=json_str.to_string() /> }.into_any()
                                                } else {
                                                    view! {
                                                        <pre style="margin: 0; white-space: pre-wrap; word-break: break-word; color: #a5b4fc;">
                                                            {state_str}
                                                        </pre>
                                                    }.into_any()
                                                }
                                            }
                                            None => view! {
                                                <div style="color: #6b7280; text-align: center; padding: 40px;">
                                                    "Select a store to view its state"
                                                </div>
                                            }.into_any()
                                        }
                                    }}
                                </div>
                            </div>
                        </div>
                    </div>
                </Show>

                // Events Tab
                <Show when=move || active_tab.get() == "events">
                    <div style="display: flex; flex: 1; overflow: hidden;">
                        // Event list
                        <div style="width: 220px; border-right: 1px solid #374151; overflow-y: auto; flex-shrink: 0;">
                            {move || {
                                events
                                    .get()
                                    .into_iter()
                                    .enumerate()
                                    .map(|(idx, event)| {
                                        let is_selected = move || selected_event.get() == Some(idx);
                                        let (color, icon) = match event.event_type.as_str() {
                                            "StateChanged" => ("#fbbf24", ""),
                                            "StoreRegistered" => ("#34d399", "📦"),
                                            "MutationStarted" => ("#60a5fa", ""),
                                            "MutationCompleted" => ("#34d399", ""),
                                            "ActionDispatched" => ("#a78bfa", ""),
                                            "ActionCompleted" => ("#34d399", ""),
                                            "Error" => ("#f87171", ""),
                                            _ => ("#9ca3af", ""),
                                        };
                                        let store_name = event.store_name.clone().unwrap_or_default();
                                        let event_type = event.event_type.clone();
                                        view! {
                                            <div
                                                style=move || format!(
                                                    "padding: 10px 14px; cursor: pointer; border-bottom: 1px solid #1f2937; transition: all 0.15s; border-left: 3px solid {}; {}",
                                                    if is_selected() { color } else { "transparent" },
                                                    if is_selected() { "background: #1f2937;" } else { "" }
                                                )
                                                on:click=move |_| selected_event.set(Some(idx))
                                            >
                                                <div style=format!("color: {}; font-size: 12px; display: flex; align-items: center; gap: 6px;", color)>
                                                    <span>{icon}</span>
                                                    <span style="font-weight: 500;">{event_type.clone()}</span>
                                                </div>
                                                <div style="color: #6b7280; font-size: 11px; margin-top: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;">
                                                    {store_name.clone()}
                                                </div>
                                            </div>
                                        }
                                    })
                                    .collect_view()
                            }}
                        </div>

                        // Event detail
                        <div style="flex: 1; overflow: auto; padding: 16px;">
                            {move || {
                                match selected_event.get() {
                                    Some(idx) => {
                                        let event = events.get().get(idx).cloned();
                                        match event {
                                            Some(e) => view! { <EventDetailView event=e /> }.into_any(),
                                            None => view! {
                                                <div style="color: #6b7280; text-align: center; padding: 40px;">
                                                    "Event not found"
                                                </div>
                                            }.into_any()
                                        }
                                    }
                                    None => view! {
                                        <div style="color: #6b7280; text-align: center; padding: 40px;">
                                            "Select an event to view details"
                                        </div>
                                    }.into_any()
                                }
                            }}
                        </div>
                    </div>
                </Show>
            </div>
        </div>
    }
}

/// JSON tree viewer component for displaying state
#[component]
fn JsonTreeView(json: String) -> impl IntoView {
    // Parse JSON and render as expandable tree
    let parsed = serde_json::from_str::<serde_json::Value>(&json);

    match parsed {
        Ok(value) => view! { <JsonValue value=value depth=0 /> }.into_any(),
        Err(_) => view! {
            <pre style="margin: 0; color: #f87171;">{format!("Invalid JSON: {}", json)}</pre>
        }
        .into_any(),
    }
}

/// Recursive JSON value renderer
#[component]
fn JsonValue(value: serde_json::Value, depth: usize) -> impl IntoView {
    let indent = depth * 16;

    match value {
        serde_json::Value::Null => view! {
            <span style="color: #6b7280;">"null"</span>
        }
        .into_any(),
        serde_json::Value::Bool(b) => view! {
            <span style="color: #fbbf24;">{b.to_string()}</span>
        }
        .into_any(),
        serde_json::Value::Number(n) => view! {
            <span style="color: #34d399;">{n.to_string()}</span>
        }
        .into_any(),
        serde_json::Value::String(s) => view! {
            <span style="color: #fb923c;">"\""</span>
            <span style="color: #fbbf24;">{s}</span>
            <span style="color: #fb923c;">"\""</span>
        }
        .into_any(),
        serde_json::Value::Array(arr) => {
            let is_expanded = RwSignal::new(depth < 2);
            let len = arr.len();
            let items = arr.clone();
            view! {
                <div>
                    <span
                        style="cursor: pointer; color: #9ca3af; user-select: none;"
                        on:click=move |_| is_expanded.update(|e| *e = !*e)
                    >
                        {move || if is_expanded.get() { "" } else { "" }}
                    </span>
                    <span style="color: #60a5fa;">"["</span>
                    <Show when=move || !is_expanded.get()>
                        <span style="color: #6b7280;">{format!(" {} items ", len)}</span>
                        <span style="color: #60a5fa;">"]"</span>
                    </Show>
                    <Show when=move || is_expanded.get()>
                        <div style=format!("margin-left: {}px;", indent + 16)>
                            {items.clone().into_iter().enumerate().map(|(i, item)| {
                                view! {
                                    <div style="display: flex;">
                                        <span style="color: #6b7280; min-width: 24px;">{format!("{}:", i)}</span>
                                        <JsonValue value=item depth=depth+1 />
                                    </div>
                                }
                            }).collect_view()}
                        </div>
                        <span style="color: #60a5fa;">"]"</span>
                    </Show>
                </div>
            }.into_any()
        }
        serde_json::Value::Object(obj) => {
            let is_expanded = RwSignal::new(depth < 2);
            let len = obj.len();
            let entries: Vec<_> = obj.into_iter().collect();
            let entries2 = entries.clone();
            view! {
                <div>
                    <span
                        style="cursor: pointer; color: #9ca3af; user-select: none;"
                        on:click=move |_| is_expanded.update(|e| *e = !*e)
                    >
                        {move || if is_expanded.get() { "" } else { "" }}
                    </span>
                    <span style="color: #a78bfa;">"{"</span>
                    <Show when=move || !is_expanded.get()>
                        <span style="color: #6b7280;">{format!(" {} fields ", len)}</span>
                        <span style="color: #a78bfa;">"}"</span>
                    </Show>
                    <Show when=move || is_expanded.get()>
                        <div style=format!("margin-left: {}px;", indent + 16)>
                            {entries2.clone().into_iter().map(|(key, val)| {
                                view! {
                                    <div style="display: flex; gap: 4px;">
                                        <span style="color: #60a5fa;">"\""</span>
                                        <span style="color: #93c5fd;">{key}</span>
                                        <span style="color: #60a5fa;">"\":"</span>
                                        <JsonValue value=val depth=depth+1 />
                                    </div>
                                }
                            }).collect_view()}
                        </div>
                        <span style="color: #a78bfa;">"}"</span>
                    </Show>
                </div>
            }
            .into_any()
        }
    }
}

/// Collapsible section component
#[component]
fn CollapsibleSection(
    title: &'static str,
    color: &'static str,
    icon: &'static str,
    children: Children,
) -> impl IntoView {
    let is_expanded = RwSignal::new(true);

    view! {
        <div style="background: #1f2937; border-radius: 6px; overflow: hidden;">
            <div
                style="display: flex; align-items: center; justify-content: space-between; padding: 10px 14px; cursor: pointer; border-bottom: 1px solid #374151; user-select: none;"
                on:click=move |_| is_expanded.update(|e| *e = !*e)
            >
                <div style="display: flex; align-items: center; gap: 8px;">
                    <span style=format!("color: {}; font-size: 14px;", color)>{icon}</span>
                    <span style=format!("color: {}; font-weight: 600; font-size: 12px;", color)>{title}</span>
                </div>
                <span style="color: #6b7280; font-size: 14px;">
                    {move || if is_expanded.get() { "" } else { "" }}
                </span>
            </div>
            <div style=move || format!(
                "padding: 12px 14px; border-left: 3px solid {}; max-height: 300px; overflow: auto; display: {};",
                color,
                if is_expanded.get() { "block" } else { "none" }
            )>
                {children()}
            </div>
        </div>
    }
}

/// Event detail view component
#[component]
fn EventDetailView(event: DevtoolsEvent) -> impl IntoView {
    let payload_json: Option<serde_json::Value> = serde_json::from_str(&event.payload).ok();

    // Extract old/new values if present
    let (old_value, new_value) = match &payload_json {
        Some(serde_json::Value::Object(obj)) => (obj.get("old").cloned(), obj.get("new").cloned()),
        _ => (None, None),
    };

    let has_diff = old_value.is_some() && new_value.is_some();
    let raw_payload = event.payload.clone();

    view! {
        <div style="font-family: 'SF Mono', Monaco, 'Courier New', monospace; font-size: 12px;">
            // Event header
            <div style="margin-bottom: 16px; padding: 12px; background: #1f2937; border-radius: 6px;">
                <div style="display: flex; align-items: center; gap: 8px; margin-bottom: 10px;">
                    <span style="font-size: 16px;">
                        {match event.event_type.as_str() {
                            "StateChanged" => "",
                            "StoreRegistered" => "📦",
                            "Error" => "",
                            _ => "📋"
                        }}
                    </span>
                    <span style="font-size: 15px; font-weight: 600; color: #f3f4f6;">
                        {event.event_type.clone()}
                    </span>
                </div>
                <div style="display: grid; grid-template-columns: 80px 1fr; gap: 6px; color: #9ca3af; font-size: 12px;">
                    <span style="color: #6b7280;">"Store"</span>
                    <span style="color: #60a5fa; font-weight: 500;">{event.store_name.clone().unwrap_or_else(|| "-".to_string())}</span>
                    <span style="color: #6b7280;">"Time"</span>
                    <span>{format_timestamp(event.timestamp)}</span>
                </div>
            </div>

            // State diff view for StateChanged events - stacked vertically
            {if has_diff {
                let old_val = old_value.unwrap();
                let new_val = new_value.unwrap();
                view! {
                    <div style="display: flex; flex-direction: column; gap: 12px;">
                        <CollapsibleSection title="BEFORE" color="#f87171" icon="">
                            <JsonValue value=old_val depth=0 />
                        </CollapsibleSection>

                        <div style="display: flex; justify-content: center; color: #6b7280;">
                            <span style="font-size: 18px;">""</span>
                        </div>

                        <CollapsibleSection title="AFTER" color="#34d399" icon="">
                            <JsonValue value=new_val depth=0 />
                        </CollapsibleSection>
                    </div>
                }.into_any()
            } else {
                // Raw payload for other events
                let payload_val = payload_json.clone();
                view! {
                    <div style="background: #1f2937; border-radius: 6px; overflow: hidden;">
                        <div style="padding: 10px 14px; border-bottom: 1px solid #374151;">
                            <span style="color: #9ca3af; font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px;">"Payload"</span>
                        </div>
                        <div style="padding: 12px 14px; max-height: 300px; overflow: auto;">
                            {match payload_val {
                                Some(val) => view! { <JsonValue value=val depth=0 /> }.into_any(),
                                None => view! {
                                    <pre style="margin: 0; color: #d1d5db; white-space: pre-wrap;">{raw_payload}</pre>
                                }.into_any()
                            }}
                        </div>
                    </div>
                }.into_any()
            }}
        </div>
    }
}

/// Format timestamp as human-readable time
fn format_timestamp(ts: u64) -> String {
    // Simple formatting - just show relative or absolute time
    let now = current_timestamp_ms();
    let diff = now.saturating_sub(ts);

    if diff < 1000 {
        "just now".to_string()
    } else if diff < 60_000 {
        format!("{}s ago", diff / 1000)
    } else if diff < 3_600_000 {
        format!("{}m ago", diff / 60_000)
    } else {
        format!("{}h ago", diff / 3_600_000)
    }
}

// ============================================================================
// Browser Extension Protocol (Tier 3)
// ============================================================================

/// Message types for Redux DevTools protocol.
#[derive(Debug, Clone)]
#[cfg_attr(feature = "hydrate", derive(serde::Serialize, serde::Deserialize))]
pub enum DevtoolsMessage {
    /// Initialize connection.
    Init {
        /// Instance ID.
        instance_id: String,
        /// Store names.
        stores: Vec<String>,
    },
    /// State update.
    StateUpdate {
        /// Store name.
        store: String,
        /// Action that caused the update.
        action: String,
        /// New state (JSON).
        state: String,
        /// Timestamp.
        timestamp: u64,
    },
    /// Action dispatch.
    Action {
        /// Store name.
        store: String,
        /// Action type.
        action_type: String,
        /// Action payload (JSON).
        payload: String,
    },
    /// Jump to state (time travel).
    JumpToState {
        /// Target state index.
        index: usize,
    },
    /// Import state.
    ImportState {
        /// Serialized state.
        state: String,
    },
    /// Export state.
    ExportState,
}

/// Connect to Redux DevTools extension.
#[cfg(target_arch = "wasm32")]
pub fn connect_devtools_extension(_instance_name: &str) -> bool {
    // Check if extension is available
    let window = match web_sys::window() {
        Some(w) => w,
        None => return false,
    };

    // Check for __REDUX_DEVTOOLS_EXTENSION__
    let has_extension =
        js_sys::Reflect::get(&window, &JsValue::from_str("__REDUX_DEVTOOLS_EXTENSION__"))
            .map(|v| !v.is_undefined())
            .unwrap_or(false);

    if has_extension {
        leptos::logging::log!("[Devtools] Redux DevTools extension detected");
        // Connection logic would go here
        true
    } else {
        false
    }
}

/// Connect to devtools extension (no-op on non-WASM).
#[cfg(not(target_arch = "wasm32"))]
pub fn connect_devtools_extension(_instance_name: &str) -> bool {
    false
}

/// Send a message to the devtools extension.
#[cfg(target_arch = "wasm32")]
pub fn send_to_extension(_message: DevtoolsMessage) {
    // Implementation would use postMessage to communicate with extension
}

/// Send a message to the devtools extension (no-op on non-WASM).
#[cfg(not(target_arch = "wasm32"))]
pub fn send_to_extension(_message: DevtoolsMessage) {
    // No-op
}

// ============================================================================
// Time Travel Debugging
// ============================================================================

/// State snapshot for time travel.
#[derive(Clone, Debug)]
pub struct StateSnapshot {
    /// Snapshot index.
    pub index: usize,
    /// Store name.
    pub store: String,
    /// Action that produced this state.
    pub action: String,
    /// Serialized state.
    pub state: String,
    /// Timestamp.
    pub timestamp: u64,
}

/// Time travel debugger.
#[derive(Clone)]
pub struct TimeTravelDebugger {
    snapshots: RwSignal<Vec<StateSnapshot>>,
    current_index: RwSignal<usize>,
    max_snapshots: usize,
}

impl Default for TimeTravelDebugger {
    fn default() -> Self {
        Self::new(100)
    }
}

impl TimeTravelDebugger {
    /// Create a new time travel debugger.
    pub fn new(max_snapshots: usize) -> Self {
        Self {
            snapshots: RwSignal::new(Vec::new()),
            current_index: RwSignal::new(0),
            max_snapshots,
        }
    }

    /// Record a state snapshot.
    pub fn record(&self, store: &str, action: &str, state: String) {
        self.snapshots.update(|snapshots| {
            let index = snapshots.len();
            snapshots.push(StateSnapshot {
                index,
                store: store.to_string(),
                action: action.to_string(),
                state,
                timestamp: current_timestamp_ms(),
            });

            // Trim if over limit
            if snapshots.len() > self.max_snapshots {
                snapshots.remove(0);
                // Reindex
                for (i, s) in snapshots.iter_mut().enumerate() {
                    s.index = i;
                }
            }
        });

        self.current_index
            .set(self.snapshots.with(|s| s.len().saturating_sub(1)));
    }

    /// Jump to a specific snapshot.
    pub fn jump_to(&self, index: usize) -> Option<StateSnapshot> {
        let snapshot = self.snapshots.with(|s| s.get(index).cloned());
        if snapshot.is_some() {
            self.current_index.set(index);
        }
        snapshot
    }

    /// Go to previous snapshot.
    pub fn prev(&self) -> Option<StateSnapshot> {
        let current = self.current_index.get();
        if current > 0 {
            self.jump_to(current - 1)
        } else {
            None
        }
    }

    /// Go to next snapshot.
    pub fn next(&self) -> Option<StateSnapshot> {
        let current = self.current_index.get();
        let len = self.snapshots.with(|s| s.len());
        if current + 1 < len {
            self.jump_to(current + 1)
        } else {
            None
        }
    }

    /// Get current snapshot.
    pub fn current(&self) -> Option<StateSnapshot> {
        let index = self.current_index.get();
        self.snapshots.with(|s| s.get(index).cloned())
    }

    /// Get all snapshots.
    pub fn snapshots(&self) -> Vec<StateSnapshot> {
        self.snapshots.get()
    }

    /// Clear all snapshots.
    pub fn clear(&self) {
        self.snapshots.set(Vec::new());
        self.current_index.set(0);
    }

    /// Get snapshot count.
    pub fn len(&self) -> usize {
        self.snapshots.with(|s| s.len())
    }

    /// Check if empty.
    pub fn is_empty(&self) -> bool {
        self.snapshots.with(|s| s.is_empty())
    }
}

// ============================================================================
// Helper Functions
// ============================================================================

/// Get current timestamp in milliseconds.
fn current_timestamp_ms() -> u64 {
    #[cfg(target_arch = "wasm32")]
    {
        js_sys::Date::now() as u64
    }
    #[cfg(not(target_arch = "wasm32"))]
    {
        use std::time::SystemTime;
        SystemTime::now()
            .duration_since(SystemTime::UNIX_EPOCH)
            .map(|d| d.as_millis() as u64)
            .unwrap_or(0)
    }
}

// ============================================================================
// Tests
// ============================================================================

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_devtools_config_default() {
        let config = DevtoolsConfig::default();
        assert_eq!(config.max_events, 1000);
        assert!(config.expose_console_api);
    }

    #[test]
    fn test_store_info() {
        let info = StoreInfo {
            name: "TestStore".to_string(),
            key: "test".to_string(),
            type_name: "TestStore",
            registered_at: 12345,
        };
        assert_eq!(info.key, "test");
    }

    #[test]
    fn test_devtools_event() {
        let event = DevtoolsEvent {
            event_type: "MutationCompleted".to_string(),
            store_name: Some("auth".to_string()),
            payload: "{}".to_string(),
            timestamp: 12345,
        };
        assert_eq!(event.event_type, "MutationCompleted");
    }

    #[test]
    fn test_time_travel_debugger() {
        let debugger = TimeTravelDebugger::new(10);
        assert!(debugger.is_empty());

        debugger.record("test", "increment", r#"{"count":1}"#.to_string());
        assert_eq!(debugger.len(), 1);

        debugger.record("test", "increment", r#"{"count":2}"#.to_string());
        assert_eq!(debugger.len(), 2);

        // Jump back
        let prev = debugger.prev();
        assert!(prev.is_some());
        assert_eq!(prev.unwrap().state, r#"{"count":1}"#);

        // Jump forward
        let next = debugger.next();
        assert!(next.is_some());
        assert_eq!(next.unwrap().state, r#"{"count":2}"#);

        debugger.clear();
        assert!(debugger.is_empty());
    }

    #[test]
    fn test_time_travel_max_snapshots() {
        let debugger = TimeTravelDebugger::new(3);

        for i in 0..5 {
            debugger.record("test", "action", format!(r#"{{"count":{}}}"#, i));
        }

        // Should only keep the last 3
        assert_eq!(debugger.len(), 3);

        let snapshots = debugger.snapshots();
        assert_eq!(snapshots[0].state, r#"{"count":2}"#);
        assert_eq!(snapshots[2].state, r#"{"count":4}"#);
    }

    #[test]
    fn test_state_snapshot() {
        let snapshot = StateSnapshot {
            index: 0,
            store: "auth".to_string(),
            action: "login".to_string(),
            state: r#"{"user":"test"}"#.to_string(),
            timestamp: 12345,
        };
        assert_eq!(snapshot.store, "auth");
        assert_eq!(snapshot.action, "login");
    }
}