1
0
mirror of https://github.com/proxysu/ProxySU.git synced 2024-11-22 05:06:08 +03:00
ProxySU/ProxySuper.Core/ViewModels/NaiveProxyEditorViewModel.cs

64 lines
1.7 KiB
C#
Raw Normal View History

2021-07-08 13:37:32 +03:00
using MvvmCross.Commands;
2021-05-25 13:28:37 +03:00
using MvvmCross.Navigation;
using MvvmCross.ViewModels;
using ProxySuper.Core.Models;
using ProxySuper.Core.Models.Hosts;
using ProxySuper.Core.Models.Projects;
using ProxySuper.Core.Services;
namespace ProxySuper.Core.ViewModels
{
public class NaiveProxyEditorViewModel : MvxViewModel<Record, Record>
{
public NaiveProxyEditorViewModel(IMvxNavigationService navigationService)
{
NavigationService = navigationService;
}
public IMvxNavigationService NavigationService { get; }
public string Id { get; set; }
public Host Host { get; set; }
public NaiveProxySettings Settings { get; set; }
public override void Prepare(Record parameter)
{
var record = Utils.DeepClone(parameter);
Id = record.Id;
Host = record.Host;
Settings = record.NaiveProxySettings;
}
public IMvxCommand SaveCommand => new MvxCommand(Save);
2021-08-19 12:54:23 +03:00
public IMvxCommand SaveAndInstallCommand => new MvxCommand(SaveAndInstall);
2021-05-25 13:28:37 +03:00
private void Save()
{
NavigationService.Close(this, new Record
{
Id = Id,
Host = Host,
NaiveProxySettings = Settings
});
}
2021-08-19 12:54:23 +03:00
private void SaveAndInstall()
{
var record = new Record
{
Id = this.Id,
Host = this.Host,
NaiveProxySettings = Settings,
};
NavigationService.Close(this, record);
NavigationService.Navigate<NaiveProxyInstallViewModel, Record>(record);
}
2021-05-25 13:28:37 +03:00
}
}