vize_croquis 0.76.0

Croquis - Semantic analysis layer for Vize. Quick sketches of meaning from Vue templates.
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
use super::{CrossFileAnalyzer, CrossFileOptions};
use crate::AnalyzerOptions;
use std::path::Path;

// === Provide/Inject Tests ===
// NOTE: CrossFileAnalyzer.analyze_single_file doesn't parse SFC tags,
// so we use .ts extension to pass raw script content

#[test]
fn test_provide_inject_basic_match() {
    let mut analyzer =
        CrossFileAnalyzer::new(CrossFileOptions::default().with_provide_inject(true));

    // Parent provides 'state' (using .ts extension to pass raw script)
    analyzer.add_file(
        Path::new("Parent.ts"),
        r#"import { provide, reactive } from 'vue'
const state = reactive({ count: 0 })
provide('state', state)"#,
    );

    // Child injects 'state'
    analyzer.add_file(
        Path::new("Child.ts"),
        r#"import { inject } from 'vue'
const state = inject('state')"#,
    );

    let result = analyzer.analyze();

    // Both files should be analyzed
    assert_eq!(result.stats.files_analyzed, 2);
}

#[test]
fn test_provide_inject_with_type_assertion() {
    let mut analyzer =
        CrossFileAnalyzer::new(CrossFileOptions::default().with_provide_inject(true));

    // Child injects 'state' with type assertion
    analyzer.add_file(
        Path::new("Child.ts"),
        r#"import { inject } from 'vue'
const state = inject('state') as { count: number; user: { name: string } }"#,
    );

    let _result = analyzer.analyze();

    // Should detect the inject even with type assertion
    let child_analysis = analyzer.get_analysis(analyzer.registry().iter().next().unwrap().id);
    assert!(child_analysis.is_some());

    let analysis = child_analysis.unwrap();
    assert_eq!(analysis.provide_inject.injects().len(), 1);
    assert_eq!(
        analysis.provide_inject.injects()[0].key,
        crate::provide::ProvideKey::String(vize_carton::CompactString::new("state"))
    );
}

#[test]
fn test_provide_inject_with_satisfies() {
    let mut analyzer =
        CrossFileAnalyzer::new(CrossFileOptions::default().with_provide_inject(true));

    // Child injects 'theme' with satisfies
    analyzer.add_file(
        Path::new("Child.ts"),
        r#"import { inject } from 'vue'
const theme = inject('theme') satisfies string | undefined"#,
    );

    let _result = analyzer.analyze();

    let child_analysis = analyzer.get_analysis(analyzer.registry().iter().next().unwrap().id);
    assert!(child_analysis.is_some());

    let analysis = child_analysis.unwrap();
    assert_eq!(analysis.provide_inject.injects().len(), 1);
}

#[test]
fn test_provide_with_symbol_key() {
    let mut analyzer =
        CrossFileAnalyzer::new(CrossFileOptions::default().with_provide_inject(true));

    // Using Symbol as provide key
    analyzer.add_file(
        Path::new("Parent.ts"),
        r#"import { provide } from 'vue'
const ThemeKey = Symbol('theme')
provide(ThemeKey, 'dark')"#,
    );

    let _result = analyzer.analyze();

    let parent_analysis = analyzer.get_analysis(analyzer.registry().iter().next().unwrap().id);
    assert!(parent_analysis.is_some());

    let analysis = parent_analysis.unwrap();
    assert_eq!(analysis.provide_inject.provides().len(), 1);
}

#[test]
fn test_inject_with_default_value() {
    let mut analyzer =
        CrossFileAnalyzer::new(CrossFileOptions::default().with_provide_inject(true));

    // Child injects with default value
    analyzer.add_file(
        Path::new("Child.ts"),
        r#"import { inject } from 'vue'
const theme = inject('theme', 'light')"#,
    );

    let _result = analyzer.analyze();

    let child_analysis = analyzer.get_analysis(analyzer.registry().iter().next().unwrap().id);
    assert!(child_analysis.is_some());

    let analysis = child_analysis.unwrap();
    let injects = analysis.provide_inject.injects();
    assert_eq!(injects.len(), 1);
    assert!(injects[0].default_value.is_some());
}

