forked from LykosAI/StabilityMatrix
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathMainWindowViewModel.cs
More file actions
550 lines (479 loc) · 19.8 KB
/
Copy pathMainWindowViewModel.cs
File metadata and controls
550 lines (479 loc) · 19.8 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
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
using System.Diagnostics;
using System.Diagnostics.CodeAnalysis;
using System.Runtime.InteropServices;
using AsyncAwaitBestPractices;
using Avalonia;
using Avalonia.Controls;
using Avalonia.Controls.Primitives;
using Avalonia.Threading;
using CommunityToolkit.Mvvm.ComponentModel;
using FluentAvalonia.UI.Controls;
using FluentAvalonia.UI.Media.Animation;
using NLog;
using StabilityMatrix.Avalonia.Controls;
using StabilityMatrix.Avalonia.Helpers;
using StabilityMatrix.Avalonia.Languages;
using StabilityMatrix.Avalonia.Services;
using StabilityMatrix.Avalonia.ViewModels.Base;
using StabilityMatrix.Avalonia.ViewModels.Dialogs;
using StabilityMatrix.Avalonia.ViewModels.Progress;
using StabilityMatrix.Avalonia.ViewModels.Settings;
using StabilityMatrix.Avalonia.Views;
using StabilityMatrix.Avalonia.Views.Dialogs;
using StabilityMatrix.Core.Attributes;
using StabilityMatrix.Core.Extensions;
using StabilityMatrix.Core.Helper;
using StabilityMatrix.Core.Helper.Analytics;
using StabilityMatrix.Core.Helper.HardwareInfo;
using StabilityMatrix.Core.Models;
using StabilityMatrix.Core.Models.Api.Lykos.Analytics;
using StabilityMatrix.Core.Models.Settings;
using StabilityMatrix.Core.Models.Update;
using StabilityMatrix.Core.Services;
using StabilityMatrix.Core.Updater;
using TeachingTip = StabilityMatrix.Core.Models.Settings.TeachingTip;
namespace StabilityMatrix.Avalonia.ViewModels;
[View(typeof(MainWindow))]
public partial class MainWindowViewModel : ViewModelBase
{
private static readonly Logger Logger = LogManager.GetCurrentClassLogger();
private readonly ISettingsManager settingsManager;
private readonly IServiceManager<ViewModelBase> dialogFactory;
private readonly ITrackedDownloadService trackedDownloadService;
private readonly IDiscordRichPresenceService discordRichPresenceService;
private readonly IModelIndexService modelIndexService;
private readonly Lazy<IModelDownloadLinkHandler> modelDownloadLinkHandler;
private readonly INotificationService notificationService;
private readonly IAnalyticsHelper analyticsHelper;
private readonly IUpdateHelper updateHelper;
private readonly ISecretsManager secretsManager;
private readonly INavigationService<MainWindowViewModel> navigationService;
private readonly INavigationService<SettingsViewModel> settingsNavService;
public string Greeting => "Welcome to Avalonia!";
[ObservableProperty]
private PageViewModelBase? currentPage;
[ObservableProperty]
private object? selectedCategory;
[ObservableProperty]
private List<PageViewModelBase> pages = new();
[ObservableProperty]
private List<PageViewModelBase> footerPages = new();
public ProgressManagerViewModel ProgressManagerViewModel { get; init; }
public UpdateViewModel UpdateViewModel { get; init; }
public double PaneWidth =>
Cultures.Current switch
{
{ Name: "it-IT" } => 250,
{ Name: "fr-FR" } => 250,
{ Name: "es" } => 250,
{ Name: "ru-RU" } => 250,
{ Name: "tr-TR" } => 235,
{ Name: "de" } => 250,
{ Name: "pt-PT" } => 300,
{ Name: "pt-BR" } => 260,
{ Name: "ko-KR" } => 235,
_ => 200,
};
public MainWindowViewModel(
ISettingsManager settingsManager,
IDiscordRichPresenceService discordRichPresenceService,
IServiceManager<ViewModelBase> dialogFactory,
ITrackedDownloadService trackedDownloadService,
IModelIndexService modelIndexService,
Lazy<IModelDownloadLinkHandler> modelDownloadLinkHandler,
INotificationService notificationService,
IAnalyticsHelper analyticsHelper,
IUpdateHelper updateHelper,
ISecretsManager secretsManager,
INavigationService<MainWindowViewModel> navigationService,
INavigationService<SettingsViewModel> settingsNavService
)
{
this.settingsManager = settingsManager;
this.dialogFactory = dialogFactory;
this.discordRichPresenceService = discordRichPresenceService;
this.trackedDownloadService = trackedDownloadService;
this.modelIndexService = modelIndexService;
this.modelDownloadLinkHandler = modelDownloadLinkHandler;
this.notificationService = notificationService;
this.analyticsHelper = analyticsHelper;
this.updateHelper = updateHelper;
this.secretsManager = secretsManager;
this.navigationService = navigationService;
this.settingsNavService = settingsNavService;
ProgressManagerViewModel = dialogFactory.Get<ProgressManagerViewModel>();
UpdateViewModel = dialogFactory.Get<UpdateViewModel>();
}
public override void OnLoaded()
{
base.OnLoaded();
// Set only if null, since this may be called again when content dialogs open
CurrentPage ??= Pages.FirstOrDefault();
SelectedCategory ??= Pages.FirstOrDefault();
}
protected override async Task OnInitialLoadedAsync()
{
await base.OnLoadedAsync();
// Skip if design mode
if (Design.IsDesignMode)
return;
if (!await EnsureDataDirectory())
{
// False if user exited dialog, shutdown app
App.Shutdown();
return;
}
Task.Run(() => SharedFolders.SetupSharedModelFolders(settingsManager.ModelsDirectory))
.SafeFireAndForget(ex =>
{
Logger.Error(ex, "Error setting up shared model folders");
});
try
{
await modelDownloadLinkHandler.Value.StartListening();
}
catch (IOException)
{
var dialog = new BetterContentDialog
{
Title = Resources.Label_StabilityMatrixAlreadyRunning,
Content = Resources.Label_AnotherInstanceAlreadyRunning,
IsPrimaryButtonEnabled = true,
PrimaryButtonText = Resources.Action_Close,
DefaultButton = ContentDialogButton.Primary,
};
await dialog.ShowAsync();
App.Shutdown();
return;
}
// Initialize Discord Rich Presence (this needs LibraryDir so is set here)
discordRichPresenceService.UpdateState();
// Load in-progress downloads
ProgressManagerViewModel.AddDownloads(trackedDownloadService.Downloads);
// Index checkpoints if we dont have
// Task.Run(() => settingsManager.IndexCheckpoints()).SafeFireAndForget();
// Disable preload for now, might be causing https://github.com/LykosAI/StabilityMatrix/issues/249
/*if (!App.IsHeadlessMode)
{
PreloadPages();
}*/
Program.StartupTimer.Stop();
var startupTime = CodeTimer.FormatTime(Program.StartupTimer.Elapsed);
Logger.Info($"App started ({startupTime})");
// Show analytics notice if not seen
if (
settingsManager.Settings.Analytics.LastSeenConsentVersion is null
|| settingsManager.Settings.Analytics.LastSeenConsentAccepted is null
)
{
var vm = dialogFactory.Get<AnalyticsOptInViewModel>();
var result = await vm.GetDialog().ShowAsync();
settingsManager.Transaction(s =>
{
s.Analytics.LastSeenConsentVersion = Compat.AppVersion;
s.Analytics.LastSeenConsentAccepted = result == ContentDialogResult.Secondary;
});
if (result == ContentDialogResult.Secondary)
{
settingsManager.Transaction(s => s.Analytics.IsUsageDataEnabled, true);
}
else if (result is ContentDialogResult.Primary)
{
settingsManager.Transaction(s => s.Analytics.IsUsageDataEnabled, false);
}
}
if (Program.Args.DebugOneClickInstall || settingsManager.Settings.InstalledPackages.Count == 0)
{
var viewModel = dialogFactory.Get<NewOneClickInstallViewModel>();
var dialog = new BetterContentDialog
{
IsPrimaryButtonEnabled = false,
IsSecondaryButtonEnabled = false,
IsFooterVisible = false,
FullSizeDesired = true,
MinDialogHeight = 775,
Content = new NewOneClickInstallDialog { DataContext = viewModel },
};
var firstDialogResult = await dialog.ShowAsync(App.TopLevel);
if (firstDialogResult != ContentDialogResult.Primary)
{
analyticsHelper.TrackFirstTimeInstallAsync(null, null, true).SafeFireAndForget();
return;
}
var recommendedModelsViewModel = dialogFactory.Get<RecommendedModelsViewModel>();
dialog = new BetterContentDialog
{
IsPrimaryButtonEnabled = true,
FullSizeDesired = true,
MinDialogHeight = 900,
PrimaryButtonText = Resources.Action_Download,
CloseButtonText = Resources.Action_Close,
DefaultButton = ContentDialogButton.Primary,
PrimaryButtonCommand = recommendedModelsViewModel.DoImportCommand,
Content = new RecommendedModelsDialog { DataContext = recommendedModelsViewModel },
};
await dialog.ShowAsync(App.TopLevel);
EventManager.Instance.OnRecommendedModelsDialogClosed();
EventManager.Instance.OnDownloadsTeachingTipRequested();
var installedPackageNameMaybe =
settingsManager.PackageInstallsInProgress.FirstOrDefault()
?? settingsManager.Settings.InstalledPackages.FirstOrDefault()?.PackageName;
analyticsHelper
.TrackFirstTimeInstallAsync(
installedPackageNameMaybe,
recommendedModelsViewModel
.RecommendedModels.Where(x => x.IsSelected)
.Select(x => x.CivitModel.Name)
.ToList(),
false
)
.SafeFireAndForget();
}
Task.Run(AddComputeCapabilityIfNecessary).SafeFireAndForget();
// Show what's new for updates
if (settingsManager.Settings.UpdatingFromVersion is { } updatingFromVersion)
{
var currentVersion = Compat.AppVersion;
notificationService.Show(
"Update Successful",
$"Stability Matrix has been updated from {updatingFromVersion.ToDisplayString()} to {currentVersion.ToDisplayString()}."
);
settingsManager.Transaction(s => s.UpdatingFromVersion = null);
}
// Start checking for updates
await updateHelper.StartCheckingForUpdates();
// Periodic launch stats
if (
settingsManager.Settings.Analytics.IsUsageDataEnabled
&& (
settingsManager.Settings.Analytics.LaunchDataLastSentAt is null
|| (DateTimeOffset.UtcNow - settingsManager.Settings.Analytics.LaunchDataLastSentAt)
> AnalyticsSettings.DefaultLaunchDataSendInterval
)
)
{
analyticsHelper
.TrackAsync(
new LaunchAnalyticsRequest
{
Version = Compat.AppVersion.ToString(),
RuntimeIdentifier = RuntimeInformation.RuntimeIdentifier,
OsDescription = RuntimeInformation.OSDescription,
}
)
.ContinueWith(task =>
{
if (!task.IsFaulted)
{
settingsManager.Transaction(s =>
s.Analytics.LaunchDataLastSentAt = DateTimeOffset.UtcNow
);
}
})
.SafeFireAndForget();
}
// Account migration notice
Task.Run(async () =>
{
if (settingsManager.Settings.SeenTeachingTips.Contains(TeachingTip.LykosAccountMigrateTip))
{
return;
}
var secrets = await secretsManager.LoadAsync();
if (!secrets.HasLegacyLykosAccount() || secrets.LykosAccountV2 is not null)
{
return;
}
// Show dialog
await Dispatcher.UIThread.InvokeAsync(async () =>
{
var dialog = DialogHelper.CreateMarkdownDialog(Resources.Text_LykosAccountUpgradeNotice);
dialog.MaxDialogWidth = 600;
dialog.ContentMargin = new Thickness(32, 0);
dialog.PrimaryButtonText = Resources.Action_GoToSettings;
dialog.IsPrimaryButtonEnabled = true;
dialog.CloseButtonText = Resources.Action_Close;
dialog.DefaultButton = ContentDialogButton.Primary;
// Show dialog, nav to settings if primary
if (await dialog.ShowAsync() is ContentDialogResult.Primary)
{
navigationService.NavigateTo<SettingsViewModel>(
new SuppressNavigationTransitionInfo()
);
await Task.Delay(100);
settingsNavService.NavigateTo<AccountSettingsViewModel>(
new SuppressNavigationTransitionInfo()
);
}
});
// Mark as seen
settingsManager.Transaction(s => s.SeenTeachingTips.Add(TeachingTip.LykosAccountMigrateTip));
})
.SafeFireAndForget(ex =>
{
Logger.Error(ex, "Error during account migration notice check");
});
await ShowMigrationTipIfNecessaryAsync();
}
private void PreloadPages()
{
// Preload pages with Preload attribute
foreach (
var page in Pages
.Concat(FooterPages)
.Where(p => p.GetType().GetCustomAttributes(typeof(PreloadAttribute), true).Any())
)
{
Dispatcher
.UIThread.InvokeAsync(
async () =>
{
var stopwatch = Stopwatch.StartNew();
// ReSharper disable once MethodHasAsyncOverload
page.OnLoaded();
await page.OnLoadedAsync();
// Get view
new ViewLocator().Build(page);
Logger.Trace(
$"Preloaded page {page.GetType().Name} in {stopwatch.Elapsed.TotalMilliseconds:F1}ms"
);
},
DispatcherPriority.Background
)
.ContinueWith(task =>
{
if (task.Exception is { } exception)
{
Logger.Error(exception, "Error preloading page");
Debug.Fail(exception.Message);
}
});
}
}
/// <summary>
/// Check if the data directory exists, if not, show the select data directory dialog.
/// </summary>
private async Task<bool> EnsureDataDirectory()
{
// If we can't find library, show selection dialog
var foundInitially = settingsManager.TryFindLibrary();
if (!foundInitially)
{
var result = await ShowSelectDataDirectoryDialog();
if (!result)
return false;
}
// Try to find library again, should be found now
if (!settingsManager.TryFindLibrary())
{
throw new Exception("Could not find library after setting path");
}
// Tell LaunchPage to load any packages if they selected an existing directory
if (!foundInitially)
{
EventManager.Instance.OnInstalledPackagesChanged();
}
// Check if there are old packages, if so show migration dialog
// TODO: Migration dialog
return true;
}
/// <summary>
/// Return true if we should show the update available teaching tip
/// </summary>
public bool ShouldShowUpdateAvailableTeachingTip([NotNullWhen(true)] UpdateInfo? info)
{
if (info is null)
{
return false;
}
// If matching settings seen version, don't show
if (info.Version == settingsManager.Settings.LastSeenUpdateVersion)
{
return false;
}
// Save that we have dismissed this update
settingsManager.Transaction(
s => s.LastSeenUpdateVersion = info.Version,
ignoreMissingLibraryDir: true
);
return true;
}
/// <summary>
/// Shows the select data directory dialog.
/// </summary>
/// <returns>true if path set successfully, false if user exited dialog.</returns>
private async Task<bool> ShowSelectDataDirectoryDialog()
{
var viewModel = dialogFactory.Get<SelectDataDirectoryViewModel>();
var dialog = new BetterContentDialog
{
IsPrimaryButtonEnabled = false,
IsSecondaryButtonEnabled = false,
IsFooterVisible = false,
Content = new SelectDataDirectoryDialog { DataContext = viewModel },
};
var result = await dialog.ShowAsync(App.TopLevel);
if (result == ContentDialogResult.Primary)
{
// 1. For portable mode, call settings.SetPortableMode()
if (viewModel.IsPortableMode)
{
settingsManager.SetPortableMode();
}
// 2. For custom path, call settings.SetLibraryPath(path)
else
{
settingsManager.SetLibraryPath(viewModel.DataDirectory);
}
// Indicate success
return true;
}
return false;
}
public async Task ShowUpdateDialog()
{
var viewModel = dialogFactory.Get<UpdateViewModel>();
var dialog = new BetterContentDialog
{
ContentVerticalScrollBarVisibility = ScrollBarVisibility.Disabled,
DefaultButton = ContentDialogButton.Close,
IsPrimaryButtonEnabled = false,
IsSecondaryButtonEnabled = false,
IsFooterVisible = false,
Content = new UpdateDialog { DataContext = viewModel },
};
await viewModel.Preload();
await dialog.ShowAsync();
}
private async Task ShowMigrationTipIfNecessaryAsync()
{
if (settingsManager.Settings.SeenTeachingTips.Contains(TeachingTip.SharedFolderMigrationTip))
return;
var folderReference = DialogHelper.CreateMarkdownDialog(MarkdownSnippets.SharedFolderMigration);
folderReference.CloseButtonText = Resources.Action_OK;
await folderReference.ShowAsync();
settingsManager.Transaction(s => s.SeenTeachingTips.Add(TeachingTip.SharedFolderMigrationTip));
}
private void AddComputeCapabilityIfNecessary()
{
try
{
if (settingsManager.Settings.PreferredGpu is not { IsNvidia: true, ComputeCapability: null })
return;
var newGpuInfos = HardwareHelper.IterGpuInfoNvidiaSmi();
var matchedGpuInfo = newGpuInfos?.FirstOrDefault(x =>
x.Name?.Equals(settingsManager.Settings.PreferredGpu.Name) ?? false
);
if (matchedGpuInfo is null)
{
return;
}
using var transaction = settingsManager.BeginTransaction();
transaction.Settings.PreferredGpu = matchedGpuInfo;
}
catch (Exception)
{
// ignored
}
}
}