Skip to content

Commit bfff95a

Browse files
authored
feat: add packages to Dependency Explorer (#14)
1 parent 056daa9 commit bfff95a

File tree

6 files changed

+46
-12
lines changed

6 files changed

+46
-12
lines changed

src/Dependify.Core/MsBuildService.cs

-1
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,6 @@ MsBuildConfig config
156156
reference.Key,
157157
reference.Value.FirstOrDefault(a => a.Key is "Version").Value
158158
);
159-
builder.WithNode(referenceNode);
160159
builder.WithEdge(new Edge(projectNode, referenceNode));
161160
}
162161
}

src/Dependify.Core/Serializers/MermaidSerializer.cs

+13-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ namespace Dependify.Core.Serializers;
33
using System.CodeDom.Compiler;
44
using Dependify.Core.Graph;
55

6-
public record MermaidSerializerOptions(bool ShowPackages = true, string Orientation = "LR")
6+
public record MermaidSerializerOptions(bool ShowPackages = true, string Orientation = "LR", bool NoStyle = false)
77
{
88
public static MermaidSerializerOptions Empty => new();
99
}
@@ -48,13 +48,23 @@ public static string ToString(DependencyGraph graph, MermaidSerializerOptions? o
4848
writer.WriteLine("end");
4949
}
5050

51+
var edgeIndex = 0;
5152
foreach (var reference in graph.Edges)
5253
{
5354
writer.WriteLine($"{reference.Start.Id} --> {reference.End.Id}");
55+
56+
if (!options.NoStyle && reference.End.Type == NodeConstants.Package)
57+
{
58+
writer.WriteLine($"linkStyle {edgeIndex} stroke:#1976D2,stroke-width:1px;");
59+
}
60+
edgeIndex++;
5461
}
5562

56-
writer.WriteLine($"classDef project fill:{ProjectBackgroundColor};");
57-
writer.WriteLine($"classDef package fill:{PackageBackgroundColor};");
63+
if (!options.NoStyle)
64+
{
65+
writer.WriteLine($"classDef project fill:{ProjectBackgroundColor};");
66+
writer.WriteLine($"classDef package fill:{PackageBackgroundColor};");
67+
}
5868

5969
writer.Indent--;
6070

src/Web/Components/Pages/Chat.razor

+2-2
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,8 @@
7878
</div>
7979
<div class="ma-1">
8080
<MudLink Typo="Typo.body2"
81-
OnClick="@(() => SubmitMessageAsync("What is the longest dependencies chain of .csproj? Only .csproj are included"))">
82-
What is the longest dependencies chain of .csproj? Only .csproj are included
81+
OnClick="@(() => SubmitMessageAsync("What is the longest dependencies chain of .csproj? Only components that end with \".csproj\" are included"))">
82+
What is the longest dependencies chain of projects?
8383
</MudLink>
8484
</div>
8585
<div class="ma-1">

src/Web/Components/Pages/Chat.razor.cs

+4-4
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ public async Task SubmitMessageAsync(string? input)
142142
}
143143
);
144144

145-
var diagramContent = this.CalculateCurrentContext();
145+
var diagramContent = this.CalculateCurrentContext(noStyles: true);
146146

147147
var chatHistory = this.CalculateChatHistory(diagramContent);
148148

@@ -272,7 +272,7 @@ private async Task ShowDiagramModal()
272272

273273
return;
274274
}
275-
var diagramContent = this.CalculateCurrentContext();
275+
var diagramContent = this.CalculateCurrentContext(noStyles: false);
276276

277277
var parameters = new DialogParameters { ["DiagramContent"] = diagramContent };
278278
var options = new DialogOptions
@@ -289,13 +289,13 @@ private async Task ShowDiagramModal()
289289
await dialog.Result;
290290
}
291291

