Browse Source

Exclude persistent views in designer mode

pull/165/head
Ionite 1 year ago
parent
commit
dfeb13e0f4
No known key found for this signature in database
  1. 59
      StabilityMatrix.Avalonia/ViewLocator.cs

59
StabilityMatrix.Avalonia/ViewLocator.cs

@ -12,29 +12,27 @@ namespace StabilityMatrix.Avalonia;
public class ViewLocator : IDataTemplate, INavigationPageFactory
{
private static readonly Logger Logger = LogManager.GetCurrentClassLogger();
/*/// <summary>
/// Weak Dictionary of (DataContext, View) pairs to keep the view and layout alive
/// </summary>
private static readonly ConditionalWeakTable<object, Control> PersistentViewCache = new();*/
/// <inheritdoc />
public Control Build(object? data)
{
if (data is null) throw new ArgumentNullException(nameof(data));
if (data is null)
throw new ArgumentNullException(nameof(data));
var type = data.GetType();
if (Attribute.GetCustomAttribute(type, typeof(ViewAttribute)) is ViewAttribute viewAttr)
{
var viewType = viewAttr.ViewType;
return GetView(viewType, data, viewAttr.IsPersistent);
}
return new TextBlock
{
Text = "View Model Not Found: " + data.GetType().FullName
};
return new TextBlock { Text = "View Model Not Found: " + data.GetType().FullName };
}
private Control GetView(Type viewType)
@ -43,32 +41,36 @@ public class ViewLocator : IDataTemplate, INavigationPageFactory
{
return view;
}
return new TextBlock
{
Text = "View Not Found: " + viewType.FullName
};
return new TextBlock { Text = "View Not Found: " + viewType.FullName };
}
private Control GetView(Type viewType, object context, bool persistent)
{
// Disregard persistent settings in design mode
if (Design.IsDesignMode)
{
persistent = false;
}
if (persistent)
{
// Check assignable from IPersistentViewProvider
if (context is not IPersistentViewProvider persistentViewProvider)
{
throw new InvalidOperationException(
$"View {viewType.Name} is marked as persistent but does not implement IPersistentViewProvider");
$"View {viewType.Name} is marked as persistent but does not implement IPersistentViewProvider"
);
}
// Try get from context
if (persistentViewProvider.AttachedPersistentView is { } view)
{
Logger.Trace("Got persistent view {ViewType} from context", viewType.Name);
return view;
}
// Otherwise get from service provider
if (App.Services.GetService(viewType) is Control newView)
{
@ -86,13 +88,10 @@ public class ViewLocator : IDataTemplate, INavigationPageFactory
return view;
}
}
return new TextBlock
{
Text = "View Not Found: " + viewType.FullName
};
return new TextBlock { Text = "View Not Found: " + viewType.FullName };
}
/// <inheritdoc />
public bool Match(object? data)
{
@ -102,8 +101,10 @@ public class ViewLocator : IDataTemplate, INavigationPageFactory
/// <inheritdoc />
public Control? GetPage(Type srcType)
{
if (Attribute.GetCustomAttribute(srcType, typeof(ViewAttribute)) is not ViewAttribute
viewAttr)
if (
Attribute.GetCustomAttribute(srcType, typeof(ViewAttribute))
is not ViewAttribute viewAttr
)
{
throw new InvalidOperationException("View not found for " + srcType.FullName);
}
@ -111,15 +112,17 @@ public class ViewLocator : IDataTemplate, INavigationPageFactory
// Get new view
var view = GetView(viewAttr.ViewType);
view.DataContext ??= App.Services.GetService(srcType);
return view;
}
/// <inheritdoc />
public Control GetPageFromObject(object target)
{
if (Attribute.GetCustomAttribute(target.GetType(), typeof(ViewAttribute)) is not
ViewAttribute viewAttr)
if (
Attribute.GetCustomAttribute(target.GetType(), typeof(ViewAttribute))
is not ViewAttribute viewAttr
)
{
throw new InvalidOperationException("View not found for " + target.GetType().FullName);
}

Loading…
Cancel
Save