2 instantiations of DashboardDialogService
Aspire.Dashboard.Tests (2)
Model\DashboardCommandExecutorTests.cs (1)
150var dialogService = new DashboardDialogService(
Model\ResourceMenuBuilderTests.cs (1)
36_dialogService = new DashboardDialogService(
47 references to DashboardDialogService
Aspire.Dashboard (36)
Components\Controls\Chart\MetricTable.razor.cs (1)
40public required DashboardDialogService DialogService { get; init; }
Components\Controls\Chart\PlotlyChart.razor.cs (1)
31public required DashboardDialogService DialogService { get; init; }
Components\Controls\GridValue.razor.cs (1)
103public required DashboardDialogService DialogService { get; init; }
Components\Controls\PropertyValues\SpanIdButtonValue.razor.cs (1)
24public required DashboardDialogService DialogService { get; init; }
Components\Controls\ResourceDetails.razor.cs (1)
59public required DashboardDialogService DialogService { get; init; }
Components\Controls\SpanDetails.razor.cs (1)
51public required DashboardDialogService DialogService { get; init; }
Components\Dialogs\ExemplarsDialog.razor.cs (1)
24public required DashboardDialogService DialogService { get; init; }
Components\Dialogs\GenAIVisualizerDialog.razor.cs (1)
387public static async Task OpenDialogAsync(DashboardDialogService dialogService,
Components\Dialogs\SettingsDialog.razor.cs (1)
32public required DashboardDialogService DialogService { get; init; }
Components\Interactions\InteractionsProvider.cs (3)
72public required DashboardDialogService DialogService { get; init; } 159Func<DashboardDialogService, Task<IDialogReference>> openDialog; 619public async Task<IDialogReference> ShowMessageBoxAsync(DashboardDialogService dialogService, MessageBoxContent content, DialogParameters parameters)
Components\Layout\AspirePageContentLayout.razor.cs (1)
55public required DashboardDialogService DialogService { get; init; }
Components\Layout\MainLayout.razor.cs (1)
62public required DashboardDialogService DialogService { get; init; }
Components\Pages\ConsoleLogs.razor.cs (1)
126public required DashboardDialogService DialogService { get; init; }
Components\Pages\Resources.razor.cs (1)
70public required DashboardDialogService DialogService { get; init; }
Components\Pages\StructuredLogs.razor.cs (1)
73public required DashboardDialogService DialogService { get; init; }
Components\Pages\TraceDetail.razor.cs (1)
92public required DashboardDialogService DialogService { get; init; }
Components\Pages\Traces.razor.cs (1)
72public required DashboardDialogService DialogService { get; init; }
DashboardWebApplication.cs (1)
373builder.Services.AddScoped<DashboardDialogService>();
Model\DashboardCommandExecutor.cs (4)
18DashboardDialogService dialogService, 361var dialogService = services.GetRequiredService<DashboardDialogService>(); 367private static async Task OpenViewResponseDialogAsync(DashboardDialogService dialogService, CommandViewModel command, ResourceCommandResponseViewModel response)
Model\OpenTextVisualizerDialogOptions.cs (1)
11public required DashboardDialogService DialogService { get; init; }
Model\ResourceMenuBuilder.cs (2)
35private readonly DashboardDialogService _dialogService; 47DashboardDialogService dialogService,
Model\SpanMenuBuilder.cs (2)
28private readonly DashboardDialogService _dialogService; 37DashboardDialogService dialogService,
Model\StructuredLogMenuBuilder.cs (2)
27private readonly DashboardDialogService _dialogService; 36DashboardDialogService dialogService,
Model\TraceLinkHelpers.cs (2)
21DashboardDialogService dialogService, 38DashboardDialogService dialogService,
Model\TraceMenuBuilder.cs (2)
27private readonly DashboardDialogService _dialogService; 36DashboardDialogService dialogService,
Utils\FilterHelpers.cs (1)
99DashboardDialogService dialogService,
Aspire.Dashboard.Components.Tests (9)
Controls\GenAIVisualizerDialogTests.cs (7)
39var cut = SetUpDialog(out var dialogService); 106var cut = SetUpDialog(out var dialogService); 133var cut = SetUpDialog(out var dialogService); 182var cut = SetUpDialog(out var dialogService); 266var cut = SetUpDialog(out var dialogService); 359private IRenderedFragment SetUpDialog(out DashboardDialogService dialogService) 370dialogService = Services.GetRequiredService<DashboardDialogService>();
Interactions\InteractionsProviderTests.cs (1)
696Services.AddScoped<DashboardDialogService>();
Shared\FluentUISetupHelpers.cs (1)
242context.Services.AddScoped<DashboardDialogService>();
Aspire.Dashboard.Tests (2)
Model\DashboardCommandExecutorTests.cs (1)
150var dialogService = new DashboardDialogService(
Model\ResourceMenuBuilderTests.cs (1)
27private readonly DashboardDialogService _dialogService;