292-
private string CalculateCurrentContext()
292+
private string CalculateCurrentContext(bool noStyles)
293293
{
294294
var solution = this.solutionNodes.Find(n => n.Id == this.selectedSolution);
295295

296296
if (solution is not null && this.SolutionRegistry.GetGraph(solution) is var graph && graph is not null)
297297
{
298-
var content = MermaidSerializer.ToString(graph);
298+
var content = MermaidSerializer.ToString(graph, new MermaidSerializerOptions(NoStyle: noStyles));
299299

300300
return content;
301301
}

src/Web/Components/Pages/DependencyExplorer.razor

+8-1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,12 @@
1313
<MudToolBar>
1414
<MudText Typo="Typo.h4">Explorer 🔎</MudText>
1515
<MudSpacer />
16+
<MudSwitch Size="Size.Medium" T="bool" ValueChanged="@(value => OnPackagesIncludedChangedAsync(value))"
17+
ThumbIcon="@(PackagesIncluded==true ? Icons.Material.Filled.Done : Icons.Material.Filled.Close)"
18+
ThumbIconColor="@(PackagesIncluded==true ? Color.Success : Color.Error)">
19+
<MudText Typo="Typo.subtitle2">Packages</MudText>
20+
</MudSwitch>
21+
1622
<MudTooltip Text="Unselect All">
1723
<MudIconButton Icon="@Icons.Material.Outlined.CleaningServices" Size="Size.Medium" Color="Color.Primary"
1824
OnClick="@UnselectAll" />
@@ -30,7 +36,8 @@
3036
<MudChip T="string" Color="@(SelectedNodeIds.Contains(nodeId) ? Color.Primary : Color.Default)"
3137
OnClick="@(async () => await ToggleIncludeAsync(nodeId))"
3238
Size="@(NodeIds.Count > 10 ? Size.Medium : Size.Large)" CloseIcon="@Icons.Material.Rounded.LibraryAdd"
33-
OnClose="@(async () => await IncludeDependencies(nodeId))" Variant="@(nodeId.EndsWith(".sln") ? Variant.Outlined : Variant.Text)">
39+
OnClose="@(async () => await IncludeDependencies(nodeId))"
40+
Variant="@(nodeId.EndsWith(".sln") ? Variant.Outlined : Variant.Text)">
3441
@nodeId
3542
</MudChip>
3643
}

src/Web/Components/Pages/DependencyExplorer.razor.cs

+19-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ namespace Web.Components.Pages;
88

99
public partial class DependencyExplorer
1010
{
11+
private bool PackagesIncluded { get; set; }
1112
private bool Loaded { get; set; }
1213

1314
private HashSet<string> NodeIds { get; set; } = [];
@@ -105,11 +106,28 @@ private void RefreshDiagram()
105106
this.DiagramContent = MermaidSerializer.ToString(subGraph);
106107
}
107108

109+
private async Task OnPackagesIncludedChangedAsync(bool value)
110+
{
111+
this.PackagesIncluded = value;
112+
this.RefreshDiagram();
113+
114+
await this.JSRuntime.InvokeVoidAsync("redrawMermaidDiagram", this.DiagramContent);
115+
await this.InvokeAsync(this.StateHasChanged);
116+
}
117+
108118
private DependencyGraph? GetSubGraph(HashSet<string> nodeIds)
109119
{
110120
var graph = this.SolutionRegistry.GetFullGraph();
111121

112-
var subGraph = graph.SubGraph(n => nodeIds.Contains(n.Id));
122+
var subGraph = graph.SubGraph(n =>
123+
{
124+
var isPackageIncluded =
125+
this.PackagesIncluded
126+
&& n.Type == NodeConstants.Package
127+
&& graph.FindAscendants(n).Any(n2 => nodeIds.Contains(n2.Id));
128+
129+
return nodeIds.Contains(n.Id) || isPackageIncluded;
130+
});
113131

114132
return subGraph;
115133
}

0 commit comments

Comments
 (0)