mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-04 10:16:24 +02:00
100 lines
2.8 KiB
C#
100 lines
2.8 KiB
C#
|
|
// Copyright (c) Microsoft Corporation
|
|||
|
|
// The Microsoft Corporation licenses this file to you under the MIT license.
|
|||
|
|
// See the LICENSE file in the project root for more information.
|
|||
|
|
|
|||
|
|
using Microsoft.CmdPal.UI.ViewModels.Models;
|
|||
|
|
using Microsoft.CommandPalette.Extensions;
|
|||
|
|
|
|||
|
|
namespace Microsoft.CmdPal.UI.ViewModels;
|
|||
|
|
|
|||
|
|
public partial class StatusMessageViewModel : ExtensionObjectViewModel
|
|||
|
|
{
|
|||
|
|
public ExtensionObject<IStatusMessage> Model { get; }
|
|||
|
|
|
|||
|
|
public string Message { get; private set; } = string.Empty;
|
|||
|
|
|
|||
|
|
public MessageState State { get; private set; } = MessageState.Info;
|
|||
|
|
|
|||
|
|
public string ExtensionPfn { get; set; } = string.Empty;
|
|||
|
|
|
|||
|
|
public ProgressViewModel? Progress { get; private set; }
|
|||
|
|
|
|||
|
|
public bool HasProgress => Progress != null;
|
|||
|
|
|
|||
|
|
// public bool IsIndeterminate => Progress != null && Progress.IsIndeterminate;
|
|||
|
|
// public double ProgressValue => (Progress?.ProgressPercent ?? 0) / 100.0;
|
|||
|
|
public StatusMessageViewModel(IStatusMessage message, WeakReference<IPageContext> context)
|
|||
|
|
: base(context)
|
|||
|
|
{
|
|||
|
|
Model = new(message);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public override void InitializeProperties()
|
|||
|
|
{
|
|||
|
|
var model = Model.Unsafe;
|
|||
|
|
if (model == null)
|
|||
|
|
{
|
|||
|
|
return; // throw?
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
Message = model.Message;
|
|||
|
|
State = model.State;
|
|||
|
|
var modelProgress = model.Progress;
|
|||
|
|
if (modelProgress != null)
|
|||
|
|
{
|
|||
|
|
Progress = new(modelProgress, this.PageContext);
|
|||
|
|
Progress.InitializeProperties();
|
|||
|
|
UpdateProperty(nameof(HasProgress));
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
model.PropChanged += Model_PropChanged;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
private void Model_PropChanged(object sender, IPropChangedEventArgs args)
|
|||
|
|
{
|
|||
|
|
try
|
|||
|
|
{
|
|||
|
|
FetchProperty(args.PropertyName);
|
|||
|
|
}
|
|||
|
|
catch (Exception ex)
|
|||
|
|
{
|
|||
|
|
ShowException(ex);
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
protected virtual void FetchProperty(string propertyName)
|
|||
|
|
{
|
|||
|
|
var model = this.Model.Unsafe;
|
|||
|
|
if (model == null)
|
|||
|
|
{
|
|||
|
|
return; // throw?
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
switch (propertyName)
|
|||
|
|
{
|
|||
|
|
case nameof(Message):
|
|||
|
|
this.Message = model.Message;
|
|||
|
|
break;
|
|||
|
|
case nameof(State):
|
|||
|
|
this.State = model.State;
|
|||
|
|
break;
|
|||
|
|
case nameof(Progress):
|
|||
|
|
var modelProgress = model.Progress;
|
|||
|
|
if (modelProgress != null)
|
|||
|
|
{
|
|||
|
|
Progress = new(modelProgress, this.PageContext);
|
|||
|
|
Progress.InitializeProperties();
|
|||
|
|
}
|
|||
|
|
else
|
|||
|
|
{
|
|||
|
|
Progress = null;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
UpdateProperty(nameof(HasProgress));
|
|||
|
|
break;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
UpdateProperty(propertyName);
|
|||
|
|
}
|
|||
|
|
}
|