generated from nventive/Template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
DisableWhileExecutingCommandStrategy.cs
102 lines (86 loc) · 2.39 KB
/
DisableWhileExecutingCommandStrategy.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
93
94
95
96
97
98
99
100
101
102
using System;
using System.Collections.Generic;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
namespace Chinook.DynamicMvvm
{
public static partial class DynamicCommandStrategyExtensions
{
/// <summary>
/// Will disable the command while it's executing.
/// </summary>
/// <param name="builder">The builder.</param>
/// <returns><see cref="IDynamicCommandBuilder"/></returns>
public static IDynamicCommandBuilder DisableWhileExecuting(this IDynamicCommandBuilder builder)
=> builder.WithStrategy(new DisableWhileExecutingCommandStrategy());
}
/// <summary>
/// This <see cref="DelegatingCommandStrategy"/> will disable the command while it's executing.
/// </summary>
public class DisableWhileExecutingCommandStrategy : DelegatingCommandStrategy
{
public int _isExecuting;
/// <summary>
/// Initializes a new instance of the <see cref="DisableWhileExecutingCommandStrategy"/> class.
/// </summary>
public DisableWhileExecutingCommandStrategy()
{
}
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)
{
var isExecuting = _isExecuting == 1;
return !isExecuting && InnerStrategy.CanExecute(parameter, command);
}
/// <inheritdoc />
public override async Task Execute(CancellationToken ct, object parameter, IDynamicCommand command)
{
if (Interlocked.CompareExchange(ref _isExecuting, 1, 0) == 0)
{
try
{
RaiseCanExecuteChanged();
await base.Execute(ct, parameter, command);
}
finally
{
_isExecuting = 0;
RaiseCanExecuteChanged();
}
}
}
private void RaiseCanExecuteChanged()
{
CanExecuteChanged?.Invoke(this, EventArgs.Empty);
}
private void OnInnerCanExecuteChanged(object sender, EventArgs e)
{
RaiseCanExecuteChanged();
}
/// <inheritdoc />
public override void Dispose()
{
InnerStrategy.CanExecuteChanged -= OnInnerCanExecuteChanged;
base.Dispose();
}
}
}