#[test]
fn test_multiple_provides_and_injects() {
    let mut analyzer =
        CrossFileAnalyzer::new(CrossFileOptions::default().with_provide_inject(true));

    // Component with multiple provides and injects
    analyzer.add_file(
        Path::new("Mixed.ts"),
        r#"import { provide, inject, ref } from 'vue'

// Inject from ancestor
const theme = inject('theme', 'light')
const user = inject('user')

// Provide for descendants
const count = ref(0)
provide('count', count)
provide('config', { debug: true })"#,
    );

    let _result = analyzer.analyze();

    let analysis = analyzer
        .get_analysis(analyzer.registry().iter().next().unwrap().id)
        .unwrap();

    assert_eq!(analysis.provide_inject.provides().len(), 2);
    assert_eq!(analysis.provide_inject.injects().len(), 2);
}

#[test]
fn test_inject_object_destructure_pattern() {
    use crate::provide::InjectPattern;

    let mut analyzer =
        CrossFileAnalyzer::new(CrossFileOptions::default().with_reactivity_tracking(true));

    // Destructuring inject() loses reactivity
    analyzer.add_file(
        Path::new("Child.ts"),
        r#"import { inject } from 'vue'
const { count, name } = inject('state') as { count: number; name: string }"#,
    );

    let _result = analyzer.analyze();

    let analysis = analyzer
        .get_analysis(analyzer.registry().iter().next().unwrap().id)
        .unwrap();

    // Should detect the inject with ObjectDestructure pattern
    let injects = analysis.provide_inject.injects();
    assert_eq!(injects.len(), 1, "Should have 1 inject");
    match &injects[0].pattern {
        InjectPattern::ObjectDestructure(props) => {
            assert!(props.contains(&vize_carton::CompactString::new("count")));
            assert!(props.contains(&vize_carton::CompactString::new("name")));
        }
        _ => panic!(
            "Expected ObjectDestructure pattern, got {:?}",
            injects[0].pattern
        ),
    }
}

#[test]
fn test_inject_simple_pattern() {
    use crate::provide::InjectPattern;

    let mut analyzer =
        CrossFileAnalyzer::new(CrossFileOptions::default().with_provide_inject(true));

    // Simple inject without destructuring
    analyzer.add_file(
        Path::new("Child.ts"),
        r#"import { inject } from 'vue'
const state = inject('state')"#,
    );

    let _result = analyzer.analyze();

    let analysis = analyzer
        .get_analysis(analyzer.registry().iter().next().unwrap().id)
        .unwrap();

    let injects = analysis.provide_inject.injects();
    assert_eq!(injects.len(), 1);
    assert!(matches!(injects[0].pattern, InjectPattern::Simple));
}

#[test]
fn test_inject_destructure_with_type_assertion() {
    use crate::provide::InjectPattern;

    let mut analyzer =
        CrossFileAnalyzer::new(CrossFileOptions::default().with_reactivity_tracking(true));

    // Destructuring with TSAsExpression
    analyzer.add_file(
        Path::new("Child.ts"),
        r#"import { inject } from 'vue'
const { foo } = inject('data') as { foo: string }"#,
    );

    let _result = analyzer.analyze();

    let analysis = analyzer
        .get_analysis(analyzer.registry().iter().next().unwrap().id)
        .unwrap();

    let injects = analysis.provide_inject.injects();
    assert_eq!(injects.len(), 1);
    match &injects[0].pattern {
        InjectPattern::ObjectDestructure(props) => {
            assert!(props.contains(&vize_carton::CompactString::new("foo")));
        }
        _ => panic!("Expected ObjectDestructure pattern"),
    }
}

#[test]
fn test_inject_destructure_in_vue_sfc() {
    use crate::provide::InjectPattern;

    let mut analyzer =
        CrossFileAnalyzer::new(CrossFileOptions::default().with_reactivity_tracking(true));

    // Add Vue SFC script content (not full SFC - the caller should extract this)
    // The cross-file analyzer expects script content only for .vue files
    analyzer.add_file(
        Path::new("Child.vue"),
        r#"import { inject } from 'vue'

const { name } = inject('user') as { name: string; id: number }"#,
    );

    let _result = analyzer.analyze();

    let analysis = analyzer
        .get_analysis(analyzer.registry().iter().next().unwrap().id)
        .unwrap();

    let injects = analysis.provide_inject.injects();
    assert_eq!(injects.len(), 1, "Should have 1 inject");
    match &injects[0].pattern {
        InjectPattern::ObjectDestructure(props) => {
            assert!(
                props.contains(&vize_carton::CompactString::new("name")),
                "Should contain 'name' prop"
            );
        }
        other => panic!("Expected ObjectDestructure pattern, got {:?}", other),
    }
}

