mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2025-01-13 00:07:20 -08:00
40 lines
1.2 KiB
C#
40 lines
1.2 KiB
C#
using System.Threading.Tasks;
|
|
|
|
namespace SourceGit.ViewModels
|
|
{
|
|
public class ExecuteCustomAction : Popup
|
|
{
|
|
public Models.CustomAction CustomAction
|
|
{
|
|
get;
|
|
private set;
|
|
}
|
|
|
|
public ExecuteCustomAction(Repository repo, Models.CustomAction action, Models.Commit commit)
|
|
{
|
|
_repo = repo;
|
|
_args = action.Arguments.Replace("${REPO}", _repo.FullPath);
|
|
if (commit != null)
|
|
_args = _args.Replace("${SHA}", commit.SHA);
|
|
|
|
CustomAction = action;
|
|
View = new Views.ExecuteCustomAction() { DataContext = this };
|
|
}
|
|
|
|
public override Task<bool> Sure()
|
|
{
|
|
_repo.SetWatcherEnabled(false);
|
|
ProgressDescription = "Run custom action ...";
|
|
|
|
return Task.Run(() =>
|
|
{
|
|
Commands.ExecuteCustomAction.Run(_repo.FullPath, CustomAction.Executable, _args, SetProgressDescription);
|
|
CallUIThread(() => _repo.SetWatcherEnabled(true));
|
|
return true;
|
|
});
|
|
}
|
|
|
|
private readonly Repository _repo = null;
|
|
private string _args = string.Empty;
|
|
}
|
|
}
|