かずきのBlog@hatena

すきな言語は C# + XAML の組み合わせ。Azure Functions も好き。最近は Go 言語勉強中。日本マイクロソフトで働いていますが、ここに書いていることは個人的なメモなので会社の公式見解ではありません。

ReactivePropertyで2度押し防止/ReactiveProperty v2.7.0をリリースしました

2度押し防止のための機能を追加しました。

www.nuget.org

名前はBusyNotifierです。

こんな感じで使います。

public class MainWindowViewModel
{
    private BusyNotifier BusyNotifier { get; } = new BusyNotifier();

    public ReactiveProperty<string> Output { get; } = new ReactiveProperty<string>();

    public ReactiveCommand ExecuteCommand { get; }

    public MainWindowViewModel()
    {
        this.ExecuteCommand = this.BusyNotifier
            .Select(x => !x)
            .ToReactiveCommand();

        this.ExecuteCommand.Subscribe(async _ =>
        {
            if (this.BusyNotifier.IsBusy) { return; }
            using (this.BusyNotifier.ProcessStart())
            {
                var result = await this.HeavyTaskAsync();
                this.Output.Value = result.ToString();
            }
        });
    }

    public async Task<DateTime> HeavyTaskAsync()
    {
        await Task.Delay(5000);
        return DateTime.Now;
    }
}