generated from nventive/Template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
CanExecuteCommandStrategy.cs
92 lines (78 loc) · 2.54 KB
/
CanExecuteCommandStrategy.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Input;
namespace Chinook.DynamicMvvm
{
public static partial class DynamicCommandStrategyExtensions
{
/// <summary>
/// Will attach the <see cref="ICommand.CanExecute(object)"/> to the specified <see cref="IDynamicProperty"/>.
/// </summary>
/// <param name="builder">The builder.</param>
/// <param name="canExecute"><see cref="IDynamicProperty"/> that affects the CanExecute</param>
/// <returns><see cref="IDynamicCommandBuilder"/></returns>
public static IDynamicCommandBuilder WithCanExecute(this IDynamicCommandBuilder builder, IDynamicProperty<bool> canExecute)
=> builder.WithStrategy(new CanExecuteCommandStrategy(canExecute));
}
/// <summary>
/// This <see cref="DelegatingCommandStrategy"/> will attach
/// its <see cref="ICommand.CanExecute(object)"/> to the value of a <see cref="IDynamicProperty"/>.
/// </summary>
public class CanExecuteCommandStrategy : DelegatingCommandStrategy
{
private readonly IDynamicProperty<bool> _canExecute;
/// <summary>
/// Initializes a new instance of the <see cref="CanExecuteCommandStrategy"/> class.
/// </summary>
/// <param name="canExecute">Can execute property</param>
public CanExecuteCommandStrategy(IDynamicProperty<bool> canExecute)
{
_canExecute = canExecute;
_canExecute.ValueChanged += OnCanExecuteChanged;
}
public override IDynamicCommandStrategy InnerStrategy
{
get => base.InnerStrategy;
set
{
if (base.InnerStrategy != null)
{
base.InnerStrategy.CanExecuteChanged -= OnInnerCanExecuteChanged;
}
base.InnerStrategy = value;
if (base.InnerStrategy != null)
{
base.InnerStrategy.CanExecuteChanged += OnInnerCanExecuteChanged;
}
}
}
/// <inheritdoc />
public override event EventHandler CanExecuteChanged;
/// <inheritdoc />
public override bool CanExecute(object parameter, IDynamicCommand command)
{
return _canExecute.Value && InnerStrategy.CanExecute(parameter, command);
}
private void RaiseCanExecuteChanged()
{
CanExecuteChanged?.Invoke(this, EventArgs.Empty);
}
private void OnCanExecuteChanged(IDynamicProperty property)
{
RaiseCanExecuteChanged();
}
private void OnInnerCanExecuteChanged(object sender, EventArgs e)
{
RaiseCanExecuteChanged();
}
/// <inheritdoc />
public override void Dispose()
{
_canExecute.ValueChanged -= OnCanExecuteChanged;
InnerStrategy.CanExecuteChanged -= OnInnerCanExecuteChanged;
base.Dispose();
}
}
}