#[test]
fn test_playground_style_provide_inject() {
    // This test mimics the playground's exact setup (without template parsing)
    use crate::cross_file::diagnostics::CrossFileDiagnosticKind;

    let mut analyzer = CrossFileAnalyzer::new(
        CrossFileOptions::default()
            .with_provide_inject(true)
            .with_fallthrough_attrs(true)
            .with_component_emits(true)
            .with_reactivity_tracking(true),
    );

    // App.vue - provides 'theme' and 'user', uses ParentComponent
    let app_script = r#"import { provide, ref } from 'vue'
import ParentComponent from './ParentComponent.vue'

const theme = ref('dark')
provide('theme', theme)
provide('user', { name: 'John', id: 1 })"#;

    let mut app_analyzer = crate::Analyzer::with_options(AnalyzerOptions::full());
    app_analyzer.analyze_script_setup(app_script);
    // Simulate template analysis adding used component
    app_analyzer
        .croquis_mut()
        .used_components
        .insert(vize_carton::CompactString::new("ParentComponent"));
    let app_analysis = app_analyzer.finish();

    // Debug: check used_components
    eprintln!(
        "App.vue used_components: {:?}",
        app_analysis.used_components
    );

    // ParentComponent.vue - injects 'theme' and 'user', uses ChildComponent
    let parent_script = r#"import { inject, ref, onMounted } from 'vue'
import ChildComponent from './ChildComponent.vue'

const theme = inject('theme')
const { name } = inject('user')"#;

    let mut parent_analyzer = crate::Analyzer::with_options(AnalyzerOptions::full());
    parent_analyzer.analyze_script_setup(parent_script);
    parent_analyzer
        .croquis_mut()
        .used_components
        .insert(vize_carton::CompactString::new("ChildComponent"));
    let parent_analysis = parent_analyzer.finish();

    eprintln!(
        "ParentComponent.vue used_components: {:?}",
        parent_analysis.used_components
    );

    // ChildComponent.vue - no provide/inject
    let child_script = r#"const emit = defineEmits(['change'])"#;
    let mut child_analyzer = crate::Analyzer::with_options(AnalyzerOptions::full());
    child_analyzer.analyze_script_setup(child_script);
    let child_analysis = child_analyzer.finish();

    // Add files
    analyzer.add_file_with_analysis(Path::new("App.vue"), app_script, app_analysis);
    analyzer.add_file_with_analysis(
        Path::new("ParentComponent.vue"),
        parent_script,
        parent_analysis,
    );
    analyzer.add_file_with_analysis(
        Path::new("ChildComponent.vue"),
        child_script,
        child_analysis,
    );

    // Rebuild edges
    analyzer.rebuild_component_edges();

    // Debug: check graph edges
    eprintln!("Graph nodes: {}", analyzer.graph().nodes().count());
    for node in analyzer.graph().nodes() {
        eprintln!(
            "  {} (component_name={:?}): imports={:?}",
            node.path, node.component_name, node.imports
        );
    }

    // Run analysis
    let result = analyzer.analyze();

    eprintln!("Diagnostics count: {}", result.diagnostics.len());
    for d in &result.diagnostics {
        eprintln!("  - {:?}: {}", d.kind, d.message);
    }

    // Should have provide/inject matches (theme and user)
    assert!(
        !result.provide_inject_matches.is_empty(),
        "Should have at least 1 match (theme), got: {:?}",
        result.provide_inject_matches
    );

    // Check for unmatched inject errors - should have none for 'theme'
    let unmatched_theme: Vec<_> = result
        .diagnostics
        .iter()
        .filter(|d| matches!(&d.kind, CrossFileDiagnosticKind::UnmatchedInject { key } if key == "theme"))
        .collect();
    assert_eq!(
        unmatched_theme.len(),
        0,
        "Should have no unmatched inject for 'theme'"
    );
}

