aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Tango.PPC.UI/ViewModels/MachineSetupViewVM.cs
diff options
context:
space:
mode:
authorShlomo Hecht <shlomo@twine-s.com>2018-08-13 11:06:50 +0300
committerShlomo Hecht <shlomo@twine-s.com>2018-08-13 11:06:50 +0300
commitfc43b9d6ed5770eaf1496acba8fe7ecd3eb5410c (patch)
tree72a62b24640aad7ad9f3607005ea47b48e5af3e5 /Software/Visual_Studio/PPC/Tango.PPC.UI/ViewModels/MachineSetupViewVM.cs
parent349c18600a2c6c5077bb339b0137f9e37882e06f (diff)
parentacde45615085df2a8ca4286f55f42ea16aee1943 (diff)
downloadTango-fc43b9d6ed5770eaf1496acba8fe7ecd3eb5410c.tar.gz
Tango-fc43b9d6ed5770eaf1496acba8fe7ecd3eb5410c.zip
Merge branch 'master' of https://twinetfs.visualstudio.com/_git/Tango
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.UI/ViewModels/MachineSetupViewVM.cs')
-rw-r--r--Software/Visual_Studio/PPC/Tango.PPC.UI/ViewModels/MachineSetupViewVM.cs33
1 files changed, 9 insertions, 24 deletions
diff --git a/Software/Visual_Studio/PPC/Tango.PPC.UI/ViewModels/MachineSetupViewVM.cs b/Software/Visual_Studio/PPC/Tango.PPC.UI/ViewModels/MachineSetupViewVM.cs
index 7b4016341..2877d52b3 100644
--- a/Software/Visual_Studio/PPC/Tango.PPC.UI/ViewModels/MachineSetupViewVM.cs
+++ b/Software/Visual_Studio/PPC/Tango.PPC.UI/ViewModels/MachineSetupViewVM.cs
@@ -1,11 +1,13 @@
using System;
using System.Collections.Generic;
using System.Data.SqlClient;
+using System.Diagnostics;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.Core;
using Tango.Core.Commands;
+using Tango.Core.Helpers;
using Tango.PPC.Common;
using Tango.PPC.Common.Application;
using Tango.PPC.Common.MachineSetup;
@@ -27,9 +29,7 @@ namespace Tango.PPC.UI.ViewModels
Failed,
}
- private bool _postSetp;
-
- private SetupRequiredEventArgs _setupRequiredEventArgs;
+ private MachineSetupResult _setup_result;
public IMachineSetupManager MachineSetupManager { get; set; }
@@ -80,24 +80,9 @@ namespace Tango.PPC.UI.ViewModels
applicationManager.SetupRequired += ApplicationManager_SetupRequired;
}
- private void ApplicationManager_SetupRequired(object sender, SetupRequiredEventArgs e)
- {
- _setupRequiredEventArgs = e;
- }
-
- public override void OnApplicationStarted()
- {
- base.OnApplicationStarted();
-
- if (_postSetp)
- {
- NavigationManager.NavigateTo(Common.Navigation.NavigationView.LoginView);
- }
- }
-
- public override void OnNavigatedTo()
+ private void ApplicationManager_SetupRequired(object sender, EventArgs e)
{
- base.OnNavigatedTo();
+ NavigationManager.NavigateTo(NavigationView.MachineSetupView);
}
private void AppendLog(String msg)
@@ -117,9 +102,8 @@ namespace Tango.PPC.UI.ViewModels
try
{
- await MachineSetupManager.Setup(SerialNumber, HostAddress);
- Settings.HasSetup = true;
- _postSetp = true;
+ _setup_result = await MachineSetupManager.Setup(SerialNumber, HostAddress);
+ Settings.ApplicationState = ApplicationStates.SemiSetup;
Settings.Save();
State = MachineSetupStates.Completed;
}
@@ -132,7 +116,8 @@ namespace Tango.PPC.UI.ViewModels
private void CompleteSetup()
{
- NavigationManager.NavigateWithObject(NavigationView.LoadingView, new MachineSetupResult() { Completed = true });
+ Process.Start(AssemblyHelper.GetCurrentAssemblyFolder() + "\\Tango.PPC.Updater.exe", _setup_result.UpdatePackagePath);
+ Environment.Exit(0);
}
}
}