1
- using SecureFolderFS . AvaloniaUI . Animations . Transitions . NavigationTransitions ;
1
+ using Avalonia . Threading ;
2
+ using SecureFolderFS . AvaloniaUI . Animations . Transitions . NavigationTransitions ;
2
3
using SecureFolderFS . AvaloniaUI . UserControls . Navigation ;
3
4
using SecureFolderFS . Sdk . Enums ;
4
5
using SecureFolderFS . Sdk . Services ;
5
6
using SecureFolderFS . Shared . Extensions ;
6
7
using SecureFolderFS . UI . ServiceImplementation ;
7
8
using System . Linq ;
8
9
using System . Threading . Tasks ;
9
- using Avalonia . Threading ;
10
10
11
11
namespace SecureFolderFS . AvaloniaUI . ServiceImplementation
12
12
{
13
13
/// <inheritdoc cref="INavigationService"/>
14
- internal sealed class AvaloniaNavigationService : BaseNavigationService < FrameNavigationControl >
14
+ internal sealed class AvaloniaNavigationService : BaseNavigationService
15
15
{
16
16
/// <inheritdoc/>
17
17
protected override async Task < bool > BeginNavigationAsync ( INavigationTarget ? target , NavigationType navigationType )
@@ -23,27 +23,49 @@ protected override async Task<bool> BeginNavigationAsync(INavigationTarget? targ
23
23
{
24
24
case NavigationType . Backward :
25
25
{
26
- if ( NavigationControl . ContentFrame . CanGoBack )
27
- {
28
- NavigationControl . ContentFrame . GoBack ( ) ;
26
+ if ( NavigationControl is not FrameNavigationControl frameNavigation )
27
+ return false ;
28
+
29
+ if ( ! frameNavigation . ContentFrame . CanGoBack )
30
+ return false ;
29
31
30
- var contentType = NavigationControl . ContentFrame . Content ? . GetType ( ) ;
31
- if ( contentType is null )
32
- return false ;
32
+ // Navigate back
33
+ frameNavigation . ContentFrame . GoBack ( ) ;
33
34
34
- var targetType = NavigationControl . TypeBinding . GetByKeyOrValue ( contentType ) ;
35
- var backTarget = Targets . FirstOrDefault ( x => x . GetType ( ) == targetType ) ;
36
- if ( backTarget is not null )
37
- CurrentTarget = backTarget ;
35
+ var contentType = frameNavigation . ContentFrame . Content ? . GetType ( ) ;
36
+ if ( contentType is null )
37
+ return false ;
38
38
39
- return true ;
40
- }
39
+ var targetType = frameNavigation . TypeBinding . GetByKeyOrValue ( contentType ) ;
40
+ var backTarget = Targets . FirstOrDefault ( x => x . GetType ( ) == targetType ) ;
41
+ if ( backTarget is not null )
42
+ CurrentTarget = backTarget ;
41
43
42
- return false ;
44
+ return true ;
43
45
}
44
46
45
47
case NavigationType . Forward :
46
- return false ;
48
+ {
49
+ if ( NavigationControl is not FrameNavigationControl frameNavigation )
50
+ return false ;
51
+
52
+ if ( ! frameNavigation . ContentFrame . CanGoForward )
53
+ return false ;
54
+
55
+ // Navigate forward
56
+ frameNavigation . ContentFrame . GoForward ( ) ;
57
+
58
+ var contentType = frameNavigation . ContentFrame . Content ? . GetType ( ) ;
59
+ if ( contentType is null )
60
+ return false ;
61
+
62
+ var targetType = frameNavigation . TypeBinding . GetByKeyOrValue ( contentType ) ;
63
+ var forwardTarget = Targets . FirstOrDefault ( x => x . GetType ( ) == targetType ) ;
64
+ if ( forwardTarget is not null )
65
+ CurrentTarget = forwardTarget ;
66
+
67
+ return true ;
68
+ }
47
69
48
70
default :
49
71
case NavigationType . Detached :
0 commit comments