4e85a6cccc
* add base revit 26 projects * fix up cef replacement * fix up revit 2026 events * add revit events * fixes for revit 26 * use right version of DI for Revit26 * add Revit26 to local * fmt * use visual studio to fix slns * Add revit to installer constants * move webview stuff to 2026 specific area to avoid build issues * update locks * Revit 2026 wants to invoke scripts with RevitTask. Abstract RevitTask * fmt * fix project copying * use 3.2 SDK * fix build * Revit 2025 is now CEF vulnerable * add SendProgress to not overload revit context * update Revit 26 lock files * update locks --------- Co-authored-by: Oğuzhan Koral <45078678+oguzhankoral@users.noreply.github.com>
75 lines
2.4 KiB
C#
75 lines
2.4 KiB
C#
using System.Windows.Controls;
|
|
using System.Windows.Threading;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using Microsoft.Web.WebView2.Core;
|
|
using Speckle.Connectors.DUI.Bindings;
|
|
using Speckle.Connectors.DUI.Bridge;
|
|
|
|
namespace Speckle.Connectors.DUI.WebView;
|
|
|
|
public sealed partial class DUI3ControlWebView : UserControl, IBrowserScriptExecutor, IDisposable
|
|
{
|
|
private readonly IServiceProvider _serviceProvider;
|
|
|
|
public DUI3ControlWebView(IServiceProvider serviceProvider)
|
|
{
|
|
_serviceProvider = serviceProvider;
|
|
InitializeComponent();
|
|
|
|
Browser.CoreWebView2InitializationCompleted += (sender, args) =>
|
|
_serviceProvider
|
|
.GetRequiredService<ITopLevelExceptionHandler>()
|
|
.CatchUnhandled(() => OnInitialized(sender, args));
|
|
}
|
|
|
|
public bool IsBrowserInitialized => Browser.IsInitialized;
|
|
|
|
public object BrowserElement => Browser;
|
|
|
|
public void ExecuteScript(string script)
|
|
{
|
|
if (!Browser.IsInitialized)
|
|
{
|
|
throw new InvalidOperationException("Failed to execute script, Webview2 is not initialized yet.");
|
|
}
|
|
|
|
//always invoke even on the main thread because it's better somehow
|
|
Browser.Dispatcher.Invoke(
|
|
//fire and forget
|
|
() => Browser.ExecuteScriptAsync(script),
|
|
DispatcherPriority.Background
|
|
);
|
|
}
|
|
|
|
public void SendProgress(string script) => ExecuteScript(script);
|
|
|
|
private void OnInitialized(object? sender, CoreWebView2InitializationCompletedEventArgs e)
|
|
{
|
|
if (!e.IsSuccess)
|
|
{
|
|
throw new InvalidOperationException("Webview Failed to initialize", e.InitializationException);
|
|
}
|
|
|
|
// We use Lazy here to delay creating the binding until after the Browser is fully initialized.
|
|
// Otherwise the Browser cannot respond to any requests to ExecuteScriptAsyncMethod
|
|
foreach (var binding in _serviceProvider.GetRequiredService<IEnumerable<IBinding>>())
|
|
{
|
|
SetupBinding(binding);
|
|
}
|
|
}
|
|
|
|
/// <remark>
|
|
/// This must be called on the Main thread
|
|
/// </remark>
|
|
private void SetupBinding(IBinding binding)
|
|
{
|
|
binding.Parent.AssociateWithBinding(binding);
|
|
Browser.CoreWebView2.AddHostObjectToScript(binding.Name, binding.Parent);
|
|
}
|
|
|
|
public void ShowDevTools() => Browser.CoreWebView2.OpenDevToolsWindow();
|
|
|
|
//https://github.com/MicrosoftEdge/WebView2Feedback/issues/2161
|
|
public void Dispose() => Browser.Dispatcher.Invoke(() => Browser.Dispose(), DispatcherPriority.Send);
|
|
}
|