-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathWorkspaceItemFactory.cs
More file actions
392 lines (361 loc) · 16.3 KB
/
Copy pathWorkspaceItemFactory.cs
File metadata and controls
392 lines (361 loc) · 16.3 KB
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
// Modifications copyright (c) 2025 tanchekwei
// Licensed under the MIT License. See the LICENSE file in the project root for details.
using System;
using System.Collections.Generic;
using Microsoft.CommandPalette.Extensions;
using Microsoft.CommandPalette.Extensions.Toolkit;
using Windows.System;
using WorkspaceLauncherForVSCode.Classes;
using WorkspaceLauncherForVSCode.Commands;
using WorkspaceLauncherForVSCode.Enums;
using WorkspaceLauncherForVSCode.Helpers;
using WorkspaceLauncherForVSCode.Interfaces;
using WorkspaceLauncherForVSCode.Pages;
using WorkspaceLauncherForVSCode.Services.VisualStudio.Models;
namespace WorkspaceLauncherForVSCode.Workspaces
{
public static class WorkspaceItemFactory
{
public static readonly Tag PinTag = new Tag();
static WorkspaceItemFactory()
{
PinTag.Icon = Icon.Pinned;
}
public static ListItem Create(
VisualStudioCodeWorkspace workspace,
VisualStudioCodePage page,
WorkspaceStorage workspaceStorage,
SettingsManager settingsManager,
CommandContextItem refreshCommandContextItem,
IPinService pinService,
List<VisualStudioInstance> visualStudioInstanceList)
{
try
{
#if DEBUG
using var logger = new TimeLogger();
#endif
ICommand command;
IconInfo icon;
Details details;
List<Tag> tags;
List<CommandContextItem> moreCommands;
if (workspace.WorkspaceType == WorkspaceType.Solution || workspace.WorkspaceType == WorkspaceType.Solution2026)
{
(command, icon, details, tags, moreCommands) = CreateSolutionComponents(workspace, page, settingsManager, visualStudioInstanceList);
}
else
{
(command, icon, details, tags, moreCommands) = CreateVSCodeComponents(workspace, page, settingsManager);
}
AddCommonCommands(moreCommands, workspace, settingsManager, refreshCommandContextItem, pinService);
var item = new ListItem(command)
{
Title = details.Title ?? "(no title)",
Subtitle = GetSubtitle(workspace),
Details = details,
Icon = icon,
Tags = tags.ToArray(),
MoreCommands = moreCommands.ToArray(),
};
AddPinTag(item);
return item;
}
catch (Exception ex)
{
ErrorLogger.LogError(ex);
return new ListItem(new OpenVisualStudioCodeCommand(workspace, page));
}
}
internal static (ICommand, IconInfo, Details, List<Tag>, List<CommandContextItem>) CreateSolutionComponents(
VisualStudioCodeWorkspace workspace,
VisualStudioCodePage page,
SettingsManager settingsManager,
List<VisualStudioInstance> visualStudioInstanceList)
{
var command = new OpenSolutionCommand(workspace, page);
var icon = Icon.VisualStudio;
if (workspace.WorkspaceType == WorkspaceType.Solution2026 || workspace.VSInstance?.ProductLineVersion == Constant.VisualStudio2026Version)
{
icon = Icon.VisualStudio2026;
}
workspace.WindowsPath = workspace.Path;
var details = BuildDetails(workspace, icon);
var tags = BuildTags(workspace, settingsManager);
List<CommandContextItem> moreCommands = [];
if (settingsManager.VSSecondaryCommand == SecondaryCommand.OpenAsAdministrator)
{
moreCommands.Add(new CommandContextItem(new OpenSolutionCommand(workspace, page, elevated: true)));
if (!string.IsNullOrEmpty(workspace.WindowsPath))
{
moreCommands.Add(new CommandContextItem(new OpenInExplorerCommand(workspace.WindowsPath, workspace)));
}
}
else
{
if (!string.IsNullOrEmpty(workspace.WindowsPath))
{
moreCommands.Add(new CommandContextItem(new OpenInExplorerCommand(workspace.WindowsPath, workspace)));
}
moreCommands.Add(new CommandContextItem(new OpenSolutionCommand(workspace, page, elevated: true)));
}
// Add alternative version opening options
foreach (var instance in visualStudioInstanceList)
{
if (workspace.VSInstance != null &&
string.Equals(workspace.VSInstance.InstancePath, instance.InstancePath, StringComparison.OrdinalIgnoreCase))
{
continue;
}
var altIcon = Icon.VisualStudio;
var versionLabel = instance.ProductLineVersion;
var targetType = WorkspaceType.Solution;
if (instance.ProductLineVersion == Constant.VisualStudio2026Version)
{
altIcon = Icon.VisualStudio2026;
versionLabel = "2026";
targetType = WorkspaceType.Solution2026;
}
var tempWorkspace = new VisualStudioCodeWorkspace
{
Path = workspace.Path,
Name = workspace.Name,
WindowsPath = workspace.WindowsPath,
WorkspaceType = targetType,
VSInstance = instance,
VisualStudioCodeRemoteUri = workspace.VisualStudioCodeRemoteUri
};
var altCommand = new OpenSolutionCommand(tempWorkspace, page, elevated: false)
{
Name = $"Open in Visual Studio {versionLabel}",
Icon = altIcon
};
moreCommands.Add(new CommandContextItem(altCommand));
}
// Add Open in Visual Studio Code option
var vsCodeInstances = page.VSCodeService.GetInstances();
foreach (var instance in vsCodeInstances)
{
var tempVsCodeWorkspace = new VisualStudioCodeWorkspace
{
Path = workspace.Path,
Name = workspace.Name,
WindowsPath = workspace.WindowsPath,
WorkspaceType = workspace.WorkspaceType,
VSCodeInstance = instance,
VisualStudioCodeRemoteUri = workspace.VisualStudioCodeRemoteUri
};
var commandIcon = instance.CachedIcon;
var openCommand = new OpenVisualStudioCodeCommand(tempVsCodeWorkspace, page, isFromVisualStudioSolution: true)
{
Name = $"Open in {instance.DisplayName}",
Icon = commandIcon
};
moreCommands.Add(new CommandContextItem(openCommand));
}
return (command, icon, details, tags, moreCommands);
}
internal static (ICommand, IconInfo, Details, List<Tag>, List<CommandContextItem>) CreateVSCodeComponents(
VisualStudioCodeWorkspace workspace,
VisualStudioCodePage page,
SettingsManager settingsManager)
{
var command = new OpenVisualStudioCodeCommand(workspace, page);
var icon = workspace.VSCodeInstance?.CachedIcon ?? Icon.VisualStudioCode;
var details = BuildDetails(workspace, icon);
var tags = BuildTags(workspace, settingsManager);
List<CommandContextItem> moreCommands = [];
if (workspace.VisualStudioCodeRemoteUri is null)
{
if (settingsManager.VSCodeSecondaryCommand == SecondaryCommand.OpenAsAdministrator)
{
moreCommands.Add(new CommandContextItem(new OpenVisualStudioCodeCommand(workspace, page, elevated: true)));
if (!string.IsNullOrEmpty(workspace.WindowsPath))
{
moreCommands.Add(new CommandContextItem(new OpenInExplorerCommand(workspace.WindowsPath, workspace)));
}
}
else
{
if (!string.IsNullOrEmpty(workspace.WindowsPath))
{
moreCommands.Add(new CommandContextItem(new OpenInExplorerCommand(workspace.WindowsPath, workspace)));
}
moreCommands.Add(new CommandContextItem(new OpenVisualStudioCodeCommand(workspace, page, elevated: true)));
}
}
else
{
switch (workspace.VisualStudioCodeRemoteUri.Type)
{
case VisualStudioCodeRemoteType.Codespaces:
if (!string.IsNullOrEmpty(workspace.WindowsPath))
{
moreCommands.Add(new CommandContextItem(new Commands.OpenUrlCommand(workspace.WindowsPath, "Open in Browser", Icon.GitHub)));
}
break;
case VisualStudioCodeRemoteType.WSL:
case VisualStudioCodeRemoteType.DevContainer:
if (!string.IsNullOrEmpty(workspace.WindowsPath))
{
moreCommands.Add(new CommandContextItem(new OpenInExplorerCommand(workspace.WindowsPath, workspace)));
}
break;
}
}
// Add Open in other VS Code instances
var vsCodeInstances = page.VSCodeService.GetInstances();
foreach (var instance in vsCodeInstances)
{
if (workspace.VSCodeInstance != null &&
string.Equals(workspace.VSCodeInstance.ExecutablePath, instance.ExecutablePath, StringComparison.OrdinalIgnoreCase))
{
continue;
}
var tempWorkspace = new VisualStudioCodeWorkspace
{
Path = workspace.Path,
Name = workspace.Name,
WindowsPath = workspace.WindowsPath,
WorkspaceType = workspace.WorkspaceType,
VSCodeInstance = instance,
VisualStudioCodeRemoteUri = workspace.VisualStudioCodeRemoteUri,
LastAccessed = workspace.LastAccessed // Preserve last accessed for sorting/display consistency if needed
};
var commandIcon = instance.CachedIcon;
var openCommand = new OpenVisualStudioCodeCommand(tempWorkspace, page)
{
Name = $"Open in {instance.DisplayName}",
Icon = commandIcon
};
moreCommands.Add(new CommandContextItem(openCommand));
}
return (command, icon, details, tags, moreCommands);
}
internal static void AddCommonCommands(
List<CommandContextItem> moreCommands,
VisualStudioCodeWorkspace workspace,
SettingsManager settingsManager,
CommandContextItem refreshCommandContextItem,
IPinService pinService)
{
bool hasOpenInExplorer = false;
foreach (var c in moreCommands)
{
if (c.Command is OpenInExplorerCommand)
{
hasOpenInExplorer = true;
break;
}
}
if (hasOpenInExplorer)
{
moreCommands.Add(new CommandContextItem(new OpenInTerminalCommand(workspace, settingsManager)));
}
moreCommands.Add(new CommandContextItem(new HelpPage(settingsManager, workspace))
{
RequestedShortcut = KeyChordHelpers.FromModifiers(false, false, false, false, (int)VirtualKey.F1, 0),
});
moreCommands.Add(new CommandContextItem(new CopyPathCommand(workspace.WindowsPath ?? string.Empty))
{
RequestedShortcut = KeyChordHelpers.FromModifiers(true, false, false, false, (int)VirtualKey.C, 0),
});
moreCommands.Add(refreshCommandContextItem);
moreCommands.Add(new CommandContextItem(new PinWorkspaceCommand(workspace, pinService)));
}
private static string GetSubtitle(VisualStudioCodeWorkspace workspace)
{
if (workspace.VisualStudioCodeRemoteUri is null)
{
return Uri.UnescapeDataString(workspace.WindowsPath ?? string.Empty);
}
return workspace.WindowsPath ?? string.Empty;
}
private static void AddPinTag(ListItem item)
{
if (item.Command is IHasWorkspace { Workspace.PinDateTime: not null })
{
bool hasPinTag = false;
if (item.Tags != null && item.Tags.Length > 0)
{
foreach (var tag in item.Tags)
{
if (ReferenceEquals(tag, PinTag))
{
hasPinTag = true;
break;
}
}
}
if (!hasPinTag)
{
var originalLength = item.Tags?.Length ?? 0;
var newTags = new Tag[originalLength + 1];
if (item.Tags != null)
{
item.Tags.CopyTo(newTags, 0);
}
newTags[originalLength] = PinTag;
item.Tags = newTags;
}
}
}
private static Details BuildDetails(VisualStudioCodeWorkspace workspace, IconInfo icon)
{
List<DetailsElement> metadata =
[
new DetailsElement() { Key = "Tags", Data = new DetailsTags() { Tags = [.. BuildTags(workspace)] } },
new DetailsElement() { Key = "Path", Data = new DetailsLink() { Text = workspace.Path ?? "" } },
new DetailsElement() { Key = "Windows Path", Data = new DetailsLink() { Text = workspace.WindowsPath ?? "" } },
];
return new Details()
{
HeroImage = icon,
Title = workspace.Name ?? "",
Metadata = [.. metadata],
};
}
private static List<Tag> BuildTags(VisualStudioCodeWorkspace workspace, SettingsManager? settingsManager = null)
{
List<Tag> tags = [];
var isVSSolution = workspace.WorkspaceType == WorkspaceType.Solution || workspace.WorkspaceType == WorkspaceType.Solution2026;
if (isVSSolution)
{
if (settingsManager == null || settingsManager.TagTypes.HasFlag(TagType.Target))
{
if (workspace.VSInstance?.Name is string name)
{
tags.Add(new Tag(name));
}
}
}
else
{
if (settingsManager == null || settingsManager.TagTypes.HasFlag(TagType.Type))
{
if (workspace.VisualStudioCodeRemoteUri != null)
{
tags.Add(new Tag(workspace.VisualStudioCodeRemoteUri.Type.ToDisplayName()));
}
else if (workspace.VisualStudioCodeRemoteUri?.TypeStr != null)
{
tags.Add(new Tag(workspace.VisualStudioCodeRemoteUri.TypeStr));
}
else if (workspace.WorkspaceType == WorkspaceType.Workspace ||
workspace.WorkspaceType == WorkspaceType.WorkspaceInsider)
{
tags.Add(new Tag(nameof(WorkspaceType.Workspace)));
}
}
if (settingsManager == null || settingsManager.TagTypes.HasFlag(TagType.Target))
{
if (workspace.VSCodeInstance?.Name is string name)
{
tags.Add(new Tag(name));
}
}
}
return tags;
}
}
}