#[test]
fn test_provide_inject_with_component_usage_edge() {
    use crate::cross_file::diagnostics::CrossFileDiagnosticKind;

    let mut analyzer =
        CrossFileAnalyzer::new(CrossFileOptions::default().with_provide_inject(true));

    // App.vue provides 'theme' and 'user'
    // App uses Child component in template (simulated via used_components)
    let mut app_analyzer = crate::Analyzer::with_options(AnalyzerOptions::full());
    app_analyzer.analyze_script_setup(
        r#"import { provide, ref } from 'vue'

const theme = ref('dark')
const user = ref({ name: 'Test' })

provide('theme', theme)
provide('user', user)"#,
    );
    // Manually add used component (normally from template analysis)
    app_analyzer
        .croquis_mut()
        .used_components
        .insert(vize_carton::CompactString::new("Child"));
    let app_analysis = app_analyzer.finish();

    // Child.vue injects 'theme' and 'user'
    let mut child_analyzer = crate::Analyzer::with_options(AnalyzerOptions::full());
    child_analyzer.analyze_script_setup(
        r#"import { inject } from 'vue'

const theme = inject('theme')
const user = inject('user')"#,
    );
    let child_analysis = child_analyzer.finish();

    // Add files with pre-computed analysis
    let _app_id =
        analyzer.add_file_with_analysis(Path::new("App.vue"), "script content", app_analysis);
    let _child_id = analyzer.add_file_with_analysis(
        Path::new("Child.vue"),
        "script content",
        child_analysis,
    );

    // Rebuild component edges (App uses Child)
    analyzer.rebuild_component_edges();

    // Run analysis
    let result = analyzer.analyze();

    // Should have 2 provide/inject matches
    assert_eq!(
        result.provide_inject_matches.len(),
        2,
        "Should have 2 matches (theme and user)"
    );

    // Should have NO unmatched inject errors
    let unmatched_inject_errors: Vec<_> = result
        .diagnostics
        .iter()
        .filter(|d| matches!(d.kind, CrossFileDiagnosticKind::UnmatchedInject { .. }))
        .filter(|d| d.is_error())
        .collect();
    assert_eq!(
        unmatched_inject_errors.len(),
        0,
        "Should have no unmatched inject errors, but got: {:?}",
        unmatched_inject_errors
            .iter()
            .map(|d| &d.message)
            .collect::<Vec<_>>()
    );

    // Should have NO unused provide warnings
    let unused_provide_warnings: Vec<_> = result
        .diagnostics
        .iter()
        .filter(|d| matches!(d.kind, CrossFileDiagnosticKind::UnusedProvide { .. }))
        .collect();
    assert_eq!(
        unused_provide_warnings.len(),
        0,
        "Should have no unused provide warnings, but got: {:?}",
        unused_provide_warnings
            .iter()
            .map(|d| &d.message)
            .collect::<Vec<_>>()
    );
}

#[test]
fn test_provide_inject_multiple_levels() {
    use crate::cross_file::diagnostics::CrossFileDiagnosticKind;

    let mut analyzer =
        CrossFileAnalyzer::new(CrossFileOptions::default().with_provide_inject(true));

    // Grandparent provides 'globalState'
    let mut gp_analyzer = crate::Analyzer::with_options(AnalyzerOptions::full());
    gp_analyzer.analyze_script_setup(
        r#"import { provide } from 'vue'
provide('globalState', { app: 'test' })"#,
    );
    gp_analyzer
        .croquis_mut()
        .used_components
        .insert(vize_carton::CompactString::new("Parent"));
    let gp_analysis = gp_analyzer.finish();

    // Parent doesn't provide/inject anything, just passes through
    let mut parent_analyzer = crate::Analyzer::with_options(AnalyzerOptions::full());
    parent_analyzer.analyze_script_setup(r#"// No provide/inject"#);
    parent_analyzer
        .croquis_mut()
        .used_components
        .insert(vize_carton::CompactString::new("Child"));
    let parent_analysis = parent_analyzer.finish();

    // Child injects 'globalState' (from grandparent)
    let mut child_analyzer = crate::Analyzer::with_options(AnalyzerOptions::full());
    child_analyzer.analyze_script_setup(
        r#"import { inject } from 'vue'
const state = inject('globalState')"#,
    );
    let child_analysis = child_analyzer.finish();

    // Add files
    analyzer.add_file_with_analysis(Path::new("Grandparent.vue"), "", gp_analysis);
    analyzer.add_file_with_analysis(Path::new("Parent.vue"), "", parent_analysis);
    analyzer.add_file_with_analysis(Path::new("Child.vue"), "", child_analysis);

    // Rebuild edges
    analyzer.rebuild_component_edges();

    // Run analysis
    let result = analyzer.analyze();

    // Should have 1 match (globalState from Grandparent to Child)
    assert_eq!(
        result.provide_inject_matches.len(),
        1,
        "Should have 1 match for globalState"
    );

    // No errors
    let errors: Vec<_> = result
        .diagnostics
        .iter()
        .filter(|d| d.is_error())
        .filter(|d| {
            matches!(
                d.kind,
                CrossFileDiagnosticKind::UnmatchedInject { .. }
                    | CrossFileDiagnosticKind::UnusedProvide { .. }
            )
        })
        .collect();
    assert_eq!(errors.len(), 0, "Should have no provide/inject errors");
}