-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
71 additions
and
3 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
using System.Windows; | ||
using System.Windows.Input; | ||
using Client.Model; | ||
using Client.View; | ||
using ConnectionInterface; | ||
|
||
namespace Client.ViewModel | ||
{ | ||
public class DeleteWatcherCommand : ICommand | ||
{ | ||
private readonly ServiceConnection _serviceConnection; | ||
|
||
public event EventHandler CanExecuteChanged { add { } remove { } } | ||
|
||
public DeleteWatcherCommand(ServiceConnection serviceConnection) { | ||
_serviceConnection = serviceConnection; | ||
} | ||
|
||
public bool CanExecute(object parameter) | ||
{ | ||
return true; | ||
} | ||
|
||
public async void Execute(object parameter) | ||
{ | ||
Watcher watcher = (Watcher)parameter; | ||
|
||
var request = new PipeRequest | ||
{ | ||
Command = t_PipeCommand.DELETE_WATCHER, | ||
Payload = new PipeRequestPayload | ||
{ | ||
WatcherId = watcher.Id | ||
} | ||
}; | ||
|
||
var response = await _serviceConnection.SendPipeRequest(request); | ||
|
||
if (response == null) | ||
{ | ||
MessageBox.Show("Couldn't retrieve service response", "Pipe error", MessageBoxButton.OK, MessageBoxImage.Warning); | ||
return; | ||
} | ||
|
||
await _serviceConnection.RefreshWatchers(); | ||
|
||
if (response?.Status == t_ResponseStatus.SUCCESS) | ||
{ | ||
MessageBox.Show("Watcher was succesfully deleted", "Success", MessageBoxButton.OK, MessageBoxImage.Information); | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters