|
|
|
using System;
|
|
|
|
using System.Linq;
|
|
|
|
using FluentAvalonia.UI.Controls;
|
|
|
|
using FluentAvalonia.UI.Media.Animation;
|
|
|
|
using FluentAvalonia.UI.Navigation;
|
|
|
|
using StabilityMatrix.Avalonia.Animations;
|
|
|
|
using StabilityMatrix.Avalonia.ViewModels;
|
|
|
|
using StabilityMatrix.Avalonia.ViewModels.Base;
|
|
|
|
using StabilityMatrix.Core.Attributes;
|
|
|
|
using StabilityMatrix.Core.Services;
|
|
|
|
|
|
|
|
namespace StabilityMatrix.Avalonia.Services;
|
|
|
|
|
|
|
|
[Singleton(typeof(INavigationService))]
|
|
|
|
public class NavigationService : INavigationService
|
|
|
|
{
|
|
|
|
private Frame? _frame;
|
|
|
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
public void SetFrame(Frame frame)
|
|
|
|
{
|
|
|
|
_frame = frame;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
public void NavigateTo<TViewModel>(
|
|
|
|
NavigationTransitionInfo? transitionInfo = null,
|
|
|
|
object? param = null
|
|
|
|
)
|
|
|
|
where TViewModel : ViewModelBase
|
|
|
|
{
|
|
|
|
if (_frame is null)
|
|
|
|
{
|
|
|
|
throw new InvalidOperationException("SetFrame was not called before NavigateTo.");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (App.Services.GetService(typeof(ISettingsManager)) is ISettingsManager settingsManager)
|
|
|
|
{
|
|
|
|
// Handle animation scale
|
|
|
|
switch (transitionInfo)
|
|
|
|
{
|
|
|
|
// If the transition info is null or animation scale is 0, suppress the transition
|
|
|
|
case null:
|
|
|
|
case BaseTransitionInfo when settingsManager.Settings.AnimationScale == 0f:
|
|
|
|
transitionInfo = new SuppressNavigationTransitionInfo();
|
|
|
|
break;
|
|
|
|
case BaseTransitionInfo baseTransitionInfo:
|
|
|
|
baseTransitionInfo.Duration *= settingsManager.Settings.AnimationScale;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
_frame.NavigateToType(
|
|
|
|
typeof(TViewModel),
|
|
|
|
param,
|
|
|
|
new FrameNavigationOptions
|
|
|
|
{
|
|
|
|
IsNavigationStackEnabled = true,
|
|
|
|
TransitionInfoOverride = transitionInfo ?? new SuppressNavigationTransitionInfo()
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
if (!typeof(TViewModel).IsAssignableTo(typeof(PageViewModelBase)))
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (
|
|
|
|
App.Services.GetService(typeof(MainWindowViewModel))
|
|
|
|
is MainWindowViewModel mainViewModel
|
|
|
|
)
|
|
|
|
{
|
|
|
|
mainViewModel.SelectedCategory = mainViewModel.Pages.FirstOrDefault(
|
|
|
|
x => x.GetType() == typeof(TViewModel)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
public void NavigateTo(ViewModelBase viewModel, NavigationTransitionInfo? transitionInfo = null)
|
|
|
|
{
|
|
|
|
if (_frame is null)
|
|
|
|
{
|
|
|
|
throw new InvalidOperationException("SetFrame was not called before NavigateTo.");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (App.Services.GetService(typeof(ISettingsManager)) is ISettingsManager settingsManager)
|
|
|
|
{
|
|
|
|
// Handle animation scale
|
|
|
|
switch (transitionInfo)
|
|
|
|
{
|
|
|
|
// If the transition info is null or animation scale is 0, suppress the transition
|
|
|
|
case null:
|
|
|
|
case BaseTransitionInfo when settingsManager.Settings.AnimationScale == 0f:
|
|
|
|
transitionInfo = new SuppressNavigationTransitionInfo();
|
|
|
|
break;
|
|
|
|
case BaseTransitionInfo baseTransitionInfo:
|
|
|
|
baseTransitionInfo.Duration *= settingsManager.Settings.AnimationScale;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
_frame.NavigateFromObject(
|
|
|
|
viewModel,
|
|
|
|
new FrameNavigationOptions
|
|
|
|
{
|
|
|
|
IsNavigationStackEnabled = true,
|
|
|
|
TransitionInfoOverride = transitionInfo ?? new SuppressNavigationTransitionInfo()
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|