forked from reactiveui/ReactiveUI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathViewModelViewHost.cs
69 lines (61 loc) · 2.54 KB
/
ViewModelViewHost.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
using System;
using System.Reactive;
using System.Reactive.Linq;
using System.Reactive.Subjects;
using System.Windows;
using ReactiveUI.Xaml;
#if WINRT
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
#else
using System.Windows.Controls;
#endif
namespace ReactiveUI.Routing
{
/// <summary>
/// This content control will automatically load the View associated with
/// the ViewModel property and display it. This control is very useful
/// inside a DataTemplate to display the View associated with a ViewModel.
/// </summary>
public class ViewModelViewHost : TransitioningContentControl
{
/// <summary>
/// The ViewModel to display
/// </summary>
public IReactiveNotifyPropertyChanged ViewModel {
get { return (IReactiveNotifyPropertyChanged)GetValue(ViewModelProperty); }
set { SetValue(ViewModelProperty, value); }
}
public static readonly DependencyProperty ViewModelProperty =
DependencyProperty.Register("ViewModel", typeof(IReactiveNotifyPropertyChanged), typeof(ViewModelViewHost), new PropertyMetadata(null, somethingChanged));
readonly Subject<Unit> updateViewModel = new Subject<Unit>();
/// <summary>
/// If no ViewModel is displayed, this content (i.e. a control) will be displayed.
/// </summary>
public object DefaultContent {
get { return (object)GetValue(DefaultContentProperty); }
set { SetValue(DefaultContentProperty, value); }
}
public static readonly DependencyProperty DefaultContentProperty =
DependencyProperty.Register("DefaultContent", typeof(object), typeof(ViewModelViewHost), new PropertyMetadata(null, somethingChanged));
public ViewModelViewHost()
{
var latestViewModel = updateViewModel
.Select(_ => (IReactiveNotifyPropertyChanged)(ViewModel ?? DataContext))
.StartWith((IReactiveNotifyPropertyChanged) null);
latestViewModel.Subscribe(vm => {
if (vm == null) {
Content = DefaultContent;
return;
}
var view = RxRouting.ResolveView(vm);
view.ViewModel = vm;
Content = view;
});
}
static void somethingChanged(DependencyObject dependencyObject, DependencyPropertyChangedEventArgs dependencyPropertyChangedEventArgs)
{
((ViewModelViewHost)dependencyObject).updateViewModel.OnNext(Unit.Default);
}
}
}