Files
serein-flow/Workbench/Node/ViewModel/UINodeControlViewModel.cs

77 lines
2.4 KiB
C#
Raw Normal View History

using CommunityToolkit.Mvvm.ComponentModel;
using Serein.Library;
2025-03-14 16:04:06 +08:00
using Serein.Library.Api;
2025-07-04 11:35:34 +08:00
using Serein.NodeFlow.Model;
using Serein.NodeFlow.Model.Nodes;
2025-03-14 16:04:06 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Controls;
namespace Serein.Workbench.Node.ViewModel
{
/// <summary>
/// UI节点控制器视图模型
/// </summary>
public partial class UINodeControlViewModel : NodeControlViewModelBase
2025-03-14 16:04:06 +08:00
{
private new SingleUINode NodeModel => (SingleUINode)base.NodeModel;
2025-03-14 16:04:06 +08:00
//public IEmbeddedContent Adapter => NodeModel.Adapter;
/// <summary>
/// 节点UI的对应内容
/// </summary>
[ObservableProperty]
private UserControl _nodeUIContent;
public UINodeControlViewModel(IFlowNode nodeModel) : base(nodeModel)
2025-03-14 16:04:06 +08:00
{
2025-03-14 16:04:06 +08:00
}
public void InitAdapter()
2025-03-14 16:04:06 +08:00
{
Task.Factory.StartNew(async () =>
{
var context = new FlowContext(NodeModel.Env);
var cts = new CancellationTokenSource();
var result = await NodeModel.ExecutingAsync(context, cts.Token);
cts?.Dispose();
2025-03-14 16:04:06 +08:00
if (context.NextOrientation == ConnectionInvokeType.IsSucceed
&& NodeModel.Adapter.GetUserControl() is UserControl userControl)
{
NodeModel.Env.UIContextOperation.Invoke(() =>
{
NodeUIContent = userControl;
});
}
});
}
public void InitAdapter(Action<UserControl> setUIDisplayHandle)
{
Task.Factory.StartNew(async () =>
{
var context = new FlowContext(NodeModel.Env);
var cts = new CancellationTokenSource();
var result = await NodeModel.ExecutingAsync(context, cts.Token);
cts?.Dispose();
if (context.NextOrientation == ConnectionInvokeType.IsSucceed
&& NodeModel.Adapter.GetUserControl() is UserControl userControl)
{
NodeModel.Env.UIContextOperation.Invoke(() =>
2025-03-14 16:04:06 +08:00
{
setUIDisplayHandle.Invoke(userControl);
});
}
});
}
2025-03-14 16:04:06 +08:00
}
}