1
+ using System . Reactive . Disposables ;
2
+ using System . Reactive . Linq ;
1
3
using Avalonia . ReactiveUI ;
4
+ using ReactiveUI ;
2
5
3
6
namespace NexusMods . App . UI . Controls . LoadoutCard ;
4
7
@@ -7,6 +10,89 @@ public partial class LoadoutCardView : ReactiveUserControl<ILoadoutCardViewModel
7
10
public LoadoutCardView ( )
8
11
{
9
12
InitializeComponent ( ) ;
13
+
14
+ this . WhenActivated ( d =>
15
+ {
16
+ // LoadoutBadge
17
+ this . OneWayBind ( ViewModel ,
18
+ vm => vm . LoadoutBadgeViewModel ,
19
+ view => view . LoadoutBadge . ViewModel )
20
+ . DisposeWith ( d ) ;
21
+
22
+ // Game Image
23
+ this . OneWayBind ( ViewModel ,
24
+ vm => vm . LoadoutImage ,
25
+ view => view . GameImage . Source )
26
+ . DisposeWith ( d ) ;
27
+
28
+ // Loadout Name
29
+ this . OneWayBind ( ViewModel ,
30
+ vm => vm . LoadoutName ,
31
+ view => view . LoadoutNameTextBlock . Text )
32
+ . DisposeWith ( d ) ;
33
+
34
+ // Currently applied visibility
35
+ this . OneWayBind ( ViewModel ,
36
+ vm => vm . IsLoadoutApplied ,
37
+ view => view . CurrentlyAppliedFlexPanel . IsVisible )
38
+ . DisposeWith ( d ) ;
39
+
40
+ // Last applied visibility
41
+ this . WhenAnyValue ( view => view . ViewModel ! . IsLoadoutApplied )
42
+ . Select ( isApplied => ! isApplied )
43
+ . OnUI ( )
44
+ . BindToView ( this , view => view . LastAppliedTimeTextBlock . IsVisible )
45
+ . DisposeWith ( d ) ;
46
+
47
+ // Last applied time
48
+ this . OneWayBind ( ViewModel ,
49
+ vm => vm . HumanizedLoadoutLastApplyTime ,
50
+ view => view . LastAppliedTimeTextBlock . Text )
51
+ . DisposeWith ( d ) ;
52
+
53
+ // Created time
54
+ this . OneWayBind ( ViewModel ,
55
+ vm => vm . HumanizedLoadoutCreationTime ,
56
+ view => view . CreatedTimeTextBlock . Text )
57
+ . DisposeWith ( d ) ;
58
+
59
+ // Mod count
60
+ this . OneWayBind ( ViewModel ,
61
+ vm => vm . LoadoutModCount ,
62
+ view => view . NumberOfModsTextBlock . Text )
63
+ . DisposeWith ( d ) ;
64
+
65
+ // Deleting state
66
+ this . WhenAnyValue ( view => view . ViewModel ! . IsDeleting )
67
+ . OnUI ( )
68
+ . Subscribe ( isDeleting =>
69
+ {
70
+ IsEnabled = ! isDeleting ;
71
+ OverlayFlexPanel . IsVisible = isDeleting ;
72
+ CreateCopyButton . IsVisible = ! isDeleting ;
73
+ DeleteButton . IsVisible = ! isDeleting ;
74
+ } )
75
+ . DisposeWith ( d ) ;
76
+
77
+ // Clone loadout command
78
+ this . BindCommand ( ViewModel ,
79
+ vm => vm . CloneLoadoutCommand ,
80
+ view => view . CreateCopyButton )
81
+ . DisposeWith ( d ) ;
82
+
83
+ // Delete loadout command
84
+ this . BindCommand ( ViewModel ,
85
+ vm => vm . DeleteLoadoutCommand ,
86
+ view => view . DeleteButton )
87
+ . DisposeWith ( d ) ;
88
+
89
+ // Visit loadout command
90
+ this . BindCommand ( ViewModel ,
91
+ vm => vm . DeleteLoadoutCommand ,
92
+ view => view . DeleteButton )
93
+ . DisposeWith ( d ) ;
94
+ }
95
+ ) ;
10
96
}
11
97
}
12
98
0 commit comments