You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
1.9 KiB
63 lines
1.9 KiB
using System; |
|
using CommunityToolkit.Mvvm.ComponentModel; |
|
using StabilityMatrix.Avalonia.ViewModels.Base; |
|
using StabilityMatrix.Core.Helper; |
|
using StabilityMatrix.Core.Models.Progress; |
|
|
|
namespace StabilityMatrix.Avalonia.ViewModels; |
|
|
|
public partial class ProgressItemViewModel : ViewModelBase |
|
{ |
|
[ObservableProperty] private Guid id; |
|
[ObservableProperty] private string name; |
|
[ObservableProperty] private ProgressReport progress; |
|
[ObservableProperty] private bool failed; |
|
[ObservableProperty] private string? progressText; |
|
|
|
public ProgressItemViewModel(ProgressItem progressItem) |
|
{ |
|
Id = progressItem.ProgressId; |
|
Name = progressItem.Name; |
|
Progress = progressItem.Progress; |
|
Failed = progressItem.Failed; |
|
ProgressText = GetProgressText(Progress); |
|
|
|
EventManager.Instance.ProgressChanged += OnProgressChanged; |
|
} |
|
|
|
private void OnProgressChanged(object? sender, ProgressItem e) |
|
{ |
|
if (e.ProgressId != Id) |
|
return; |
|
|
|
Progress = e.Progress; |
|
Failed = e.Failed; |
|
ProgressText = GetProgressText(Progress); |
|
} |
|
|
|
private string GetProgressText(ProgressReport report) |
|
{ |
|
switch (report.Type) |
|
{ |
|
case ProgressType.Generic: |
|
break; |
|
case ProgressType.Download: |
|
return Failed ? "Download Failed" : "Downloading..."; |
|
case ProgressType.Extract: |
|
return Failed ? "Extraction Failed" : "Extracting..."; |
|
case ProgressType.Update: |
|
return Failed ? "Update Failed" : "Updating..."; |
|
} |
|
|
|
if (Failed) |
|
{ |
|
return "Failed"; |
|
} |
|
|
|
return string.IsNullOrWhiteSpace(report.Message) |
|
? string.IsNullOrWhiteSpace(report.Title) |
|
? string.Empty |
|
: report.Title |
|
: report.Message; |
|
} |
|
}
|
|
|