1
0
mirror of https://github.com/proxysu/ProxySU.git synced 2024-11-22 21:26:09 +03:00
ProxySU/ProxySuper.Core/ViewModels/HomeViewModel.cs

61 lines
1.7 KiB
C#
Raw Normal View History

2021-05-16 04:12:47 +03:00
using MvvmCross.Commands;
using MvvmCross.Navigation;
2021-05-14 14:07:19 +03:00
using MvvmCross.ViewModels;
using Newtonsoft.Json;
using ProxySuper.Core.Models;
2021-05-16 04:12:47 +03:00
using ProxySuper.Core.Models.Hosts;
using ProxySuper.Core.Models.Projects;
2021-05-14 14:07:19 +03:00
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ProxySuper.Core.ViewModels
{
public class HomeViewModel : MvxViewModel
{
private readonly IMvxNavigationService _navigationService;
public HomeViewModel(IMvxNavigationService navigationService)
{
_navigationService = navigationService;
ReadRecords();
}
private void ReadRecords()
{
var json = File.ReadAllText("Data/Record.json");
var records = JsonConvert.DeserializeObject<List<Record>>(json);
this.Records = new MvxObservableCollection<Record>();
2021-05-16 04:12:47 +03:00
2021-05-14 14:07:19 +03:00
records.ForEach(item =>
{
2021-05-16 04:12:47 +03:00
if (string.IsNullOrEmpty(item.Id))
{
item.Id = Guid.NewGuid().ToString();
}
2021-05-14 14:07:19 +03:00
this.Records.Add(item);
});
}
public MvxObservableCollection<Record> Records { get; set; }
2021-05-16 04:12:47 +03:00
public IMvxCommand AddXrayCommand => new MvxAsyncCommand(AddXrayRecord);
public async Task AddXrayRecord()
{
Record record = new Record();
record.Id = Guid.NewGuid().ToString();
record.Host = new Host();
record.XraySettings = new XraySettings();
var result = await _navigationService.Navigate<XrayEditorViewModel, Record, Record>(record);
if (result == null) return;
Records.Add(result);
}
2021-05-14 14:07:19 +03:00
}
}